Decompiled source of ModioModNetworker v2.4.0

MelonLoader/Managed/Newtonsoft.Json.dll

Decompiled a month ago
using System;
using System.Collections;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Collections.Specialized;
using System.ComponentModel;
using System.Data;
using System.Data.SqlTypes;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Dynamic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Linq.Expressions;
using System.Numerics;
using System.Reflection;
using System.Reflection.Emit;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using System.Runtime.Serialization.Formatters;
using System.Runtime.Versioning;
using System.Security;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading;
using System.Threading.Tasks;
using System.Xml;
using System.Xml.Linq;
using Microsoft.CodeAnalysis;
using Newtonsoft.Json.Bson;
using Newtonsoft.Json.Converters;
using Newtonsoft.Json.Linq;
using Newtonsoft.Json.Linq.JsonPath;
using Newtonsoft.Json.Schema;
using Newtonsoft.Json.Serialization;
using Newtonsoft.Json.Utilities;

[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
[assembly: AllowPartiallyTrustedCallers]
[assembly: InternalsVisibleTo("Newtonsoft.Json.Schema, PublicKey=0024000004800000940000000602000000240000525341310004000001000100f561df277c6c0b497d629032b410cdcf286e537c054724f7ffa0164345f62b3e642029d7a80cc351918955328c4adc8a048823ef90b0cf38ea7db0d729caf2b633c3babe08b0310198c1081995c19029bc675193744eab9d7345b8a67258ec17d112cebdbbb2a281487dceeafb9d83aa930f32103fbe1d2911425bc5744002c7")]
[assembly: InternalsVisibleTo("Newtonsoft.Json.Tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100f561df277c6c0b497d629032b410cdcf286e537c054724f7ffa0164345f62b3e642029d7a80cc351918955328c4adc8a048823ef90b0cf38ea7db0d729caf2b633c3babe08b0310198c1081995c19029bc675193744eab9d7345b8a67258ec17d112cebdbbb2a281487dceeafb9d83aa930f32103fbe1d2911425bc5744002c7")]
[assembly: InternalsVisibleTo("Newtonsoft.Json.Dynamic, PublicKey=0024000004800000940000000602000000240000525341310004000001000100cbd8d53b9d7de30f1f1278f636ec462cf9c254991291e66ebb157a885638a517887633b898ccbcf0d5c5ff7be85a6abe9e765d0ac7cd33c68dac67e7e64530e8222101109f154ab14a941c490ac155cd1d4fcba0fabb49016b4ef28593b015cab5937da31172f03f67d09edda404b88a60023f062ae71d0b2e4438b74cc11dc9")]
[assembly: AssemblyTrademark("")]
[assembly: ComVisible(false)]
[assembly: Guid("9ca358aa-317b-4925-8ada-4a29e943a363")]
[assembly: CLSCompliant(true)]
[assembly: TargetFramework(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]
[assembly: AssemblyCompany("Newtonsoft")]
[assembly: AssemblyConfiguration("Release")]
[assembly: AssemblyCopyright("Copyright © James Newton-King 2008")]
[assembly: AssemblyDescription("Json.NET is a popular high-performance JSON framework for .NET")]
[assembly: AssemblyFileVersion("13.0.3.27908")]
[assembly: AssemblyInformationalVersion("13.0.3+0a2e291c0d9c0c7675d445703e51750363a549ef")]
[assembly: AssemblyProduct("Json.NET")]
[assembly: AssemblyTitle("Json.NET .NET 6.0")]
[assembly: AssemblyMetadata("RepositoryUrl", "https://github.com/JamesNK/Newtonsoft.Json")]
[assembly: NeutralResourcesLanguage("en-US")]
[assembly: AssemblyVersion("13.0.0.0")]
namespace Microsoft.CodeAnalysis
{
	[CompilerGenerated]
	[Microsoft.CodeAnalysis.Embedded]
	internal sealed class EmbeddedAttribute : Attribute
	{
	}
}
namespace System.Runtime.CompilerServices
{
	[CompilerGenerated]
	[Microsoft.CodeAnalysis.Embedded]
	[AttributeUsage(AttributeTargets.Class | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Parameter | AttributeTargets.ReturnValue | AttributeTargets.GenericParameter, AllowMultiple = false, Inherited = false)]
	internal sealed class NullableAttribute : Attribute
	{
		public readonly byte[] NullableFlags;

		public NullableAttribute(byte P_0)
		{
			NullableFlags = new byte[1] { P_0 };
		}

		public NullableAttribute(byte[] P_0)
		{
			NullableFlags = P_0;
		}
	}
	[CompilerGenerated]
	[Microsoft.CodeAnalysis.Embedded]
	[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Method | AttributeTargets.Interface | AttributeTargets.Delegate, AllowMultiple = false, Inherited = false)]
	internal sealed class NullableContextAttribute : Attribute
	{
		public readonly byte Flag;

		public NullableContextAttribute(byte P_0)
		{
			Flag = P_0;
		}
	}
}
namespace Newtonsoft.Json
{
	public enum ConstructorHandling
	{
		Default,
		AllowNonPublicDefaultConstructor
	}
	public enum DateFormatHandling
	{
		IsoDateFormat,
		MicrosoftDateFormat
	}
	public enum DateParseHandling
	{
		None,
		DateTime,
		DateTimeOffset
	}
	public enum DateTimeZoneHandling
	{
		Local,
		Utc,
		Unspecified,
		RoundtripKind
	}
	public class DefaultJsonNameTable : JsonNameTable
	{
		private class Entry
		{
			internal readonly string Value;

			internal readonly int HashCode;

			internal Entry Next;

			internal Entry(string value, int hashCode, Entry next)
			{
				Value = value;
				HashCode = hashCode;
				Next = next;
			}
		}

		private static readonly int HashCodeRandomizer;

		private int _count;

		private Entry[] _entries;

		private int _mask = 31;

		static DefaultJsonNameTable()
		{
			HashCodeRandomizer = Environment.TickCount;
		}

		public DefaultJsonNameTable()
		{
			_entries = new Entry[_mask + 1];
		}

		public override string? Get(char[] key, int start, int length)
		{
			if (length == 0)
			{
				return string.Empty;
			}
			int num = length + HashCodeRandomizer;
			num += (num << 7) ^ key[start];
			int num2 = start + length;
			for (int i = start + 1; i < num2; i++)
			{
				num += (num << 7) ^ key[i];
			}
			num -= num >> 17;
			num -= num >> 11;
			num -= num >> 5;
			int num3 = Volatile.Read(ref _mask);
			int num4 = num & num3;
			for (Entry entry = _entries[num4]; entry != null; entry = entry.Next)
			{
				if (entry.HashCode == num && TextEquals(entry.Value, key, start, length))
				{
					return entry.Value;
				}
			}
			return null;
		}

		public string Add(string key)
		{
			if (key == null)
			{
				throw new ArgumentNullException("key");
			}
			int length = key.Length;
			if (length == 0)
			{
				return string.Empty;
			}
			int num = length + HashCodeRandomizer;
			for (int i = 0; i < key.Length; i++)
			{
				num += (num << 7) ^ key[i];
			}
			num -= num >> 17;
			num -= num >> 11;
			num -= num >> 5;
			for (Entry entry = _entries[num & _mask]; entry != null; entry = entry.Next)
			{
				if (entry.HashCode == num && entry.Value.Equals(key, StringComparison.Ordinal))
				{
					return entry.Value;
				}
			}
			return AddEntry(key, num);
		}

		private string AddEntry(string str, int hashCode)
		{
			int num = hashCode & _mask;
			Entry entry = new Entry(str, hashCode, _entries[num]);
			_entries[num] = entry;
			if (_count++ == _mask)
			{
				Grow();
			}
			return entry.Value;
		}

		private void Grow()
		{
			Entry[] entries = _entries;
			int num = _mask * 2 + 1;
			Entry[] array = new Entry[num + 1];
			for (int i = 0; i < entries.Length; i++)
			{
				Entry entry = entries[i];
				while (entry != null)
				{
					int num2 = entry.HashCode & num;
					Entry next = entry.Next;
					entry.Next = array[num2];
					array[num2] = entry;
					entry = next;
				}
			}
			_entries = array;
			Volatile.Write(ref _mask, num);
		}

		private static bool TextEquals(string str1, char[] str2, int str2Start, int str2Length)
		{
			if (str1.Length != str2Length)
			{
				return false;
			}
			for (int i = 0; i < str1.Length; i++)
			{
				if (str1[i] != str2[str2Start + i])
				{
					return false;
				}
			}
			return true;
		}
	}
	[Flags]
	public enum DefaultValueHandling
	{
		Include = 0,
		Ignore = 1,
		Populate = 2,
		IgnoreAndPopulate = 3
	}
	public enum FloatFormatHandling
	{
		String,
		Symbol,
		DefaultValue
	}
	public enum FloatParseHandling
	{
		Double,
		Decimal
	}
	public enum Formatting
	{
		None,
		Indented
	}
	public interface IArrayPool<T>
	{
		T[] Rent(int minimumLength);

		void Return(T[]? array);
	}
	public interface IJsonLineInfo
	{
		int LineNumber { get; }

		int LinePosition { get; }

		bool HasLineInfo();
	}
	[AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface, AllowMultiple = false)]
	public sealed class JsonArrayAttribute : JsonContainerAttribute
	{
		private bool _allowNullItems;

		public bool AllowNullItems
		{
			get
			{
				return _allowNullItems;
			}
			set
			{
				_allowNullItems = value;
			}
		}

		public JsonArrayAttribute()
		{
		}

		public JsonArrayAttribute(bool allowNullItems)
		{
			_allowNullItems = allowNullItems;
		}

		public JsonArrayAttribute(string id)
			: base(id)
		{
		}
	}
	[AttributeUsage(AttributeTargets.Constructor, AllowMultiple = false)]
	public sealed class JsonConstructorAttribute : Attribute
	{
	}
	[AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface, AllowMultiple = false)]
	public abstract class JsonContainerAttribute : Attribute
	{
		internal bool? _isReference;

		internal bool? _itemIsReference;

		internal ReferenceLoopHandling? _itemReferenceLoopHandling;

		internal TypeNameHandling? _itemTypeNameHandling;

		private Type? _namingStrategyType;

		private object[]? _namingStrategyParameters;

		public string? Id { get; set; }

		public string? Title { get; set; }

		public string? Description { get; set; }

		public Type? ItemConverterType { get; set; }

		public object[]? ItemConverterParameters { get; set; }

		public Type? NamingStrategyType
		{
			get
			{
				return _namingStrategyType;
			}
			set
			{
				_namingStrategyType = value;
				NamingStrategyInstance = null;
			}
		}

		public object[]? NamingStrategyParameters
		{
			get
			{
				return _namingStrategyParameters;
			}
			set
			{
				_namingStrategyParameters = value;
				NamingStrategyInstance = null;
			}
		}

		internal NamingStrategy? NamingStrategyInstance { get; set; }

		public bool IsReference
		{
			get
			{
				return _isReference.GetValueOrDefault();
			}
			set
			{
				_isReference = value;
			}
		}

		public bool ItemIsReference
		{
			get
			{
				return _itemIsReference.GetValueOrDefault();
			}
			set
			{
				_itemIsReference = value;
			}
		}

		public ReferenceLoopHandling ItemReferenceLoopHandling
		{
			get
			{
				return _itemReferenceLoopHandling.GetValueOrDefault();
			}
			set
			{
				_itemReferenceLoopHandling = value;
			}
		}

		public TypeNameHandling ItemTypeNameHandling
		{
			get
			{
				return _itemTypeNameHandling.GetValueOrDefault();
			}
			set
			{
				_itemTypeNameHandling = value;
			}
		}

		protected JsonContainerAttribute()
		{
		}

		protected JsonContainerAttribute(string id)
		{
			Id = id;
		}
	}
	public static class JsonConvert
	{
		public static readonly string True = "true";

		public static readonly string False = "false";

		public static readonly string Null = "null";

		public static readonly string Undefined = "undefined";

		public static readonly string PositiveInfinity = "Infinity";

		public static readonly string NegativeInfinity = "-Infinity";

		public static readonly string NaN = "NaN";

		public static Func<JsonSerializerSettings>? DefaultSettings { get; set; }

		public static string ToString(DateTime value)
		{
			return ToString(value, DateFormatHandling.IsoDateFormat, DateTimeZoneHandling.RoundtripKind);
		}

		public static string ToString(DateTime value, DateFormatHandling format, DateTimeZoneHandling timeZoneHandling)
		{
			DateTime value2 = DateTimeUtils.EnsureDateTime(value, timeZoneHandling);
			using StringWriter stringWriter = StringUtils.CreateStringWriter(64);
			stringWriter.Write('"');
			DateTimeUtils.WriteDateTimeString(stringWriter, value2, format, null, CultureInfo.InvariantCulture);
			stringWriter.Write('"');
			return stringWriter.ToString();
		}

		public static string ToString(DateTimeOffset value)
		{
			return ToString(value, DateFormatHandling.IsoDateFormat);
		}

		public static string ToString(DateTimeOffset value, DateFormatHandling format)
		{
			using StringWriter stringWriter = StringUtils.CreateStringWriter(64);
			stringWriter.Write('"');
			DateTimeUtils.WriteDateTimeOffsetString(stringWriter, value, format, null, CultureInfo.InvariantCulture);
			stringWriter.Write('"');
			return stringWriter.ToString();
		}

		public static string ToString(bool value)
		{
			if (!value)
			{
				return False;
			}
			return True;
		}

		public static string ToString(char value)
		{
			return ToString(char.ToString(value));
		}

		public static string ToString(Enum value)
		{
			return value.ToString("D");
		}

		public static string ToString(int value)
		{
			return value.ToString(null, CultureInfo.InvariantCulture);
		}

		public static string ToString(short value)
		{
			return value.ToString(null, CultureInfo.InvariantCulture);
		}

		[CLSCompliant(false)]
		public static string ToString(ushort value)
		{
			return value.ToString(null, CultureInfo.InvariantCulture);
		}

		[CLSCompliant(false)]
		public static string ToString(uint value)
		{
			return value.ToString(null, CultureInfo.InvariantCulture);
		}

		public static string ToString(long value)
		{
			return value.ToString(null, CultureInfo.InvariantCulture);
		}

		private static string ToStringInternal(BigInteger value)
		{
			return value.ToString(null, CultureInfo.InvariantCulture);
		}

		[CLSCompliant(false)]
		public static string ToString(ulong value)
		{
			return value.ToString(null, CultureInfo.InvariantCulture);
		}

		public static string ToString(float value)
		{
			return EnsureDecimalPlace(value, value.ToString("R", CultureInfo.InvariantCulture));
		}

		internal static string ToString(float value, FloatFormatHandling floatFormatHandling, char quoteChar, bool nullable)
		{
			return EnsureFloatFormat(value, EnsureDecimalPlace(value, value.ToString("R", CultureInfo.InvariantCulture)), floatFormatHandling, quoteChar, nullable);
		}

		private static string EnsureFloatFormat(double value, string text, FloatFormatHandling floatFormatHandling, char quoteChar, bool nullable)
		{
			if (floatFormatHandling == FloatFormatHandling.Symbol || (!double.IsInfinity(value) && !double.IsNaN(value)))
			{
				return text;
			}
			if (floatFormatHandling == FloatFormatHandling.DefaultValue)
			{
				if (nullable)
				{
					return Null;
				}
				return "0.0";
			}
			return quoteChar + text + quoteChar;
		}

		public static string ToString(double value)
		{
			return EnsureDecimalPlace(value, value.ToString("R", CultureInfo.InvariantCulture));
		}

		internal static string ToString(double value, FloatFormatHandling floatFormatHandling, char quoteChar, bool nullable)
		{
			return EnsureFloatFormat(value, EnsureDecimalPlace(value, value.ToString("R", CultureInfo.InvariantCulture)), floatFormatHandling, quoteChar, nullable);
		}

		private static string EnsureDecimalPlace(double value, string text)
		{
			if (double.IsNaN(value) || double.IsInfinity(value) || StringUtils.IndexOf(text, '.') != -1 || StringUtils.IndexOf(text, 'E') != -1 || StringUtils.IndexOf(text, 'e') != -1)
			{
				return text;
			}
			return text + ".0";
		}

		private static string EnsureDecimalPlace(string text)
		{
			if (StringUtils.IndexOf(text, '.') != -1)
			{
				return text;
			}
			return text + ".0";
		}

		public static string ToString(byte value)
		{
			return value.ToString(null, CultureInfo.InvariantCulture);
		}

		[CLSCompliant(false)]
		public static string ToString(sbyte value)
		{
			return value.ToString(null, CultureInfo.InvariantCulture);
		}

		public static string ToString(decimal value)
		{
			return EnsureDecimalPlace(value.ToString(null, CultureInfo.InvariantCulture));
		}

		public static string ToString(Guid value)
		{
			return ToString(value, '"');
		}

		internal static string ToString(Guid value, char quoteChar)
		{
			string text = value.ToString("D", CultureInfo.InvariantCulture);
			string text2 = quoteChar.ToString(CultureInfo.InvariantCulture);
			return text2 + text + text2;
		}

		public static string ToString(TimeSpan value)
		{
			return ToString(value, '"');
		}

		internal static string ToString(TimeSpan value, char quoteChar)
		{
			return ToString(value.ToString(), quoteChar);
		}

		public static string ToString(Uri? value)
		{
			if (value == null)
			{
				return Null;
			}
			return ToString(value, '"');
		}

		internal static string ToString(Uri value, char quoteChar)
		{
			return ToString(value.OriginalString, quoteChar);
		}

		public static string ToString(string? value)
		{
			return ToString(value, '"');
		}

		public static string ToString(string? value, char delimiter)
		{
			return ToString(value, delimiter, StringEscapeHandling.Default);
		}

		public static string ToString(string? value, char delimiter, StringEscapeHandling stringEscapeHandling)
		{
			if (delimiter != '"' && delimiter != '\'')
			{
				throw new ArgumentException("Delimiter must be a single or double quote.", "delimiter");
			}
			return JavaScriptUtils.ToEscapedJavaScriptString(value, delimiter, appendDelimiters: true, stringEscapeHandling);
		}

		public static string ToString(object? value)
		{
			if (value == null)
			{
				return Null;
			}
			return ConvertUtils.GetTypeCode(value.GetType()) switch
			{
				PrimitiveTypeCode.String => ToString((string)value), 
				PrimitiveTypeCode.Char => ToString((char)value), 
				PrimitiveTypeCode.Boolean => ToString((bool)value), 
				PrimitiveTypeCode.SByte => ToString((sbyte)value), 
				PrimitiveTypeCode.Int16 => ToString((short)value), 
				PrimitiveTypeCode.UInt16 => ToString((ushort)value), 
				PrimitiveTypeCode.Int32 => ToString((int)value), 
				PrimitiveTypeCode.Byte => ToString((byte)value), 
				PrimitiveTypeCode.UInt32 => ToString((uint)value), 
				PrimitiveTypeCode.Int64 => ToString((long)value), 
				PrimitiveTypeCode.UInt64 => ToString((ulong)value), 
				PrimitiveTypeCode.Single => ToString((float)value), 
				PrimitiveTypeCode.Double => ToString((double)value), 
				PrimitiveTypeCode.DateTime => ToString((DateTime)value), 
				PrimitiveTypeCode.Decimal => ToString((decimal)value), 
				PrimitiveTypeCode.DBNull => Null, 
				PrimitiveTypeCode.DateTimeOffset => ToString((DateTimeOffset)value), 
				PrimitiveTypeCode.Guid => ToString((Guid)value), 
				PrimitiveTypeCode.Uri => ToString((Uri)value), 
				PrimitiveTypeCode.TimeSpan => ToString((TimeSpan)value), 
				PrimitiveTypeCode.BigInteger => ToStringInternal((BigInteger)value), 
				_ => throw new ArgumentException("Unsupported type: {0}. Use the JsonSerializer class to get the object's JSON representation.".FormatWith(CultureInfo.InvariantCulture, value.GetType())), 
			};
		}

		[DebuggerStepThrough]
		public static string SerializeObject(object? value)
		{
			return SerializeObject(value, (Type?)null, (JsonSerializerSettings?)null);
		}

		[DebuggerStepThrough]
		public static string SerializeObject(object? value, Formatting formatting)
		{
			return SerializeObject(value, formatting, (JsonSerializerSettings?)null);
		}

		[DebuggerStepThrough]
		public static string SerializeObject(object? value, params JsonConverter[] converters)
		{
			JsonSerializerSettings settings = ((converters != null && converters.Length != 0) ? new JsonSerializerSettings
			{
				Converters = converters
			} : null);
			return SerializeObject(value, null, settings);
		}

		[DebuggerStepThrough]
		public static string SerializeObject(object? value, Formatting formatting, params JsonConverter[] converters)
		{
			JsonSerializerSettings settings = ((converters != null && converters.Length != 0) ? new JsonSerializerSettings
			{
				Converters = converters
			} : null);
			return SerializeObject(value, null, formatting, settings);
		}

		[DebuggerStepThrough]
		public static string SerializeObject(object? value, JsonSerializerSettings? settings)
		{
			return SerializeObject(value, null, settings);
		}

		[DebuggerStepThrough]
		public static string SerializeObject(object? value, Type? type, JsonSerializerSettings? settings)
		{
			JsonSerializer jsonSerializer = JsonSerializer.CreateDefault(settings);
			return SerializeObjectInternal(value, type, jsonSerializer);
		}

		[DebuggerStepThrough]
		public static string SerializeObject(object? value, Formatting formatting, JsonSerializerSettings? settings)
		{
			return SerializeObject(value, null, formatting, settings);
		}

		[DebuggerStepThrough]
		public static string SerializeObject(object? value, Type? type, Formatting formatting, JsonSerializerSettings? settings)
		{
			JsonSerializer jsonSerializer = JsonSerializer.CreateDefault(settings);
			jsonSerializer.Formatting = formatting;
			return SerializeObjectInternal(value, type, jsonSerializer);
		}

		private static string SerializeObjectInternal(object? value, Type? type, JsonSerializer jsonSerializer)
		{
			StringWriter stringWriter = new StringWriter(new StringBuilder(256), CultureInfo.InvariantCulture);
			using (JsonTextWriter jsonTextWriter = new JsonTextWriter(stringWriter))
			{
				jsonTextWriter.Formatting = jsonSerializer.Formatting;
				jsonSerializer.Serialize(jsonTextWriter, value, type);
			}
			return stringWriter.ToString();
		}

		[DebuggerStepThrough]
		public static object? DeserializeObject(string value)
		{
			return DeserializeObject(value, (Type?)null, (JsonSerializerSettings?)null);
		}

		[DebuggerStepThrough]
		public static object? DeserializeObject(string value, JsonSerializerSettings settings)
		{
			return DeserializeObject(value, null, settings);
		}

		[DebuggerStepThrough]
		public static object? DeserializeObject(string value, Type type)
		{
			return DeserializeObject(value, type, (JsonSerializerSettings?)null);
		}

		[DebuggerStepThrough]
		public static T? DeserializeObject<T>(string value)
		{
			return JsonConvert.DeserializeObject<T>(value, (JsonSerializerSettings?)null);
		}

		[DebuggerStepThrough]
		public static T? DeserializeAnonymousType<T>(string value, T anonymousTypeObject)
		{
			return DeserializeObject<T>(value);
		}

		[DebuggerStepThrough]
		public static T? DeserializeAnonymousType<T>(string value, T anonymousTypeObject, JsonSerializerSettings settings)
		{
			return DeserializeObject<T>(value, settings);
		}

		[DebuggerStepThrough]
		public static T? DeserializeObject<T>(string value, params JsonConverter[] converters)
		{
			return (T)DeserializeObject(value, typeof(T), converters);
		}

		[DebuggerStepThrough]
		public static T? DeserializeObject<T>(string value, JsonSerializerSettings? settings)
		{
			return (T)DeserializeObject(value, typeof(T), settings);
		}

		[DebuggerStepThrough]
		public static object? DeserializeObject(string value, Type type, params JsonConverter[] converters)
		{
			JsonSerializerSettings settings = ((converters != null && converters.Length != 0) ? new JsonSerializerSettings
			{
				Converters = converters
			} : null);
			return DeserializeObject(value, type, settings);
		}

		public static object? DeserializeObject(string value, Type? type, JsonSerializerSettings? settings)
		{
			ValidationUtils.ArgumentNotNull(value, "value");
			JsonSerializer jsonSerializer = JsonSerializer.CreateDefault(settings);
			if (!jsonSerializer.IsCheckAdditionalContentSet())
			{
				jsonSerializer.CheckAdditionalContent = true;
			}
			using JsonTextReader reader = new JsonTextReader(new StringReader(value));
			return jsonSerializer.Deserialize(reader, type);
		}

		[DebuggerStepThrough]
		public static void PopulateObject(string value, object target)
		{
			PopulateObject(value, target, null);
		}

		public static void PopulateObject(string value, object target, JsonSerializerSettings? settings)
		{
			JsonSerializer jsonSerializer = JsonSerializer.CreateDefault(settings);
			using JsonReader jsonReader = new JsonTextReader(new StringReader(value));
			jsonSerializer.Populate(jsonReader, target);
			if (settings == null || !settings.CheckAdditionalContent)
			{
				return;
			}
			while (jsonReader.Read())
			{
				if (jsonReader.TokenType != JsonToken.Comment)
				{
					throw JsonSerializationException.Create(jsonReader, "Additional text found in JSON string after finishing deserializing object.");
				}
			}
		}

		public static string SerializeXmlNode(XmlNode? node)
		{
			return SerializeXmlNode(node, Formatting.None);
		}

		public static string SerializeXmlNode(XmlNode? node, Formatting formatting)
		{
			XmlNodeConverter xmlNodeConverter = new XmlNodeConverter();
			return SerializeObject(node, formatting, xmlNodeConverter);
		}

		public static string SerializeXmlNode(XmlNode? node, Formatting formatting, bool omitRootObject)
		{
			XmlNodeConverter xmlNodeConverter = new XmlNodeConverter
			{
				OmitRootObject = omitRootObject
			};
			return SerializeObject(node, formatting, xmlNodeConverter);
		}

		public static XmlDocument? DeserializeXmlNode(string value)
		{
			return DeserializeXmlNode(value, null);
		}

		public static XmlDocument? DeserializeXmlNode(string value, string? deserializeRootElementName)
		{
			return DeserializeXmlNode(value, deserializeRootElementName, writeArrayAttribute: false);
		}

		public static XmlDocument? DeserializeXmlNode(string value, string? deserializeRootElementName, bool writeArrayAttribute)
		{
			return DeserializeXmlNode(value, deserializeRootElementName, writeArrayAttribute, encodeSpecialCharacters: false);
		}

		public static XmlDocument? DeserializeXmlNode(string value, string? deserializeRootElementName, bool writeArrayAttribute, bool encodeSpecialCharacters)
		{
			XmlNodeConverter xmlNodeConverter = new XmlNodeConverter();
			xmlNodeConverter.DeserializeRootElementName = deserializeRootElementName;
			xmlNodeConverter.WriteArrayAttribute = writeArrayAttribute;
			xmlNodeConverter.EncodeSpecialCharacters = encodeSpecialCharacters;
			return (XmlDocument)DeserializeObject(value, typeof(XmlDocument), xmlNodeConverter);
		}

		public static string SerializeXNode(XObject? node)
		{
			return SerializeXNode(node, Formatting.None);
		}

		public static string SerializeXNode(XObject? node, Formatting formatting)
		{
			return SerializeXNode(node, formatting, omitRootObject: false);
		}

		public static string SerializeXNode(XObject? node, Formatting formatting, bool omitRootObject)
		{
			XmlNodeConverter xmlNodeConverter = new XmlNodeConverter
			{
				OmitRootObject = omitRootObject
			};
			return SerializeObject(node, formatting, xmlNodeConverter);
		}

		public static XDocument? DeserializeXNode(string value)
		{
			return DeserializeXNode(value, null);
		}

		public static XDocument? DeserializeXNode(string value, string? deserializeRootElementName)
		{
			return DeserializeXNode(value, deserializeRootElementName, writeArrayAttribute: false);
		}

		public static XDocument? DeserializeXNode(string value, string? deserializeRootElementName, bool writeArrayAttribute)
		{
			return DeserializeXNode(value, deserializeRootElementName, writeArrayAttribute, encodeSpecialCharacters: false);
		}

		public static XDocument? DeserializeXNode(string value, string? deserializeRootElementName, bool writeArrayAttribute, bool encodeSpecialCharacters)
		{
			XmlNodeConverter xmlNodeConverter = new XmlNodeConverter();
			xmlNodeConverter.DeserializeRootElementName = deserializeRootElementName;
			xmlNodeConverter.WriteArrayAttribute = writeArrayAttribute;
			xmlNodeConverter.EncodeSpecialCharacters = encodeSpecialCharacters;
			return (XDocument)DeserializeObject(value, typeof(XDocument), xmlNodeConverter);
		}
	}
	public abstract class JsonConverter
	{
		public virtual bool CanRead => true;

		public virtual bool CanWrite => true;

		public abstract void WriteJson(JsonWriter writer, object? value, JsonSerializer serializer);

		public abstract object? ReadJson(JsonReader reader, Type objectType, object? existingValue, JsonSerializer serializer);

		public abstract bool CanConvert(Type objectType);
	}
	public abstract class JsonConverter<T> : JsonConverter
	{
		public sealed override void WriteJson(JsonWriter writer, object? value, JsonSerializer serializer)
		{
			if (!((value != null) ? (value is T) : ReflectionUtils.IsNullable(typeof(T))))
			{
				throw new JsonSerializationException("Converter cannot write specified value to JSON. {0} is required.".FormatWith(CultureInfo.InvariantCulture, typeof(T)));
			}
			WriteJson(writer, (T)value, serializer);
		}

		public abstract void WriteJson(JsonWriter writer, T? value, JsonSerializer serializer);

		public sealed override object? ReadJson(JsonReader reader, Type objectType, object? existingValue, JsonSerializer serializer)
		{
			bool flag = existingValue == null;
			if (!flag && !(existingValue is T))
			{
				throw new JsonSerializationException("Converter cannot read JSON with the specified existing value. {0} is required.".FormatWith(CultureInfo.InvariantCulture, typeof(T)));
			}
			return ReadJson(reader, objectType, flag ? default(T) : ((T)existingValue), !flag, serializer);
		}

		public abstract T? ReadJson(JsonReader reader, Type objectType, T? existingValue, bool hasExistingValue, JsonSerializer serializer);

		public sealed override bool CanConvert(Type objectType)
		{
			return typeof(T).IsAssignableFrom(objectType);
		}
	}
	[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Interface | AttributeTargets.Parameter, AllowMultiple = false)]
	public sealed class JsonConverterAttribute : Attribute
	{
		private readonly Type _converterType;

		public Type ConverterType => _converterType;

		public object[]? ConverterParameters { get; }

		public JsonConverterAttribute(Type converterType)
		{
			if (converterType == null)
			{
				throw new ArgumentNullException("converterType");
			}
			_converterType = converterType;
		}

		public JsonConverterAttribute(Type converterType, params object[] converterParameters)
			: this(converterType)
		{
			ConverterParameters = converterParameters;
		}
	}
	public class JsonConverterCollection : Collection<JsonConverter>
	{
	}
	[AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface, AllowMultiple = false)]
	public sealed class JsonDictionaryAttribute : JsonContainerAttribute
	{
		public JsonDictionaryAttribute()
		{
		}

		public JsonDictionaryAttribute(string id)
			: base(id)
		{
		}
	}
	[Serializable]
	public class JsonException : Exception
	{
		public JsonException()
		{
		}

		public JsonException(string message)
			: base(message)
		{
		}

		public JsonException(string message, Exception? innerException)
			: base(message, innerException)
		{
		}

		public JsonException(SerializationInfo info, StreamingContext context)
			: base(info, context)
		{
		}

		internal static JsonException Create(IJsonLineInfo lineInfo, string path, string message)
		{
			message = JsonPosition.FormatMessage(lineInfo, path, message);
			return new JsonException(message);
		}
	}
	[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false)]
	public class JsonExtensionDataAttribute : Attribute
	{
		public bool WriteData { get; set; }

		public bool ReadData { get; set; }

		public JsonExtensionDataAttribute()
		{
			WriteData = true;
			ReadData = true;
		}
	}
	[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false)]
	public sealed class JsonIgnoreAttribute : Attribute
	{
	}
	public abstract class JsonNameTable
	{
		public abstract string? Get(char[] key, int start, int length);
	}
	[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Interface, AllowMultiple = false)]
	public sealed class JsonObjectAttribute : JsonContainerAttribute
	{
		private MemberSerialization _memberSerialization;

		internal MissingMemberHandling? _missingMemberHandling;

		internal Required? _itemRequired;

		internal NullValueHandling? _itemNullValueHandling;

		public MemberSerialization MemberSerialization
		{
			get
			{
				return _memberSerialization;
			}
			set
			{
				_memberSerialization = value;
			}
		}

		public MissingMemberHandling MissingMemberHandling
		{
			get
			{
				return _missingMemberHandling.GetValueOrDefault();
			}
			set
			{
				_missingMemberHandling = value;
			}
		}

		public NullValueHandling ItemNullValueHandling
		{
			get
			{
				return _itemNullValueHandling.GetValueOrDefault();
			}
			set
			{
				_itemNullValueHandling = value;
			}
		}

		public Required ItemRequired
		{
			get
			{
				return _itemRequired.GetValueOrDefault();
			}
			set
			{
				_itemRequired = value;
			}
		}

		public JsonObjectAttribute()
		{
		}

		public JsonObjectAttribute(MemberSerialization memberSerialization)
		{
			MemberSerialization = memberSerialization;
		}

		public JsonObjectAttribute(string id)
			: base(id)
		{
		}
	}
	internal enum JsonContainerType
	{
		None,
		Object,
		Array,
		Constructor
	}
	internal struct JsonPosition
	{
		private static readonly char[] SpecialCharacters = new char[18]
		{
			'.', ' ', '\'', '/', '"', '[', ']', '(', ')', '\t',
			'\n', '\r', '\f', '\b', '\\', '\u0085', '\u2028', '\u2029'
		};

		internal JsonContainerType Type;

		internal int Position;

		internal string? PropertyName;

		internal bool HasIndex;

		public JsonPosition(JsonContainerType type)
		{
			Type = type;
			HasIndex = TypeHasIndex(type);
			Position = -1;
			PropertyName = null;
		}

		internal int CalculateLength()
		{
			switch (Type)
			{
			case JsonContainerType.Object:
				return PropertyName.Length + 5;
			case JsonContainerType.Array:
			case JsonContainerType.Constructor:
				return MathUtils.IntLength((ulong)Position) + 2;
			default:
				throw new ArgumentOutOfRangeException("Type");
			}
		}

		internal void WriteTo(StringBuilder sb, ref StringWriter? writer, ref char[]? buffer)
		{
			switch (Type)
			{
			case JsonContainerType.Object:
			{
				string propertyName = PropertyName;
				if (propertyName.IndexOfAny(SpecialCharacters) != -1)
				{
					sb.Append("['");
					if (writer == null)
					{
						writer = new StringWriter(sb);
					}
					JavaScriptUtils.WriteEscapedJavaScriptString(writer, propertyName, '\'', appendDelimiters: false, JavaScriptUtils.SingleQuoteCharEscapeFlags, StringEscapeHandling.Default, null, ref buffer);
					sb.Append("']");
				}
				else
				{
					if (sb.Length > 0)
					{
						sb.Append('.');
					}
					sb.Append(propertyName);
				}
				break;
			}
			case JsonContainerType.Array:
			case JsonContainerType.Constructor:
				sb.Append('[');
				sb.Append(Position);
				sb.Append(']');
				break;
			}
		}

		internal static bool TypeHasIndex(JsonContainerType type)
		{
			if (type != JsonContainerType.Array)
			{
				return type == JsonContainerType.Constructor;
			}
			return true;
		}

		internal static string BuildPath(List<JsonPosition> positions, JsonPosition? currentPosition)
		{
			int num = 0;
			if (positions != null)
			{
				for (int i = 0; i < positions.Count; i++)
				{
					num += positions[i].CalculateLength();
				}
			}
			if (currentPosition.HasValue)
			{
				num += currentPosition.GetValueOrDefault().CalculateLength();
			}
			StringBuilder stringBuilder = new StringBuilder(num);
			StringWriter writer = null;
			char[] buffer = null;
			if (positions != null)
			{
				foreach (JsonPosition position in positions)
				{
					position.WriteTo(stringBuilder, ref writer, ref buffer);
				}
			}
			currentPosition?.WriteTo(stringBuilder, ref writer, ref buffer);
			return stringBuilder.ToString();
		}

		internal static string FormatMessage(IJsonLineInfo? lineInfo, string path, string message)
		{
			if (!message.EndsWith(Environment.NewLine, StringComparison.Ordinal))
			{
				message = message.Trim();
				if (!message.EndsWith('.'))
				{
					message += ".";
				}
				message += " ";
			}
			message += "Path '{0}'".FormatWith(CultureInfo.InvariantCulture, path);
			if (lineInfo != null && lineInfo.HasLineInfo())
			{
				message += ", line {0}, position {1}".FormatWith(CultureInfo.InvariantCulture, lineInfo.LineNumber, lineInfo.LinePosition);
			}
			message += ".";
			return message;
		}
	}
	[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter, AllowMultiple = false)]
	public sealed class JsonPropertyAttribute : Attribute
	{
		internal NullValueHandling? _nullValueHandling;

		internal DefaultValueHandling? _defaultValueHandling;

		internal ReferenceLoopHandling? _referenceLoopHandling;

		internal ObjectCreationHandling? _objectCreationHandling;

		internal TypeNameHandling? _typeNameHandling;

		internal bool? _isReference;

		internal int? _order;

		internal Required? _required;

		internal bool? _itemIsReference;

		internal ReferenceLoopHandling? _itemReferenceLoopHandling;

		internal TypeNameHandling? _itemTypeNameHandling;

		public Type? ItemConverterType { get; set; }

		public object[]? ItemConverterParameters { get; set; }

		public Type? NamingStrategyType { get; set; }

		public object[]? NamingStrategyParameters { get; set; }

		public NullValueHandling NullValueHandling
		{
			get
			{
				return _nullValueHandling.GetValueOrDefault();
			}
			set
			{
				_nullValueHandling = value;
			}
		}

		public DefaultValueHandling DefaultValueHandling
		{
			get
			{
				return _defaultValueHandling.GetValueOrDefault();
			}
			set
			{
				_defaultValueHandling = value;
			}
		}

		public ReferenceLoopHandling ReferenceLoopHandling
		{
			get
			{
				return _referenceLoopHandling.GetValueOrDefault();
			}
			set
			{
				_referenceLoopHandling = value;
			}
		}

		public ObjectCreationHandling ObjectCreationHandling
		{
			get
			{
				return _objectCreationHandling.GetValueOrDefault();
			}
			set
			{
				_objectCreationHandling = value;
			}
		}

		public TypeNameHandling TypeNameHandling
		{
			get
			{
				return _typeNameHandling.GetValueOrDefault();
			}
			set
			{
				_typeNameHandling = value;
			}
		}

		public bool IsReference
		{
			get
			{
				return _isReference.GetValueOrDefault();
			}
			set
			{
				_isReference = value;
			}
		}

		public int Order
		{
			get
			{
				return _order.GetValueOrDefault();
			}
			set
			{
				_order = value;
			}
		}

		public Required Required
		{
			get
			{
				return _required.GetValueOrDefault();
			}
			set
			{
				_required = value;
			}
		}

		public string? PropertyName { get; set; }

		public ReferenceLoopHandling ItemReferenceLoopHandling
		{
			get
			{
				return _itemReferenceLoopHandling.GetValueOrDefault();
			}
			set
			{
				_itemReferenceLoopHandling = value;
			}
		}

		public TypeNameHandling ItemTypeNameHandling
		{
			get
			{
				return _itemTypeNameHandling.GetValueOrDefault();
			}
			set
			{
				_itemTypeNameHandling = value;
			}
		}

		public bool ItemIsReference
		{
			get
			{
				return _itemIsReference.GetValueOrDefault();
			}
			set
			{
				_itemIsReference = value;
			}
		}

		public JsonPropertyAttribute()
		{
		}

		public JsonPropertyAttribute(string propertyName)
		{
			PropertyName = propertyName;
		}
	}
	public abstract class JsonReader : IAsyncDisposable, IDisposable
	{
		protected internal enum State
		{
			Start,
			Complete,
			Property,
			ObjectStart,
			Object,
			ArrayStart,
			Array,
			Closed,
			PostValue,
			ConstructorStart,
			Constructor,
			Error,
			Finished
		}

		private JsonToken _tokenType;

		private object? _value;

		internal char _quoteChar;

		internal State _currentState;

		private JsonPosition _currentPosition;

		private CultureInfo? _culture;

		private DateTimeZoneHandling _dateTimeZoneHandling;

		private int? _maxDepth;

		private bool _hasExceededMaxDepth;

		internal DateParseHandling _dateParseHandling;

		internal FloatParseHandling _floatParseHandling;

		private string? _dateFormatString;

		private List<JsonPosition>? _stack;

		protected State CurrentState => _currentState;

		public bool CloseInput { get; set; }

		public bool SupportMultipleContent { get; set; }

		public virtual char QuoteChar
		{
			get
			{
				return _quoteChar;
			}
			protected internal set
			{
				_quoteChar = value;
			}
		}

		public DateTimeZoneHandling DateTimeZoneHandling
		{
			get
			{
				return _dateTimeZoneHandling;
			}
			set
			{
				if (value < DateTimeZoneHandling.Local || value > DateTimeZoneHandling.RoundtripKind)
				{
					throw new ArgumentOutOfRangeException("value");
				}
				_dateTimeZoneHandling = value;
			}
		}

		public DateParseHandling DateParseHandling
		{
			get
			{
				return _dateParseHandling;
			}
			set
			{
				if (value < DateParseHandling.None || value > DateParseHandling.DateTimeOffset)
				{
					throw new ArgumentOutOfRangeException("value");
				}
				_dateParseHandling = value;
			}
		}

		public FloatParseHandling FloatParseHandling
		{
			get
			{
				return _floatParseHandling;
			}
			set
			{
				if (value < FloatParseHandling.Double || value > FloatParseHandling.Decimal)
				{
					throw new ArgumentOutOfRangeException("value");
				}
				_floatParseHandling = value;
			}
		}

		public string? DateFormatString
		{
			get
			{
				return _dateFormatString;
			}
			set
			{
				_dateFormatString = value;
			}
		}

		public int? MaxDepth
		{
			get
			{
				return _maxDepth;
			}
			set
			{
				if (value <= 0)
				{
					throw new ArgumentException("Value must be positive.", "value");
				}
				_maxDepth = value;
			}
		}

		public virtual JsonToken TokenType => _tokenType;

		public virtual object? Value => _value;

		public virtual Type? ValueType => _value?.GetType();

		public virtual int Depth
		{
			get
			{
				int num = _stack?.Count ?? 0;
				if (JsonTokenUtils.IsStartToken(TokenType) || _currentPosition.Type == JsonContainerType.None)
				{
					return num;
				}
				return num + 1;
			}
		}

		public virtual string Path
		{
			get
			{
				if (_currentPosition.Type == JsonContainerType.None)
				{
					return string.Empty;
				}
				JsonPosition? currentPosition = ((_currentState != State.ArrayStart && _currentState != State.ConstructorStart && _currentState != State.ObjectStart) ? new JsonPosition?(_currentPosition) : null);
				return JsonPosition.BuildPath(_stack, currentPosition);
			}
		}

		public CultureInfo Culture
		{
			get
			{
				return _culture ?? CultureInfo.InvariantCulture;
			}
			set
			{
				_culture = value;
			}
		}

		ValueTask IAsyncDisposable.DisposeAsync()
		{
			try
			{
				Dispose(disposing: true);
				return default(ValueTask);
			}
			catch (Exception exception)
			{
				return ValueTask.FromException(exception);
			}
		}

		public virtual Task<bool> ReadAsync(CancellationToken cancellationToken = default(CancellationToken))
		{
			return cancellationToken.CancelIfRequestedAsync<bool>() ?? Read().ToAsync();
		}

		public async Task SkipAsync(CancellationToken cancellationToken = default(CancellationToken))
		{
			if (TokenType == JsonToken.PropertyName)
			{
				await ReadAsync(cancellationToken).ConfigureAwait(continueOnCapturedContext: false);
			}
			if (JsonTokenUtils.IsStartToken(TokenType))
			{
				int depth = Depth;
				while (await ReadAsync(cancellationToken).ConfigureAwait(continueOnCapturedContext: false) && depth < Depth)
				{
				}
			}
		}

		internal async Task ReaderReadAndAssertAsync(CancellationToken cancellationToken)
		{
			if (!(await ReadAsync(cancellationToken).ConfigureAwait(continueOnCapturedContext: false)))
			{
				throw CreateUnexpectedEndException();
			}
		}

		public virtual Task<bool?> ReadAsBooleanAsync(CancellationToken cancellationToken = default(CancellationToken))
		{
			return cancellationToken.CancelIfRequestedAsync<bool?>() ?? Task.FromResult(ReadAsBoolean());
		}

		public virtual Task<byte[]?> ReadAsBytesAsync(CancellationToken cancellationToken = default(CancellationToken))
		{
			return cancellationToken.CancelIfRequestedAsync<byte[]>() ?? Task.FromResult(ReadAsBytes());
		}

		internal async Task<byte[]?> ReadArrayIntoByteArrayAsync(CancellationToken cancellationToken)
		{
			List<byte> buffer = new List<byte>();
			do
			{
				if (!(await ReadAsync(cancellationToken).ConfigureAwait(continueOnCapturedContext: false)))
				{
					SetToken(JsonToken.None);
				}
			}
			while (!ReadArrayElementIntoByteArrayReportDone(buffer));
			byte[] array = buffer.ToArray();
			SetToken(JsonToken.Bytes, array, updateIndex: false);
			return array;
		}

		public virtual Task<DateTime?> ReadAsDateTimeAsync(CancellationToken cancellationToken = default(CancellationToken))
		{
			return cancellationToken.CancelIfRequestedAsync<DateTime?>() ?? Task.FromResult(ReadAsDateTime());
		}

		public virtual Task<DateTimeOffset?> ReadAsDateTimeOffsetAsync(CancellationToken cancellationToken = default(CancellationToken))
		{
			return cancellationToken.CancelIfRequestedAsync<DateTimeOffset?>() ?? Task.FromResult(ReadAsDateTimeOffset());
		}

		public virtual Task<decimal?> ReadAsDecimalAsync(CancellationToken cancellationToken = default(CancellationToken))
		{
			return cancellationToken.CancelIfRequestedAsync<decimal?>() ?? Task.FromResult(ReadAsDecimal());
		}

		public virtual Task<double?> ReadAsDoubleAsync(CancellationToken cancellationToken = default(CancellationToken))
		{
			return Task.FromResult(ReadAsDouble());
		}

		public virtual Task<int?> ReadAsInt32Async(CancellationToken cancellationToken = default(CancellationToken))
		{
			return cancellationToken.CancelIfRequestedAsync<int?>() ?? Task.FromResult(ReadAsInt32());
		}

		public virtual Task<string?> ReadAsStringAsync(CancellationToken cancellationToken = default(CancellationToken))
		{
			return cancellationToken.CancelIfRequestedAsync<string>() ?? Task.FromResult(ReadAsString());
		}

		internal async Task<bool> ReadAndMoveToContentAsync(CancellationToken cancellationToken)
		{
			bool flag = await ReadAsync(cancellationToken).ConfigureAwait(continueOnCapturedContext: false);
			if (flag)
			{
				flag = await MoveToContentAsync(cancellationToken).ConfigureAwait(continueOnCapturedContext: false);
			}
			return flag;
		}

		internal Task<bool> MoveToContentAsync(CancellationToken cancellationToken)
		{
			JsonToken tokenType = TokenType;
			if (tokenType == JsonToken.None || tokenType == JsonToken.Comment)
			{
				return MoveToContentFromNonContentAsync(cancellationToken);
			}
			return AsyncUtils.True;
		}

		private async Task<bool> MoveToContentFromNonContentAsync(CancellationToken cancellationToken)
		{
			JsonToken tokenType;
			do
			{
				if (!(await ReadAsync(cancellationToken).ConfigureAwait(continueOnCapturedContext: false)))
				{
					return false;
				}
				tokenType = TokenType;
			}
			while (tokenType == JsonToken.None || tokenType == JsonToken.Comment);
			return true;
		}

		internal JsonPosition GetPosition(int depth)
		{
			if (_stack != null && depth < _stack.Count)
			{
				return _stack[depth];
			}
			return _currentPosition;
		}

		protected JsonReader()
		{
			_currentState = State.Start;
			_dateTimeZoneHandling = DateTimeZoneHandling.RoundtripKind;
			_dateParseHandling = DateParseHandling.DateTime;
			_floatParseHandling = FloatParseHandling.Double;
			_maxDepth = 64;
			CloseInput = true;
		}

		private void Push(JsonContainerType value)
		{
			UpdateScopeWithFinishedValue();
			if (_currentPosition.Type == JsonContainerType.None)
			{
				_currentPosition = new JsonPosition(value);
				return;
			}
			if (_stack == null)
			{
				_stack = new List<JsonPosition>();
			}
			_stack.Add(_currentPosition);
			_currentPosition = new JsonPosition(value);
			if (!_maxDepth.HasValue || !(Depth + 1 > _maxDepth) || _hasExceededMaxDepth)
			{
				return;
			}
			_hasExceededMaxDepth = true;
			throw JsonReaderException.Create(this, "The reader's MaxDepth of {0} has been exceeded.".FormatWith(CultureInfo.InvariantCulture, _maxDepth));
		}

		private JsonContainerType Pop()
		{
			JsonPosition currentPosition;
			if (_stack != null && _stack.Count > 0)
			{
				currentPosition = _currentPosition;
				_currentPosition = _stack[_stack.Count - 1];
				_stack.RemoveAt(_stack.Count - 1);
			}
			else
			{
				currentPosition = _currentPosition;
				_currentPosition = default(JsonPosition);
			}
			if (_maxDepth.HasValue && Depth <= _maxDepth)
			{
				_hasExceededMaxDepth = false;
			}
			return currentPosition.Type;
		}

		private JsonContainerType Peek()
		{
			return _currentPosition.Type;
		}

		public abstract bool Read();

		public virtual int? ReadAsInt32()
		{
			JsonToken contentToken = GetContentToken();
			switch (contentToken)
			{
			case JsonToken.None:
			case JsonToken.Null:
			case JsonToken.EndArray:
				return null;
			case JsonToken.Integer:
			case JsonToken.Float:
			{
				object value = Value;
				if (value is int)
				{
					return (int)value;
				}
				int num;
				if (value is BigInteger bigInteger)
				{
					num = (int)bigInteger;
				}
				else
				{
					try
					{
						num = Convert.ToInt32(value, CultureInfo.InvariantCulture);
					}
					catch (Exception ex)
					{
						throw JsonReaderException.Create(this, "Could not convert to integer: {0}.".FormatWith(CultureInfo.InvariantCulture, value), ex);
					}
				}
				SetToken(JsonToken.Integer, num, updateIndex: false);
				return num;
			}
			case JsonToken.String:
			{
				string s = (string)Value;
				return ReadInt32String(s);
			}
			default:
				throw JsonReaderException.Create(this, "Error reading integer. Unexpected token: {0}.".FormatWith(CultureInfo.InvariantCulture, contentToken));
			}
		}

		internal int? ReadInt32String(string? s)
		{
			if (StringUtils.IsNullOrEmpty(s))
			{
				SetToken(JsonToken.Null, null, updateIndex: false);
				return null;
			}
			if (int.TryParse(s, NumberStyles.Integer, Culture, out var result))
			{
				SetToken(JsonToken.Integer, result, updateIndex: false);
				return result;
			}
			SetToken(JsonToken.String, s, updateIndex: false);
			throw JsonReaderException.Create(this, "Could not convert string to integer: {0}.".FormatWith(CultureInfo.InvariantCulture, s));
		}

		public virtual string? ReadAsString()
		{
			JsonToken contentToken = GetContentToken();
			switch (contentToken)
			{
			case JsonToken.None:
			case JsonToken.Null:
			case JsonToken.EndArray:
				return null;
			case JsonToken.String:
				return (string)Value;
			default:
				if (JsonTokenUtils.IsPrimitiveToken(contentToken))
				{
					object value = Value;
					if (value != null)
					{
						string text = ((!(value is IFormattable formattable)) ? ((value is Uri uri) ? uri.OriginalString : value.ToString()) : formattable.ToString(null, Culture));
						SetToken(JsonToken.String, text, updateIndex: false);
						return text;
					}
				}
				throw JsonReaderException.Create(this, "Error reading string. Unexpected token: {0}.".FormatWith(CultureInfo.InvariantCulture, contentToken));
			}
		}

		public virtual byte[]? ReadAsBytes()
		{
			JsonToken contentToken = GetContentToken();
			switch (contentToken)
			{
			case JsonToken.StartObject:
			{
				ReadIntoWrappedTypeObject();
				byte[] array2 = ReadAsBytes();
				ReaderReadAndAssert();
				if (TokenType != JsonToken.EndObject)
				{
					throw JsonReaderException.Create(this, "Error reading bytes. Unexpected token: {0}.".FormatWith(CultureInfo.InvariantCulture, TokenType));
				}
				SetToken(JsonToken.Bytes, array2, updateIndex: false);
				return array2;
			}
			case JsonToken.String:
			{
				string text = (string)Value;
				Guid g;
				byte[] array3 = ((text.Length == 0) ? CollectionUtils.ArrayEmpty<byte>() : ((!ConvertUtils.TryConvertGuid(text, out g)) ? Convert.FromBase64String(text) : g.ToByteArray()));
				SetToken(JsonToken.Bytes, array3, updateIndex: false);
				return array3;
			}
			case JsonToken.None:
			case JsonToken.Null:
			case JsonToken.EndArray:
				return null;
			case JsonToken.Bytes:
				if (Value is Guid guid)
				{
					byte[] array = guid.ToByteArray();
					SetToken(JsonToken.Bytes, array, updateIndex: false);
					return array;
				}
				return (byte[])Value;
			case JsonToken.StartArray:
				return ReadArrayIntoByteArray();
			default:
				throw JsonReaderException.Create(this, "Error reading bytes. Unexpected token: {0}.".FormatWith(CultureInfo.InvariantCulture, contentToken));
			}
		}

		internal byte[] ReadArrayIntoByteArray()
		{
			List<byte> list = new List<byte>();
			do
			{
				if (!Read())
				{
					SetToken(JsonToken.None);
				}
			}
			while (!ReadArrayElementIntoByteArrayReportDone(list));
			byte[] array = list.ToArray();
			SetToken(JsonToken.Bytes, array, updateIndex: false);
			return array;
		}

		private bool ReadArrayElementIntoByteArrayReportDone(List<byte> buffer)
		{
			switch (TokenType)
			{
			case JsonToken.None:
				throw JsonReaderException.Create(this, "Unexpected end when reading bytes.");
			case JsonToken.Integer:
				buffer.Add(Convert.ToByte(Value, CultureInfo.InvariantCulture));
				return false;
			case JsonToken.EndArray:
				return true;
			case JsonToken.Comment:
				return false;
			default:
				throw JsonReaderException.Create(this, "Unexpected token when reading bytes: {0}.".FormatWith(CultureInfo.InvariantCulture, TokenType));
			}
		}

		public virtual double? ReadAsDouble()
		{
			JsonToken contentToken = GetContentToken();
			switch (contentToken)
			{
			case JsonToken.None:
			case JsonToken.Null:
			case JsonToken.EndArray:
				return null;
			case JsonToken.Integer:
			case JsonToken.Float:
			{
				object value = Value;
				if (value is double)
				{
					return (double)value;
				}
				double num = ((!(value is BigInteger bigInteger)) ? Convert.ToDouble(value, CultureInfo.InvariantCulture) : ((double)bigInteger));
				SetToken(JsonToken.Float, num, updateIndex: false);
				return num;
			}
			case JsonToken.String:
				return ReadDoubleString((string)Value);
			default:
				throw JsonReaderException.Create(this, "Error reading double. Unexpected token: {0}.".FormatWith(CultureInfo.InvariantCulture, contentToken));
			}
		}

		internal double? ReadDoubleString(string? s)
		{
			if (StringUtils.IsNullOrEmpty(s))
			{
				SetToken(JsonToken.Null, null, updateIndex: false);
				return null;
			}
			if (double.TryParse(s, NumberStyles.Float | NumberStyles.AllowThousands, Culture, out var result))
			{
				SetToken(JsonToken.Float, result, updateIndex: false);
				return result;
			}
			SetToken(JsonToken.String, s, updateIndex: false);
			throw JsonReaderException.Create(this, "Could not convert string to double: {0}.".FormatWith(CultureInfo.InvariantCulture, s));
		}

		public virtual bool? ReadAsBoolean()
		{
			JsonToken contentToken = GetContentToken();
			switch (contentToken)
			{
			case JsonToken.None:
			case JsonToken.Null:
			case JsonToken.EndArray:
				return null;
			case JsonToken.Integer:
			case JsonToken.Float:
			{
				bool flag = ((!(Value is BigInteger bigInteger)) ? Convert.ToBoolean(Value, CultureInfo.InvariantCulture) : (bigInteger != 0L));
				SetToken(JsonToken.Boolean, flag, updateIndex: false);
				return flag;
			}
			case JsonToken.String:
				return ReadBooleanString((string)Value);
			case JsonToken.Boolean:
				return (bool)Value;
			default:
				throw JsonReaderException.Create(this, "Error reading boolean. Unexpected token: {0}.".FormatWith(CultureInfo.InvariantCulture, contentToken));
			}
		}

		internal bool? ReadBooleanString(string? s)
		{
			if (StringUtils.IsNullOrEmpty(s))
			{
				SetToken(JsonToken.Null, null, updateIndex: false);
				return null;
			}
			if (bool.TryParse(s, out var result))
			{
				SetToken(JsonToken.Boolean, result, updateIndex: false);
				return result;
			}
			SetToken(JsonToken.String, s, updateIndex: false);
			throw JsonReaderException.Create(this, "Could not convert string to boolean: {0}.".FormatWith(CultureInfo.InvariantCulture, s));
		}

		public virtual decimal? ReadAsDecimal()
		{
			JsonToken contentToken = GetContentToken();
			switch (contentToken)
			{
			case JsonToken.None:
			case JsonToken.Null:
			case JsonToken.EndArray:
				return null;
			case JsonToken.Integer:
			case JsonToken.Float:
			{
				object value = Value;
				if (value is decimal)
				{
					return (decimal)value;
				}
				decimal num;
				if (value is BigInteger bigInteger)
				{
					num = (decimal)bigInteger;
				}
				else
				{
					try
					{
						num = Convert.ToDecimal(value, CultureInfo.InvariantCulture);
					}
					catch (Exception ex)
					{
						throw JsonReaderException.Create(this, "Could not convert to decimal: {0}.".FormatWith(CultureInfo.InvariantCulture, value), ex);
					}
				}
				SetToken(JsonToken.Float, num, updateIndex: false);
				return num;
			}
			case JsonToken.String:
				return ReadDecimalString((string)Value);
			default:
				throw JsonReaderException.Create(this, "Error reading decimal. Unexpected token: {0}.".FormatWith(CultureInfo.InvariantCulture, contentToken));
			}
		}

		internal decimal? ReadDecimalString(string? s)
		{
			if (StringUtils.IsNullOrEmpty(s))
			{
				SetToken(JsonToken.Null, null, updateIndex: false);
				return null;
			}
			if (decimal.TryParse(s, NumberStyles.Number, Culture, out var result))
			{
				SetToken(JsonToken.Float, result, updateIndex: false);
				return result;
			}
			if (ConvertUtils.DecimalTryParse(s.ToCharArray(), 0, s.Length, out result) == ParseResult.Success)
			{
				SetToken(JsonToken.Float, result, updateIndex: false);
				return result;
			}
			SetToken(JsonToken.String, s, updateIndex: false);
			throw JsonReaderException.Create(this, "Could not convert string to decimal: {0}.".FormatWith(CultureInfo.InvariantCulture, s));
		}

		public virtual DateTime? ReadAsDateTime()
		{
			switch (GetContentToken())
			{
			case JsonToken.None:
			case JsonToken.Null:
			case JsonToken.EndArray:
				return null;
			case JsonToken.Date:
				if (Value is DateTimeOffset dateTimeOffset)
				{
					SetToken(JsonToken.Date, dateTimeOffset.DateTime, updateIndex: false);
				}
				return (DateTime)Value;
			case JsonToken.String:
				return ReadDateTimeString((string)Value);
			default:
				throw JsonReaderException.Create(this, "Error reading date. Unexpected token: {0}.".FormatWith(CultureInfo.InvariantCulture, TokenType));
			}
		}

		internal DateTime? ReadDateTimeString(string? s)
		{
			if (StringUtils.IsNullOrEmpty(s))
			{
				SetToken(JsonToken.Null, null, updateIndex: false);
				return null;
			}
			if (DateTimeUtils.TryParseDateTime(s, DateTimeZoneHandling, _dateFormatString, Culture, out var dt))
			{
				dt = DateTimeUtils.EnsureDateTime(dt, DateTimeZoneHandling);
				SetToken(JsonToken.Date, dt, updateIndex: false);
				return dt;
			}
			if (DateTime.TryParse(s, Culture, DateTimeStyles.RoundtripKind, out dt))
			{
				dt = DateTimeUtils.EnsureDateTime(dt, DateTimeZoneHandling);
				SetToken(JsonToken.Date, dt, updateIndex: false);
				return dt;
			}
			throw JsonReaderException.Create(this, "Could not convert string to DateTime: {0}.".FormatWith(CultureInfo.InvariantCulture, s));
		}

		public virtual DateTimeOffset? ReadAsDateTimeOffset()
		{
			JsonToken contentToken = GetContentToken();
			switch (contentToken)
			{
			case JsonToken.None:
			case JsonToken.Null:
			case JsonToken.EndArray:
				return null;
			case JsonToken.Date:
				if (Value is DateTime dateTime)
				{
					SetToken(JsonToken.Date, new DateTimeOffset(dateTime), updateIndex: false);
				}
				return (DateTimeOffset)Value;
			case JsonToken.String:
			{
				string s = (string)Value;
				return ReadDateTimeOffsetString(s);
			}
			default:
				throw JsonReaderException.Create(this, "Error reading date. Unexpected token: {0}.".FormatWith(CultureInfo.InvariantCulture, contentToken));
			}
		}

		internal DateTimeOffset? ReadDateTimeOffsetString(string? s)
		{
			if (StringUtils.IsNullOrEmpty(s))
			{
				SetToken(JsonToken.Null, null, updateIndex: false);
				return null;
			}
			if (DateTimeUtils.TryParseDateTimeOffset(s, _dateFormatString, Culture, out var dt))
			{
				SetToken(JsonToken.Date, dt, updateIndex: false);
				return dt;
			}
			if (DateTimeOffset.TryParse(s, Culture, DateTimeStyles.RoundtripKind, out dt))
			{
				SetToken(JsonToken.Date, dt, updateIndex: false);
				return dt;
			}
			SetToken(JsonToken.String, s, updateIndex: false);
			throw JsonReaderException.Create(this, "Could not convert string to DateTimeOffset: {0}.".FormatWith(CultureInfo.InvariantCulture, s));
		}

		internal void ReaderReadAndAssert()
		{
			if (!Read())
			{
				throw CreateUnexpectedEndException();
			}
		}

		internal JsonReaderException CreateUnexpectedEndException()
		{
			return JsonReaderException.Create(this, "Unexpected end when reading JSON.");
		}

		internal void ReadIntoWrappedTypeObject()
		{
			ReaderReadAndAssert();
			if (Value != null && Value.ToString() == "$type")
			{
				ReaderReadAndAssert();
				if (Value != null && Value.ToString().StartsWith("System.Byte[]", StringComparison.Ordinal))
				{
					ReaderReadAndAssert();
					if (Value.ToString() == "$value")
					{
						return;
					}
				}
			}
			throw JsonReaderException.Create(this, "Error reading bytes. Unexpected token: {0}.".FormatWith(CultureInfo.InvariantCulture, JsonToken.StartObject));
		}

		public void Skip()
		{
			if (TokenType == JsonToken.PropertyName)
			{
				Read();
			}
			if (JsonTokenUtils.IsStartToken(TokenType))
			{
				int depth = Depth;
				while (Read() && depth < Depth)
				{
				}
			}
		}

		protected void SetToken(JsonToken newToken)
		{
			SetToken(newToken, null, updateIndex: true);
		}

		protected void SetToken(JsonToken newToken, object? value)
		{
			SetToken(newToken, value, updateIndex: true);
		}

		protected void SetToken(JsonToken newToken, object? value, bool updateIndex)
		{
			_tokenType = newToken;
			_value = value;
			switch (newToken)
			{
			case JsonToken.StartObject:
				_currentState = State.ObjectStart;
				Push(JsonContainerType.Object);
				break;
			case JsonToken.StartArray:
				_currentState = State.ArrayStart;
				Push(JsonContainerType.Array);
				break;
			case JsonToken.StartConstructor:
				_currentState = State.ConstructorStart;
				Push(JsonContainerType.Constructor);
				break;
			case JsonToken.EndObject:
				ValidateEnd(JsonToken.EndObject);
				break;
			case JsonToken.EndArray:
				ValidateEnd(JsonToken.EndArray);
				break;
			case JsonToken.EndConstructor:
				ValidateEnd(JsonToken.EndConstructor);
				break;
			case JsonToken.PropertyName:
				_currentState = State.Property;
				_currentPosition.PropertyName = (string)value;
				break;
			case JsonToken.Raw:
			case JsonToken.Integer:
			case JsonToken.Float:
			case JsonToken.String:
			case JsonToken.Boolean:
			case JsonToken.Null:
			case JsonToken.Undefined:
			case JsonToken.Date:
			case JsonToken.Bytes:
				SetPostValueState(updateIndex);
				break;
			case JsonToken.Comment:
				break;
			}
		}

		internal void SetPostValueState(bool updateIndex)
		{
			if (Peek() != 0 || SupportMultipleContent)
			{
				_currentState = State.PostValue;
			}
			else
			{
				SetFinished();
			}
			if (updateIndex)
			{
				UpdateScopeWithFinishedValue();
			}
		}

		private void UpdateScopeWithFinishedValue()
		{
			if (_currentPosition.HasIndex)
			{
				_currentPosition.Position++;
			}
		}

		private void ValidateEnd(JsonToken endToken)
		{
			JsonContainerType jsonContainerType = Pop();
			if (GetTypeForCloseToken(endToken) != jsonContainerType)
			{
				throw JsonReaderException.Create(this, "JsonToken {0} is not valid for closing JsonType {1}.".FormatWith(CultureInfo.InvariantCulture, endToken, jsonContainerType));
			}
			if (Peek() != 0 || SupportMultipleContent)
			{
				_currentState = State.PostValue;
			}
			else
			{
				SetFinished();
			}
		}

		protected void SetStateBasedOnCurrent()
		{
			JsonContainerType jsonContainerType = Peek();
			switch (jsonContainerType)
			{
			case JsonContainerType.Object:
				_currentState = State.Object;
				break;
			case JsonContainerType.Array:
				_currentState = State.Array;
				break;
			case JsonContainerType.Constructor:
				_currentState = State.Constructor;
				break;
			case JsonContainerType.None:
				SetFinished();
				break;
			default:
				throw JsonReaderException.Create(this, "While setting the reader state back to current object an unexpected JsonType was encountered: {0}".FormatWith(CultureInfo.InvariantCulture, jsonContainerType));
			}
		}

		private void SetFinished()
		{
			_currentState = ((!SupportMultipleContent) ? State.Finished : State.Start);
		}

		private JsonContainerType GetTypeForCloseToken(JsonToken token)
		{
			return token switch
			{
				JsonToken.EndObject => JsonContainerType.Object, 
				JsonToken.EndArray => JsonContainerType.Array, 
				JsonToken.EndConstructor => JsonContainerType.Constructor, 
				_ => throw JsonReaderException.Create(this, "Not a valid close JsonToken: {0}".FormatWith(CultureInfo.InvariantCulture, token)), 
			};
		}

		void IDisposable.Dispose()
		{
			Dispose(disposing: true);
			GC.SuppressFinalize(this);
		}

		protected virtual void Dispose(bool disposing)
		{
			if (_currentState != State.Closed && disposing)
			{
				Close();
			}
		}

		public virtual void Close()
		{
			_currentState = State.Closed;
			_tokenType = JsonToken.None;
			_value = null;
		}

		internal void ReadAndAssert()
		{
			if (!Read())
			{
				throw JsonSerializationException.Create(this, "Unexpected end when reading JSON.");
			}
		}

		internal void ReadForTypeAndAssert(JsonContract? contract, bool hasConverter)
		{
			if (!ReadForType(contract, hasConverter))
			{
				throw JsonSerializationException.Create(this, "Unexpected end when reading JSON.");
			}
		}

		internal bool ReadForType(JsonContract? contract, bool hasConverter)
		{
			if (hasConverter)
			{
				return Read();
			}
			switch (contract?.InternalReadType ?? ReadType.Read)
			{
			case ReadType.Read:
				return ReadAndMoveToContent();
			case ReadType.ReadAsInt32:
				ReadAsInt32();
				break;
			case ReadType.ReadAsInt64:
			{
				bool result = ReadAndMoveToContent();
				if (TokenType == JsonToken.Undefined)
				{
					throw JsonReaderException.Create(this, "An undefined token is not a valid {0}.".FormatWith(CultureInfo.InvariantCulture, contract?.UnderlyingType ?? typeof(long)));
				}
				return result;
			}
			case ReadType.ReadAsDecimal:
				ReadAsDecimal();
				break;
			case ReadType.ReadAsDouble:
				ReadAsDouble();
				break;
			case ReadType.ReadAsBytes:
				ReadAsBytes();
				break;
			case ReadType.ReadAsBoolean:
				ReadAsBoolean();
				break;
			case ReadType.ReadAsString:
				ReadAsString();
				break;
			case ReadType.ReadAsDateTime:
				ReadAsDateTime();
				break;
			case ReadType.ReadAsDateTimeOffset:
				ReadAsDateTimeOffset();
				break;
			default:
				throw new ArgumentOutOfRangeException();
			}
			return TokenType != JsonToken.None;
		}

		internal bool ReadAndMoveToContent()
		{
			if (Read())
			{
				return MoveToContent();
			}
			return false;
		}

		internal bool MoveToContent()
		{
			JsonToken tokenType = TokenType;
			while (tokenType == JsonToken.None || tokenType == JsonToken.Comment)
			{
				if (!Read())
				{
					return false;
				}
				tokenType = TokenType;
			}
			return true;
		}

		private JsonToken GetContentToken()
		{
			JsonToken tokenType;
			do
			{
				if (!Read())
				{
					SetToken(JsonToken.None);
					return JsonToken.None;
				}
				tokenType = TokenType;
			}
			while (tokenType == JsonToken.Comment);
			return tokenType;
		}
	}
	[Serializable]
	public class JsonReaderException : JsonException
	{
		public int LineNumber { get; }

		public int LinePosition { get; }

		public string? Path { get; }

		public JsonReaderException()
		{
		}

		public JsonReaderException(string message)
			: base(message)
		{
		}

		public JsonReaderException(string message, Exception innerException)
			: base(message, innerException)
		{
		}

		public JsonReaderException(SerializationInfo info, StreamingContext context)
			: base(info, context)
		{
		}

		public JsonReaderException(string message, string path, int lineNumber, int linePosition, Exception? innerException)
			: base(message, innerException)
		{
			Path = path;
			LineNumber = lineNumber;
			LinePosition = linePosition;
		}

		internal static JsonReaderException Create(JsonReader reader, string message)
		{
			return Create(reader, message, null);
		}

		internal static JsonReaderException Create(JsonReader reader, string message, Exception? ex)
		{
			return Create(reader as IJsonLineInfo, reader.Path, message, ex);
		}

		internal static JsonReaderException Create(IJsonLineInfo? lineInfo, string path, string message, Exception? ex)
		{
			message = JsonPosition.FormatMessage(lineInfo, path, message);
			int lineNumber;
			int linePosition;
			if (lineInfo != null && lineInfo.HasLineInfo())
			{
				lineNumber = lineInfo.LineNumber;
				linePosition = lineInfo.LinePosition;
			}
			else
			{
				lineNumber = 0;
				linePosition = 0;
			}
			return new JsonReaderException(message, path, lineNumber, linePosition, ex);
		}
	}
	[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false)]
	public sealed class JsonRequiredAttribute : Attribute
	{
	}
	[Serializable]
	public class JsonSerializationException : JsonException
	{
		public int LineNumber { get; }

		public int LinePosition { get; }

		public string? Path { get; }

		public JsonSerializationException()
		{
		}

		public JsonSerializationException(string message)
			: base(message)
		{
		}

		public JsonSerializationException(string message, Exception innerException)
			: base(message, innerException)
		{
		}

		public JsonSerializationException(SerializationInfo info, StreamingContext context)
			: base(info, context)
		{
		}

		public JsonSerializationException(string message, string path, int lineNumber, int linePosition, Exception? innerException)
			: base(message, innerException)
		{
			Path = path;
			LineNumber = lineNumber;
			LinePosition = linePosition;
		}

		internal static JsonSerializationException Create(JsonReader reader, string message)
		{
			return Create(reader, message, null);
		}

		internal static JsonSerializationException Create(JsonReader reader, string message, Exception? ex)
		{
			return Create(reader as IJsonLineInfo, reader.Path, message, ex);
		}

		internal static JsonSerializationException Create(IJsonLineInfo? lineInfo, string path, string message, Exception? ex)
		{
			message = JsonPosition.FormatMessage(lineInfo, path, message);
			int lineNumber;
			int linePosition;
			if (lineInfo != null && lineInfo.HasLineInfo())
			{
				lineNumber = lineInfo.LineNumber;
				linePosition = lineInfo.LinePosition;
			}
			else
			{
				lineNumber = 0;
				linePosition = 0;
			}
			return new JsonSerializationException(message, path, lineNumber, linePosition, ex);
		}
	}
	public class JsonSerializer
	{
		internal TypeNameHandling _typeNameHandling;

		internal TypeNameAssemblyFormatHandling _typeNameAssemblyFormatHandling;

		internal PreserveReferencesHandling _preserveReferencesHandling;

		internal ReferenceLoopHandling _referenceLoopHandling;

		internal MissingMemberHandling _missingMemberHandling;

		internal ObjectCreationHandling _objectCreationHandling;

		internal NullValueHandling _nullValueHandling;

		internal DefaultValueHandling _defaultValueHandling;

		internal ConstructorHandling _constructorHandling;

		internal MetadataPropertyHandling _metadataPropertyHandling;

		internal JsonConverterCollection? _converters;

		internal IContractResolver _contractResolver;

		internal ITraceWriter? _traceWriter;

		internal IEqualityComparer? _equalityComparer;

		internal ISerializationBinder _serializationBinder;

		internal StreamingContext _context;

		private IReferenceResolver? _referenceResolver;

		private Formatting? _formatting;

		private DateFormatHandling? _dateFormatHandling;

		private DateTimeZoneHandling? _dateTimeZoneHandling;

		private DateParseHandling? _dateParseHandling;

		private FloatFormatHandling? _floatFormatHandling;

		private FloatParseHandling? _floatParseHandling;

		private StringEscapeHandling? _stringEscapeHandling;

		private CultureInfo _culture;

		private int? _maxDepth;

		private bool _maxDepthSet;

		private bool? _checkAdditionalContent;

		private string? _dateFormatString;

		private bool _dateFormatStringSet;

		public virtual IReferenceResolver? ReferenceResolver
		{
			get
			{
				return GetReferenceResolver();
			}
			set
			{
				if (value == null)
				{
					throw new ArgumentNullException("value", "Reference resolver cannot be null.");
				}
				_referenceResolver = value;
			}
		}

		[Obsolete("Binder is obsolete. Use SerializationBinder instead.")]
		public virtual SerializationBinder Binder
		{
			get
			{
				if (_serializationBinder is SerializationBinder result)
				{
					return result;
				}
				if (_serializationBinder is SerializationBinderAdapter serializationBinderAdapter)
				{
					return serializationBinderAdapter.SerializationBinder;
				}
				throw new InvalidOperationException("Cannot get SerializationBinder because an ISerializationBinder was previously set.");
			}
			set
			{
				if (value == null)
				{
					throw new ArgumentNullException("value", "Serialization binder cannot be null.");
				}
				_serializationBinder = (value as ISerializationBinder) ?? new SerializationBinderAdapter(value);
			}
		}

		public virtual ISerializationBinder SerializationBinder
		{
			get
			{
				return _serializationBinder;
			}
			set
			{
				if (value == null)
				{
					throw new ArgumentNullException("value", "Serialization binder cannot be null.");
				}
				_serializationBinder = value;
			}
		}

		public virtual ITraceWriter? TraceWriter
		{
			get
			{
				return _traceWriter;
			}
			set
			{
				_traceWriter = value;
			}
		}

		public virtual IEqualityComparer? EqualityComparer
		{
			get
			{
				return _equalityComparer;
			}
			set
			{
				_equalityComparer = value;
			}
		}

		public virtual TypeNameHandling TypeNameHandling
		{
			get
			{
				return _typeNameHandling;
			}
			set
			{
				if (value < TypeNameHandling.None || value > TypeNameHandling.Auto)
				{
					throw new ArgumentOutOfRangeException("value");
				}
				_typeNameHandling = value;
			}
		}

		[Obsolete("TypeNameAssemblyFormat is obsolete. Use TypeNameAssemblyFormatHandling instead.")]
		public virtual FormatterAssemblyStyle TypeNameAssemblyFormat
		{
			get
			{
				return (FormatterAssemblyStyle)_typeNameAssemblyFormatHandling;
			}
			set
			{
				if (value < FormatterAssemblyStyle.Simple || value > FormatterAssemblyStyle.Full)
				{
					throw new ArgumentOutOfRangeException("value");
				}
				_typeNameAssemblyFormatHandling = (TypeNameAssemblyFormatHandling)value;
			}
		}

		public virtual TypeNameAssemblyFormatHandling TypeNameAssemblyFormatHandling
		{
			get
			{
				return _typeNameAssemblyFormatHandling;
			}
			set
			{
				if (value < TypeNameAssemblyFormatHandling.Simple || value > TypeNameAssemblyFormatHandling.Full)
				{
					throw new ArgumentOutOfRangeException("value");
				}
				_typeNameAssemblyFormatHandling = value;
			}
		}

		public virtual PreserveReferencesHandling PreserveReferencesHandling
		{
			get
			{
				return _preserveReferencesHandling;
			}
			set
			{
				if (value < PreserveReferencesHandling.None || value > PreserveReferencesHandling.All)
				{
					throw new ArgumentOutOfRangeException("value");
				}
				_preserveReferencesHandling = value;
			}
		}

		public virtual ReferenceLoopHandling ReferenceLoopHandling
		{
			get
			{
				return _referenceLoopHandling;
			}
			set
			{
				if (value < ReferenceLoopHandling.Error || value > ReferenceLoopHandling.Serialize)
				{
					throw new ArgumentOutOfRangeException("value");
				}
				_referenceLoopHandling = value;
			}
		}

		public virtual MissingMemberHandling MissingMemberHandling
		{
			get
			{
				return _missingMemberHandling;
			}
			set
			{
				if (value < MissingMemberHandling.Ignore || value > MissingMemberHandling.Error)
				{
					throw new ArgumentOutOfRangeException("value");
				}
				_missingMemberHandling = value;
			}
		}

		public virtual NullValueHandling NullValueHandling
		{
			get
			{
				return _nullValueHandling;
			}
			set
			{
				if (value < NullValueHandling.Include || value > NullValueHandling.Ignore)
				{
					throw new ArgumentOutOfRangeException("value");
				}
				_nullValueHandling = value;
			}
		}

		public virtual DefaultValueHandling DefaultValueHandling
		{
			get
			{
				return _defaultValueHandling;
			}
			set
			{
				if (value < DefaultValueHandling.Include || value > DefaultValueHandling.IgnoreAndPopulate)
				{
					throw new ArgumentOutOfRangeException("value");
				}
				_defaultValueHandling = value;
			}
		}

		public virtual ObjectCreationHandling ObjectCreationHandling
		{
			get
			{
				return _objectCreationHandling;
			}
			set
			{
				if (value < ObjectCreationHandling.Auto || value > ObjectCreationHandling.Replace)
				{
					throw new ArgumentOutOfRangeException("value");
				}
				_objectCreationHandling = value;
			}
		}

		public virtual ConstructorHandling ConstructorHandling
		{
			get
			{
				return _constructorHandling;
			}
			set
			{
				if (value < ConstructorHandling.Default || value > ConstructorHandling.AllowNonPublicDefaultConstructor)
				{
					throw new ArgumentOutOfRangeException("value");
				}
				_constructorHandling = value;
			}
		}

		public virtual MetadataPropertyHandling MetadataPropertyHandling
		{
			get
			{
				return _metadataPropertyHandling;
			}
			set
			{
				if (value < MetadataPropertyHandling.Default || value > MetadataPropertyHandling.Ignore)
				{
					throw new ArgumentOutOfRangeException("value");
				}
				_metadataPropertyHandling = value;
			}
		}

		public virtual JsonConverterCollection Converters
		{
			get
			{
				if (_converters == null)
				{
					_converters = new JsonConverterCollection();
				}
				return _converters;
			}
		}

		public virtual IContractResolver ContractResolver
		{
			get
			{
				return _contractResolver;
			}
			set
			{
				_contractResolver = value ?? DefaultContractResolver.Instance;
			}
		}

		public virtual StreamingContext Context
		{
			get
			{
				return _context;
			}
			set
			{
				_context = value;
			}
		}

		public virtual Formatting Formatting
		{
			get
			{
				return _formatting.GetValueOrDefault();
			}
			set
			{
				_formatting = value;
			}
		}

		public virtual DateFormatHandling DateFormatHandling
		{
			get
			{
				return _dateFormatHandling.GetValueOrDefault();
			}
			set
			{
				_dateFormatHandling = value;
			}
		}

		public virtual DateTimeZoneHandling DateTimeZoneHandling
		{
			get
			{
				return _dateTimeZoneHandling ?? DateTimeZoneHandling.RoundtripKind;
			}
			set
			{
				_dateTimeZoneHandling = value;
			}
		}

		public virtual DateParseHandling DateParseHandling
		{
			get
			{
				return _dateParseHandling ?? DateParseHandling.DateTime;
			}
			set
			{
				_dateParseHandling = value;
			}
		}

		public virtual FloatParseHandling FloatParseHandling
		{
			get
			{
				return _floatParseHandling.GetValueOrDefault();
			}
			set
			{
				_floatParseHandling = value;
			}
		}

		public virtual FloatFormatHandling FloatFormatHandling
		{
			get
			{
				return _floatFormatHandling.GetValueOrDefault();
			}
			set
			{
				_floatFormatHandling = value;
			}
		}

		public virtual StringEscapeHandling StringEscapeHandling
		{
			get
			{
				return _stringEscapeHandling.GetValueOrDefault();
			}
			set
			{
				_stringEscapeHandling = value;
			}
		}

		public virtual string DateFormatString
		{
			get
			{
				return _dateFormatString ?? "yyyy'-'MM'-'dd'T'HH':'mm':'ss.FFFFFFFK";
			}
			set
			{
				_dateFormatString = value;
				_dateFormatStringSet = true;
			}
		}

		public virtual CultureInfo Culture
		{
			get
			{
				return _culture ?? JsonSerializerSettings.DefaultCulture;
			}
			set
			{
				_culture = value;
			}
		}

		public virtual int? MaxDepth
		{
			get
			{
				return _maxDepth;
			}
			set
			{
				if (value <= 0)
				{
					throw new ArgumentException("Value must be positive.", "value");
				}
				_maxDepth = value;
				_maxDepthSet = true;
			}
		}

		public virtual bool CheckAdditionalContent
		{
			get
			{
				return _checkAdditionalContent.GetValueOrDefault();
			}
			set
			{
				_checkAdditionalContent = value;
			}
		}

		public virtual event EventHandler<ErrorEventArgs>? Error;

		internal bool IsCheckAdditionalContentSet()
		{
			return _checkAdditionalContent.HasValue;
		}

		public JsonSerializer()
		{
			_referenceLoopHandling = ReferenceLoopHandling.Error;
			_missingMemberHandling = MissingMemberHandling.Ignore;
			_nullValueHandling = NullValueHandling.Include;
			_defaultValueHandling = DefaultValueHandling.Include;
			_objectCreationHandling = ObjectCreationHandling.Auto;
			_preserveReferencesHandling = PreserveReferencesHandling.None;
			_constructorHandling = ConstructorHandling.Default;
			_typeNameHandling = TypeNameHandling.None;
			_metadataPropertyHandling = MetadataPropertyHandling.Default;
			_context = JsonSerializerSettings.DefaultContext;
			_serializationBinder = DefaultSerializationBinder.Instance;
			_culture = JsonSerializerSettings.DefaultCulture;
			_contractResolver = DefaultContractResolver.Instance;
		}

		public static JsonSerializer Create()
		{
			return new JsonSerializer();
		}

		public static JsonSerializer Create(JsonSerializerSettings? settings)
		{
			JsonSerializer jsonSerializer = Create();
			if (settings != null)
			{
				ApplySerializerSettings(jsonSerializer, settings);
			}
			return jsonSerializer;
		}

		public static JsonSerializer CreateDefault()
		{
			return Create(JsonConvert.DefaultSettings?.Invoke());
		}

		public static JsonSerializer CreateDefault(JsonSerializerSettings? settings)
		{
			JsonSerializer jsonSerializer = CreateDefault();
			if (settings != null)
			{
				ApplySerializerSettings(jsonSerializer, settings);
			}
			return jsonSerializer;
		}

		private static void ApplySerializerSettings(JsonSerializer serializer, JsonSerializerSettings settings)
		{
			if (!CollectionUtils.IsNullOrEmpty(settings.Converters))
			{
				for (int i = 0; i < settings.Converters.Count; i++)
				{
					serializer.Converters.Insert(i, settings.Converters[i]);
				}
			}
			if (settings._typeNameHandling.HasValue)
			{
				serializer.TypeNameHandling = settings.TypeNameHandling;
			}
			if (settings._metadataPropertyHandling.HasValue)
			{
				serializer.MetadataPropertyHandling = settings.MetadataPropertyHandling;
			}
			if (settings._typeNameAssemblyFormatHandling.HasValue)
			{
				serializer.TypeNameAssemblyFormatHandling = settings.TypeNameAssemblyFormatHandling;
			}
			if (settings._preserveReferencesHandling.HasValue)
			{
				serializer.PreserveReferencesHandling = settings.PreserveReferencesHandling;
			}
			if (settings._referenceLoopHandling.HasValue)
			{
				serializer.ReferenceLoopHandling = settings.ReferenceLoopHandling;
			}
			if (settings._missingMemberHandling.HasValue)
			{
				serializer.MissingMemberHandling = settings.MissingMemberHandling;
			}
			if (settings._objectCreationHandling.HasValue)
			{
				serializer.ObjectCreationHandling = settings.ObjectCreationHandling;
			}
			if (settings._nullValueHandling.HasValue)
			{
				serializer.NullValueHandling = settings.NullValueHandling;
			}
			if (settings._defaultValueHandling.HasValue)
			{
				serializer.DefaultValueHandling = settings.DefaultValueHandling;
			}
			if (settings._constructorHandling.HasValue)
			{
				serializer.ConstructorHandling = settings.ConstructorHandling;
			}
			if (settings._context.HasValue)
			{
				serializer.Context = settings.Context;
			}
			if (settings._checkAdditionalContent.HasValue)
			{
				serializer._checkAdditionalContent = settings._checkAdditionalContent;
			}
			if (settings.Error != null)
			{
				serializer.Error += settings.Error;
			}
			if (settings.ContractResolver != null)
			{
				serializer.ContractResolver = settings.ContractResolver;
			}
			if (settings.ReferenceResolverProvider != null)
			{
				serializer.ReferenceResolver = settings.ReferenceResolverProvider();
			}
			if (settings.TraceWriter != null)
			{
				serializer.TraceWriter = settings.TraceWriter;
			}
			if (settings.EqualityComparer != null)
			{
				serializer.EqualityComparer = settings.EqualityComparer;
			}
			if (settings.SerializationBinder != null)
			{
				serializer.SerializationBinder = settings.SerializationBinder;
			}
			if (settings._formatting.HasValue)
			{
				serializer._formatting = settings._formatting;
			}
			if (settings._dateFormatHandling.HasValue)
			{
				serializer._dateFormatHandling = settings._dateFormatHandling;
			}
			if (settings._dateTimeZoneHandling.HasValue)
			{
				serializer._dateTimeZoneHandling = settings._dateTimeZoneHandling;
			}
			if (settings._dateParseHandling.HasValue)
			{
				serializer._dateParseHandling = settings._dateParseHandling;
			}
			if (settings._dateFormatStringSet)
			{
				serializer._dateFormatString = settings._dateFormatString;
				serializer._dateFormatStringSet = settings._dateFormatStringSet;
			}
			if (settings._floatFormatHandling.HasValue)
			{
				serializer._floatFormatHandling = settings._floatFormatHandling;
			}
			if (settings._floatParseHandling.HasValue)
			{
				serializer._floatParseHandling = settings._floatParseHandling;
			}
			if (settings._stringEscapeHandling.HasValue)
			{
				serializer._stringEscapeHandling = settings._stringEscapeHandling;
			}
			if (settings._culture != null)
			{
				serializer._culture = settings._culture;
			}
			if (settings._maxDepthSet)
			{
				serializer._maxDepth = settings._maxDepth;
				serializer._maxDepthSet = settings._maxDepthSet;
			}
		}

		[DebuggerStepThrough]
		public void Populate(TextReader reader, object target)
		{
			Populate(new JsonTextReader(reader), target);
		}

		[DebuggerStepThrough]
		public void Populate(JsonReader reader, object target)
		{
			PopulateInternal(reader, target);
		}

		internal virtual void PopulateInternal(JsonReader reader, object target)
		{
			ValidationUtils.ArgumentNotNull(reader, "reader");
			ValidationUtils.ArgumentNotNull(target, "target");
			SetupReader(reader, out CultureInfo previousCulture, out DateTimeZoneHandling? previousDateTimeZoneHandling, out DateParseHandling? previousDateParseHandling, out FloatParseHandling? previousFloatParseHandling, out int? previousMaxDepth, out string previousDateFormatString);
			TraceJsonReader traceJsonReader = ((TraceWriter != null && TraceWriter.LevelFilter >= TraceLevel.Verbose) ? CreateTraceJsonReader(reader) : null);
			new JsonSerializerInternalReader(this).Populate(traceJsonReader ?? reader, target);
			if (traceJsonReader != null)
			{
				TraceWriter.Trace(TraceLevel.Verbose, traceJsonReader.GetDeserializedJsonMessage(), null);
			}
			ResetReader(reader, previousCulture, previousDateTimeZoneHandling, previousDateParseHandling, previousFloatParseHandling, previousMaxDepth, previousDateFormatString);
		}

		[DebuggerStepThrough]
		public object? Deserialize(JsonReader reader)
		{
			return Deserialize(reader, null);
		}

		[DebuggerStepThrough]
		public object? Deserialize(TextReader reader, Type objectType)
		{
			return Deserialize(new JsonTextReader(reader), objectType);
		}

		[DebuggerStepThrough]
		public T? Deserialize<T>(JsonReader reader)
		{
			return (T)Deserialize(reader, typeof(T));
		}

		[DebuggerStepThrough]
		public object? Deserialize(JsonReader reader, Type? objectType)
		{
			return DeserializeInternal(reader, objectType);
		}

		internal virtual object? DeserializeInternal(JsonReader reader, Type? objectType)
		{
			ValidationUtils.ArgumentNotNull(reader, "reader");
			SetupReader(reader, out CultureInfo previousCulture, out DateTimeZoneHandling? previousDateTimeZoneHandling, out DateParseHandling? previousDateParseHandling, out FloatParseHandling? previousFloatParseHandling, out int? previousMaxDepth, out string previousDateFormatString);
			TraceJsonReader traceJsonReader = ((TraceWriter != null && TraceWriter.LevelFilter >= TraceLevel.Verbose) ? CreateTraceJsonReader(reader) : null);
			object? result = new JsonSerializerInternalReader(this).Deserialize(traceJsonReader ?? reader, objectType, CheckAdditionalContent);
			if (traceJsonReader != null)
			{
				TraceWriter.Trace(TraceLevel.Verbose, traceJsonReader.GetDeserializedJsonMessage(), null);
			}
			ResetReader(reader, previousCulture, previousDateTimeZoneHandling, previousDateParseHandling, previousFloatParseHandling, previousMaxDepth, previousDateFormatString);
			return result;
		}

		internal void SetupReader(JsonReader reader, out CultureInfo? previousCulture, out DateTimeZoneHandling? previousDateTimeZoneHandling, out DateParseHandling? previousDateParseHandling, out FloatParseHandling? previousFloatParseHandling, out int? previousMaxDepth, out string? previousDateFormatString)
		{
			if (_culture != null && !_culture.Equals(reader.Culture))
			{
				previousCulture = reader.Culture;
				reader.Culture = _culture;
			}
			else
			{
				previousCulture = null;
			}
			if (_dateTimeZoneHandling.HasValue && reader.DateTimeZoneHandling != _dateTimeZoneHandling)
			{
				previousDateTimeZoneHandling = reader.DateTimeZoneHandling;
				reader.DateTimeZoneHandling = _dateTimeZoneHandling.GetValueOrDefault();
			}
			else
			{
				previousDateTimeZoneHandling = null;
			}
			if (_dateParseHandling.HasValue && reader.DateParseHandling != _dateParseHandling)
			{
				previousDateParseHandling = reader.DateParseHandling;
				reader.DateParseHandling = _dateParseHandling.GetValueOrDefault();
			}
			else
			{
				previousDateParseHandling = null;
			}
			if (_floatParseHandling.HasValue && reader.FloatParseHandling != _floatParseHandling)
			{
				previousFloatParseHandling = reader.FloatParseHandling;
				reader.FloatParseHandling = _floatParseHandling.GetValueOrDefault();
			}
			else
			{
				previousFloatParseHandling = null;
			}
			if (_maxDepthSet && reader.MaxDepth != _maxDepth)
			{
				previousMaxDepth = reader.MaxDepth;
				reader.MaxDepth = _maxDepth;
			}
			else
			{
				previousMaxDepth = null;
			}
			if (_dateFormatStringSet && reader.DateFormatString != _dateFormatString)
			{
				previousDateFormatString = reader.DateFormatString;
				reader.DateFormatString = _dateFormatString;
			}
			else
			{
				previousDateFormatString = null;
			}
			if (reader is JsonTextReader jsonTextReader && jsonTextReader.PropertyNameTable == null && _contractResolver is DefaultContractResolver defaultContractResolver)
			{
				jsonTextReader.PropertyNameTable = defaultContractResolver.GetNameTable();
			}
		}

		private void ResetReader(JsonReader reader, CultureInfo? previousCulture, DateTimeZoneHandling? previousDateTimeZoneHandling, DateParseHandling? previousDateParseHandling, FloatParseHandling? previousFloatParseHandling, int? previousMaxDepth, string? previousDateFormatString)
		{
			if (previousCulture != null)
			{
				reader.Culture = previousCulture;
			}
			if (previousDateTimeZoneHandling.HasValue)
			{
				reader.DateTimeZoneHandling = previousDateTimeZoneHandling.GetValueOrDefault();
			}
			if (previousDateParseHandling.HasValue)
			{
				reader.DateParseHandling = previousDateParseHandling.GetValueOrDefault();
			}
			if (previousFloatParseHandling.HasValue)
			{
				reader.FloatParseHandling = previousFloatParseHandling.GetValueOrDefault();
			}
			if (_maxDepthSet)
			{
				reader.MaxDepth = previousMaxDepth;
			}
			if (_dateFormatStringSet)
			{
				reader.DateFormatString = previousDateFormatString;
			}
			if (reader is JsonTextReader jsonTextReader && jsonTextReader.PropertyNameTable != null && _contractResolver is DefaultContractResolver defaultContractResolver && jsonTextReader.PropertyNameTable == defaultContractResolver.GetNameTable())
			{
				jsonTextReader.PropertyNameTable = null;
			}
		}

		public void Serialize(TextWriter textWriter, object? value)
		{
			Serialize(new JsonTextWriter(textWriter), value);
		}

		public void Serialize(JsonWriter jsonWriter, object? value, Type? objectType)
		{
			SerializeInternal(jsonWriter, value, objectType);
		}

		public void Serialize(TextWriter textWriter, object? value, Type objectType)
		{
			Serialize(new JsonTextWriter(textWriter), value, objectType);
		}

		public void Serialize(JsonWriter jsonWriter, object? value)
		{
			SerializeInternal(jsonWriter, value, null);
		}

		private TraceJsonReader CreateTraceJsonReader(JsonReader reader)
		{
			TraceJsonReader traceJsonReader = new TraceJsonReader(reader);
			if (reader.TokenType != 0)
			{
				traceJsonReader.WriteCurrentToken();
			}
			return traceJsonReader;
		}

		internal virtual void SerializeInternal(JsonWriter jsonWriter, object? value, Type? objectType)
		{
			ValidationUtils.ArgumentNotNull(jsonWriter, "jsonWriter");
			Formatting? formatting = null;
			if (_formatting.HasValue && jsonWriter.Formatting != _formatting)
			{
				formatting = jsonWriter.Formatting;
				jsonWriter.Formatting = _formatting.GetValueOrDefault();
			}
			DateFormatHandling? dateFormatHandling = null;
			if (_dateFormatHandling.HasValue && jsonWriter.DateFormatHandling != _dateFormatHandling)
			{
				dateFormatHandling = jsonWriter.DateFormatHandling;
				jsonWriter.DateFormatHandling = _dateFormatHandling.GetValueOrDefault();
			}
			DateTimeZoneHandling? dateTimeZoneHandling = null;
			if (_dateTimeZoneHandling.HasValue && jsonWriter.DateTimeZoneHandling != _dateTimeZoneHandling)
			{
				dateTimeZoneHandling = jsonWriter.DateTimeZoneHandling;
				jsonWriter.DateTimeZoneHandling = _dateTimeZoneHandling.GetValueOrDefault();
			}
			FloatFormatHandling? floatFormatHandling = null;
			if (_floatFormatHandling.HasValue && jsonWriter.FloatFormatHandling != _floatFormatHandling)
			{
				floatFormatHandling = jsonWriter.FloatFormatHandling;
				jsonWriter.FloatFormatHandling = _floatFormatHandling.GetValueOrDefault();
			}
			StringEscapeHandling? stringEscapeHandling = null;
			if (_stringEscapeHandling.HasValue && jsonWriter.StringEscapeHandling != _stringEscapeHandling)
			{
				stringEscapeHandling = jsonWriter.StringEscapeHandling;
				jsonWriter.StringEscapeHandling = _stringEscapeHandling.GetValueOrDefault();
			}
			CultureInfo cultureInfo = null;
			if (_culture != null && !_culture.Equals(jsonWriter.Culture))
			{
				cultureInfo = jsonWriter.Culture;
				jsonWriter.Culture = _culture;
			}
			string dateFormatString = null;
			if (_dateFormatStringSet && jsonWriter.DateFormatString != _dateFormatString)
			{
				dateFormatString = jsonWriter.DateFormatString;
				jsonWriter.DateFormatString = _dateFormatString;
			}
			TraceJsonWriter traceJsonWriter = ((TraceWriter != null && TraceWriter.LevelFilter >= TraceLevel.Verbose) ? new TraceJsonWriter(jsonWriter) : null);
			new JsonSerializerInternalWriter(this).Serialize(traceJsonWriter ?? jsonWriter, value, objectType);
			if (traceJsonWriter != null)
			{
				TraceWriter.Trace(TraceLevel.Verbose, traceJsonWriter.GetSerializedJsonMessage(), null);
			}
			if (formatting.HasValue)
			{
				jsonWriter.Formatting = formatting.GetValueOrDefault();
			}
			if (dateFormatHandling.HasValue)
			{
				jsonWriter.DateFormatHandling = dateFormatHandling.GetValueOrDefault();
			}
			if (dateTimeZoneHandling.HasValue)
			{
				jsonWriter.DateTimeZoneHandling = dateTimeZoneHandling.GetValueOrDefault();
			}
			if (floatFormatHandling.HasValue)
			{
				jsonWriter.FloatFormatHandling = floatFormatHandling.GetValueOrDefault();
			}
			if (stringEscapeHandling.HasValue)
			{
				jsonWriter.StringEscapeHandling = stringEscapeHandling.GetValueOrDefault();
			}
			if (_dateFormatStringSet)
			{
				jsonWriter.DateFormatString = dateFormatString;
			}
			if (cultureInfo != null)
			{
				jsonWriter.Culture = cultureInfo;
			}
		}

		internal IReferenceResolver GetReferenceResolver()
		{
			if (_referenceResolver == null)
			{
				_referenceResolver = new DefaultReferenceResolver();
			}
			return _referenceResolver;
		}

		internal JsonConverter? GetMatchingConverter(Type type)
		{
			return GetMatchingConverter(_converters, type);
		}

		internal static JsonConverter? GetMatchingConverter(IList<JsonConverter>? converters, Type objectType)
		{
			if (converters != null)
			{
				for (int i = 0; i < converters.Count; i++)
				{
					JsonConverter jsonConverter = converters[i];
					if (jsonConverter.CanConvert(objectType))
					{
						return jsonConverter;
					}
				}
			}
			return null;
		}

		internal void OnError(ErrorEventArgs e)
		{
			this.Error?.Invoke(this, e);
		}
	}
	public class JsonSerializerSettings
	{
		internal const ReferenceLoopHandling DefaultReferenceLoopHandling = ReferenceLoopHandling.Error;

		internal const MissingMemberHandling DefaultMissingMemberHandling = MissingMemberHandling.Ignore;

		internal const NullValueHandling DefaultNullValueHandling = NullValueHandling.Include;

		internal const DefaultValueHandling DefaultDefaultValueHandling = DefaultValueHandling.Include;

		internal const ObjectCreationHandling DefaultObjectCreationHandling = ObjectCreationHandling.Auto;

		internal const PreserveReferencesHandling DefaultPreserveReferencesHandling = PreserveReferencesHandling.None;

		internal const ConstructorHandling DefaultConstructorHandling = ConstructorHandling.Default;

		internal const TypeNameHandling DefaultTypeNameHandling = TypeNameHandling.None;

		internal const MetadataPropertyHandling DefaultMetadataPropertyHandling = MetadataPropertyHandling.Default;

		internal static readonly StreamingContext DefaultContext;

		internal const Formatting DefaultFormatting = Formatting.None;

		internal const DateFormatHandling DefaultDateFormatHandling = DateFormatHandling.IsoDateFormat;

		internal const DateTimeZoneHandling DefaultDateTimeZoneHandling = DateTimeZoneHandling.RoundtripKind;

		internal const DateParseHandling DefaultDateParseHandling = DateParseHandling.DateTime;

		internal const FloatParseHandling DefaultFloatParseHandling = FloatParseHandling.Double;

		internal const FloatFormatHandling DefaultFloatFormatHandling = FloatFormatHandling.String;

		internal const StringEscapeHandling DefaultStringEscapeHandling = StringEscapeHandling.Default;

		internal const TypeNameAssemblyFormatHandling DefaultTypeNameAssemblyFormatHandling = TypeNameAssemblyFormatHandling.Simple;

		internal static readonly CultureInfo DefaultCulture;

		internal const bool DefaultCheckAdditionalContent = false;

		internal const string DefaultDateFormatString = "yyyy'-'MM'-'dd'T'HH':'mm':'ss.FFFFFFFK";

		internal const int DefaultMaxDepth = 64;

		internal Formatting? _formatting;

		internal DateFormatHandling? _dateFormatHandling;

		internal DateTimeZoneHandling? _dateTimeZoneHandling;

		internal DateParseHandling? _dateParseHandling;

		internal FloatFormatHandling? _floatFormatHandling;

		internal FloatParseHandling? _floatParseHandling;

		internal StringEscapeHandling? _stringEscapeHandling;

		internal CultureInfo? _culture;

		internal bool? _checkAdditionalContent;

		internal int? _maxDepth;

		internal bool _maxDepthSet;

		internal string? _dateFormatString;

		internal bool _dateFormatStringSet;

		internal TypeNameAssemblyFormatHandling? _typeNameAssemblyFormatHandling;

		internal DefaultValueHandling? _defaultValueHandling;

		internal PreserveReferencesHandling? _preserveReferencesHandling;

		internal NullValueHandling? _nullValueHandling;

		internal ObjectCreationHandling? _objectCreationHandling;

		internal MissingMemberHandling? _missingMemberHandling;

		internal ReferenceLoopHandling? _referenceLoopHandling;

		internal StreamingContext? _context;

		internal ConstructorHandling? _constructorHandling;

		internal TypeNameHandling? _typeNameHandling;

		internal MetadataPropertyHandling? _metadataPropertyHandling;

		public ReferenceLoopHandling ReferenceLoopHandling
		{
			get
			{
				return _referenceLoopHandling.GetValueOrDefault();
			}
			set
			{
				_referenceLoopHandling = value;
			}
		}

		public MissingMemberHandling MissingMemberHandling
		{
			get
			{
				return _missingMemberHandling.GetValueOrDefault();
			}
			set
			{
				_missingMemberHandling = value;
			}
		}

		public ObjectCreationHandling ObjectCreationHandling
		{
			get
			{
				return _objectCreationHandling.GetValueOrDefault();
			}
			set
			{
				_objectCreationHandling = value;
			}
		}

		public NullValueHandling NullValueHandling
		{
			get
			{
				return _nullValueHandling.GetValueOrDefault();
			}
			set
			{
				_nullValueHandling = value;
			}
		}

		public DefaultValueHandling DefaultValueHandling
		{
			get
			{
				return _defaultValueHandling.GetValueOrDefault();
			}
			set
			{
				_defaultValueHandling = value;
			}
		}

		public IList<JsonConverter> Converters { get; set; }

		public PreserveReferencesHandling PreserveReferencesHandling
		{
			get
			{
				return _preserveReferencesHandling.GetValueOrDefault();
			}
			set
			{
				_preserveReferencesHandling = value;
			}
		}

		public TypeNameHandling TypeNameHandling
		{
			get
			{
				return _typeNameHandling.GetValueOrDefault();
			}
			set
			{
				_typeNameHandling = value;
			}
		}

		public MetadataPropertyHandling MetadataPropertyHandling
		{
			get
			{
				return _metadataPropertyHandling.GetValueOrDefault();
			}
			set
			{
				_metadataPropertyHandling = value;
			}
		}

		[Obsolete("TypeNameAssemblyFormat is obsolete. Use TypeNameAssemblyFormatHandling instead.")]
		public FormatterAssemblyStyle TypeNameAssemblyFormat
		{
			get
			{
				return (FormatterAssemblyStyle)TypeNameAssemblyFormatHandling;
			}
			set
			{
				TypeNameAssemblyFormatHandling = (TypeNameAssemblyFormatHandling)value;
			}
		}

		public TypeNameAssemblyFormatHandling TypeNameAssemblyFormatHandling
		{
			get
			{
				return _typeNameAssemblyFormatHandling.GetValueOrDefault();
			}
			set
			{
				_typeNameAssemblyFormatHandling = value;
			}
		}

		public ConstructorHandling ConstructorHandling
		{
			get
			{
				return _constructorHandling.GetValueOrDefault();
			}
			set
			{
				_constructorHandling = value;
			}
		}

		public IContractResolver? ContractResolver { get; set; }

		public IEqualityComparer? EqualityComparer { get; set; }

		[Obsolete("Refer

Mods/ModioModNetworker.dll

Decompiled a month ago
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.IO.Compression;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Net.Security;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Runtime.Versioning;
using System.Security.Cryptography.X509Certificates;
using System.Threading;
using System.Threading.Tasks;
using BoneLib;
using BoneLib.BoneMenu;
using BoneLib.BoneMenu.UI;
using HarmonyLib;
using Il2CppInterop.Runtime.InteropTypes;
using Il2CppSLZ.Marrow;
using Il2CppSLZ.Marrow.Data;
using Il2CppSLZ.Marrow.Forklift.Model;
using Il2CppSLZ.Marrow.Pool;
using Il2CppSLZ.Marrow.SceneStreaming;
using Il2CppSLZ.Marrow.Warehouse;
using Il2CppSystem;
using Il2CppSystem.Collections.Generic;
using Il2CppTMPro;
using LabFusion.Data;
using LabFusion.Downloading.ModIO;
using LabFusion.Entities;
using LabFusion.Extensions;
using LabFusion.Marrow;
using LabFusion.Network;
using LabFusion.Player;
using LabFusion.RPC;
using LabFusion.SDK.Modules;
using LabFusion.Scene;
using LabFusion.Senders;
using LabFusion.Utilities;
using MelonLoader;
using MelonLoader.Preferences;
using Microsoft.CodeAnalysis;
using ModIoModNetworker.Ui;
using ModioModNetworker;
using ModioModNetworker.Data;
using ModioModNetworker.Queue;
using ModioModNetworker.UI;
using ModioModNetworker.Utilities;
using Newtonsoft.Json;
using ThunderstoreModAssistant.Utilities;
using UnityEngine;
using UnityEngine.AddressableAssets.ResourceLocators;
using UnityEngine.Events;
using UnityEngine.Networking;
using UnityEngine.UI;

[assembly: CompilationRelaxations(8)]
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)]
[assembly: MelonInfo(typeof(MainClass), "ModioModNetworker", "2.4.0", "notnotnotswipez", null)]
[assembly: ModuleInfo(typeof(ModlistModule), "ModioModNetworkerModule", "2.4.0", "notnotnotswipez", "modiomodule", true, ConsoleColor.DarkCyan)]
[assembly: AssemblyTitle("ModioModNetworker")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("ModioModNetworker")]
[assembly: AssemblyCopyright("Copyright ©  2023")]
[assembly: AssemblyTrademark("")]
[assembly: ComVisible(false)]
[assembly: Guid("cdde6516-f286-4f2c-ad4b-d75164eb3e75")]
[assembly: AssemblyFileVersion("2.4.0")]
[assembly: TargetFramework(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")]
[assembly: AssemblyVersion("2.4.0.0")]
namespace Microsoft.CodeAnalysis
{
	[CompilerGenerated]
	[Microsoft.CodeAnalysis.Embedded]
	internal sealed class EmbeddedAttribute : Attribute
	{
	}
}
namespace System.Runtime.CompilerServices
{
	[CompilerGenerated]
	[Microsoft.CodeAnalysis.Embedded]
	[AttributeUsage(AttributeTargets.Class | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Parameter | AttributeTargets.ReturnValue | AttributeTargets.GenericParameter, AllowMultiple = false, Inherited = false)]
	internal sealed class NullableAttribute : Attribute
	{
		public readonly byte[] NullableFlags;

		public NullableAttribute(byte P_0)
		{
			NullableFlags = new byte[1] { P_0 };
		}

		public NullableAttribute(byte[] P_0)
		{
			NullableFlags = P_0;
		}
	}
	[CompilerGenerated]
	[Microsoft.CodeAnalysis.Embedded]
	[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Method | AttributeTargets.Interface | AttributeTargets.Delegate, AllowMultiple = false, Inherited = false)]
	internal sealed class NullableContextAttribute : Attribute
	{
		public readonly byte Flag;

		public NullableContextAttribute(byte P_0)
		{
			Flag = P_0;
		}
	}
}
public class DownloadQueueElement
{
	public PlayerId associatedPlayer;

	public ModInfo info;

	public bool notify = true;

	public bool lobby = false;
}
public class DownloadAction
{
	public int delayFrames;

	public DownloadAction(int delayFrames)
	{
		this.delayFrames = delayFrames;
	}

	public bool Check()
	{
		if (delayFrames > 0)
		{
			delayFrames--;
			return false;
		}
		return true;
	}

	public void Handle()
	{
		Thread thread = new Thread((ThreadStart)delegate
		{
			try
			{
				string text = Path.Combine(ModFileManager.MOD_FOLDER_PATH, "tempfolder");
				if (Directory.Exists(text))
				{
					Directory.Delete(text, recursive: true);
				}
				Directory.CreateDirectory(text);
				MelonLogger.Msg("Extracting " + ModFileManager.downloadPath + " to " + text);
				using (ZipArchive zipArchive = ZipFile.OpenRead(ModFileManager.downloadPath))
				{
					foreach (ZipArchiveEntry entry in zipArchive.Entries)
					{
						string text2 = Path.Combine(text, entry.FullName);
						if (entry.FullName.EndsWith("/"))
						{
							text2 = text2.Substring(0, text2.Length - 1);
							Directory.CreateDirectory(text2);
						}
						else
						{
							Directory.CreateDirectory(Path.GetDirectoryName(text2));
							string fileName = Path.GetFileName(text2);
							string text3 = Path.Combine(Path.GetDirectoryName(text2), "tempExtractedFile.temp");
							entry.ExtractToFile(text3, overwrite: true);
							File.Move(text3, Path.Combine(Path.GetDirectoryName(text3), fileName));
						}
					}
					zipArchive.Dispose();
				}
				MelonLogger.Msg("Extracted " + ModFileManager.downloadPath + " to " + text);
				string text4 = ModFileManager.FindFile(text, "pallet.json");
				while (text4 != "")
				{
					string fullName = Directory.GetParent(text4).FullName;
					MelonLogger.Msg("Mod folder is: " + fullName);
					string text5 = (HelperMethods.IsAndroid() ? fullName.Split('/') : fullName.Split('\\'))[^1];
					string text6 = ModFileManager.MOD_FOLDER_PATH + "/" + text5;
					bool flag = false;
					MelonLogger.Msg("Checking directory if it exists: " + text6);
					if (Directory.Exists(text6))
					{
						MelonLogger.Msg("Directory exists: " + text6);
						flag = true;
						string path = ModFileManager.FindFile(text6, "pallet.json");
						string text7 = File.ReadAllText(path);
						dynamic val = JsonConvert.DeserializeObject<object>(text7);
						string item = (string)val["objects"]["1"]["barcode"];
						MainClass.warehousePalletReloadTargets.Add(item);
						Directory.Delete(text6, recursive: true);
					}
					Directory.Move(fullName, text6);
					string path2 = text6 + "/modinfo.json";
					string contents = JsonConvert.SerializeObject((object)ModlistMenu.activeDownloadModInfo);
					File.WriteAllText(path2, contents);
					if (!flag)
					{
						MainClass.warehouseReloadFolders.Add(ModFileManager.FindFile(text6, "pallet.json"));
					}
					text4 = ModFileManager.FindFile(text, "pallet.json");
					MelonLogger.Msg(fullName + " Downloaded and extracted!");
				}
				File.Delete(ModFileManager.downloadPath);
				Directory.Delete(text, recursive: true);
				MainClass.warehouseReloadRequested = true;
				MainClass.RequestInstallCheck();
				MainClass.subsChanged = true;
			}
			catch (Exception ex)
			{
				MelonLogger.Error("Error while downloading mod " + ModlistMenu.activeDownloadModInfo.modId + ": " + ex);
				ModFileManager.isDownloading = false;
				ModFileManager.activeDownloadQueueElement = null;
				ModFileManager.activeDownloadWebRequest = null;
				ModlistMenu.activeDownloadModInfo = null;
			}
		});
		thread.Start();
	}
}
public class StalledAction
{
	public int frameCount;

	public Action action;
}
namespace ThunderstoreModAssistant.Utilities
{
	public class TimerManager
	{
		private static List<TimerDelayedAction> timerDelayedJobs = new List<TimerDelayedAction>();

		public static void Update()
		{
			foreach (TimerDelayedAction timerDelayedJob in timerDelayedJobs)
			{
				timerDelayedJob.time -= Time.deltaTime;
				if (timerDelayedJob.time <= 0f)
				{
					timerDelayedJob.onTimeOver();
					timerDelayedJob.completed = true;
				}
			}
			timerDelayedJobs.RemoveAll((TimerDelayedAction x) => x.completed);
		}

		public static void DelayAction(float time, Action onCompleted)
		{
			timerDelayedJobs.Add(new TimerDelayedAction
			{
				time = time,
				onTimeOver = onCompleted
			});
		}
	}
	public class TimerDelayedAction
	{
		public float time;

		public Action onTimeOver;

		public bool completed = false;
	}
}
namespace ModIoModNetworker.Ui
{
	[RegisterTypeInIl2Cpp]
	public class ModInfoDisplay : MonoBehaviour
	{
		public TMP_Text title;

		public RawImage thumbnailImage;

		public RawImage borderImage;

		public ModInfo modInfo;

		public Button button;

		public NetworkerMenuController controller;

		public GameObject subscriptionButton;

		public ModInfoDisplay(IntPtr intPtr)
			: base(intPtr)
		{
		}

		public void Awake()
		{
			thumbnailImage = ((Component)((Component)this).transform.Find("Thumbnail")).GetComponent<RawImage>();
			title = ((Component)((Component)this).transform.Find("Text (TMP)")).GetComponent<TMP_Text>();
			borderImage = ((Component)((Component)this).transform.Find("BaseOverlay")).GetComponent<RawImage>();
			button = ((Component)((Component)this).transform.Find("Button")).GetComponent<Button>();
			subscriptionButton = ((Component)((Component)this).transform.Find("SubscribedIndicator")).gameObject;
			((UnityEvent)button.onClick).AddListener(UnityAction.op_Implicit((Action)delegate
			{
				OnModInfoPressed();
			}));
		}

		public void OnModInfoPressed()
		{
			controller.TriggerModInfoPopup(show: true, modInfo);
		}

		public void SetModInfo(ModInfo modInfo)
		{
			this.modInfo = modInfo;
			title.text = modInfo.modName;
			if (!modInfo.IsSubscribed())
			{
				subscriptionButton.SetActive(false);
			}
			else
			{
				subscriptionButton.SetActive(true);
			}
			ThumbnailThreader.DownloadThumbnail(modInfo.thumbnailLink, delegate(Texture texture)
			{
				if (Object.op_Implicit((Object)(object)thumbnailImage))
				{
					thumbnailImage.texture = texture;
				}
			});
		}
	}
	[RegisterTypeInIl2Cpp]
	public class NetworkerMenuController : MonoBehaviour
	{
		public enum Panels
		{
			MODIO,
			FILES,
			SETTINGS,
			MULTIPLAYER,
			NONE
		}

		public enum InstalledSort
		{
			INSTALLED,
			SUBSCRIBED,
			BLACKLIST
		}

		private Panels selectedPanel = Panels.NONE;

		private InstalledSort chosenSort = InstalledSort.INSTALLED;

		private GameObject modIoTab;

		private GameObject filesTab;

		private GameObject settingsTab;

		private GameObject multiplayerTab;

		private GameObject modProgressDisplay;

		private GameObject keyboardPopup;

		private Button upArrowButton;

		private Button downArrowButton;

		private TMP_Text typeBarText;

		private GameObject typeBarTextObject;

		private GameObject typeBarEmptyTextObject;

		private GameObject typeBarObject;

		private Transform selector;

		private Transform desired;

		private float speed = 10f;

		private Button modIoTabButton;

		private Button filesTabButton;

		private Button settingsTabButton;

		private Button multiplayerTabButton;

		private GameObject modInfoPopup;

		private int pageNumber = 0;

		private int maxPages = 0;

		private int maxDisplayPerPage = 8;

		private int trendingOffset = 0;

		private bool searching = false;

		private Animator rootAnimator;

		public string lastDownloadedTitle = "nothing";

		public static List<ModInfo> totalInstalled = new List<ModInfo>();

		public static List<ModInfo> modIoRetrieved = new List<ModInfo>();

		public static List<ModInfo> host = new List<ModInfo>();

		private static List<GenericSetting> settings = new List<GenericSetting>();

		private static List<StalledAction> stalledActions = new List<StalledAction>();

		private ModInfo viewedInfo;

		public static NetworkerMenuController instance;

		public static SpotlightOverride spotlightOverride = new SpotlightOverride();

		public NetworkerMenuController(IntPtr intPtr)
			: base(intPtr)
		{
		}

		private void Awake()
		{
			instance = this;
			selector = ((Component)this).transform.Find("Selector");
			modIoTab = ((Component)((Component)this).transform.Find("ModIoTab")).gameObject;
			filesTab = ((Component)((Component)this).transform.Find("FilesTab")).gameObject;
			settingsTab = ((Component)((Component)this).transform.Find("SettingsTab")).gameObject;
			multiplayerTab = ((Component)((Component)this).transform.Find("MultiplayerTab")).gameObject;
			Button component = ((Component)((Component)this).transform.Find("BackButton")).GetComponent<Button>();
			((UnityEvent)component.onClick).AddListener(UnityAction.op_Implicit((Action)delegate
			{
				Menu.OpenPage(Page.Root);
			}));
			Button component2 = ((Component)filesTab.transform.Find("Confirmer").Find("Confirm").Find("Button")).GetComponent<Button>();
			((UnityEvent)component2.onClick).AddListener(UnityAction.op_Implicit((Action)delegate
			{
				foreach (ModInfo item in totalInstalled)
				{
					if (!item.IsSubscribed() && item.IsTracked())
					{
						ModFileManager.UnInstallMainThread(item.numericalId);
					}
				}
			}));
			Button component3 = ((Component)multiplayerTab.transform.Find("Confirmer").Find("Confirm").Find("Button")).GetComponent<Button>();
			((UnityEvent)component3.onClick).AddListener(UnityAction.op_Implicit((Action)delegate
			{
				foreach (ModInfo item2 in host)
				{
					ModFileManager.AddToQueue(new DownloadQueueElement
					{
						associatedPlayer = null,
						info = item2
					});
				}
			}));
			Button component4 = ((Component)modIoTab.transform.Find("RefreshSubscribedButton").Find("Button")).GetComponent<Button>();
			((UnityEvent)component4.onClick).AddListener(UnityAction.op_Implicit((Action)delegate
			{
				MainClass.PopulateSubscriptions();
			}));
			Button component5 = ((Component)modIoTab.transform.Find("TrendingFirstPage").Find("BigBanner").Find("ThumbnailMaskMovedSlight")
				.Find("Button")).GetComponent<Button>();
			((UnityEvent)component5.onClick).AddListener(UnityAction.op_Implicit((Action)delegate
			{
				if (spotlightOverride.manualDisplayId != null)
				{
					TriggerModInfoPopup(show: true, spotlightOverride.downloadedInfo);
				}
				else
				{
					TriggerModInfoPopup(show: true, modIoRetrieved[0]);
				}
			}));
			Button component6 = ((Component)modIoTab.transform.Find("SearchIcon")).GetComponent<Button>();
			((UnityEvent)component6.onClick).AddListener(UnityAction.op_Implicit((Action)delegate
			{
				PopupKeyboard();
			}));
			upArrowButton = ((Component)((Component)this).transform.Find("UpArrow").Find("Button")).GetComponent<Button>();
			downArrowButton = ((Component)((Component)this).transform.Find("DownArrow").Find("Button")).GetComponent<Button>();
			((UnityEvent)upArrowButton.onClick).AddListener(UnityAction.op_Implicit((Action)delegate
			{
				OnArrowPress(up: true);
			}));
			((UnityEvent)downArrowButton.onClick).AddListener(UnityAction.op_Implicit((Action)delegate
			{
				OnArrowPress(up: false);
			}));
			modIoTabButton = ((Component)((Component)this).transform.Find("SelectableTabs").Find("ModIoTab")).GetComponentInChildren<Button>();
			filesTabButton = ((Component)((Component)this).transform.Find("SelectableTabs").Find("FileManagementTab")).GetComponentInChildren<Button>();
			settingsTabButton = ((Component)((Component)this).transform.Find("SelectableTabs").Find("SettingsTab")).GetComponentInChildren<Button>();
			multiplayerTabButton = ((Component)((Component)this).transform.Find("SelectableTabs").Find("MultiplayerTab")).GetComponentInChildren<Button>();
			((UnityEvent)((Component)modIoTab.transform.Find("BackToTrending").Find("BackArrow").Find("Button")).gameObject.GetComponent<Button>().onClick).AddListener(UnityAction.op_Implicit((Action)delegate
			{
				ReturnToTrending();
			}));
			((UnityEvent)modIoTabButton.onClick).AddListener(UnityAction.op_Implicit((Action)delegate
			{
				ChangePanel(Panels.MODIO);
			}));
			((UnityEvent)filesTabButton.onClick).AddListener(UnityAction.op_Implicit((Action)delegate
			{
				ChangePanel(Panels.FILES);
			}));
			((UnityEvent)settingsTabButton.onClick).AddListener(UnityAction.op_Implicit((Action)delegate
			{
				ChangePanel(Panels.SETTINGS);
			}));
			((UnityEvent)multiplayerTabButton.onClick).AddListener(UnityAction.op_Implicit((Action)delegate
			{
				ChangePanel(Panels.MULTIPLAYER);
			}));
			modInfoPopup = ((Component)((Component)this).transform.parent.Find("ModInfoOverlay").Find("ModInfoPopup")).gameObject;
			modProgressDisplay = ((Component)((Component)this).transform.parent.Find("ModInstallingDisplay")).gameObject;
			keyboardPopup = ((Component)((Component)this).transform.parent.Find("KeyboardOverlay")).gameObject;
			typeBarObject = ((Component)keyboardPopup.transform.Find("TypeBar")).gameObject;
			typeBarTextObject = ((Component)typeBarObject.transform.Find("TypedOutText")).gameObject;
			typeBarEmptyTextObject = ((Component)typeBarObject.transform.Find("EmptyTextDisplay")).gameObject;
			typeBarText = typeBarTextObject.GetComponent<TMP_Text>();
			rootAnimator = ((Component)this).GetComponentInParent<Animator>();
			Button componentInChildren = ((Component)modInfoPopup.transform.Find("SubscribeUnselected")).gameObject.GetComponentInChildren<Button>();
			Button componentInChildren2 = ((Component)modInfoPopup.transform.Find("SubscribeSelected")).gameObject.GetComponentInChildren<Button>();
			Button componentInChildren3 = ((Component)modInfoPopup.transform.Find("BlacklistParted")).gameObject.GetComponentInChildren<Button>();
			Button componentInChildren4 = ((Component)modInfoPopup.transform.Find("BlacklistPartedSelected")).gameObject.GetComponentInChildren<Button>();
			Button componentInChildren5 = ((Component)modInfoPopup.transform.Find("UninstallParted")).gameObject.GetComponentInChildren<Button>();
			Button componentInChildren6 = ((Component)modInfoPopup.transform.Find("UninstallPartedSelected")).gameObject.GetComponentInChildren<Button>();
			Button componentInChildren7 = ((Component)modInfoPopup.transform.Find("BlacklistFull")).gameObject.GetComponentInChildren<Button>();
			Button componentInChildren8 = ((Component)modInfoPopup.transform.Find("BlacklistSelectedFull")).gameObject.GetComponentInChildren<Button>();
			Button componentInChildren9 = ((Component)modInfoPopup.transform.Find("ExitCatch")).gameObject.GetComponentInChildren<Button>();
			Button componentInChildren10 = ((Component)modInfoPopup.transform.Find("ExitCatch (1)")).gameObject.GetComponentInChildren<Button>();
			Button component7 = ((Component)filesTab.transform.Find("InstalledText")).GetComponent<Button>();
			Button component8 = ((Component)filesTab.transform.Find("SubscribedText")).GetComponent<Button>();
			Button component9 = ((Component)filesTab.transform.Find("BlacklistText")).GetComponent<Button>();
			RegisterWholeKeyboard();
			((UnityEvent)component7.onClick).AddListener(UnityAction.op_Implicit((Action)delegate
			{
				SetFilterMode(InstalledSort.INSTALLED);
			}));
			((UnityEvent)component8.onClick).AddListener(UnityAction.op_Implicit((Action)delegate
			{
				SetFilterMode(InstalledSort.SUBSCRIBED);
			}));
			((UnityEvent)component9.onClick).AddListener(UnityAction.op_Implicit((Action)delegate
			{
				SetFilterMode(InstalledSort.BLACKLIST);
			}));
			((UnityEvent)componentInChildren9.onClick).AddListener(UnityAction.op_Implicit((Action)delegate
			{
				TriggerModInfoPopup(show: false, null);
			}));
			((UnityEvent)componentInChildren10.onClick).AddListener(UnityAction.op_Implicit((Action)delegate
			{
				TriggerModInfoPopup(show: false, null);
			}));
			((UnityEvent)componentInChildren.onClick).AddListener(UnityAction.op_Implicit((Action)delegate
			{
				OnSubscribeButtonPressed(selected: false);
			}));
			((UnityEvent)componentInChildren2.onClick).AddListener(UnityAction.op_Implicit((Action)delegate
			{
				OnSubscribeButtonPressed(selected: true);
			}));
			((UnityEvent)componentInChildren3.onClick).AddListener(UnityAction.op_Implicit((Action)delegate
			{
				OnBlacklistButtonPressed(selected: false);
			}));
			((UnityEvent)componentInChildren4.onClick).AddListener(UnityAction.op_Implicit((Action)delegate
			{
				OnBlacklistButtonPressed(selected: true);
			}));
			((UnityEvent)componentInChildren5.onClick).AddListener(UnityAction.op_Implicit((Action)delegate
			{
				OnInstallButtonPressed(selected: false);
			}));
			((UnityEvent)componentInChildren6.onClick).AddListener(UnityAction.op_Implicit((Action)delegate
			{
				OnInstallButtonPressed(selected: true);
			}));
			((UnityEvent)componentInChildren7.onClick).AddListener(UnityAction.op_Implicit((Action)delegate
			{
				OnBlacklistButtonPressed(selected: false);
			}));
			((UnityEvent)componentInChildren8.onClick).AddListener(UnityAction.op_Implicit((Action)delegate
			{
				OnBlacklistButtonPressed(selected: true);
			}));
			ChangePanel(Panels.FILES);
		}

		public void Refresh()
		{
			if (selectedPanel == Panels.FILES)
			{
				SetFilterMode(chosenSort);
			}
		}

		public static void SetHostSubscribedMods(List<ModInfo> modInfos)
		{
			host.Clear();
			host.AddRange(modInfos);
			MainClass.confirmedHostHasIt = true;
		}

		public static void AddCheckboxSetting(string title, bool startingValue, Action<bool> onModified)
		{
			settings.Add(new CheckboxSetting(title, startingValue, onModified));
		}

		public static void AddNumericalSetting(string title, int startingValue, int minValue, int maxValue, int increment, Action<int> onModified)
		{
			settings.Add(new NumericalSetting(title, startingValue, minValue, maxValue, increment, onModified));
		}

		public void OnSubscribeButtonPressed(bool selected)
		{
			if (selected)
			{
				ModFileManager.UnSubscribe(viewedInfo.numericalId);
				if (viewedInfo.IsInstalled())
				{
					ModFileManager.UnInstall(viewedInfo.numericalId);
				}
				MainClass.subscribedModIoNumericalIds.Remove(viewedInfo.numericalId);
				return;
			}
			if (viewedInfo.windowsDownloadLink != "nothing" || viewedInfo.androidDownloadLink != "nothing")
			{
				MainClass.ReceiveSubModInfo(viewedInfo);
			}
			else
			{
				MainClass.PopulateSubscriptions();
			}
			if (!MainClass.subscribedModIoNumericalIds.Contains(viewedInfo.numericalId))
			{
				MainClass.subscribedModIoNumericalIds.Add(viewedInfo.numericalId);
			}
			ModFileManager.Subscribe(viewedInfo.numericalId);
		}

		private void Search(string query)
		{
			searching = true;
			modIoRetrieved.Clear();
			PopulateModIoTab(0);
			ResetPageNumber();
			trendingOffset = 0;
			UpdateArrowDisplays();
			ModFileManager.QueueTrending(0, query);
			rootAnimator.SetTrigger("keyboardpopup");
			SetMainCanvasColliderState(enabled: true);
			((Component)modIoTab.transform.Find("BackToTrending")).gameObject.SetActive(true);
			((Component)modIoTab.transform.Find("BonelabIcon")).gameObject.SetActive(false);
			((Component)modIoTab.transform.Find("SectionText")).GetComponent<TMP_Text>().text = "\"" + query + "\"";
		}

		private void ReturnToTrending()
		{
			searching = false;
			modIoRetrieved.Clear();
			PopulateModIoTab(0);
			ResetPageNumber();
			UpdateArrowDisplays();
			ModFileManager.QueueTrending(0);
			((Component)modIoTab.transform.Find("BackToTrending")).gameObject.SetActive(false);
			((Component)modIoTab.transform.Find("BonelabIcon")).gameObject.SetActive(true);
			((Component)modIoTab.transform.Find("SectionText")).GetComponent<TMP_Text>().text = "TRENDING";
		}

		public void OnBlacklistButtonPressed(bool selected)
		{
			if (selected)
			{
				if (viewedInfo.modId != null)
				{
					MainClass.blacklistedModIoIds.Remove(viewedInfo.modId);
					MainClass.RemoveLineFromBlacklist(viewedInfo.modId);
				}
				MainClass.blacklistedModIoIds.Remove(viewedInfo.numericalId);
				MainClass.RemoveLineFromBlacklist(viewedInfo.numericalId);
			}
			else
			{
				if (viewedInfo.modId != null)
				{
					MainClass.blacklistedModIoIds.Add(viewedInfo.modId);
					MainClass.WriteLineToBlacklist(viewedInfo.modId);
				}
				else
				{
					MainClass.blacklistedModIoIds.Add(viewedInfo.numericalId);
					MainClass.WriteLineToBlacklist(viewedInfo.numericalId);
				}
				if (viewedInfo.IsSubscribed())
				{
					ModFileManager.UnSubscribe(viewedInfo.numericalId);
					if (viewedInfo.IsInstalled())
					{
						ModFileManager.UnInstall(viewedInfo.numericalId);
					}
					MainClass.subscribedModIoNumericalIds.Remove(viewedInfo.numericalId);
				}
			}
			UpdateModPopupButtons();
		}

		public void OnInstallButtonPressed(bool selected)
		{
			if (selected)
			{
				ModFileManager.UnInstall(viewedInfo.numericalId);
				if (viewedInfo.IsSubscribed())
				{
					ModFileManager.UnSubscribe(viewedInfo.numericalId);
				}
				MainClass.subscribedModIoNumericalIds.Remove(viewedInfo.numericalId);
			}
			else if (viewedInfo.windowsDownloadLink != null)
			{
				ModFileManager.AddToQueue(new DownloadQueueElement
				{
					info = viewedInfo,
					associatedPlayer = null,
					notify = true
				});
			}
			else
			{
				ModInfo.RequestModInfoNumerical(viewedInfo.numericalId, "install_native");
			}
		}

		private void ResetPageNumber()
		{
			pageNumber = 0;
			maxDisplayPerPage = 8;
			maxPages = 0;
		}

		public void TriggerModInfoPopup(bool show, ModInfo modInfo)
		{
			rootAnimator = ((Component)this).GetComponentInParent<Animator>();
			rootAnimator.SetTrigger("triggerpopup");
			if (show)
			{
				SetMainCanvasColliderState(enabled: false);
				TMP_Text component = ((Component)modInfoPopup.transform.Find("ModTitle")).GetComponent<TMP_Text>();
				TMP_Text component2 = ((Component)modInfoPopup.transform.Find("Description")).GetComponent<TMP_Text>();
				TMP_Text component3 = ((Component)modInfoPopup.transform.Find("FileSizeDisplay")).GetComponent<TMP_Text>();
				RawImage thumbnail = ((Component)modInfoPopup.transform.Find("Thumbnail")).GetComponent<RawImage>();
				component.text = modInfo.modName;
				component2.text = modInfo.modSummary;
				float fileSizeKB = modInfo.fileSizeKB;
				float num = fileSizeKB / 1000000f;
				float num2 = num / 1000f;
				string value = "KB";
				float num3 = fileSizeKB;
				if (num > 1f)
				{
					num3 = num;
					value = "MB";
				}
				if (num2 > 1f)
				{
					num3 = num2;
					value = "GB";
				}
				num3 = Mathf.Round(num3 * 100f) / 100f;
				component3.text = $"({num3} {value})";
				ThumbnailThreader.DownloadThumbnail(modInfo.thumbnailLink, delegate(Texture texture)
				{
					if (Object.op_Implicit((Object)(object)thumbnail))
					{
						thumbnail.texture = texture;
					}
				});
				viewedInfo = modInfo;
				UpdateModPopupButtons();
			}
			else
			{
				SetMainCanvasColliderState(enabled: true);
			}
		}

		private void SetMainCanvasColliderState(bool enabled)
		{
			foreach (BoxCollider componentsInChild in ((Component)this).GetComponentsInChildren<BoxCollider>())
			{
				((Collider)componentsInChild).enabled = enabled;
			}
		}

		public void UpdateModPopupButtons()
		{
			if (viewedInfo == null)
			{
				return;
			}
			ModInfo modInfo = viewedInfo;
			GameObject gameObject = ((Component)modInfoPopup.transform.Find("SubscribeUnselected")).gameObject;
			GameObject gameObject2 = ((Component)modInfoPopup.transform.Find("SubscribeSelected")).gameObject;
			GameObject gameObject3 = ((Component)modInfoPopup.transform.Find("BlacklistParted")).gameObject;
			GameObject gameObject4 = ((Component)modInfoPopup.transform.Find("BlacklistPartedSelected")).gameObject;
			GameObject gameObject5 = ((Component)modInfoPopup.transform.Find("UninstallParted")).gameObject;
			GameObject gameObject6 = ((Component)modInfoPopup.transform.Find("UninstallPartedSelected")).gameObject;
			GameObject gameObject7 = ((Component)modInfoPopup.transform.Find("BlacklistFull")).gameObject;
			GameObject gameObject8 = ((Component)modInfoPopup.transform.Find("BlacklistSelectedFull")).gameObject;
			gameObject.SetActive(false);
			gameObject2.SetActive(false);
			gameObject3.SetActive(false);
			gameObject4.SetActive(false);
			gameObject5.SetActive(false);
			gameObject6.SetActive(false);
			gameObject7.SetActive(false);
			gameObject8.SetActive(false);
			bool flag = modInfo.IsInstalled();
			if (modInfo.IsSubscribed())
			{
				gameObject.SetActive(false);
				gameObject2.SetActive(true);
			}
			else
			{
				gameObject.SetActive(true);
				gameObject2.SetActive(false);
			}
			bool flag2 = false;
			if (flag)
			{
				flag2 = true;
				gameObject6.SetActive(true);
				gameObject5.SetActive(false);
			}
			if (flag2)
			{
				gameObject8.SetActive(false);
				gameObject7.SetActive(false);
				if (modInfo.IsBlacklisted())
				{
					gameObject4.SetActive(true);
					gameObject3.SetActive(false);
				}
				else
				{
					gameObject4.SetActive(false);
					gameObject3.SetActive(true);
				}
			}
			else if (modInfo.IsBlacklisted())
			{
				gameObject8.SetActive(true);
				gameObject7.SetActive(false);
			}
			else
			{
				gameObject8.SetActive(false);
				gameObject7.SetActive(true);
			}
		}

		public void SetFilterMode(InstalledSort installedSort)
		{
			chosenSort = installedSort;
			ResetPageNumber();
			switch (installedSort)
			{
			case InstalledSort.INSTALLED:
				((Component)filesTab.transform.Find("GridLayout")).gameObject.SetActive(true);
				((Component)filesTab.transform.Find("ListLayout")).gameObject.SetActive(false);
				((Component)filesTab.transform.Find("UninstallUnsubscribedModsButton")).gameObject.SetActive(true);
				maxPages = (int)Math.Ceiling((double)totalInstalled.Count / (double)maxDisplayPerPage);
				UpdateArrowDisplays();
				PopulateFiles(pageNumber);
				break;
			case InstalledSort.SUBSCRIBED:
			{
				((Component)filesTab.transform.Find("GridLayout")).gameObject.SetActive(true);
				((Component)filesTab.transform.Find("ListLayout")).gameObject.SetActive(false);
				((Component)filesTab.transform.Find("UninstallUnsubscribedModsButton")).gameObject.SetActive(false);
				List<ModInfo> list = new List<ModInfo>();
				foreach (ModInfo item in totalInstalled)
				{
					if (item.IsSubscribed())
					{
						list.Add(item);
					}
				}
				maxPages = (int)Math.Ceiling((double)list.Count / (double)maxDisplayPerPage);
				UpdateArrowDisplays();
				PopulateFiles(pageNumber);
				break;
			}
			case InstalledSort.BLACKLIST:
				((Component)filesTab.transform.Find("GridLayout")).gameObject.SetActive(false);
				((Component)filesTab.transform.Find("ListLayout")).gameObject.SetActive(true);
				((Component)filesTab.transform.Find("UninstallUnsubscribedModsButton")).gameObject.SetActive(false);
				maxPages = (int)Math.Ceiling((double)MainClass.blacklistedModIoIds.Count / 4.0);
				UpdateArrowDisplays();
				PopulateBlacklist(pageNumber);
				break;
			}
		}

		public void PopulateBlacklist(int page)
		{
			//IL_0166: 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_018a: Unknown result type (might be due to invalid IL or missing references)
			GameObject gameObject = ((Component)filesTab.transform.Find("ListLayout")).gameObject;
			int childCount = gameObject.transform.childCount;
			for (int i = 0; i < childCount; i++)
			{
				Transform child = gameObject.transform.GetChild(i);
				Object.Destroy((Object)(object)((Component)child).gameObject);
			}
			int num = 4 * page;
			for (int j = 0; j < 4; j++)
			{
				if (MainClass.blacklistedModIoIds.Count > num + j)
				{
					string original = MainClass.blacklistedModIoIds[num + j];
					string text = original;
					if (int.TryParse(text, out var result))
					{
						text = "Numeric Listing: " + result;
					}
					GameObject val = Object.Instantiate<GameObject>(NetworkerAssets.blacklistDisplayPrefab);
					TMP_Text component = ((Component)val.transform.Find("BlacklistedMod")).gameObject.GetComponent<TMP_Text>();
					component.text = text;
					Button component2 = ((Component)val.transform.Find("XButton").Find("Button")).gameObject.GetComponent<Button>();
					((UnityEvent)component2.onClick).AddListener(UnityAction.op_Implicit((Action)delegate
					{
						MainClass.blacklistedModIoIds.Remove(original);
						maxPages = (int)Math.Ceiling((double)MainClass.blacklistedModIoIds.Count / 4.0);
						PopulateBlacklist(pageNumber);
						MainClass.RemoveLineFromBlacklist(original);
					}));
					val.transform.parent = gameObject.transform;
					val.transform.localPosition = Vector3.forward;
					val.transform.localRotation = Quaternion.identity;
					val.transform.localScale = Vector3.one;
				}
			}
		}

		public void OnNewTrendingRecieved()
		{
			if (selectedPanel == Panels.MODIO)
			{
				if (maxPages >= 1)
				{
					PopulateModIoTab(maxPages - 1);
				}
				else
				{
					PopulateModIoTab(0);
				}
				maxPages = (int)Math.Ceiling((double)modIoRetrieved.Count / (double)maxDisplayPerPage);
				UpdateArrowDisplays();
				SetMainCanvasColliderState(enabled: true);
			}
		}

		private void PopulateModIoTab(int page)
		{
			//IL_021b: Unknown result type (might be due to invalid IL or missing references)
			if (page > 0 || searching)
			{
				GameObject gameObject = ((Component)modIoTab.transform.Find("GridLayout")).gameObject;
				GameObject gameObject2 = ((Component)modIoTab.transform.Find("TrendingFirstPage")).gameObject;
				gameObject2.SetActive(false);
				gameObject.SetActive(true);
				ClearAllChildren(gameObject.transform);
				int num = maxDisplayPerPage * page;
				if (!searching)
				{
					if (num > 0)
					{
						num -= 2;
					}
					if (spotlightOverride.manualDisplayId != null)
					{
						num--;
					}
				}
				for (int i = 0; i < maxDisplayPerPage; i++)
				{
					if (modIoRetrieved.Count > num + i)
					{
						ModInfo modInfo = modIoRetrieved[num + i];
						MakeModInfoObject(gameObject.transform, modInfo);
					}
				}
				return;
			}
			GameObject gameObject3 = ((Component)modIoTab.transform.Find("GridLayout")).gameObject;
			Transform val = modIoTab.transform.Find("TrendingFirstPage");
			GameObject gameObject4 = ((Component)val).gameObject;
			Transform val2 = val.Find("BigBanner");
			gameObject4.SetActive(true);
			gameObject3.SetActive(false);
			Transform parent = val.Find("GridLayoutTrending");
			Transform val3 = val.Find("ModInfoSpawnPoint");
			ClearAllChildren(parent);
			ClearAllChildren(val3);
			int num2 = 1;
			if (spotlightOverride.manualDisplayId != null)
			{
				num2--;
			}
			if (modIoRetrieved.Count == 0)
			{
				((Component)val2).gameObject.SetActive(false);
				return;
			}
			((Component)val2).gameObject.SetActive(true);
			GameObject val4 = MakeModInfoObject(val3, modIoRetrieved[num2]);
			RectTransform component = val4.GetComponent<RectTransform>();
			RectTransform component2 = ((Component)val3).GetComponent<RectTransform>();
			((Transform)component).position = ((Transform)component2).position;
			num2++;
			for (int j = 0; j < 4; j++)
			{
				if (modIoRetrieved.Count > num2 + j)
				{
					ModInfo modInfo2 = modIoRetrieved[num2 + j];
					MakeModInfoObject(parent, modInfo2);
				}
			}
			TMP_Text component3 = ((Component)val2.Find("ModTitleText")).GetComponent<TMP_Text>();
			TMP_Text component4 = ((Component)val2.Find("Description")).GetComponent<TMP_Text>();
			Transform val5 = val2.Find("ThumbnailMaskMovedSlight");
			RawImage thumbNail = ((Component)val5.Find("LargeThumbnail")).GetComponent<RawImage>();
			ModInfo modInfo3 = modIoRetrieved[0];
			if (spotlightOverride.downloadedInfo != null)
			{
				modInfo3 = spotlightOverride.downloadedInfo;
			}
			ThumbnailThreader.DownloadThumbnail(modInfo3.thumbnailLink, delegate(Texture texture)
			{
				if (Object.op_Implicit((Object)(object)thumbNail))
				{
					thumbNail.texture = texture;
				}
				spotlightOverride.cachedThumbnail = texture;
			});
			GameObject gameObject5 = ((Component)((Component)val5).transform.Find("BottomBar")).gameObject;
			if (spotlightOverride.subTitle != null)
			{
				gameObject5.SetActive(true);
				TMP_Text component5 = ((Component)gameObject5.transform.Find("OptionalTitle")).GetComponent<TMP_Text>();
				component5.text = spotlightOverride.subTitle;
			}
			else
			{
				gameObject5.SetActive(false);
			}
			if (spotlightOverride.titleOverride != null)
			{
				component3.text = spotlightOverride.titleOverride;
			}
			else
			{
				component3.text = modInfo3.modName;
			}
			if (spotlightOverride.descriptionOverride != null)
			{
				component4.text = spotlightOverride.descriptionOverride;
			}
			else
			{
				component4.text = modInfo3.modSummary;
			}
		}

		private void ClearAllChildren(Transform parent)
		{
			int childCount = parent.childCount;
			for (int i = 0; i < childCount; i++)
			{
				Transform child = parent.GetChild(i);
				ModInfoDisplay componentInChildren = ((Component)child).GetComponentInChildren<ModInfoDisplay>();
				if (Object.op_Implicit((Object)(object)componentInChildren))
				{
					Object.DestroyImmediate((Object)(object)componentInChildren.thumbnailImage.texture);
				}
				Object.Destroy((Object)(object)((Component)child).gameObject);
			}
		}

		private GameObject MakeModInfoObject(Transform parent, ModInfo modInfo, bool zeroPosition = true)
		{
			//IL_0063: 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)
			GameObject val = Object.Instantiate<GameObject>(NetworkerAssets.modInfoDisplay);
			ModInfoDisplay modInfoDisplay = val.AddComponent<ModInfoDisplay>();
			modInfoDisplay.SetModInfo(modInfo);
			modInfoDisplay.controller = this;
			val.transform.parent = ((Component)parent).transform;
			if (zeroPosition)
			{
				val.transform.localPosition = Vector3.forward;
				val.transform.localRotation = Quaternion.identity;
			}
			val.transform.localScale = Vector3.one;
			return val;
		}

		private void PopulateFiles(int page)
		{
			//IL_012d: 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_0151: Unknown result type (might be due to invalid IL or missing references)
			GameObject gameObject = ((Component)filesTab.transform.Find("GridLayout")).gameObject;
			int childCount = gameObject.transform.childCount;
			for (int i = 0; i < childCount; i++)
			{
				Transform child = gameObject.transform.GetChild(i);
				ModInfoDisplay componentInChildren = ((Component)child).GetComponentInChildren<ModInfoDisplay>();
				if (Object.op_Implicit((Object)(object)componentInChildren))
				{
					Object.DestroyImmediate((Object)(object)componentInChildren.thumbnailImage.texture);
				}
				Object.Destroy((Object)(object)((Component)child).gameObject);
			}
			int num = 0;
			int num2 = 0;
			int num3 = page * maxDisplayPerPage;
			foreach (ModInfo item in totalInstalled)
			{
				num2++;
				if (num2 >= num3 && (chosenSort != InstalledSort.SUBSCRIBED || item.IsSubscribed()))
				{
					GameObject val = Object.Instantiate<GameObject>(NetworkerAssets.modInfoDisplay);
					ModInfoDisplay modInfoDisplay = val.AddComponent<ModInfoDisplay>();
					modInfoDisplay.SetModInfo(item);
					modInfoDisplay.controller = this;
					val.transform.parent = gameObject.transform;
					val.transform.localPosition = Vector3.forward;
					val.transform.localRotation = Quaternion.identity;
					val.transform.localScale = Vector3.one;
					num++;
					if (num >= maxDisplayPerPage)
					{
						break;
					}
				}
			}
		}

		private void PopulateHostMods(int page)
		{
			//IL_0106: 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_012a: Unknown result type (might be due to invalid IL or missing references)
			GameObject gameObject = ((Component)multiplayerTab.transform.Find("GridLayout")).gameObject;
			int childCount = gameObject.transform.childCount;
			for (int i = 0; i < childCount; i++)
			{
				Transform child = gameObject.transform.GetChild(i);
				ModInfoDisplay componentInChildren = ((Component)child).GetComponentInChildren<ModInfoDisplay>();
				if (Object.op_Implicit((Object)(object)componentInChildren))
				{
					Object.DestroyImmediate((Object)(object)componentInChildren.thumbnailImage.texture);
				}
				Object.Destroy((Object)(object)((Component)child).gameObject);
			}
			int num = 0;
			int num2 = 0;
			int num3 = page * maxDisplayPerPage;
			foreach (ModInfo item in host)
			{
				num2++;
				if (num2 >= num3)
				{
					GameObject val = Object.Instantiate<GameObject>(NetworkerAssets.modInfoDisplay);
					ModInfoDisplay modInfoDisplay = val.AddComponent<ModInfoDisplay>();
					modInfoDisplay.SetModInfo(item);
					modInfoDisplay.controller = this;
					val.transform.parent = gameObject.transform;
					val.transform.localPosition = Vector3.forward;
					val.transform.localRotation = Quaternion.identity;
					val.transform.localScale = Vector3.one;
					num++;
					if (num >= maxDisplayPerPage)
					{
						break;
					}
				}
			}
		}

		private void PopulateSettings(int page)
		{
			GameObject gameObject = ((Component)settingsTab.transform.Find("SettingsHolder")).gameObject;
			int childCount = gameObject.transform.childCount;
			for (int i = 0; i < childCount; i++)
			{
				Transform child = gameObject.transform.GetChild(i);
				Object.Destroy((Object)(object)((Component)child).gameObject);
			}
			int num = 3 * page;
			for (int j = 0; j < 3; j++)
			{
				if (settings.Count > num + j)
				{
					GenericSetting genericSetting = settings[num + j];
					genericSetting.SpawnPrefab(gameObject.transform);
				}
			}
		}

		private void ChangePanel(Panels panel)
		{
			ResetPageNumber();
			selectedPanel = panel;
			switch (panel)
			{
			case Panels.FILES:
				SetSelectorDesired(((Component)filesTabButton).transform.parent.Find("SelectorDesiredPos"));
				SetFilterMode(chosenSort);
				break;
			case Panels.MODIO:
				maxPages = (int)Math.Ceiling((double)modIoRetrieved.Count / (double)maxDisplayPerPage);
				UpdateArrowDisplays();
				SetSelectorDesired(((Component)modIoTabButton).transform.parent.Find("SelectorDesiredPos"));
				PopulateModIoTab(pageNumber);
				break;
			case Panels.SETTINGS:
				maxPages = (int)Math.Ceiling((double)settings.Count / 3.0);
				UpdateArrowDisplays();
				SetSelectorDesired(((Component)settingsTabButton).transform.parent.Find("SelectorDesiredPos"));
				PopulateSettings(pageNumber);
				break;
			case Panels.MULTIPLAYER:
			{
				maxPages = (int)Math.Ceiling((double)host.Count / (double)maxDisplayPerPage);
				UpdateArrowDisplays();
				SetSelectorDesired(((Component)multiplayerTabButton).transform.parent.Find("SelectorDesiredPos"));
				PopulateHostMods(pageNumber);
				TMP_Text component = ((Component)multiplayerTab.transform.Find("InstallAllHostModsButton").Find("Text (TMP)")).GetComponent<TMP_Text>();
				float num = 0f;
				int num2 = 0;
				foreach (ModInfo item in host)
				{
					if (!item.IsInstalled())
					{
						num2++;
						num += item.fileSizeKB;
					}
				}
				float num3 = num;
				float num4 = num3 / 1000000f;
				float num5 = num4 / 1000f;
				string value = "KB";
				float num6 = num3;
				if (num4 > 1f)
				{
					num6 = num4;
					value = "MB";
				}
				if (num5 > 1f)
				{
					num6 = num5;
					value = "GB";
				}
				num6 = Mathf.Round(num6 * 100f) / 100f;
				component.text = $"Install Host Mods ({num2}) ({num6} {value})";
				break;
			}
			}
		}

		private void UpdateArrowDisplays()
		{
			GameObject gameObject = ((Component)((Component)upArrowButton).transform.parent).gameObject;
			GameObject gameObject2 = ((Component)((Component)downArrowButton).transform.parent).gameObject;
			gameObject.SetActive(pageNumber > 0);
			gameObject2.SetActive(pageNumber < maxPages - 1);
			if (selectedPanel == Panels.MODIO && modIoRetrieved.Count > 80)
			{
				gameObject2.SetActive(true);
			}
		}

		private void OnArrowPress(bool up)
		{
			if (!up)
			{
				pageNumber++;
			}
			else
			{
				pageNumber--;
			}
			if (pageNumber < 0)
			{
				pageNumber = 0;
			}
			if (selectedPanel == Panels.MODIO && pageNumber == maxPages - 1 && modIoRetrieved.Count > 80)
			{
				trendingOffset++;
				if (searching)
				{
					ModFileManager.QueueTrending(trendingOffset * 100, KeyboardManager.typed);
				}
				else
				{
					ModFileManager.QueueTrending(trendingOffset * 100);
				}
			}
			if (pageNumber > maxPages)
			{
				pageNumber = maxPages;
			}
			if (selectedPanel == Panels.MULTIPLAYER)
			{
				PopulateHostMods(pageNumber);
			}
			if (selectedPanel == Panels.FILES)
			{
				if (chosenSort != InstalledSort.BLACKLIST)
				{
					PopulateFiles(pageNumber);
				}
				else
				{
					PopulateBlacklist(pageNumber);
				}
			}
			if (selectedPanel == Panels.MODIO)
			{
				PopulateModIoTab(pageNumber);
			}
			if (selectedPanel == Panels.SETTINGS)
			{
				PopulateSettings(pageNumber);
			}
			UpdateArrowDisplays();
		}

		private void RegisterWholeKeyboard()
		{
			RegisterKey("Q");
			RegisterKey("W");
			RegisterKey("E");
			RegisterKey("R");
			RegisterKey("T");
			RegisterKey("Y");
			RegisterKey("U");
			RegisterKey("I");
			RegisterKey("O");
			RegisterKey("P");
			RegisterKey("A");
			RegisterKey("S");
			RegisterKey("D");
			RegisterKey("F");
			RegisterKey("G");
			RegisterKey("H");
			RegisterKey("J");
			RegisterKey("K");
			RegisterKey("L");
			RegisterKey("Z");
			RegisterKey("X");
			RegisterKey("C");
			RegisterKey("V");
			RegisterKey("B");
			RegisterKey("N");
			RegisterKey("M");
			RegisterKey("1");
			RegisterKey("2");
			RegisterKey("3");
			RegisterKey("4");
			RegisterKey("5");
			RegisterKey("6");
			RegisterKey("7");
			RegisterKey("8");
			RegisterKey("9");
			RegisterKey("0");
			RegisterKey(".");
			RegisterKey(",");
			RegisterKey("'");
			RegisterKey("-");
			RegisterKey("=");
			SetKeyAction("Backspace", delegate
			{
				KeyboardManager.Backspace();
			});
			SetKeyAction("Space", delegate
			{
				KeyboardManager.Append(" ");
			});
			SetKeyAction("Enter", delegate
			{
				Search(KeyboardManager.typed);
			});
			SetKeyAction("Exit", delegate
			{
				rootAnimator.SetTrigger("keyboardpopup");
				SetMainCanvasColliderState(enabled: true);
			});
		}

		public void Reset()
		{
			((Component)((Component)this).transform.parent.Find("ModInfoOverlay")).gameObject.SetActive(false);
			keyboardPopup.gameObject.SetActive(false);
			((Component)this).GetComponent<CanvasGroup>().interactable = true;
			SetMainCanvasColliderState(enabled: true);
		}

		private void RegisterKey(string keyName)
		{
			string keyName2 = keyName;
			SetKeyAction(keyName2, delegate
			{
				KeyboardManager.Append(keyName2);
			});
		}

		private void PopupKeyboard()
		{
			rootAnimator.SetTrigger("keyboardpopup");
			SetMainCanvasColliderState(enabled: false);
		}

		private void SetKeyAction(string keyName, Action action)
		{
			GameObject gameObject = ((Component)keyboardPopup.transform.Find("Keyboard").Find(keyName)).gameObject;
			Button component = gameObject.GetComponent<Button>();
			((UnityEvent)component.onClick).AddListener(UnityAction.op_Implicit(action));
		}

		private void Update()
		{
			//IL_00c1: 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_00dd: Unknown result type (might be due to invalid IL or missing references)
			List<StalledAction> toRemove = new List<StalledAction>();
			foreach (StalledAction stalledAction in stalledActions)
			{
				stalledAction.frameCount--;
				if (stalledAction.frameCount == 0)
				{
					stalledAction.action();
					toRemove.Add(stalledAction);
				}
			}
			stalledActions.RemoveAll((StalledAction stall) => toRemove.Contains(stall));
			if ((Object)(object)desired != (Object)null && (Object)(object)selector != (Object)null)
			{
				selector.position = Vector3.Lerp(selector.position, desired.position, speed * Time.deltaTime);
			}
			if (ModFileManager.activeDownloadQueueElement != null)
			{
				modProgressDisplay.SetActive(true);
				RawImage thumbnail = ((Component)modProgressDisplay.transform.Find("Thumbnail")).gameObject.GetComponent<RawImage>();
				if (lastDownloadedTitle != ModFileManager.activeDownloadQueueElement.info.modName)
				{
					lastDownloadedTitle = ModFileManager.activeDownloadQueueElement.info.modName;
					ThumbnailThreader.DownloadThumbnail(ModFileManager.activeDownloadQueueElement.info.thumbnailLink, delegate(Texture thumb)
					{
						thumbnail.texture = thumb;
					});
				}
				TMP_Text component = ((Component)modProgressDisplay.transform.Find("Title")).gameObject.GetComponent<TMP_Text>();
				component.text = ModFileManager.activeDownloadQueueElement.info.modName;
				TMP_Text component2 = ((Component)modProgressDisplay.transform.Find("Percentage")).gameObject.GetComponent<TMP_Text>();
				component2.text = (int)Math.Round(ModlistMenu.activeDownloadModInfo.modDownloadPercentage) + "%";
			}
			else
			{
				lastDownloadedTitle = "nothing";
				modProgressDisplay.SetActive(false);
			}
			if (Object.op_Implicit((Object)(object)multiplayerTabButton))
			{
				((Component)((Component)multiplayerTabButton).transform.parent).gameObject.SetActive(NetworkInfo.HasServer);
			}
			if (Object.op_Implicit((Object)(object)keyboardPopup))
			{
				typeBarText.text = KeyboardManager.typed;
				if (KeyboardManager.typed == "")
				{
					typeBarTextObject.SetActive(false);
					typeBarEmptyTextObject.SetActive(true);
				}
				else
				{
					typeBarTextObject.SetActive(true);
					typeBarEmptyTextObject.SetActive(false);
				}
			}
		}

		public void SetSelectorDesired(Transform transform)
		{
			desired = transform;
		}
	}
}
namespace ModioModNetworker
{
	[StructLayout(LayoutKind.Sequential, Size = 1)]
	public struct ModioModNetworkerUpdaterVersion
	{
		public const string versionString = "2.4.0";
	}
	public class MainClass : MelonMod
	{
		private static string MODIO_MODNETWORKER_DIRECTORY = MelonUtils.GameDirectory + "/ModIoModNetworker";

		private static string MODIO_AUTH_TXT_DIRECTORY = MODIO_MODNETWORKER_DIRECTORY + "/auth.txt";

		private static string MODIO_BLACKLIST_TXT_DIRECTORY = MODIO_MODNETWORKER_DIRECTORY + "/blacklist.txt";

		public static List<string> subscribedModIoNumericalIds = new List<string>();

		public static List<string> blacklistedModIoIds = new List<string>();

		private static List<string> toRemoveSubscribedModIoIds = new List<string>();

		public static List<ModInfo> subscribedMods = new List<ModInfo>();

		public static List<ModInfo> installedMods = new List<ModInfo>();

		public static List<InstalledModInfo> InstalledModInfos = new List<InstalledModInfo>();

		private static List<InstalledModInfo> outOfDateModInfos = new List<InstalledModInfo>();

		public static bool warehouseReloadRequested = false;

		public static List<string> warehousePalletReloadTargets = new List<string>();

		public static List<string> warehouseReloadFolders = new List<string>();

		public static bool subsChanged = false;

		public static bool refreshInstalledModsRequested = false;

		public static bool refreshSubscribedModsRequested = false;

		public static bool menuRefreshRequested = false;

		public static string subscriptionThreadString = "";

		public static string trendingThreadString = "";

		public static bool subsRefreshing = false;

		private static int desiredSubs = 0;

		private bool addedCallback = false;

		public static MelonPreferences_Category melonPreferencesCategory;

		private static MelonPreferences_Entry<string> modsDirectory;

		public static MelonPreferences_Entry<bool> autoDownloadAvatarsConfig;

		public static MelonPreferences_Entry<bool> autoDownloadSpawnablesConfig;

		public static MelonPreferences_Entry<bool> autoDownloadLevelsConfig;

		public static MelonPreferences_Entry<bool> downloadMatureContentConfig;

		public static MelonPreferences_Entry<bool> tempLobbyModsConfig;

		public static MelonPreferences_Entry<bool> overrideFusionDLConfig;

		public static MelonPreferences_Entry<float> maxAutoDownloadMbConfig;

		public static MelonPreferences_Entry<float> maxLevelAutoDownloadGbConfig;

		public static float maxAutoDownloadMb = 500f;

		public static bool autoDownloadAvatars = true;

		public static bool autoDownloadSpawnables = true;

		public static bool autoDownloadLevels = false;

		public static float levelMaxGb = 1f;

		public static bool downloadMatureContent = false;

		public static bool tempLobbyMods = false;

		public static bool useRepo = false;

		public static bool overrideFusionDL = false;

		public static List<string> modNumericalsDownloadedDuringLobbySession = new List<string>();

		private static int subsShown = 0;

		private static int subTotal = 0;

		public bool palletLock = false;

		public static bool confirmedHostHasIt = false;

		private static bool loadedInstalled = false;

		public static bool handlingInstalled = false;

		public static bool handlingSubscribed = false;

		private bool assetWarehouseLoaded = false;

		public override void OnInitializeMelon()
		{
			//IL_027f: Unknown result type (might be due to invalid IL or missing references)
			//IL_0289: Expected O, but got Unknown
			//IL_0291: Unknown result type (might be due to invalid IL or missing references)
			//IL_029b: Expected O, but got Unknown
			//IL_02a3: Unknown result type (might be due to invalid IL or missing references)
			//IL_02ad: Expected O, but got Unknown
			//IL_02c7: Unknown result type (might be due to invalid IL or missing references)
			//IL_02d1: Expected O, but got Unknown
			melonPreferencesCategory = MelonPreferences.CreateCategory("ModioModNetworker");
			melonPreferencesCategory.SetFilePath(MelonUtils.UserDataDirectory + "/ModioModNetworker.cfg");
			modsDirectory = melonPreferencesCategory.CreateEntry<string>("ModDirectoryPath", Application.persistentDataPath + "/Mods", (string)null, (string)null, false, false, (ValueValidator)null, (string)null);
			autoDownloadAvatarsConfig = melonPreferencesCategory.CreateEntry<bool>("AutoDownloadAvatars", true, (string)null, (string)null, false, false, (ValueValidator)null, (string)null);
			autoDownloadSpawnablesConfig = melonPreferencesCategory.CreateEntry<bool>("AutoDownloadSpawnables", true, (string)null, (string)null, false, false, (ValueValidator)null, (string)null);
			autoDownloadLevelsConfig = melonPreferencesCategory.CreateEntry<bool>("AutoDownloadLevels", true, (string)null, (string)null, false, false, (ValueValidator)null, (string)null);
			maxLevelAutoDownloadGbConfig = melonPreferencesCategory.CreateEntry<float>("MaxLevelAutoDownloadGb", 1f, (string)null, (string)null, false, false, (ValueValidator)null, (string)null);
			tempLobbyModsConfig = melonPreferencesCategory.CreateEntry<bool>("TemporaryLobbyMods", false, (string)null, "If set to true, lobby mods like (avatars/spawnables/levels) that got auto downloaded will be deleted when you leave the lobby.", false, false, (ValueValidator)null, (string)null);
			maxAutoDownloadMbConfig = melonPreferencesCategory.CreateEntry<float>("MaxAutoDownloadMb", 500f, (string)null, (string)null, false, false, (ValueValidator)null, (string)null);
			downloadMatureContentConfig = melonPreferencesCategory.CreateEntry<bool>("DownloadMatureContent", false, (string)null, (string)null, false, false, (ValueValidator)null, (string)null);
			overrideFusionDLConfig = melonPreferencesCategory.CreateEntry<bool>("OverrideFusionDL", true, (string)null, (string)null, false, false, (ValueValidator)null, (string)null);
			maxAutoDownloadMb = maxAutoDownloadMbConfig.Value;
			autoDownloadAvatars = autoDownloadAvatarsConfig.Value;
			downloadMatureContent = downloadMatureContentConfig.Value;
			autoDownloadSpawnables = autoDownloadSpawnablesConfig.Value;
			autoDownloadLevels = autoDownloadLevelsConfig.Value;
			tempLobbyMods = tempLobbyModsConfig.Value;
			levelMaxGb = maxLevelAutoDownloadGbConfig.Value;
			useRepo = false;
			overrideFusionDL = overrideFusionDLConfig.Value;
			ModFileManager.MOD_FOLDER_PATH = modsDirectory.Value;
			SpotlightOverride.LoadFromRegularURL();
			AssetBundle bundle = (HelperMethods.IsAndroid() ? EmbeddedAssetBundle.LoadFromAssembly(Assembly.GetExecutingAssembly(), "ModioModNetworker.Resources.networkermenu.android.networker") : EmbeddedAssetBundle.LoadFromAssembly(Assembly.GetExecutingAssembly(), "ModioModNetworker.Resources.networkermenu.networker"));
			NetworkerAssets.LoadAssetsUI(bundle);
			PrepareModFiles();
			string text = ReadAuthKey();
			blacklistedModIoIds = ReadBlacklist();
			MelonLogger.Msg("Loaded blacklist with " + blacklistedModIoIds.Count + " entries.");
			ModIOSettings.LoadToken((Action<string>)OnLoadToken);
			MelonLogger.Msg("Loading internal module...");
			ModuleHandler.LoadModule(Assembly.GetExecutingAssembly());
			ModFileManager.Initialize();
			ModlistMenu.Initialize();
			MultiplayerHooking.OnPlayerJoin += new PlayerUpdate(OnPlayerJoin);
			MultiplayerHooking.OnDisconnect += new ServerEvent(OnDisconnect);
			MultiplayerHooking.OnStartServer += new ServerEvent(OnStartServer);
			NetworkPlayer.OnNetworkRigCreated += OnPlayerRepCreated;
			MultiplayerHooking.OnLobbyCategoryCreated += new LobbyMenuAction(OnLobbyCategoryMade);
			void OnLoadToken(string loadedToken)
			{
				ModFileManager.OAUTH_KEY = loadedToken;
				MelonLogger.Msg("Populating currently installed mods via this mod.");
				installedMods.Clear();
				InstalledModInfos.Clear();
				PopulateInstalledMods(ModFileManager.MOD_FOLDER_PATH);
				loadedInstalled = true;
				MelonLogger.Msg("Checking mod.io account subscriptions");
				PopulateSubscriptions();
				ModFileManager.QueueTrending(0);
				MelonLogger.Msg("Registered on mod.io with auth key!");
			}
		}

		private void OnLobbyCategoryMade(Page category, INetworkLobby lobby)
		{
			//IL_002b: 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_007a: Expected O, but got Unknown
			//IL_008a: Unknown result type (might be due to invalid IL or missing references)
			INetworkLobby lobby2 = lobby;
			string text = default(string);
			if (lobby2.TryGetMetadata("modionetworker", ref text))
			{
				category.CreateFunction("ModioModNetworker Active On Server", Color.cyan, (Action)delegate
				{
				});
			}
			string text2 = default(string);
			if (!lobby2.TryGetMetadata("LevelBarcode", ref text2) || CrateFilterer.HasCrate<LevelCrate>(new Barcode(text2)))
			{
				return;
			}
			category.CreateFunction("Download Level", Color.cyan, (Action)delegate
			{
				//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_0097: 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_00a7: 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_00b9: 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_00c9: 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: Expected O, but got Unknown
				//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_0036: 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_0046: 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_0058: 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_006f: Unknown result type (might be due to invalid IL or missing references)
				//IL_007b: Expected O, but got Unknown
				string text3 = default(string);
				if (lobby2.TryGetMetadata("networkermap", ref text3))
				{
					if (text3 != "null")
					{
						FusionNotifier.Send(new FusionNotification
						{
							title = new NotificationText("Installing lobby level...", Color.cyan, true),
							showTitleOnPopup = true,
							popupLength = 1f,
							message = NotificationText.op_Implicit("Please wait"),
							isMenuItem = false,
							isPopup = true
						});
						ModInfo.RequestModInfoNumerical(text3, "install_native");
					}
					else
					{
						FusionNotifier.Send(new FusionNotification
						{
							title = new NotificationText("Cannot install this map!", Color.cyan, true),
							showTitleOnPopup = true,
							popupLength = 1f,
							message = NotificationText.op_Implicit("Probably not a networked map!"),
							isMenuItem = false,
							isPopup = true
						});
					}
				}
			});
		}

		private void DeleteAllTempMods()
		{
			foreach (ModInfo installedMod in installedMods)
			{
				if (installedMod.temp)
				{
					ModFileManager.UnInstallMainThread(installedMod.numericalId);
				}
			}
		}

		public override void OnUpdate()
		{
			//IL_00ce: Unknown result type (might be due to invalid IL or missing references)
			//IL_00d4: Invalid comparison between Unknown and I4
			//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_020e: 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_021f: 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_0231: Unknown result type (might be due to invalid IL or missing references)
			//IL_023d: Expected O, but got Unknown
			//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_0409: 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_0420: 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_042d: 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_043f: Unknown result type (might be due to invalid IL or missing references)
			//IL_044b: Expected O, but got Unknown
			foreach (AvatarDownloadBar value3 in AvatarDownloadBar.bars.Values)
			{
				value3.Update();
			}
			ThumbnailThreader.HandleQueue();
			MainThreadManager.HandleQueue();
			LevelHoldQueue.Update();
			if (ModFileManager.activeDownloadQueueElement != null && ModFileManager.activeDownloadQueueElement.associatedPlayer != null && AvatarDownloadBar.bars.TryGetValue(ModFileManager.activeDownloadQueueElement.associatedPlayer, out AvatarDownloadBar value))
			{
				ModInfo activeDownloadModInfo = ModlistMenu.activeDownloadModInfo;
				value.SetModName(activeDownloadModInfo.modId);
				value.SetPercentage((float)activeDownloadModInfo.modDownloadPercentage);
			}
			bool flag = false;
			if (SceneStreamer._session != null && (int)SceneStreamer._session.Status == 1)
			{
				flag = true;
			}
			if (ModFileManager.activeDownloadAction != null && ModFileManager.activeDownloadAction.Check())
			{
				ModFileManager.activeDownloadAction.Handle();
				ModFileManager.activeDownloadAction = null;
			}
			if (!addedCallback && AssetWarehouse.Instance != null)
			{
				AssetWarehouse instance = AssetWarehouse.Instance;
				instance.OnCrateAdded += Action<Barcode>.op_Implicit((Action<Barcode>)delegate(Barcode s)
				{
					palletLock = false;
					foreach (NetworkPlayer allNetworkPlayer in NetworkPlayerUtilities.GetAllNetworkPlayers())
					{
						FieldInfo field = ((object)allNetworkPlayer.AvatarSetter).GetType().GetField("_isAvatarDirty", BindingFlags.Instance | BindingFlags.NonPublic);
						field.SetValue(allNetworkPlayer.AvatarSetter, true);
					}
					SpawnableHoldQueue.CheckValid(s._id);
					LevelHoldQueue.CheckValid(s._id);
				});
				addedCallback = true;
				assetWarehouseLoaded = true;
				DeleteAllTempMods();
			}
			if (subsRefreshing && subscribedModIoNumericalIds.Count >= desiredSubs)
			{
				foreach (string toRemoveSubscribedModIoId in toRemoveSubscribedModIoIds)
				{
					subscribedModIoNumericalIds.Remove(toRemoveSubscribedModIoId);
				}
				toRemoveSubscribedModIoIds.Clear();
				ModlistMenu.Refresh(openMenu: true);
				subsRefreshing = false;
				handlingSubscribed = false;
				FusionNotifier.Send(new FusionNotification
				{
					title = new NotificationText("Mod.io Subscriptions Refreshed!", Color.cyan, true),
					showTitleOnPopup = true,
					popupLength = 1f,
					isMenuItem = false,
					isPopup = true
				});
				MelonLogger.Msg("Finished refreshing mod.io subscriptions!");
				outOfDateModInfos.Clear();
			}
			if (warehouseReloadRequested && assetWarehouseLoaded && AssetWarehouse.Instance._initialLoaded && !palletLock)
			{
				bool flag2 = false;
				if (warehousePalletReloadTargets.Count > 0)
				{
					ModFileManager.DeleteExistingModObjects(warehousePalletReloadTargets[0]);
					PalletManifest val = null;
					Enumerator<Barcode, PalletManifest> enumerator3 = AssetWarehouse.Instance.palletManifests.GetEnumerator();
					while (enumerator3.MoveNext())
					{
						KeyValuePair<Barcode, PalletManifest> current3 = enumerator3.Current;
						if (current3.key._id == warehousePalletReloadTargets[0])
						{
							val = current3.value;
							break;
						}
					}
					AssetWarehouse.Instance.LoadAndUpdatePalletManifest(val.Pallet, ModlistMenu.activeDownloadModInfo.ToModListing(), val.PalletPath, val.CatalogPath, (IResourceLocator)null);
					warehousePalletReloadTargets.RemoveAt(0);
					flag2 = true;
				}
				if (warehouseReloadFolders.Count > 0)
				{
					AssetWarehouse.Instance.LoadPalletFromFolderAsync(warehouseReloadFolders[0], true, (string)null, ModlistMenu.activeDownloadModInfo.ToModListing());
					warehouseReloadFolders.RemoveAt(0);
					palletLock = true;
				}
				if (warehouseReloadFolders.Count == 0 && warehousePalletReloadTargets.Count == 0)
				{
					string text = "Downloaded!";
					string text2 = "This mod has been loaded into the game.";
					if (flag2)
					{
						text = "Updated!";
						text2 = "This mod has been updated and reloaded.";
					}
					if (ModFileManager.activeDownloadQueueElement.notify)
					{
						FusionNotifier.Send(new FusionNotification
						{
							title = new NotificationText(ModlistMenu.activeDownloadModInfo.modId + " " + text, Color.cyan, true),
							showTitleOnPopup = true,
							message = new NotificationText(text2),
							popupLength = 3f,
							isMenuItem = false,
							isPopup = true
						});
					}
					if (ModFileManager.activeDownloadQueueElement != null && ModFileManager.activeDownloadQueueElement.associatedPlayer != null && AvatarDownloadBar.bars.TryGetValue(ModFileManager.activeDownloadQueueElement.associatedPlayer, out AvatarDownloadBar value2))
					{
						value2.Finish();
					}
					palletLock = false;
					warehouseReloadRequested = false;
					ModFileManager.isDownloading = false;
					ModFileManager.activeDownloadWebRequest = null;
					ModlistMenu.activeDownloadModInfo = null;
					ModFileManager.activeDownloadQueueElement = null;
				}
			}
			ModInfo.HandleQueue();
			ModFileManager.CheckQueue();
			TimerManager.Update();
			if (!flag && ModlistMessage.waitAndQueue.Count > 0)
			{
				foreach (ModInfo item in ModlistMessage.waitAndQueue)
				{
					float num = item.fileSizeKB / 1000000f;
					if (num < maxAutoDownloadMb && autoDownloadAvatars)
					{
						if (!downloadMatureContent && item.mature)
						{
							return;
						}
						ModFileManager.AddToQueue(new DownloadQueueElement
						{
							associatedPlayer = null,
							info = item,
							notify = false
						});
					}
				}
				ModlistMessage.waitAndQueue.Clear();
			}
			if (subsChanged)
			{
				subsChanged = false;
				if (NetworkInfo.HasServer && NetworkInfo.IsServer)
				{
					SendAllMods();
				}
			}
			if (menuRefreshRequested)
			{
				if (flag)
				{
					return;
				}
				ModlistMenu.Refresh(openMenu: true);
				menuRefreshRequested = false;
			}
			if (refreshSubscribedModsRequested && !handlingInstalled && !handlingSubscribed)
			{
				refreshSubscribedModsRequested = false;
				handlingSubscribed = true;
				subscribedMods.Clear();
				subscribedModIoNumericalIds.Clear();
				subTotal = 0;
				subsShown = 0;
				desiredSubs = 0;
				ModFileManager.QueueSubscriptions(subsShown);
			}
			if (refreshInstalledModsRequested && !handlingSubscribed && !handlingInstalled)
			{
				installedMods.Clear();
				InstalledModInfos.Clear();
				NetworkerMenuController.totalInstalled.Clear();
				ModlistMenu.installPage = 0;
				Thread thread = new Thread((ThreadStart)delegate
				{
					handlingInstalled = true;
					PopulateInstalledMods(ModFileManager.MOD_FOLDER_PATH);
					MainThreadManager.QueueAction(delegate
					{
						if (Object.op_Implicit((Object)(object)NetworkerMenuController.instance))
						{
							NetworkerMenuController.instance.Refresh();
						}
					});
					handlingInstalled = false;
				});
				thread.Start();
				loadedInstalled = true;
				ModlistMenu.Refresh(openMenu: true);
				refreshInstalledModsRequested = false;
				if (Object.op_Implicit((Object)(object)NetworkerMenuController.instance))
				{
					NetworkerMenuController.instance.UpdateModPopupButtons();
				}
			}
			if (subscriptionThreadString != "")
			{
				InternalPopulateSubscriptions();
			}
			if (trendingThreadString != "")
			{
				InternalPopulateTrending();
				if (Object.op_Implicit((Object)(object)NetworkerMenuController.instance))
				{
					NetworkerMenuController.instance.OnNewTrendingRecieved();
				}
			}
		}

		public static void RequestInstallCheck(float delay = 1f)
		{
			TimerManager.DelayAction(delay, delegate
			{
				refreshInstalledModsRequested = true;
			});
		}

		private static void UpdateModInfo(ModInfo subscribed, InstalledModInfo installed)
		{
			try
			{
				ModInfo modInfo = installed.ModInfo;
				modInfo.mature = subscribed.mature;
				modInfo.modSummary = subscribed.modSummary;
				modInfo.modName = subscribed.modName;
				modInfo.thumbnailLink = subscribed.thumbnailLink;
				modInfo.numericalId = subscribed.numericalId;
				modInfo.structureVersion = ModInfo.globalStructureVersion;
				modInfo.windowsDownloadLink = subscribed.windowsDownloadLink;
				modInfo.androidDownloadLink = subscribed.androidDownloadLink;
				if (modInfo.version == null)
				{
					modInfo.version = "0.0.0";
				}
				string path = Path.Combine(Directory.GetParent(installed.palletPath).Name, "modinfo.json");
				File.Delete(path);
				string contents = JsonConvert.SerializeObject((object)modInfo);
				File.WriteAllText(path, contents);
				MelonLogger.Msg($"Updated modinfo.json for {modInfo.modId} to version {modInfo.structureVersion}");
			}
			catch (Exception ex)
			{
				MelonLogger.Error("Skipped updating modinfo.json for " + installed.ModInfo.modId + " because of an error: " + ex);
			}
		}

		public static void ReceiveSubModInfo(ModInfo modInfo, bool ignoreTag = false)
		{
			InstalledModInfo installedModInfo = null;
			if (modInfo.version == null)
			{
				modInfo.version = "0.0.0";
			}
			if (installedModInfo != null)
			{
				outOfDateModInfos.Remove(installedModInfo);
			}
			if (!modInfo.isValidMod)
			{
				toRemoveSubscribedModIoIds.Add(modInfo.numericalId);
			}
			ModFileManager.AddToQueue(new DownloadQueueElement
			{
				associatedPlayer = null,
				info = modInfo
			});
			subscribedModIoNumericalIds.Add(modInfo.numericalId);
			subscribedMods.Add(modInfo);
		}

		public static void PopulateSubscriptions()
		{
			refreshSubscribedModsRequested = true;
		}

		private static void InternalPopulateTrending()
		{
			string text = trendingThreadString;
			trendingThreadString = "";
			dynamic val = JsonConvert.DeserializeObject<object>(text);
			foreach (dynamic item in val["data"])
			{
				string text2 = (string)item["profile_url"];
				string numericalId = "" + item["id"];
				string text3 = (string)item["name"];
				string modSummary = (string)item["summary"];
				string thumbnailLink = (string)item["logo"]["thumb_640x360"];
				string text4 = text2.Split('/')[^1];
				bool flag = true;
				int num = 0;
				int num2 = 0;
				try
				{
					foreach (dynamic item2 in item["platforms"])
					{
						if ((string)item2["platform"] == "windows")
						{
							int num3 = (int)item2["modfile_live"];
							num = num3;
							break;
						}
					}
					foreach (dynamic item3 in item["platforms"])
					{
						if ((string)item3["platform"] == "android")
						{
							int num4 = (int)item3["modfile_live"];
							num2 = num4;
							break;
						}
					}
					if (num != 0 && num2 != 0 && num == num2)
					{
						flag = false;
					}
					if ((int)item["status"] == 3)
					{
						flag = false;
					}
					ModInfo modInfo = ModInfo.MakeFromDynamic(item["modfile"], text4);
					modInfo.isValidMod = false;
					modInfo.mature = (int)item["maturity_option"] > 0;
					modInfo.modName = text3;
					modInfo.thumbnailLink = thumbnailLink;
					modInfo.modSummary = modSummary;
					modInfo.numericalId = numericalId;
					foreach (dynamic item4 in item["tags"])
					{
						modInfo.tags.Add((string)item4["name"]);
					}
					if (flag)
					{
						modInfo.androidDownloadLink = $"https://api.mod.io/v1/games/3809/mods/{(string)item["id"]}/files/{num2}/download";
						modInfo.windowsDownloadLink = $"https://api.mod.io/v1/games/3809/mods/{(string)item["id"]}/files/{num}/download";
						modInfo.isValidMod = true;
					}
					if (modInfo.version == null)
					{
						modInfo.version = "0.0.0";
					}
					if (modInfo.mature && !downloadMatureContent)
					{
						break;
					}
					NetworkerMenuController.modIoRetrieved.Add(modInfo);
				}
				catch (Exception ex)
				{
					MelonLogger.Error("Failed to parse trending mod " + text3 + ": " + ex);
				}
			}
		}

		private static void InternalPopulateSubscriptions()
		{
			string text = subscriptionThreadString;
			subscriptionThreadString = "";
			dynamic val = JsonConvert.DeserializeObject<object>(text);
			int num = 0;
			int num2 = (int)val["result_total"];
			if (subTotal == 0)
			{
				MelonLogger.Msg("Total subscriptions: " + num2);
				subTotal = num2;
				desiredSubs = 0;
			}
			int num3 = (int)val["result_count"];
			if (num3 == 0)
			{
				MelonLogger.Msg("No subscriptions found!");
				return;
			}
			foreach (dynamic item in val["data"])
			{
				if ((int)item["game_id"] == 3809)
				{
					num++;
				}
			}
			desiredSubs += num;
			ModInfoThreadRequest result;
			while (ModInfo.modInfoThreadRequests.TryDequeue(out result))
			{
			}
			ModInfo.requestSize = num;
			foreach (dynamic item2 in val["data"])
			{
				if ((int)item2["game_id"] != 3809)
				{
					continue;
				}
				string text2 = (string)item2["profile_url"];
				string numericalId = ((string)item2["id"]) ?? "";
				string modName = (string)item2["name"];
				string modSummary = (string)item2["summary"];
				string author = (string)item2["submitted_by"]["username"];
				string thumbnailLink = (string)item2["logo"]["thumb_640x360"];
				string text3 = text2.Split('/')[^1];
				bool flag = true;
				int num4 = 0;
				int num5 = 0;
				foreach (dynamic item3 in item2["platforms"])
				{
					if ((string)item3["platform"] == "windows")
					{
						int num6 = (int)item3["modfile_live"];
						num4 = num6;
						break;
					}
				}
				foreach (dynamic item4 in item2["platforms"])
				{
					if ((string)item4["platform"] == "android")
					{
						int num7 = (int)item4["modfile_live"];
						num5 = num7;
						break;
					}
				}
				if (num4 != 0 && num5 != 0 && num4 == num5)
				{
					flag = false;
				}
				if ((int)item2["status"] == 3)
				{
					flag = false;
				}
				ModInfo modInfo = ModInfo.MakeFromDynamic(item2["modfile"], text3);
				modInfo.isValidMod = false;
				modInfo.mature = (int)item2["maturity_option"] > 0;
				modInfo.modName = modName;
				modInfo.thumbnailLink = thumbnailLink;
				modInfo.modSummary = modSummary;
				modInfo.numericalId = numericalId;
				modInfo.author = author;
				foreach (dynamic item5 in item2["tags"])
				{
					modInfo.tags.Add((string)item5["name"]);
				}
				if (flag)
				{
					modInfo.androidDownloadLink = string.Format("https://api.mod.io/v1/games/3809/mods/{0}/files/{1}/download", (object?)item2["id"], num5);
					modInfo.windowsDownloadLink = string.Format("https://api.mod.io/v1/games/3809/mods/{0}/files/{1}/download", (object?)item2["id"], num4);
					modInfo.isValidMod = true;
				}
				ReceiveSubModInfo(modInfo);
			}
			subsShown += num3;
			if (subTotal - subsShown > 0)
			{
				ModFileManager.QueueSubscriptions(subsShown);
			}
			if (subsShown >= subTotal)
			{
				subsRefreshing = true;
			}
		}

		public void PopulateInstalledMods(string directory)
		{
			List<DirectoryInfo> list = new List<DirectoryInfo>();
			try
			{
				list = (from f in new DirectoryInfo(directory).GetDirectories()
					orderby f.LastWriteTime descending
					select f).ToList();
			}
			catch (Exception)
			{
			}
			if (1 == 0)
			{
				return;
			}
			string[] files = Directory.GetFiles(directory);
			foreach (string text in files)
			{
				if (!text.EndsWith(".manifest"))
				{
					continue;
				}
				dynamic val = JsonConvert.DeserializeObject<object>(File.ReadAllText(text));
				ModInfo modInfo = new ModInfo();
				try
				{
					string version = (string)val["objects"]["2"]["version"];
					string modId = (string)val["objects"]["2"]["title"];
					string modSummary = (string)val["objects"]["2"]["description"];
					string thumbnailLink = (string)val["objects"]["2"]["thumbnailUrl"];
					int num = -1;
					int num2 = -1;
					string text2 = "";
					int value = 0;
					foreach (dynamic item2 in val["objects"]["2"]["targets"])
					{
						string text3 = item2.ToString();
						if (text3.Contains("networker"))
						{
							string[] array = text3.Split("\": {");
							text2 = array[0].Replace("\"", "");
						}
					}
					string windowsDownloadLink = "";
					string androidDownloadLink = "";
					try
					{
						num2 = (int)val["objects"]["2"]["targets"]["android"]["ref"];
					}
					catch (Exception)
					{
					}
					try
					{
						num = (int)val["objects"]["2"]["targets"]["pc"]["ref"];
					}
					catch (Exception)
					{
					}
					if (num != -1)
					{
						int value2 = (int)val["objects"][num.ToString()]["modfileId"];
						value = (int)val["objects"][num.ToString()]["modId"];
						windowsDownloadLink = $"https://api.mod.io/v1/games/3809/mods/{value}/files/{value2}/download";
					}
					if (num2 != -1)
					{
						int value3 = val["objects"][num2.ToString()]["modfileId"];
						value = (int)val["objects"][num2.ToString()]["modId"];
						androidDownloadLink = $"https://api.mod.io/v1/games/3809/mods/{value}/files/{value3}/download";
					}
					modInfo.version = version;
					modInfo.thumbnailLink = thumbnailLink;
					modInfo.modSummary = modSummary;
					modInfo.androidDownloadLink = androidDownloadLink;
					modInfo.windowsDownloadLink = windowsDownloadLink;
					modInfo.modId = modId;
					modInfo.numericalId = value.ToString() ?? "";
					modInfo.structureVersion = ModInfo.globalStructureVersion;
					if (text2 != "")
					{
						modInfo.PopulateFromInfoString(text2);
					}
					NetworkerMenuController.totalInstalled.Add(modInfo);
					installedMods.Add(modInfo);
					InstalledModInfo installedModInfo = new InstalledModInfo();
					installedModInfo.manifestPath = text;
					installedModInfo.palletBarcode = (string)val["objects"]["1"]["palletBarcode"];
					installedModInfo.palletPath = (string)val["objects"]["1"]["palletPath"];
					installedModInfo.catalogPath = (string)val["objects"]["1"]["catalogPath"];
					installedModInfo.ModInfo = modInfo;
					InstalledModInfo item = installedModInfo;
					InstalledModInfos.Add(item);
				}
				catch (Exception)
				{
				}
			}
		}

		public void OnStartServer()
		{
			ModlistMenu.Refresh(openMenu: false);
			confirmedHostHasIt = true;
		}

		public void OnDisconnect()
		{
			ModlistMessage.avatarMods.Clear();
			ModlistMenu.Clear();
			confirmedHostHasIt = false;
			modNumericalsDownloadedDuringLobbySession.Clear();
			DeleteAllTempMods();
		}

		public override void OnApplicationQuit()
		{
			DeleteAllTempMods();
		}

		public void OnPlayerJoin(PlayerId playerId)
		{
			if (NetworkInfo.HasServer && NetworkInfo.IsServer)
			{
				SendAllMods();
				SendAllAvatars();
			}
		}

		public void OnPlayerRepCreated(NetworkPlayer networkPlayer, RigManager manager)
		{
			if (!networkPlayer.NetworkEntity.IsOwner)
			{
				new AvatarDownloadBar(networkPlayer);
			}
		}

		private void SendAllAvatars()
		{
			foreach (KeyValuePair<PlayerId, ModInfo> avatarMod in ModlistMessage.avatarMods)
			{
				ModlistData modlistData = ModlistData.Create(avatarMod.Key, avatarMod.Value, ModlistData.ModType.AVATAR);
				FusionWriter val = FusionWriter.Create();
				try
				{
					using ModlistData modlistData2 = modlistData;
					val.Write<ModlistData>(modlistData2);
					FusionMessage val2 = FusionMessage.ModuleCreate<ModlistMessage>(val);
					try
					{
						MessageSender.BroadcastMessageExcept(PlayerId.op_Implicit(avatarMod.Key), (NetworkChannel)0, val2, true);
					}
					finally
					{
						((IDisposable)val2)?.Dispose();
					}
				}
				finally
				{
					((IDisposable)val)?.Dispose();
				}
			}
		}

		private void SendAllMods()
		{
			int num = 0;
			foreach (ModInfo subscribedMod in subscribedMods)
			{
				bool final = num == subscribedMods.Count - 1;
				ModlistData modlistData = ModlistData.Create(final, subscribedMod);
				FusionWriter val = FusionWriter.Create();
				try
				{
					using ModlistData modlistData2 = modlistData;
					val.Write<ModlistData>(modlistData2);
					FusionMessage val2 = FusionMessage.ModuleCreate<ModlistMessage>(val);
					try
					{
						MessageSender.BroadcastMessageExceptSelf((NetworkChannel)0, val2);
					}
					finally
					{
						((IDisposable)val2)?.Dispose();
					}
				}
				finally
				{
					((IDisposable)val)?.Dispose();
				}
				num++;
			}
		}

		private void PrepareModFiles()
		{
			if (!Directory.Exists(MODIO_MODNETWORKER_DIRECTORY))
			{
				Directory.CreateDirectory(MODIO_MODNETWORKER_DIRECTORY);
			}
			if (!File.Exists(MODIO_AUTH_TXT_DIRECTORY))
			{
				CreateDefaultAuthText(MODIO_AUTH_TXT_DIRECTORY);
			}
			if (!File.Exists(MODIO_BLACKLIST_TXT_DIRECTORY))
			{
				CreateDefaultBlacklistText(MODIO_BLACKLIST_TXT_DIRECTORY);
			}
		}

		private void CreateDefaultBlacklistText(string directory)
		{
			using StreamWriter streamWriter = File.CreateText(directory);
			streamWriter.WriteLine("#                       ----- WELCOME TO THE MOD.IO BLACKLIST TXT! -----");
			streamWriter.WriteLine("#");
			streamWriter.WriteLine("# This file is where you put mods that you DO NOT want to download under any circumstances.");
			streamWriter.WriteLine("# If you want to blacklist a mod, simply put the mod ID in this file, and it will not be downloaded.");
			streamWriter.WriteLine("# You can find the mod ID by going to the mod.io page for the mod, and looking at the URL.");
			streamWriter.WriteLine("# The mod ID is the name at the end of the URL.");
			streamWriter.WriteLine("# For example, if the URL is https://mod.io/g/bonelab/m/remove-bodylog-transform-vfx, the mod ID is remove-bodylog-transform-vfx");
			streamWriter.WriteLine("# To blacklist mods, simply put each mod ID on a new line. DO NOT START YOUR LINES WITH #, as this will comment out the line.");
			streamWriter.WriteLine("# Ex. ");
			streamWriter.WriteLine("# remove-bodylog-transform-vfx");
			streamWriter.WriteLine("# my-awesome-replacer");
			streamWriter.WriteLine("# annoying-mod");
		}

		private void CreateDefaultAuthText(string directory)
		{
			using StreamWriter streamWriter = File.CreateText(directory);
			streamWriter.WriteLine("#                       ----- WELCOME TO THE MOD.IO AUTH TXT! -----");
			streamWriter.WriteLine("#");
			streamWriter.WriteLine("# Put your mod.io OAuth token in this file, and it will be used to download mods from the mod.io network.");
			streamWriter.WriteLine("# Your OAuth token can be found here: https://mod.io/me/access");
			streamWriter.WriteLine("# At the bottom, you should see a section called 'OAuth Access'");
			streamWriter.WriteLine("# Create a key, then create a token using the + Icon. call it whatever you'd like, this doesnt matter.");
			streamWriter.WriteLine("# Then create a token, call it whatever you'd like, this doesnt matter.");
			streamWriter.WriteLine("# The token is pretty long, so make sure you copy the entire thing. Make sure you're copying the token, not the key.");
			streamWriter.WriteLine("# Once you've copied the token, paste it in this file, replacing the text labeled REPLACE_THIS_TEXT_WITH_YOUR_TOKEN.");
			streamWriter.WriteLine("AuthToken=REPLACE_THIS_TEXT_WITH_YOUR_TOKEN");
		}

		private List<string> ReadBlacklist()
		{
			string[] array = File.ReadAllLines(MODIO_BLACKLIST_TXT_DIRECTORY);
			List<string> list = new List<string>();
			string[] array2 = array;
			foreach (string text in array2)
			{
				if (!text.StartsWith("#") && text != "")
				{
					list.Add(text.Trim());
				}
			}
			return list;
		}

		public static void WriteLineToBlacklist(string line)
		{
			using StreamWriter streamWriter = new StreamWriter(MODIO_BLACKLIST_TXT_DIRECTORY, append: true);
			streamWriter.WriteLine(line);
		}

		public static void RemoveLineFromBlacklist(string line)
		{
			string tempFileName = Path.GetTempFileName();
			using (StreamReader streamReader = new StreamReader(MODIO_BLACKLIST_TXT_DIRECTORY))
			{
				using StreamWriter streamWriter = new StreamWriter(tempFileName);
				string text;
				while ((text = streamReader.ReadLine()) != null)
				{
					if (text != line)
					{
						streamWriter.WriteLine(text);
					}
				}
			}
			File.Delete(MODIO_BLACKLIST_TXT_DIRECTORY);
			File.Move(tempFileName, MODIO_BLACKLIST_TXT_DIRECTORY);
		}

		private string ReadAuthKey()
		{
			string[] array = File.ReadAllLines(MODIO_AUTH_TXT_DIRECTORY);
			string text = "";
			string[] array2 = array;
			foreach (string text2 in array2)
			{
				if (!text2.StartsWith("#"))
				{
					text += text2;
				}
			}
			return text.Replace("AuthToken=", "").Replace("REPLACE_THIS_TEXT_WITH_YOUR_TOKEN", "").Trim();
		}
	}
	public class ModFileManager
	{
		public static string OAUTH_KEY = "";

		public static string API_PATH = "https://api.mod.io/v1/games/3809/mods/";

		public static string MOD_FOLDER_PATH = Application.persistentDataPath + "/Mods";

		public static string downloadingModId = "";

		public static string downloadPath = "";

		public static bool isDownloading = false;

		public static bool queueAvailable = false;

		private static List<DownloadQueueElement> queue = new List<DownloadQueueElement>();

		public static bool fetchingSubscriptions = false;

		public static bool fetchingTrending = false;

		public static DownloadAction activeDownloadAction = null;

		public static DownloadQueueElement activeDownloadQueueElement = null;

		public static UnityWebRequest activeDownloadWebRequest;

		public static string[] targetVersionStrings = new string[2] { "1.1", "1.2" };

		public static void Initialize()
		{
			ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
		}

		private static void OnDownloadFileCompleted()
		{
			activeDownloadAction = new DownloadAction(10);
		}

		public static string FindFile(string path, string fileName)
		{
			try
			{
				string[] files = Directory.GetFiles(path);
				foreach (string text in files)
				{
					string text2 = text.Split('\\')[^1];
					if (text2.EndsWith(fileName))
					{
						return text;
					}
				}
				string[] directories = Directory.GetDirectories(path);
				foreach (string path2 in directories)
				{
					string text3 = FindFile(path2, fileName);
					if (text3 != "")
					{
						return text3;
					}
				}
			}
			catch (Exception)
			{
				return "";
			}
			return "";
		}

		public static void OnDownloadProgressChanged(double progress)
		{
			if (ModlistMenu.activeDownloadModInfo != null)
			{
				ModlistMenu.activeDownloadModInfo.modDownloadPercentage = progress;
			}
		}

		public static void StopDownload()
		{
			if (isDownloading)
			{
				if (activeDownloadQueueElement != null && activeDownloadQueueElement.associatedPlayer != null && AvatarDownloadBar.bars.TryGetValue(activeDownloadQueueElement.associatedPlayer, out AvatarDownloadBar value))
				{
					value.Finish();
				}
				isDownloading = false;
				activeDownloadQueueElement = null;
				activeDownloadWebRequest = null;
				ModlistMenu.activeDownloadModInfo = null;
			}
		}

		public static void CheckQueue()
		{
			//IL_003a: Unknown result type (might be due to invalid IL or missing references)
			//IL_0040: Invalid comparison between Unknown and I4
			if (isDownloading || AssetWarehouse.Instance == null || SceneStreamer._session == null || (int)SceneStreamer._session.Status == 1 || queue.Count <= 0)
			{
				return;
			}
			DownloadQueueElement downloadQueueElement = queue[0];
			if (downloadQueueElement.info.Download())
			{
				queue.RemoveAt(0);
				activeDownloadQueueElement = downloadQueueElement;
				MelonLogger.Msg("Downloading mod " + downloadQueueElement.info.modId);
				if (activeDownloadQueueElement.associatedPlayer != null && AvatarDownloadBar.bars.TryGetValue(activeDownloadQueueElement.associatedPlayer, out AvatarDownloadBar value))
				{
					value.Show();
				}
			}
			MainClass.menuRefreshRequested = true;
		}

		public static bool AddToQueue(DownloadQueueElement queueElement, bool ignoreTag = false)
		{
			ModInfo info = queueElement.info;
			if (!info.isValidMod)
			{
				return false;
			}
			if (MainClass.blacklistedModIoIds.Contains(info.modId) || MainClass.blacklistedModIoIds.Contains(info.numericalId))
			{
				return false;
			}
			if (info.IsSubscribed())
			{
				return false;
			}
			if (!ignoreTag)
			{
				bool flag = false;
				foreach (string tag in info.tags)
				{
					if (targetVersionStrings.Contains(tag))
					{
						flag = true;
					}
				}
				if (!flag)
				{
					return false;
				}
			}
			if (activeDownloadQueueElement != null && (activeDownloadQueueElement.info.modId == info.modId || activeDownloadQueueElement.info.numericalId == info.numericalId))
			{
				return false;
			}
			if (info.mature && !MainClass.downloadMatureContent)
			{
				return false;
			}
			if (info.version == null)
			{
				info.version = "0.0.0";
			}
			bool flag2 = false;
			bool flag3 = false;
			foreach (ModInfo installedMod in MainClass.installedMods)
			{
				if (installedMod.numericalId == info.numericalId || installedMod.modId == info.modId)
				{
					flag2 = true;
					if (installedMod.version != info.version)
					{
						flag3 = true;
					}
					break;
				}
			}
			if (flag2 && !flag3)
			{
				return false;
			}
			foreach (DownloadQueueElement item in queue)
			{
				if (item.info.modId == info.modId || item.info.numericalId == info.numericalId)
				{
					return false;
				}
			}
			queue.Add(queueElement);
			return true;
		}

		public static async void DownloadFileHttpClient(string url, string path)
		{
			using HttpClient client = new HttpClient(new HttpClientHandler
			{
				ClientCertificateOptions = ClientCertificateOption.Manual,
				ServerCertificateCustomValidationCallback = (HttpRequestMessage httpRequestMessage, X509Certificate2? cert, X509Chain? cetChain, SslPolicyErrors policyErrors) => true
			});
			client.DefaultRequestHeaders.Add("Authorization", "Bearer " + OAUTH_KEY);
			using (HttpResponseMessage response = await client.GetAsync(url, HttpCompletionOption.ResponseHeadersRead))
			{
				using Stream streamToReadFrom = await response.Content.ReadAsStreamAsync();
				long totalBytes = response.Content.Headers.ContentLength.Value;
				long bytesRead = 0L;
				byte[] buffer = new byte[4096];
				using FileStream fs = new FileStream(path, FileMode.CreateNew);
				while (true)
				{
					int num;
					int bytesReceived = (num = await streamToReadFrom.ReadAsync(buffer, 0, buffer.Length));
					if (num <= 0)
					{
						break;
					}
					await fs.WriteAsync(buffer, 0, bytesReceived);
					bytesRead += bytesReceived;
					double percentage = (double)bytesRead / (double)totalBytes * 100.0;
					OnDownloadProgressChanged(percentage);
				}
			}
			OnDownloadFileCompleted();
		}

		public static async Task DownloadFileAsync(string url, string path)
		{
			DownloadFileHttpClient(url, path);
		}

		public static void DownloadFile(string url, string path)
		{
			downloadPath = path;
			if (File.Exists(path))
			{
				File.Delete(path);
			}
			try
			{
				DownloadFileAsync(url, path);
			}
			catch (WebException ex)
			{
				isDownloading = false;
				ModlistMenu.activeDownloadModInfo = null;
				activeDownloadQueueElement = null;
				activeDownloadWebRequest = null;
				MelonLogger.Error("Failed to download file: " + ex.Message);
				throw;
			}
		}

		public static void QueueSubscriptions(int shown)
		{
			if (!fetchingSubscriptions)
			{
				fetchingSubscriptions = true;
				UnityWebRequest httpWebRequest = UnityWebRequest.Get("https://api.mod.io/v1/me/subscribed?_offset=" + shown + "&limit=400");
				httpWebRequest.SetRequestHeader("Authorization", "Bearer " + OAUTH_KEY);
				UnityWebRequestAsyncOperation val = httpWebRequest.SendWebRequest();
				((AsyncOperation)val).m_completeCallback = ((AsyncOperation)val).m_completeCallback + Action<AsyncOperation>.op_Implicit((Action<AsyncOperation>)delegate
				{
					MainClass.subscriptionThreadString = httpWebRequest.downloadHandler.text;
					fetchingSubscriptions = false;
				});
			}
		}

		public static void QueueTrending(int offset, string searchQuery = "")
		{
			if (!fetchingTrending)
			{
				fetchingTrending = true;
				string text = "&_q=" + searchQuery;
				if (searchQuery == "")
				{
					text = "";
				}
				SpotlightOverride.LoadFromRegularURL();
				UnityWebRequest httpWebRequest = UnityWebRequest.Get($"https://mod.io/v1/games/@bonelab/mods?_limit=100&_offset={offset}&_sort=-popular" + text);
				httpWebRequest.SetRequestHeader("Authorization", "Bearer " + OAUTH_KEY);
				UnityWebRequestAsyncOperation val = httpWebRequest.SendWebRequest();
				((AsyncOperation)val).m_completeCallback = ((AsyncOperation)val).m_completeCallback + Action<AsyncOperation>.op_Implicit((Action<AsyncOperation>)delegate
				{
					MainClass.trendingThreadString = httpWebRequest.downloadHandler.text;
					fetchingTrending = false;
				});
			}
		}

		public static bool Subscribe(string numericalid)
		{
			string text = "https://api.mod.io/v1/games/3809/mods/" + numericalid + "/subscribe";
			UnityWebRequest httpWebRequest = UnityWebRequest.Get(text);
			httpWebRequest.method = "POST";
			httpWebRequest.SetRequestHeader("Authorization", "Bearer " + OAUTH_KEY);
			httpWebRequest.SetRequestHeader("Content-Type", "application/x-www-form-urlencoded");
			UnityWebRequestAsyncOperation val = httpWebRequest.SendWebRequest();
			((AsyncOperation)val).m_completeCallback = ((AsyncOperation)val).m_completeCallback + Action<AsyncOperation>.op_Implicit((Action<AsyncOperation>)delegate
			{
				if (httpWebRequest.responseCode == 201)
				{
					MainThreadManager.QueueAction(delegate
					{
						if (Object.op_Implicit((Object)(object)NetworkerMenuController.instance))
						{
							NetworkerMenuController.instance.UpdateModPopupButtons();
						}
					});
				}
			});
			return false;
		}

		public static void UninstallAndUnsubscribe(string modId)
		{
			UnInstall(modId);
			UnSubscribe(modId);
		}

		public static void UnSubscribe(string numericalId)
		{
			string numericalId2 = numericalId;
			string text = "https://api.mod.io/v1/games/3809/mods/" + numericalId2 + "/subscribe";
			UnityWebRequest val = UnityWebRequest.Get(text);
			val.method = "DELETE";
			val.SetRequestHeader("Authorization", "Bearer " + OAUTH_KEY);
			val.SetRequestHeader("Content-Type", "application/x-www-form-urlencoded");
			UnityWebRequestAsyncOperation val2 = val.SendWebRequest();
			((AsyncOperation)val2).m_completeCallback = ((AsyncOperation)val2).m_completeCallback + Action<AsyncOperation>.op_Implicit((Action<AsyncOperation>)delegate
			{
				MainThreadManager.QueueAction(delegate
				{
					if (Object.op_Implicit((Object)(object)NetworkerMenuController.instance))
					{
						MainClass.subscribedModIoNumericalIds.Remove(numericalId2);
						NetworkerMenuController.instance.UpdateModPopupButtons();
					}
				});
			});
		}

		public static void UnInstallMainThread(string numericalId)
		{
			InstalledModInfo installedModInfo = null;
			foreach (InstalledModInfo installedModInfo2 in MainClass.InstalledModInfos)
			{
				if (installedModInfo2.ModInfo.numericalId == numericalId)
				{
					installedModInfo = installedModInfo2;
				}
			}
			try
			{
				if (installedModInfo != null)
				{
					string palletBarcode = installedModInfo.palletBarcode;
					UnloadPallet(palletBarcode);
					File.Delete(installedModInfo.manifestPath);
					string fullName = Directory.GetParent(installedModInfo.catalogPath).FullName;
					Directory.Delete(fullName, recursive: true);
				}
			}
			catch (Exception ex)
			{
				MelonLogger.Error("Exception when uninstalling mod: " + ex);
			}
			MainClass.RequestInstallCheck();
		}

		private static void UnloadPallet(string palletBarcode)
		{
			//IL_000f: Unknown result type (might be due to invalid IL or missing references)
			//IL_0019: Expected O, but got Unknown
			DeleteExistingModObjects(palletBarcode);
			try
			{
				AssetWarehouse.Instance.UnloadPallet(new Barcode(palletBarcode));
			}
			catch (Exception)
			{
			}
		}

		public static void DeleteExistingModObjects(string palletBarcode)
		{
			try
			{
				Enumerator<Pallet> enumerator = AssetWarehouse.Instance.GetPallets().GetEnumerator();
				while (enumerator.MoveNext())
				{
					Pallet current = enumerator.Current;
					if (((Scannable)current)._barcode._id != palletBarcode)
					{
						continue;
					}
					Enumerator<Crate> enumerator2 = current._crates.GetEnumerator();
					while (enumerator2.MoveNext())
					{
						Crate current2 = enumerator2.Current;
						Enumerator<Pool> enumerator3 = AssetSpawner._instance._poolList.GetEnumerator();
						while (enumerator3.MoveNext())
						{
							Pool current3 = enumerator3.Current;
							if (!(((Scannable)current3._crate)._barcode != ((Scannable)current2)._barcode))
							{
								Enumerator<Poolee> enumerator4 = current3._spawned.GetEnumerator();
								while (enumerator4.MoveNext())
								{
									Poolee current4 = enumerator4.Current;
									Object.Destroy((Object)(object)((Component)current4).gameObject);
								}
							}
						}
					}
				}
			}
			catch (Exception)
			{
			}
		}

		public static void UnInstall(string numericalId)
		{
			InstalledModInfo installedModInfo = null;
			foreach (InstalledModInfo installedModInfo2 in MainClass.InstalledModInfos)
			{
				if (installedModInfo2.ModInfo.numericalId == numericalId)
				{
					installedModInfo = installedModInfo2;
				}
			}
			Thread thread = new Thread((ThreadStart)delegate
			{
				try
				{
					if (installedModInfo != null)
					{
						string barcode = installedModInfo.palletBarcode;
						MainThreadManager.QueueAction(delegate
						{
							UnloadPallet(barcode);
						});
						File.Delete(installedModInfo.manifestPath);
						string fullName = Directory.GetParent(installedModInfo.catalogPath).FullName;
						Directory.Delete(fullName, recursive: true);
					}
				}
				catch (Exception ex)
				{
					MelonLogger.Error("Exception when uninstalling mod: " + ex);
				}
				MainClass.RequestInstallCheck();
			});
			thread.Start();
		}

		public static void GetJson(string mod, Action<string> onCompleted)
		{
			Action<string> onCompleted2 = onCompleted;
			string text = API_PATH + mod + "/files";
			UnityWebRequest httpWebRequest = UnityWebRequest.Get(text);
			httpWebRequest.SetRequestHeader("Authorization", "Bearer " + OAUTH_KEY);
			UnityWebRequestAsyncOperation val = httpWebRequest.SendWebRequest();
			((AsyncOperation)val).m_completeCallback = ((AsyncOperation)val).m_completeCallback + Action<AsyncOperation>.op_Implicit((Action<AsyncOperation>)delegate
			{
				//IL_0007: Unknown result type (might be due to invalid IL or missing references)
				//IL_000d: Invalid comparison between Unknown and I4
				//IL_0015: Unknown result type (might be due to invalid IL or missing references)
				//IL_001b: Invalid comparison between Unknown and I4
				if ((int)httpWebRequest.result == 2 || (int)httpWebRequest.result == 3)
				{