diff --git a/Novaria.Common/Crypto/AeadTool.cs b/Novaria.Common/Crypto/AeadTool.cs index 1fe6b42..6a0e898 100644 --- a/Novaria.Common/Crypto/AeadTool.cs +++ b/Novaria.Common/Crypto/AeadTool.cs @@ -4,6 +4,8 @@ using System.Linq; using System.Security.Cryptography; using System.Text; using System.Threading.Tasks; +using NSec.Cryptography; +using static System.Runtime.InteropServices.JavaScript.JSType; namespace Novaria.Common.Crypto { @@ -12,15 +14,87 @@ namespace Novaria.Common.Crypto public static readonly byte[] DEFAULT_SERVERLIST_KEY; public static readonly byte[] DEFAULT_SERVERLIST_IV; + public static readonly byte[] associatedData; + + public static byte[] GenerateRandomPublicKey() + { + byte[] key = new byte[96]; + using (RandomNumberGenerator rng = RandomNumberGenerator.Create()) + { + rng.GetBytes(key); + } + return key; + } + + public static ReadOnlySpan AEADMARK + { + get + { + return AeadTool.associatedData.AsSpan(12, 1); + } + } + + public static byte[] key3 { get; set; } + static AeadTool() { DEFAULT_SERVERLIST_KEY = new byte[] { 74, 72, 42, 67, 80, 51, 50, 57, 89, 120, 111, 103, 81, 74, 69, 120 }; DEFAULT_SERVERLIST_IV = new byte[] { 225, 92, 61, 72, 193, 89, 3, 64, 50, 61, 50, 145, 59, 128, 99, 72 }; + + key3 = new byte[32]; + associatedData = new byte[13]; + + // assume AesGcm not supported (frida log) + associatedData[associatedData.Length - 1] = 1; } + public static bool Dencrypt_ChaCha20(Span result, ReadOnlySpan key, ReadOnlySpan nonce, ReadOnlySpan data) + { + Algorithm chaCha20Poly = AeadAlgorithm.ChaCha20Poly1305; + KeyBlobFormat keyBlobFormat = KeyBlobFormat.RawSymmetricKey; + KeyCreationParameters keyCreationParameters = default(KeyCreationParameters); + bool result2; + using (Key key2 = Key.Import(chaCha20Poly, key, keyBlobFormat, ref keyCreationParameters)) + { + result2 = AeadAlgorithm.ChaCha20Poly1305.Decrypt(key2, nonce, null, data, result); + } + return result2; + } + + + public static void Encrypt_ChaCha20(Span result, ReadOnlySpan key, ReadOnlySpan nonce, ReadOnlySpan data, bool needAssociatedData) + { + Algorithm chaCha20Poly = AeadAlgorithm.ChaCha20Poly1305; + KeyBlobFormat keyBlobFormat = KeyBlobFormat.RawSymmetricKey; + KeyCreationParameters keyCreationParameters = default(KeyCreationParameters); + using (Key key2 = Key.Import(chaCha20Poly, key, keyBlobFormat, ref keyCreationParameters)) + { + if (!needAssociatedData) + { + AeadAlgorithm.ChaCha20Poly1305.Encrypt(key2, nonce, null, data, result); + } else + { + nonce.CopyTo(AeadTool.associatedData.AsSpan(0, 12)); + AeadAlgorithm.ChaCha20Poly1305.Encrypt(key2, nonce, AeadTool.associatedData.AsSpan(), data, result); + } + } + } + + // probably wrong public static byte[] DecryptAesCBCInfo(byte[] key, byte[] IV, byte[] cipherBytes) { - return null; + using (Aes aes = Aes.Create()) + { + aes.Key = key; + aes.IV = IV; + aes.Mode = CipherMode.CBC; + aes.Padding = PaddingMode.PKCS7; + + using (ICryptoTransform decryptor = aes.CreateDecryptor()) + { + return decryptor.TransformFinalBlock(cipherBytes, 0, cipherBytes.Length); + } + } } public static byte[] EncryptAesCBCInfo(byte[] key, byte[] IV, byte[] plainBytes) diff --git a/Novaria.Common/Novaria.Common.csproj b/Novaria.Common/Novaria.Common.csproj index 31e64bf..cc65999 100644 --- a/Novaria.Common/Novaria.Common.csproj +++ b/Novaria.Common/Novaria.Common.csproj @@ -9,6 +9,7 @@ + diff --git a/Novaria.Common/Protos/PlayerLogin.cs b/Novaria.Common/Protos/PlayerLogin.cs new file mode 100644 index 0000000..bb65917 --- /dev/null +++ b/Novaria.Common/Protos/PlayerLogin.cs @@ -0,0 +1,671 @@ +// +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: player_login.proto +// +#pragma warning disable 1591, 0612, 3021, 8981 +#region Designer generated code + +using pb = global::Google.Protobuf; +using pbc = global::Google.Protobuf.Collections; +using pbr = global::Google.Protobuf.Reflection; +using scg = global::System.Collections.Generic; +/// Holder for reflection information generated from player_login.proto +public static partial class PlayerLoginReflection { + + #region Descriptor + /// File descriptor for player_login.proto + public static pbr::FileDescriptor Descriptor { + get { return descriptor; } + } + private static pbr::FileDescriptor descriptor; + + static PlayerLoginReflection() { + byte[] descriptorData = global::System.Convert.FromBase64String( + string.Concat( + "ChJwbGF5ZXJfbG9naW4ucHJvdG8iJQoHQWNjb3VudBIMCgRuYW1lGAEgASgJ", + "EgwKBHBhc3MYAiABKAkifgoLVXNlclJlcXVlc3QSGQoHYWNjb3VudBgBIAEo", + "CzIILkFjY291bnQSEAoIcGxhdGZvcm0YAiABKAkSEAoIbGFuZ3VhZ2UYAyAB", + "KAkSDwoHY2hhbm5lbBgEIAEoCRIOCgZkZXZpY2UYBSABKAkSDwoHdmVyc2lv", + "bhgGIAEoBWIGcHJvdG8z")); + descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData, + new pbr::FileDescriptor[] { }, + new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] { + new pbr::GeneratedClrTypeInfo(typeof(global::Account), global::Account.Parser, new[]{ "Name", "Pass" }, null, null, null, null), + new pbr::GeneratedClrTypeInfo(typeof(global::UserRequest), global::UserRequest.Parser, new[]{ "Account", "Platform", "Language", "Channel", "Device", "Version" }, null, null, null, null) + })); + } + #endregion + +} +#region Messages +[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] +public sealed partial class Account : pb::IMessage +#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE + , pb::IBufferMessage +#endif +{ + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new Account()); + private pb::UnknownFieldSet _unknownFields; + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + public static pb::MessageParser Parser { get { return _parser; } } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + public static pbr::MessageDescriptor Descriptor { + get { return global::PlayerLoginReflection.Descriptor.MessageTypes[0]; } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + pbr::MessageDescriptor pb::IMessage.Descriptor { + get { return Descriptor; } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + public Account() { + OnConstruction(); + } + + partial void OnConstruction(); + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + public Account(Account other) : this() { + name_ = other.name_; + pass_ = other.pass_; + _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + public Account Clone() { + return new Account(this); + } + + /// Field number for the "name" field. + public const int NameFieldNumber = 1; + private string name_ = ""; + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + public string Name { + get { return name_; } + set { + name_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); + } + } + + /// Field number for the "pass" field. + public const int PassFieldNumber = 2; + private string pass_ = ""; + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + public string Pass { + get { return pass_; } + set { + pass_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + public override bool Equals(object other) { + return Equals(other as Account); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + public bool Equals(Account other) { + if (ReferenceEquals(other, null)) { + return false; + } + if (ReferenceEquals(other, this)) { + return true; + } + if (Name != other.Name) return false; + if (Pass != other.Pass) return false; + return Equals(_unknownFields, other._unknownFields); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + public override int GetHashCode() { + int hash = 1; + if (Name.Length != 0) hash ^= Name.GetHashCode(); + if (Pass.Length != 0) hash ^= Pass.GetHashCode(); + if (_unknownFields != null) { + hash ^= _unknownFields.GetHashCode(); + } + return hash; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + public override string ToString() { + return pb::JsonFormatter.ToDiagnosticString(this); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + public void WriteTo(pb::CodedOutputStream output) { + #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE + output.WriteRawMessage(this); + #else + if (Name.Length != 0) { + output.WriteRawTag(10); + output.WriteString(Name); + } + if (Pass.Length != 0) { + output.WriteRawTag(18); + output.WriteString(Pass); + } + if (_unknownFields != null) { + _unknownFields.WriteTo(output); + } + #endif + } + + #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { + if (Name.Length != 0) { + output.WriteRawTag(10); + output.WriteString(Name); + } + if (Pass.Length != 0) { + output.WriteRawTag(18); + output.WriteString(Pass); + } + if (_unknownFields != null) { + _unknownFields.WriteTo(ref output); + } + } + #endif + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + public int CalculateSize() { + int size = 0; + if (Name.Length != 0) { + size += 1 + pb::CodedOutputStream.ComputeStringSize(Name); + } + if (Pass.Length != 0) { + size += 1 + pb::CodedOutputStream.ComputeStringSize(Pass); + } + if (_unknownFields != null) { + size += _unknownFields.CalculateSize(); + } + return size; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + public void MergeFrom(Account other) { + if (other == null) { + return; + } + if (other.Name.Length != 0) { + Name = other.Name; + } + if (other.Pass.Length != 0) { + Pass = other.Pass; + } + _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + public void MergeFrom(pb::CodedInputStream input) { + #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE + input.ReadRawMessage(this); + #else + uint tag; + while ((tag = input.ReadTag()) != 0) { + if ((tag & 7) == 4) { + // Abort on any end group tag. + return; + } + switch(tag) { + default: + _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); + break; + case 10: { + Name = input.ReadString(); + break; + } + case 18: { + Pass = input.ReadString(); + break; + } + } + } + #endif + } + + #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) { + uint tag; + while ((tag = input.ReadTag()) != 0) { + if ((tag & 7) == 4) { + // Abort on any end group tag. + return; + } + switch(tag) { + default: + _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); + break; + case 10: { + Name = input.ReadString(); + break; + } + case 18: { + Pass = input.ReadString(); + break; + } + } + } + } + #endif + +} + +[global::System.Diagnostics.DebuggerDisplayAttribute("{ToString(),nq}")] +public sealed partial class UserRequest : pb::IMessage +#if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE + , pb::IBufferMessage +#endif +{ + private static readonly pb::MessageParser _parser = new pb::MessageParser(() => new UserRequest()); + private pb::UnknownFieldSet _unknownFields; + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + public static pb::MessageParser Parser { get { return _parser; } } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + public static pbr::MessageDescriptor Descriptor { + get { return global::PlayerLoginReflection.Descriptor.MessageTypes[1]; } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + pbr::MessageDescriptor pb::IMessage.Descriptor { + get { return Descriptor; } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + public UserRequest() { + OnConstruction(); + } + + partial void OnConstruction(); + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + public UserRequest(UserRequest other) : this() { + account_ = other.account_ != null ? other.account_.Clone() : null; + platform_ = other.platform_; + language_ = other.language_; + channel_ = other.channel_; + device_ = other.device_; + version_ = other.version_; + _unknownFields = pb::UnknownFieldSet.Clone(other._unknownFields); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + public UserRequest Clone() { + return new UserRequest(this); + } + + /// Field number for the "account" field. + public const int AccountFieldNumber = 1; + private global::Account account_; + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + public global::Account Account { + get { return account_; } + set { + account_ = value; + } + } + + /// Field number for the "platform" field. + public const int PlatformFieldNumber = 2; + private string platform_ = ""; + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + public string Platform { + get { return platform_; } + set { + platform_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); + } + } + + /// Field number for the "language" field. + public const int LanguageFieldNumber = 3; + private string language_ = ""; + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + public string Language { + get { return language_; } + set { + language_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); + } + } + + /// Field number for the "channel" field. + public const int ChannelFieldNumber = 4; + private string channel_ = ""; + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + public string Channel { + get { return channel_; } + set { + channel_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); + } + } + + /// Field number for the "device" field. + public const int DeviceFieldNumber = 5; + private string device_ = ""; + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + public string Device { + get { return device_; } + set { + device_ = pb::ProtoPreconditions.CheckNotNull(value, "value"); + } + } + + /// Field number for the "version" field. + public const int VersionFieldNumber = 6; + private int version_; + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + public int Version { + get { return version_; } + set { + version_ = value; + } + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + public override bool Equals(object other) { + return Equals(other as UserRequest); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + public bool Equals(UserRequest other) { + if (ReferenceEquals(other, null)) { + return false; + } + if (ReferenceEquals(other, this)) { + return true; + } + if (!object.Equals(Account, other.Account)) return false; + if (Platform != other.Platform) return false; + if (Language != other.Language) return false; + if (Channel != other.Channel) return false; + if (Device != other.Device) return false; + if (Version != other.Version) return false; + return Equals(_unknownFields, other._unknownFields); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + public override int GetHashCode() { + int hash = 1; + if (account_ != null) hash ^= Account.GetHashCode(); + if (Platform.Length != 0) hash ^= Platform.GetHashCode(); + if (Language.Length != 0) hash ^= Language.GetHashCode(); + if (Channel.Length != 0) hash ^= Channel.GetHashCode(); + if (Device.Length != 0) hash ^= Device.GetHashCode(); + if (Version != 0) hash ^= Version.GetHashCode(); + if (_unknownFields != null) { + hash ^= _unknownFields.GetHashCode(); + } + return hash; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + public override string ToString() { + return pb::JsonFormatter.ToDiagnosticString(this); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + public void WriteTo(pb::CodedOutputStream output) { + #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE + output.WriteRawMessage(this); + #else + if (account_ != null) { + output.WriteRawTag(10); + output.WriteMessage(Account); + } + if (Platform.Length != 0) { + output.WriteRawTag(18); + output.WriteString(Platform); + } + if (Language.Length != 0) { + output.WriteRawTag(26); + output.WriteString(Language); + } + if (Channel.Length != 0) { + output.WriteRawTag(34); + output.WriteString(Channel); + } + if (Device.Length != 0) { + output.WriteRawTag(42); + output.WriteString(Device); + } + if (Version != 0) { + output.WriteRawTag(48); + output.WriteInt32(Version); + } + if (_unknownFields != null) { + _unknownFields.WriteTo(output); + } + #endif + } + + #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + void pb::IBufferMessage.InternalWriteTo(ref pb::WriteContext output) { + if (account_ != null) { + output.WriteRawTag(10); + output.WriteMessage(Account); + } + if (Platform.Length != 0) { + output.WriteRawTag(18); + output.WriteString(Platform); + } + if (Language.Length != 0) { + output.WriteRawTag(26); + output.WriteString(Language); + } + if (Channel.Length != 0) { + output.WriteRawTag(34); + output.WriteString(Channel); + } + if (Device.Length != 0) { + output.WriteRawTag(42); + output.WriteString(Device); + } + if (Version != 0) { + output.WriteRawTag(48); + output.WriteInt32(Version); + } + if (_unknownFields != null) { + _unknownFields.WriteTo(ref output); + } + } + #endif + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + public int CalculateSize() { + int size = 0; + if (account_ != null) { + size += 1 + pb::CodedOutputStream.ComputeMessageSize(Account); + } + if (Platform.Length != 0) { + size += 1 + pb::CodedOutputStream.ComputeStringSize(Platform); + } + if (Language.Length != 0) { + size += 1 + pb::CodedOutputStream.ComputeStringSize(Language); + } + if (Channel.Length != 0) { + size += 1 + pb::CodedOutputStream.ComputeStringSize(Channel); + } + if (Device.Length != 0) { + size += 1 + pb::CodedOutputStream.ComputeStringSize(Device); + } + if (Version != 0) { + size += 1 + pb::CodedOutputStream.ComputeInt32Size(Version); + } + if (_unknownFields != null) { + size += _unknownFields.CalculateSize(); + } + return size; + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + public void MergeFrom(UserRequest other) { + if (other == null) { + return; + } + if (other.account_ != null) { + if (account_ == null) { + Account = new global::Account(); + } + Account.MergeFrom(other.Account); + } + if (other.Platform.Length != 0) { + Platform = other.Platform; + } + if (other.Language.Length != 0) { + Language = other.Language; + } + if (other.Channel.Length != 0) { + Channel = other.Channel; + } + if (other.Device.Length != 0) { + Device = other.Device; + } + if (other.Version != 0) { + Version = other.Version; + } + _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields); + } + + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + public void MergeFrom(pb::CodedInputStream input) { + #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE + input.ReadRawMessage(this); + #else + uint tag; + while ((tag = input.ReadTag()) != 0) { + if ((tag & 7) == 4) { + // Abort on any end group tag. + return; + } + switch(tag) { + default: + _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input); + break; + case 10: { + if (account_ == null) { + Account = new global::Account(); + } + input.ReadMessage(Account); + break; + } + case 18: { + Platform = input.ReadString(); + break; + } + case 26: { + Language = input.ReadString(); + break; + } + case 34: { + Channel = input.ReadString(); + break; + } + case 42: { + Device = input.ReadString(); + break; + } + case 48: { + Version = input.ReadInt32(); + break; + } + } + } + #endif + } + + #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE + [global::System.Diagnostics.DebuggerNonUserCodeAttribute] + [global::System.CodeDom.Compiler.GeneratedCode("protoc", null)] + void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input) { + uint tag; + while ((tag = input.ReadTag()) != 0) { + if ((tag & 7) == 4) { + // Abort on any end group tag. + return; + } + switch(tag) { + default: + _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input); + break; + case 10: { + if (account_ == null) { + Account = new global::Account(); + } + input.ReadMessage(Account); + break; + } + case 18: { + Platform = input.ReadString(); + break; + } + case 26: { + Language = input.ReadString(); + break; + } + case 34: { + Channel = input.ReadString(); + break; + } + case 42: { + Device = input.ReadString(); + break; + } + case 48: { + Version = input.ReadInt32(); + break; + } + } + } + } + #endif + +} + +#endregion + + +#endregion Designer generated code diff --git a/Novaria.Common/Utils/PB.cs b/Novaria.Common/Utils/PB.cs new file mode 100644 index 0000000..21c2f07 --- /dev/null +++ b/Novaria.Common/Utils/PB.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Novaria.Common.Utils +{ + public class PB + { + public static byte[] ProtoPB = new byte[] { 10, 135, 2, 10, 25, 103, 111, 111, 103, 108, 101, 47, 112, 114, 111, 116, 111, 98, 117, 102, 47, 97, 110, 121, 46, 112, 114, 111, 116, 111, 18, 15, 103, 111, 111, 103, 108, 101, 46, 112, 114, 111, 116, 111, 98, 117, 102, 34, 89, 10, 3, 65, 110, 121, 18, 25, 10, 8, 116, 121, 112, 101, 95, 117, 114, 108, 24, 1, 32, 1, 40, 9, 82, 7, 116, 121, 112, 101, 85, 114, 108, 18, 20, 10, 5, 118, 97, 108, 117, 101, 24, 2, 32, 1, 40, 12, 82, 5, 118, 97, 108, 117, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 66, 118, 10, 19, 99, 111, 109, 46, 103, 111, 111, 103, 108, 101, 46, 112, 114, 111, 116, 111, 98, 117, 102, 66, 8, 65, 110, 121, 80, 114, 111, 116, 111, 80, 1, 90, 44, 103, 111, 111, 103, 108, 101, 46, 103, 111, 108, 97, 110, 103, 46, 111, 114, 103, 47, 112, 114, 111, 116, 111, 98, 117, 102, 47, 116, 121, 112, 101, 115, 47, 107, 110, 111, 119, 110, 47, 97, 110, 121, 112, 98, 162, 2, 3, 71, 80, 66, 170, 2, 30, 71, 111, 111, 103, 108, 101, 46, 80, 114, 111, 116, 111, 98, 117, 102, 46, 87, 101, 108, 108, 75, 110, 111, 119, 110, 84, 121, 112, 101, 115, 98, 6, 112, 114, 111, 116, 111, 51, 10, 138, 102, 10, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 25, 103, 111, 111, 103, 108, 101, 47, 112, 114, 111, 116, 111, 98, 117, 102, 47, 97, 110, 121, 46, 112, 114, 111, 116, 111, 34, 40, 10, 3, 78, 105, 108, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 62, 10, 3, 73, 51, 50, 18, 20, 10, 5, 86, 97, 108, 117, 101, 24, 1, 32, 1, 40, 5, 82, 5, 86, 97, 108, 117, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 63, 10, 4, 85, 73, 51, 50, 18, 20, 10, 5, 86, 97, 108, 117, 101, 24, 1, 32, 1, 40, 13, 82, 5, 86, 97, 108, 117, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 63, 10, 4, 85, 73, 54, 52, 18, 20, 10, 5, 86, 97, 108, 117, 101, 24, 1, 32, 1, 40, 4, 82, 5, 86, 97, 108, 117, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 65, 10, 6, 83, 116, 114, 105, 110, 103, 18, 20, 10, 5, 86, 97, 108, 117, 101, 24, 1, 32, 1, 40, 9, 82, 5, 86, 97, 108, 117, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 89, 10, 4, 73, 51, 50, 86, 18, 20, 10, 5, 86, 97, 108, 117, 101, 24, 1, 32, 1, 40, 5, 82, 5, 86, 97, 108, 117, 101, 18, 24, 10, 7, 86, 101, 114, 115, 105, 111, 110, 24, 2, 32, 1, 40, 13, 82, 7, 86, 101, 114, 115, 105, 111, 110, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 90, 10, 5, 85, 73, 51, 50, 86, 18, 20, 10, 5, 86, 97, 108, 117, 101, 24, 1, 32, 1, 40, 13, 82, 5, 86, 97, 108, 117, 101, 18, 24, 10, 7, 86, 101, 114, 115, 105, 111, 110, 24, 2, 32, 1, 40, 13, 82, 7, 86, 101, 114, 115, 105, 111, 110, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 90, 10, 5, 85, 73, 54, 52, 86, 18, 20, 10, 5, 86, 97, 108, 117, 101, 24, 1, 32, 1, 40, 4, 82, 5, 86, 97, 108, 117, 101, 18, 24, 10, 7, 86, 101, 114, 115, 105, 111, 110, 24, 2, 32, 1, 40, 13, 82, 7, 86, 101, 114, 115, 105, 111, 110, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 92, 10, 7, 83, 116, 114, 105, 110, 103, 86, 18, 20, 10, 5, 86, 97, 108, 117, 101, 24, 1, 32, 1, 40, 9, 82, 5, 86, 97, 108, 117, 101, 18, 24, 10, 7, 86, 101, 114, 115, 105, 111, 110, 24, 2, 32, 1, 40, 13, 82, 7, 86, 101, 114, 115, 105, 111, 110, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 64, 10, 5, 66, 121, 116, 101, 115, 18, 20, 10, 5, 86, 97, 108, 117, 101, 24, 1, 32, 1, 40, 12, 82, 5, 86, 97, 108, 117, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 91, 10, 6, 66, 121, 116, 101, 115, 86, 18, 20, 10, 5, 86, 97, 108, 117, 101, 24, 1, 32, 1, 40, 12, 82, 5, 86, 97, 108, 117, 101, 18, 24, 10, 7, 86, 101, 114, 115, 105, 111, 110, 24, 2, 32, 1, 40, 13, 82, 7, 86, 101, 114, 115, 105, 111, 110, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 60, 10, 7, 66, 111, 111, 108, 101, 97, 110, 18, 14, 10, 2, 79, 107, 24, 1, 32, 1, 40, 8, 82, 2, 79, 107, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 142, 1, 10, 5, 69, 114, 114, 111, 114, 18, 18, 10, 4, 67, 111, 100, 101, 24, 1, 32, 1, 40, 13, 82, 4, 67, 111, 100, 101, 18, 28, 10, 9, 65, 114, 103, 117, 109, 101, 110, 116, 115, 24, 2, 32, 3, 40, 9, 82, 9, 65, 114, 103, 117, 109, 101, 110, 116, 115, 18, 24, 10, 7, 84, 114, 97, 99, 101, 73, 100, 24, 3, 32, 1, 40, 4, 82, 7, 84, 114, 97, 99, 101, 73, 100, 18, 22, 10, 6, 65, 99, 116, 105, 111, 110, 24, 4, 32, 1, 40, 5, 82, 6, 65, 99, 116, 105, 111, 110, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 135, 3, 10, 7, 65, 99, 99, 73, 110, 102, 111, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 4, 82, 2, 73, 100, 18, 26, 10, 8, 78, 105, 99, 107, 78, 97, 109, 101, 24, 2, 32, 1, 40, 9, 82, 8, 78, 105, 99, 107, 78, 97, 109, 101, 18, 24, 10, 7, 72, 97, 115, 104, 116, 97, 103, 24, 3, 32, 1, 40, 13, 82, 7, 72, 97, 115, 104, 116, 97, 103, 18, 26, 10, 8, 72, 101, 97, 100, 73, 99, 111, 110, 24, 4, 32, 1, 40, 13, 82, 8, 72, 101, 97, 100, 73, 99, 111, 110, 18, 22, 10, 6, 71, 101, 110, 100, 101, 114, 24, 5, 32, 1, 40, 8, 82, 6, 71, 101, 110, 100, 101, 114, 18, 28, 10, 9, 83, 105, 103, 110, 97, 116, 117, 114, 101, 24, 6, 32, 1, 40, 9, 82, 9, 83, 105, 103, 110, 97, 116, 117, 114, 101, 18, 32, 10, 11, 84, 105, 116, 108, 101, 80, 114, 101, 102, 105, 120, 24, 7, 32, 1, 40, 13, 82, 11, 84, 105, 116, 108, 101, 80, 114, 101, 102, 105, 120, 18, 32, 10, 11, 84, 105, 116, 108, 101, 83, 117, 102, 102, 105, 120, 24, 8, 32, 1, 40, 13, 82, 11, 84, 105, 116, 108, 101, 83, 117, 102, 102, 105, 120, 18, 24, 10, 7, 67, 104, 97, 114, 73, 100, 115, 24, 9, 32, 3, 40, 13, 82, 7, 67, 104, 97, 114, 73, 100, 115, 18, 22, 10, 6, 83, 107, 105, 110, 73, 100, 24, 10, 32, 1, 40, 13, 82, 6, 83, 107, 105, 110, 73, 100, 18, 43, 10, 7, 78, 101, 119, 98, 105, 101, 115, 24, 14, 32, 3, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 78, 101, 119, 98, 105, 101, 73, 110, 102, 111, 82, 7, 78, 101, 119, 98, 105, 101, 115, 18, 30, 10, 10, 67, 114, 101, 97, 116, 101, 84, 105, 109, 101, 24, 15, 32, 1, 40, 3, 82, 10, 67, 114, 101, 97, 116, 101, 84, 105, 109, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 97, 10, 10, 78, 101, 119, 98, 105, 101, 73, 110, 102, 111, 18, 24, 10, 7, 71, 114, 111, 117, 112, 73, 100, 24, 1, 32, 1, 40, 13, 82, 7, 71, 114, 111, 117, 112, 73, 100, 18, 22, 10, 6, 83, 116, 101, 112, 73, 100, 24, 2, 32, 1, 40, 5, 82, 6, 83, 116, 101, 112, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 86, 10, 13, 81, 117, 101, 115, 116, 80, 114, 111, 103, 114, 101, 115, 115, 18, 16, 10, 3, 67, 117, 114, 24, 1, 32, 1, 40, 13, 82, 3, 67, 117, 114, 18, 16, 10, 3, 77, 97, 120, 24, 2, 32, 1, 40, 13, 82, 3, 77, 97, 120, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 194, 1, 10, 5, 81, 117, 101, 115, 116, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 22, 10, 6, 83, 116, 97, 116, 117, 115, 24, 2, 32, 1, 40, 13, 82, 6, 83, 116, 97, 116, 117, 115, 18, 22, 10, 6, 69, 120, 112, 105, 114, 101, 24, 3, 32, 1, 40, 3, 82, 6, 69, 120, 112, 105, 114, 101, 18, 36, 10, 4, 84, 121, 112, 101, 24, 4, 32, 1, 40, 14, 50, 16, 46, 112, 114, 111, 116, 111, 46, 81, 117, 101, 115, 116, 84, 121, 112, 101, 82, 4, 84, 121, 112, 101, 18, 48, 10, 8, 80, 114, 111, 103, 114, 101, 115, 115, 24, 15, 32, 3, 40, 11, 50, 20, 46, 112, 114, 111, 116, 111, 46, 81, 117, 101, 115, 116, 80, 114, 111, 103, 114, 101, 115, 115, 82, 8, 80, 114, 111, 103, 114, 101, 115, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 77, 10, 6, 81, 117, 101, 115, 116, 115, 18, 32, 10, 4, 76, 105, 115, 116, 24, 1, 32, 3, 40, 11, 50, 12, 46, 112, 114, 111, 116, 111, 46, 81, 117, 101, 115, 116, 82, 4, 76, 105, 115, 116, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 168, 1, 10, 11, 65, 99, 104, 105, 101, 118, 101, 109, 101, 110, 116, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 22, 10, 6, 83, 116, 97, 116, 117, 115, 24, 2, 32, 1, 40, 13, 82, 6, 83, 116, 97, 116, 117, 115, 18, 28, 10, 9, 67, 111, 109, 112, 108, 101, 116, 101, 100, 24, 3, 32, 1, 40, 3, 82, 9, 67, 111, 109, 112, 108, 101, 116, 101, 100, 18, 48, 10, 8, 80, 114, 111, 103, 114, 101, 115, 115, 24, 4, 32, 3, 40, 11, 50, 20, 46, 112, 114, 111, 116, 111, 46, 81, 117, 101, 115, 116, 80, 114, 111, 103, 114, 101, 115, 115, 82, 8, 80, 114, 111, 103, 114, 101, 115, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 89, 10, 12, 65, 99, 104, 105, 101, 118, 101, 109, 101, 110, 116, 115, 18, 38, 10, 4, 76, 105, 115, 116, 24, 1, 32, 3, 40, 11, 50, 18, 46, 112, 114, 111, 116, 111, 46, 65, 99, 104, 105, 101, 118, 101, 109, 101, 110, 116, 82, 4, 76, 105, 115, 116, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 115, 10, 10, 68, 105, 99, 116, 105, 111, 110, 97, 114, 121, 18, 20, 10, 5, 84, 97, 98, 73, 100, 24, 1, 32, 1, 40, 13, 82, 5, 84, 97, 98, 73, 100, 18, 20, 10, 5, 73, 110, 100, 101, 120, 24, 2, 32, 1, 40, 13, 82, 5, 73, 110, 100, 101, 120, 18, 22, 10, 6, 83, 116, 97, 116, 117, 115, 24, 3, 32, 1, 40, 13, 82, 6, 83, 116, 97, 116, 117, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 88, 10, 12, 68, 105, 99, 116, 105, 111, 110, 97, 114, 105, 101, 115, 18, 37, 10, 4, 76, 105, 115, 116, 24, 1, 32, 3, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 68, 105, 99, 116, 105, 111, 110, 97, 114, 121, 82, 4, 76, 105, 115, 116, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 78, 10, 5, 69, 118, 101, 110, 116, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 18, 10, 4, 68, 97, 116, 97, 24, 2, 32, 3, 40, 13, 82, 4, 68, 97, 116, 97, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 77, 10, 6, 69, 118, 101, 110, 116, 115, 18, 32, 10, 4, 76, 105, 115, 116, 24, 1, 32, 3, 40, 11, 50, 12, 46, 112, 114, 111, 116, 111, 46, 69, 118, 101, 110, 116, 82, 4, 76, 105, 115, 116, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 151, 3, 10, 4, 77, 97, 105, 108, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 24, 10, 7, 83, 117, 98, 106, 101, 99, 116, 24, 2, 32, 1, 40, 9, 82, 7, 83, 117, 98, 106, 101, 99, 116, 18, 18, 10, 4, 68, 101, 115, 99, 24, 3, 32, 1, 40, 9, 82, 4, 68, 101, 115, 99, 18, 30, 10, 10, 84, 101, 109, 112, 108, 97, 116, 101, 73, 100, 24, 4, 32, 1, 40, 13, 82, 10, 84, 101, 109, 112, 108, 97, 116, 101, 73, 100, 18, 22, 10, 6, 65, 117, 116, 104, 111, 114, 24, 5, 32, 1, 40, 9, 82, 6, 65, 117, 116, 104, 111, 114, 18, 18, 10, 4, 84, 105, 109, 101, 24, 6, 32, 1, 40, 3, 82, 4, 84, 105, 109, 101, 18, 26, 10, 8, 68, 101, 97, 100, 108, 105, 110, 101, 24, 7, 32, 1, 40, 3, 82, 8, 68, 101, 97, 100, 108, 105, 110, 101, 18, 18, 10, 4, 82, 101, 97, 100, 24, 8, 32, 1, 40, 8, 82, 4, 82, 101, 97, 100, 18, 18, 10, 4, 82, 101, 99, 118, 24, 9, 32, 1, 40, 8, 82, 4, 82, 101, 99, 118, 18, 48, 10, 11, 65, 116, 116, 97, 99, 104, 109, 101, 110, 116, 115, 24, 10, 32, 3, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 84, 112, 108, 82, 11, 65, 116, 116, 97, 99, 104, 109, 101, 110, 116, 115, 18, 18, 10, 4, 70, 108, 97, 103, 24, 11, 32, 1, 40, 4, 82, 4, 70, 108, 97, 103, 18, 32, 10, 11, 83, 117, 98, 106, 101, 99, 116, 65, 114, 103, 115, 24, 12, 32, 3, 40, 9, 82, 11, 83, 117, 98, 106, 101, 99, 116, 65, 114, 103, 115, 18, 26, 10, 8, 68, 101, 115, 99, 65, 114, 103, 115, 24, 13, 32, 3, 40, 9, 82, 8, 68, 101, 115, 99, 65, 114, 103, 115, 18, 26, 10, 8, 83, 117, 114, 118, 101, 121, 73, 100, 24, 14, 32, 1, 40, 3, 82, 8, 83, 117, 114, 118, 101, 121, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 75, 10, 5, 77, 97, 105, 108, 115, 18, 31, 10, 4, 76, 105, 115, 116, 24, 1, 32, 3, 40, 11, 50, 11, 46, 112, 114, 111, 116, 111, 46, 77, 97, 105, 108, 82, 4, 76, 105, 115, 116, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 84, 10, 11, 77, 97, 105, 108, 82, 101, 113, 117, 101, 115, 116, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 18, 10, 4, 70, 108, 97, 103, 24, 2, 32, 1, 40, 4, 82, 4, 70, 108, 97, 103, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 88, 10, 9, 77, 97, 105, 108, 83, 116, 97, 116, 101, 18, 16, 10, 3, 78, 101, 119, 24, 1, 32, 1, 40, 8, 82, 3, 78, 101, 119, 18, 22, 10, 6, 82, 101, 118, 111, 107, 101, 24, 2, 32, 1, 40, 8, 82, 6, 82, 101, 118, 111, 107, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 71, 10, 16, 65, 99, 104, 105, 101, 118, 101, 109, 101, 110, 116, 83, 116, 97, 116, 101, 18, 16, 10, 3, 78, 101, 119, 24, 1, 32, 1, 40, 8, 82, 3, 78, 101, 119, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 88, 10, 11, 70, 114, 105, 101, 110, 100, 83, 116, 97, 116, 101, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 4, 82, 2, 73, 100, 18, 22, 10, 6, 65, 99, 116, 105, 111, 110, 24, 2, 32, 1, 40, 13, 82, 6, 65, 99, 116, 105, 111, 110, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 74, 10, 15, 66, 97, 116, 116, 108, 101, 80, 97, 115, 115, 83, 116, 97, 116, 101, 18, 20, 10, 5, 83, 116, 97, 116, 101, 24, 1, 32, 1, 40, 5, 82, 5, 83, 116, 97, 116, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 103, 10, 22, 67, 104, 97, 114, 65, 100, 118, 97, 110, 99, 101, 82, 101, 119, 97, 114, 100, 83, 116, 97, 116, 101, 18, 22, 10, 6, 67, 104, 97, 114, 73, 100, 24, 1, 32, 1, 40, 13, 82, 6, 67, 104, 97, 114, 73, 100, 18, 18, 10, 4, 70, 108, 97, 103, 24, 2, 32, 1, 40, 12, 82, 4, 70, 108, 97, 103, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 78, 10, 21, 87, 111, 114, 108, 100, 67, 108, 97, 115, 115, 82, 101, 119, 97, 114, 100, 83, 116, 97, 116, 101, 18, 18, 10, 4, 70, 108, 97, 103, 24, 1, 32, 1, 40, 12, 82, 4, 70, 108, 97, 103, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 76, 10, 17, 70, 114, 105, 101, 110, 100, 69, 110, 101, 114, 103, 121, 83, 116, 97, 116, 101, 18, 20, 10, 5, 83, 116, 97, 116, 101, 24, 1, 32, 1, 40, 8, 82, 5, 83, 116, 97, 116, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 112, 10, 23, 67, 104, 97, 114, 65, 102, 102, 105, 110, 105, 116, 121, 82, 101, 119, 97, 114, 100, 83, 116, 97, 116, 101, 18, 22, 10, 6, 67, 104, 97, 114, 73, 100, 24, 1, 32, 1, 40, 13, 82, 6, 67, 104, 97, 114, 73, 100, 18, 26, 10, 8, 81, 117, 101, 115, 116, 73, 100, 115, 24, 2, 32, 3, 40, 13, 82, 8, 81, 117, 101, 115, 116, 73, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 255, 1, 10, 14, 83, 116, 97, 114, 84, 111, 119, 101, 114, 83, 116, 97, 116, 101, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 34, 10, 12, 82, 101, 67, 111, 110, 110, 101, 99, 116, 105, 111, 110, 24, 2, 32, 1, 40, 13, 82, 12, 82, 101, 67, 111, 110, 110, 101, 99, 116, 105, 111, 110, 18, 24, 10, 7, 66, 117, 105, 108, 100, 73, 100, 24, 3, 32, 1, 40, 4, 82, 7, 66, 117, 105, 108, 100, 73, 100, 18, 24, 10, 7, 67, 104, 97, 114, 73, 100, 115, 24, 4, 32, 3, 40, 13, 82, 7, 67, 104, 97, 114, 73, 100, 115, 18, 26, 10, 8, 83, 101, 97, 115, 111, 110, 73, 100, 24, 5, 32, 1, 40, 13, 82, 8, 83, 101, 97, 115, 111, 110, 73, 100, 18, 20, 10, 5, 70, 108, 111, 111, 114, 24, 6, 32, 1, 40, 13, 82, 5, 70, 108, 111, 111, 114, 18, 26, 10, 8, 82, 101, 112, 111, 114, 116, 73, 100, 24, 7, 32, 1, 40, 4, 82, 8, 82, 101, 112, 111, 114, 116, 73, 100, 18, 20, 10, 5, 83, 119, 101, 101, 112, 24, 15, 32, 1, 40, 8, 82, 5, 83, 119, 101, 101, 112, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 135, 1, 10, 18, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 111, 111, 107, 83, 116, 97, 116, 101, 18, 24, 10, 7, 67, 104, 97, 114, 73, 100, 115, 24, 1, 32, 3, 40, 13, 82, 7, 67, 104, 97, 114, 73, 100, 115, 18, 26, 10, 8, 69, 118, 101, 110, 116, 73, 100, 115, 24, 2, 32, 3, 40, 13, 82, 8, 69, 118, 101, 110, 116, 73, 100, 115, 18, 24, 10, 7, 66, 117, 110, 100, 108, 101, 115, 24, 3, 32, 3, 40, 13, 82, 7, 66, 117, 110, 100, 108, 101, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 243, 6, 10, 9, 83, 116, 97, 116, 101, 73, 110, 102, 111, 18, 36, 10, 4, 77, 97, 105, 108, 24, 1, 32, 1, 40, 11, 50, 16, 46, 112, 114, 111, 116, 111, 46, 77, 97, 105, 108, 83, 116, 97, 116, 101, 82, 4, 77, 97, 105, 108, 18, 36, 10, 13, 73, 110, 102, 105, 110, 105, 116, 121, 84, 111, 119, 101, 114, 24, 2, 32, 1, 40, 8, 82, 13, 73, 110, 102, 105, 110, 105, 116, 121, 84, 111, 119, 101, 114, 18, 22, 10, 6, 70, 114, 105, 101, 110, 100, 24, 3, 32, 1, 40, 8, 82, 6, 70, 114, 105, 101, 110, 100, 18, 54, 10, 10, 66, 97, 116, 116, 108, 101, 80, 97, 115, 115, 24, 4, 32, 1, 40, 11, 50, 22, 46, 112, 114, 111, 116, 111, 46, 66, 97, 116, 116, 108, 101, 80, 97, 115, 115, 83, 116, 97, 116, 101, 82, 10, 66, 97, 116, 116, 108, 101, 80, 97, 115, 115, 18, 72, 10, 16, 87, 111, 114, 108, 100, 67, 108, 97, 115, 115, 82, 101, 119, 97, 114, 100, 24, 5, 32, 1, 40, 11, 50, 28, 46, 112, 114, 111, 116, 111, 46, 87, 111, 114, 108, 100, 67, 108, 97, 115, 115, 82, 101, 119, 97, 114, 100, 83, 116, 97, 116, 101, 82, 16, 87, 111, 114, 108, 100, 67, 108, 97, 115, 115, 82, 101, 119, 97, 114, 100, 18, 77, 10, 18, 67, 104, 97, 114, 65, 100, 118, 97, 110, 99, 101, 82, 101, 119, 97, 114, 100, 115, 24, 6, 32, 3, 40, 11, 50, 29, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 114, 65, 100, 118, 97, 110, 99, 101, 82, 101, 119, 97, 114, 100, 83, 116, 97, 116, 101, 82, 18, 67, 104, 97, 114, 65, 100, 118, 97, 110, 99, 101, 82, 101, 119, 97, 114, 100, 115, 18, 60, 10, 12, 70, 114, 105, 101, 110, 100, 69, 110, 101, 114, 103, 121, 24, 7, 32, 1, 40, 11, 50, 24, 46, 112, 114, 111, 116, 111, 46, 70, 114, 105, 101, 110, 100, 69, 110, 101, 114, 103, 121, 83, 116, 97, 116, 101, 82, 12, 70, 114, 105, 101, 110, 100, 69, 110, 101, 114, 103, 121, 18, 80, 10, 19, 67, 104, 97, 114, 65, 102, 102, 105, 110, 105, 116, 121, 82, 101, 119, 97, 114, 100, 115, 24, 8, 32, 3, 40, 11, 50, 30, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 114, 65, 102, 102, 105, 110, 105, 116, 121, 82, 101, 119, 97, 114, 100, 83, 116, 97, 116, 101, 82, 19, 67, 104, 97, 114, 65, 102, 102, 105, 110, 105, 116, 121, 82, 101, 119, 97, 114, 100, 115, 18, 57, 10, 11, 77, 97, 108, 108, 80, 97, 99, 107, 97, 103, 101, 24, 10, 32, 1, 40, 11, 50, 23, 46, 112, 114, 111, 116, 111, 46, 77, 97, 108, 108, 80, 97, 99, 107, 97, 103, 101, 83, 116, 97, 116, 101, 82, 11, 77, 97, 108, 108, 80, 97, 99, 107, 97, 103, 101, 18, 57, 10, 11, 65, 99, 104, 105, 101, 118, 101, 109, 101, 110, 116, 24, 15, 32, 1, 40, 11, 50, 23, 46, 112, 114, 111, 116, 111, 46, 65, 99, 104, 105, 101, 118, 101, 109, 101, 110, 116, 83, 116, 97, 116, 101, 82, 11, 65, 99, 104, 105, 101, 118, 101, 109, 101, 110, 116, 18, 63, 10, 17, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 81, 117, 101, 115, 116, 24, 16, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 81, 117, 101, 115, 116, 83, 116, 97, 116, 101, 82, 17, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 81, 117, 101, 115, 116, 18, 81, 10, 26, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 67, 104, 97, 108, 108, 101, 110, 103, 101, 81, 117, 101, 115, 116, 24, 17, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 81, 117, 101, 115, 116, 83, 116, 97, 116, 101, 82, 26, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 67, 104, 97, 108, 108, 101, 110, 103, 101, 81, 117, 101, 115, 116, 18, 51, 10, 9, 83, 116, 97, 114, 84, 111, 119, 101, 114, 24, 18, 32, 1, 40, 11, 50, 21, 46, 112, 114, 111, 116, 111, 46, 83, 116, 97, 114, 84, 111, 119, 101, 114, 83, 116, 97, 116, 101, 82, 9, 83, 116, 97, 114, 84, 111, 119, 101, 114, 18, 63, 10, 13, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 111, 111, 107, 24, 19, 32, 1, 40, 11, 50, 25, 46, 112, 114, 111, 116, 111, 46, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 111, 111, 107, 83, 116, 97, 116, 101, 82, 13, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 111, 111, 107, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 80, 10, 7, 73, 116, 101, 109, 84, 112, 108, 18, 16, 10, 3, 84, 105, 100, 24, 1, 32, 1, 40, 13, 82, 3, 84, 105, 100, 18, 16, 10, 3, 81, 116, 121, 24, 2, 32, 1, 40, 5, 82, 3, 81, 116, 121, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 117, 10, 4, 73, 116, 101, 109, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 4, 82, 2, 73, 100, 18, 16, 10, 3, 84, 105, 100, 24, 2, 32, 1, 40, 13, 82, 3, 84, 105, 100, 18, 16, 10, 3, 81, 116, 121, 24, 3, 32, 1, 40, 5, 82, 3, 81, 116, 121, 18, 22, 10, 6, 69, 120, 112, 105, 114, 101, 24, 4, 32, 1, 40, 3, 82, 6, 69, 120, 112, 105, 114, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 76, 10, 3, 82, 101, 115, 18, 16, 10, 3, 84, 105, 100, 24, 1, 32, 1, 40, 13, 82, 3, 84, 105, 100, 18, 16, 10, 3, 81, 116, 121, 24, 2, 32, 1, 40, 5, 82, 3, 81, 116, 121, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 68, 10, 5, 84, 105, 116, 108, 101, 18, 24, 10, 7, 84, 105, 116, 108, 101, 73, 100, 24, 1, 32, 1, 40, 13, 82, 7, 84, 105, 116, 108, 101, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 178, 4, 10, 4, 67, 104, 97, 114, 18, 16, 10, 3, 84, 105, 100, 24, 1, 32, 1, 40, 13, 82, 3, 84, 105, 100, 18, 16, 10, 3, 69, 120, 112, 24, 2, 32, 1, 40, 13, 82, 3, 69, 120, 112, 18, 44, 10, 17, 68, 97, 116, 105, 110, 103, 76, 97, 110, 100, 109, 97, 114, 107, 73, 100, 115, 24, 3, 32, 3, 40, 13, 82, 17, 68, 97, 116, 105, 110, 103, 76, 97, 110, 100, 109, 97, 114, 107, 73, 100, 115, 18, 38, 10, 14, 68, 97, 116, 105, 110, 103, 69, 118, 101, 110, 116, 73, 100, 115, 24, 4, 32, 3, 40, 13, 82, 14, 68, 97, 116, 105, 110, 103, 69, 118, 101, 110, 116, 73, 100, 115, 18, 50, 10, 20, 68, 97, 116, 105, 110, 103, 69, 118, 101, 110, 116, 82, 101, 119, 97, 114, 100, 73, 100, 115, 24, 5, 32, 3, 40, 13, 82, 20, 68, 97, 116, 105, 110, 103, 69, 118, 101, 110, 116, 82, 101, 119, 97, 114, 100, 73, 100, 115, 18, 34, 10, 12, 69, 113, 117, 105, 112, 109, 101, 110, 116, 73, 100, 115, 24, 6, 32, 3, 40, 4, 82, 12, 69, 113, 117, 105, 112, 109, 101, 110, 116, 73, 100, 115, 18, 20, 10, 5, 76, 101, 118, 101, 108, 24, 9, 32, 1, 40, 13, 82, 5, 76, 101, 118, 101, 108, 18, 26, 10, 8, 83, 107, 105, 108, 108, 76, 118, 115, 24, 10, 32, 3, 40, 13, 82, 8, 83, 107, 105, 108, 108, 76, 118, 115, 18, 18, 10, 4, 83, 107, 105, 110, 24, 12, 32, 1, 40, 13, 82, 4, 83, 107, 105, 110, 18, 36, 10, 13, 65, 102, 102, 105, 110, 105, 116, 121, 76, 101, 118, 101, 108, 24, 13, 32, 1, 40, 13, 82, 13, 65, 102, 102, 105, 110, 105, 116, 121, 76, 101, 118, 101, 108, 18, 32, 10, 11, 65, 102, 102, 105, 110, 105, 116, 121, 69, 120, 112, 24, 14, 32, 1, 40, 13, 82, 11, 65, 102, 102, 105, 110, 105, 116, 121, 69, 120, 112, 18, 24, 10, 7, 65, 100, 118, 97, 110, 99, 101, 24, 15, 32, 1, 40, 13, 82, 7, 65, 100, 118, 97, 110, 99, 101, 18, 20, 10, 5, 80, 108, 111, 116, 115, 24, 16, 32, 3, 40, 13, 82, 5, 80, 108, 111, 116, 115, 18, 53, 10, 14, 65, 102, 102, 105, 110, 105, 116, 121, 81, 117, 101, 115, 116, 115, 24, 17, 32, 1, 40, 11, 50, 13, 46, 112, 114, 111, 116, 111, 46, 81, 117, 101, 115, 116, 115, 82, 14, 65, 102, 102, 105, 110, 105, 116, 121, 81, 117, 101, 115, 116, 115, 18, 32, 10, 11, 84, 97, 108, 101, 110, 116, 78, 111, 100, 101, 115, 24, 19, 32, 1, 40, 12, 82, 11, 84, 97, 108, 101, 110, 116, 78, 111, 100, 101, 115, 18, 30, 10, 10, 67, 114, 101, 97, 116, 101, 84, 105, 109, 101, 24, 127, 32, 1, 40, 3, 82, 10, 67, 114, 101, 97, 116, 101, 84, 105, 109, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 81, 10, 6, 69, 110, 101, 114, 103, 121, 18, 16, 10, 3, 67, 117, 114, 24, 1, 32, 1, 40, 13, 82, 3, 67, 117, 114, 18, 18, 10, 4, 78, 101, 120, 116, 24, 2, 32, 1, 40, 3, 82, 4, 78, 101, 120, 116, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 105, 10, 10, 87, 111, 114, 108, 100, 67, 108, 97, 115, 115, 18, 26, 10, 8, 65, 100, 100, 67, 108, 97, 115, 115, 24, 1, 32, 1, 40, 13, 82, 8, 65, 100, 100, 67, 108, 97, 115, 115, 18, 28, 10, 9, 69, 120, 112, 67, 104, 97, 110, 103, 101, 24, 2, 32, 1, 40, 5, 82, 9, 69, 120, 112, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 106, 10, 9, 69, 113, 117, 105, 112, 109, 101, 110, 116, 18, 40, 10, 4, 73, 110, 102, 111, 24, 1, 32, 1, 40, 11, 50, 20, 46, 112, 114, 111, 116, 111, 46, 69, 113, 117, 105, 112, 109, 101, 110, 116, 73, 110, 102, 111, 82, 4, 73, 110, 102, 111, 18, 16, 10, 3, 81, 116, 121, 24, 2, 32, 1, 40, 5, 82, 3, 81, 116, 121, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 191, 1, 10, 4, 68, 105, 115, 99, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 20, 10, 5, 76, 101, 118, 101, 108, 24, 2, 32, 1, 40, 13, 82, 5, 76, 101, 118, 101, 108, 18, 16, 10, 3, 69, 120, 112, 24, 3, 32, 1, 40, 13, 82, 3, 69, 120, 112, 18, 20, 10, 5, 80, 104, 97, 115, 101, 24, 4, 32, 1, 40, 13, 82, 5, 80, 104, 97, 115, 101, 18, 18, 10, 4, 83, 116, 97, 114, 24, 5, 32, 1, 40, 13, 82, 4, 83, 116, 97, 114, 18, 18, 10, 4, 82, 101, 97, 100, 24, 6, 32, 1, 40, 8, 82, 4, 82, 101, 97, 100, 18, 30, 10, 10, 67, 114, 101, 97, 116, 101, 84, 105, 109, 101, 24, 15, 32, 1, 40, 3, 82, 10, 67, 114, 101, 97, 116, 101, 84, 105, 109, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 114, 10, 9, 84, 114, 97, 110, 115, 102, 111, 114, 109, 18, 32, 10, 3, 83, 114, 99, 24, 1, 32, 3, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 84, 112, 108, 82, 3, 83, 114, 99, 18, 32, 10, 3, 68, 115, 116, 24, 2, 32, 3, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 84, 112, 108, 82, 3, 68, 115, 116, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 74, 10, 19, 83, 116, 97, 114, 84, 111, 119, 101, 114, 82, 97, 110, 107, 84, 105, 99, 107, 101, 116, 18, 16, 10, 3, 81, 116, 121, 24, 1, 32, 1, 40, 5, 82, 3, 81, 116, 121, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 64, 10, 5, 72, 111, 110, 111, 114, 18, 20, 10, 5, 78, 101, 119, 73, 100, 24, 1, 32, 1, 40, 13, 82, 5, 78, 101, 119, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 91, 10, 10, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 18, 42, 10, 5, 80, 114, 111, 112, 115, 24, 1, 32, 3, 40, 11, 50, 20, 46, 103, 111, 111, 103, 108, 101, 46, 112, 114, 111, 116, 111, 98, 117, 102, 46, 65, 110, 121, 82, 5, 80, 114, 111, 112, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 126, 10, 13, 70, 111, 114, 109, 97, 116, 105, 111, 110, 73, 110, 102, 111, 18, 22, 10, 6, 78, 117, 109, 98, 101, 114, 24, 1, 32, 1, 40, 13, 82, 6, 78, 117, 109, 98, 101, 114, 18, 24, 10, 7, 67, 104, 97, 114, 73, 100, 115, 24, 2, 32, 3, 40, 13, 82, 7, 67, 104, 97, 114, 73, 100, 115, 18, 24, 10, 7, 68, 105, 115, 99, 73, 100, 115, 24, 3, 32, 3, 40, 13, 82, 7, 68, 105, 115, 99, 73, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 102, 10, 15, 70, 111, 114, 109, 97, 116, 105, 111, 110, 82, 101, 99, 111, 114, 100, 18, 24, 10, 7, 71, 114, 111, 117, 112, 73, 100, 24, 1, 32, 1, 40, 13, 82, 7, 71, 114, 111, 117, 112, 73, 100, 18, 22, 10, 6, 78, 117, 109, 98, 101, 114, 24, 2, 32, 1, 40, 13, 82, 6, 78, 117, 109, 98, 101, 114, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 141, 1, 10, 14, 84, 111, 119, 101, 114, 70, 111, 114, 109, 97, 116, 105, 111, 110, 18, 40, 10, 4, 73, 110, 102, 111, 24, 1, 32, 3, 40, 11, 50, 20, 46, 112, 114, 111, 116, 111, 46, 70, 111, 114, 109, 97, 116, 105, 111, 110, 73, 110, 102, 111, 82, 4, 73, 110, 102, 111, 18, 46, 10, 6, 82, 101, 99, 111, 114, 100, 24, 2, 32, 3, 40, 11, 50, 22, 46, 112, 114, 111, 116, 111, 46, 70, 111, 114, 109, 97, 116, 105, 111, 110, 82, 101, 99, 111, 114, 100, 82, 6, 82, 101, 99, 111, 114, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 92, 10, 11, 83, 116, 111, 114, 121, 67, 104, 111, 105, 99, 101, 18, 20, 10, 5, 71, 114, 111, 117, 112, 24, 1, 32, 1, 40, 13, 82, 5, 71, 114, 111, 117, 112, 18, 20, 10, 5, 86, 97, 108, 117, 101, 24, 2, 32, 1, 40, 13, 82, 5, 86, 97, 108, 117, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 156, 1, 10, 5, 83, 116, 111, 114, 121, 18, 16, 10, 3, 73, 100, 120, 24, 1, 32, 1, 40, 13, 82, 3, 73, 100, 120, 18, 40, 10, 5, 77, 97, 106, 111, 114, 24, 2, 32, 3, 40, 11, 50, 18, 46, 112, 114, 111, 116, 111, 46, 83, 116, 111, 114, 121, 67, 104, 111, 105, 99, 101, 82, 5, 77, 97, 106, 111, 114, 18, 52, 10, 11, 80, 101, 114, 115, 111, 110, 97, 108, 105, 116, 121, 24, 3, 32, 3, 40, 11, 50, 18, 46, 112, 114, 111, 116, 111, 46, 83, 116, 111, 114, 121, 67, 104, 111, 105, 99, 101, 82, 11, 80, 101, 114, 115, 111, 110, 97, 108, 105, 116, 121, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 142, 1, 10, 9, 83, 116, 111, 114, 121, 73, 110, 102, 111, 18, 28, 10, 9, 69, 118, 105, 100, 101, 110, 99, 101, 115, 24, 1, 32, 3, 40, 13, 82, 9, 69, 118, 105, 100, 101, 110, 99, 101, 115, 18, 38, 10, 7, 83, 116, 111, 114, 105, 101, 115, 24, 2, 32, 3, 40, 11, 50, 12, 46, 112, 114, 111, 116, 111, 46, 83, 116, 111, 114, 121, 82, 7, 83, 116, 111, 114, 105, 101, 115, 18, 24, 10, 7, 66, 117, 105, 108, 100, 73, 100, 24, 3, 32, 1, 40, 4, 82, 7, 66, 117, 105, 108, 100, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 116, 10, 12, 82, 111, 111, 109, 82, 101, 115, 116, 111, 114, 101, 100, 18, 22, 10, 6, 82, 111, 111, 109, 73, 100, 24, 1, 32, 1, 40, 13, 82, 6, 82, 111, 111, 109, 73, 100, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 2, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 82, 10, 7, 68, 114, 111, 112, 80, 107, 103, 18, 36, 10, 5, 68, 114, 111, 112, 115, 24, 1, 32, 3, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 84, 112, 108, 82, 5, 68, 114, 111, 112, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 128, 1, 10, 11, 77, 111, 110, 115, 116, 101, 114, 68, 114, 111, 112, 18, 34, 10, 12, 77, 111, 110, 115, 116, 101, 114, 73, 110, 100, 101, 120, 24, 1, 32, 1, 40, 13, 82, 12, 77, 111, 110, 115, 116, 101, 114, 73, 110, 100, 101, 120, 18, 42, 10, 8, 68, 114, 111, 112, 80, 107, 103, 115, 24, 2, 32, 3, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 68, 114, 111, 112, 80, 107, 103, 82, 8, 68, 114, 111, 112, 80, 107, 103, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 114, 10, 16, 87, 111, 114, 108, 100, 67, 108, 97, 115, 115, 85, 112, 100, 97, 116, 101, 18, 16, 10, 3, 67, 117, 114, 24, 1, 32, 1, 40, 13, 82, 3, 67, 117, 114, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 2, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 97, 10, 8, 73, 116, 101, 109, 73, 110, 102, 111, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 4, 82, 2, 73, 100, 18, 16, 10, 3, 84, 105, 100, 24, 2, 32, 1, 40, 13, 82, 3, 84, 105, 100, 18, 16, 10, 3, 81, 116, 121, 24, 3, 32, 1, 40, 13, 82, 3, 81, 116, 121, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 166, 1, 10, 15, 82, 101, 103, 105, 111, 110, 66, 111, 115, 115, 76, 101, 118, 101, 108, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 18, 10, 4, 83, 116, 97, 114, 24, 2, 32, 1, 40, 13, 82, 4, 83, 116, 97, 114, 18, 20, 10, 5, 70, 105, 114, 115, 116, 24, 3, 32, 1, 40, 8, 82, 5, 70, 105, 114, 115, 116, 18, 28, 10, 9, 84, 104, 114, 101, 101, 83, 116, 97, 114, 24, 4, 32, 1, 40, 8, 82, 9, 84, 104, 114, 101, 101, 83, 116, 97, 114, 18, 24, 10, 7, 66, 117, 105, 108, 100, 73, 100, 24, 5, 32, 1, 40, 4, 82, 7, 66, 117, 105, 108, 100, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 249, 2, 10, 6, 70, 114, 105, 101, 110, 100, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 4, 82, 2, 73, 100, 18, 26, 10, 8, 78, 105, 99, 107, 78, 97, 109, 101, 24, 2, 32, 1, 40, 9, 82, 8, 78, 105, 99, 107, 78, 97, 109, 101, 18, 24, 10, 7, 72, 97, 115, 104, 116, 97, 103, 24, 3, 32, 1, 40, 13, 82, 7, 72, 97, 115, 104, 116, 97, 103, 18, 26, 10, 8, 72, 101, 97, 100, 73, 99, 111, 110, 24, 4, 32, 1, 40, 13, 82, 8, 72, 101, 97, 100, 73, 99, 111, 110, 18, 36, 10, 13, 76, 97, 115, 116, 76, 111, 103, 105, 110, 84, 105, 109, 101, 24, 5, 32, 1, 40, 3, 82, 13, 76, 97, 115, 116, 76, 111, 103, 105, 110, 84, 105, 109, 101, 18, 30, 10, 10, 87, 111, 114, 108, 100, 67, 108, 97, 115, 115, 24, 6, 32, 1, 40, 13, 82, 10, 87, 111, 114, 108, 100, 67, 108, 97, 115, 115, 18, 32, 10, 11, 84, 105, 116, 108, 101, 80, 114, 101, 102, 105, 120, 24, 7, 32, 1, 40, 13, 82, 11, 84, 105, 116, 108, 101, 80, 114, 101, 102, 105, 120, 18, 32, 10, 11, 84, 105, 116, 108, 101, 83, 117, 102, 102, 105, 120, 24, 8, 32, 1, 40, 13, 82, 11, 84, 105, 116, 108, 101, 83, 117, 102, 102, 105, 120, 18, 28, 10, 9, 83, 105, 103, 110, 97, 116, 117, 114, 101, 24, 9, 32, 1, 40, 9, 82, 9, 83, 105, 103, 110, 97, 116, 117, 114, 101, 18, 24, 10, 7, 67, 104, 97, 114, 73, 100, 115, 24, 10, 32, 3, 40, 13, 82, 7, 67, 104, 97, 114, 73, 100, 115, 18, 40, 10, 6, 72, 111, 110, 111, 114, 115, 24, 15, 32, 3, 40, 11, 50, 16, 46, 112, 114, 111, 116, 111, 46, 72, 111, 110, 111, 114, 73, 110, 102, 111, 82, 6, 72, 111, 110, 111, 114, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 166, 1, 10, 12, 70, 114, 105, 101, 110, 100, 68, 101, 116, 97, 105, 108, 18, 33, 10, 4, 66, 97, 115, 101, 24, 1, 32, 1, 40, 11, 50, 13, 46, 112, 114, 111, 116, 111, 46, 70, 114, 105, 101, 110, 100, 82, 4, 66, 97, 115, 101, 18, 18, 10, 4, 83, 116, 97, 114, 24, 2, 32, 1, 40, 8, 82, 4, 83, 116, 97, 114, 18, 30, 10, 10, 83, 101, 110, 100, 69, 110, 101, 114, 103, 121, 24, 3, 32, 1, 40, 8, 82, 10, 83, 101, 110, 100, 69, 110, 101, 114, 103, 121, 18, 28, 10, 9, 71, 101, 116, 69, 110, 101, 114, 103, 121, 24, 4, 32, 1, 40, 13, 82, 9, 71, 101, 116, 69, 110, 101, 114, 103, 121, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 88, 10, 11, 66, 111, 117, 103, 104, 116, 71, 111, 111, 100, 115, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 22, 10, 6, 78, 117, 109, 98, 101, 114, 24, 2, 32, 1, 40, 13, 82, 6, 78, 117, 109, 98, 101, 114, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 141, 1, 10, 12, 82, 101, 115, 105, 100, 101, 110, 116, 83, 104, 111, 112, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 32, 10, 11, 82, 101, 102, 114, 101, 115, 104, 84, 105, 109, 101, 24, 2, 32, 1, 40, 3, 82, 11, 82, 101, 102, 114, 101, 115, 104, 84, 105, 109, 101, 18, 40, 10, 5, 73, 110, 102, 111, 115, 24, 3, 32, 3, 40, 11, 50, 18, 46, 112, 114, 111, 116, 111, 46, 66, 111, 117, 103, 104, 116, 71, 111, 111, 100, 115, 82, 5, 73, 110, 102, 111, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 89, 10, 12, 72, 97, 110, 100, 98, 111, 111, 107, 73, 110, 102, 111, 18, 18, 10, 4, 84, 121, 112, 101, 24, 1, 32, 1, 40, 13, 82, 4, 84, 121, 112, 101, 18, 18, 10, 4, 68, 97, 116, 97, 24, 2, 32, 1, 40, 12, 82, 4, 68, 97, 116, 97, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 103, 10, 10, 81, 117, 101, 115, 116, 83, 116, 97, 116, 101, 18, 36, 10, 4, 84, 121, 112, 101, 24, 1, 32, 1, 40, 14, 50, 16, 46, 112, 114, 111, 116, 111, 46, 81, 117, 101, 115, 116, 84, 121, 112, 101, 82, 4, 84, 121, 112, 101, 18, 16, 10, 3, 78, 101, 119, 24, 2, 32, 1, 40, 8, 82, 3, 78, 101, 119, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 71, 10, 16, 77, 97, 108, 108, 80, 97, 99, 107, 97, 103, 101, 83, 116, 97, 116, 101, 18, 16, 10, 3, 78, 101, 119, 24, 1, 32, 1, 40, 8, 82, 3, 78, 101, 119, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 112, 10, 13, 68, 97, 105, 108, 121, 73, 110, 115, 116, 97, 110, 99, 101, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 18, 10, 4, 83, 116, 97, 114, 24, 2, 32, 1, 40, 13, 82, 4, 83, 116, 97, 114, 18, 24, 10, 7, 66, 117, 105, 108, 100, 73, 100, 24, 15, 32, 1, 40, 4, 82, 7, 66, 117, 105, 108, 100, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 152, 1, 10, 21, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 66, 111, 115, 115, 76, 101, 118, 101, 108, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 18, 10, 4, 83, 116, 97, 114, 24, 2, 32, 1, 40, 13, 82, 4, 83, 116, 97, 114, 18, 24, 10, 7, 66, 117, 105, 108, 100, 73, 100, 24, 3, 32, 1, 40, 4, 82, 7, 66, 117, 105, 108, 100, 73, 100, 18, 30, 10, 10, 68, 105, 102, 102, 105, 99, 117, 108, 116, 121, 24, 4, 32, 1, 40, 13, 82, 10, 68, 105, 102, 102, 105, 99, 117, 108, 116, 121, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 160, 1, 10, 25, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 67, 104, 97, 108, 108, 101, 110, 103, 101, 73, 110, 102, 111, 18, 22, 10, 6, 85, 110, 108, 111, 99, 107, 24, 1, 32, 1, 40, 8, 82, 6, 85, 110, 108, 111, 99, 107, 18, 14, 10, 2, 73, 100, 24, 2, 32, 1, 40, 13, 82, 2, 73, 100, 18, 26, 10, 8, 79, 112, 101, 110, 84, 105, 109, 101, 24, 3, 32, 1, 40, 3, 82, 8, 79, 112, 101, 110, 84, 105, 109, 101, 18, 28, 10, 9, 67, 108, 111, 115, 101, 84, 105, 109, 101, 24, 4, 32, 1, 40, 3, 82, 9, 67, 108, 111, 115, 101, 84, 105, 109, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 141, 1, 10, 8, 65, 99, 116, 105, 118, 105, 116, 121, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 28, 10, 9, 83, 116, 97, 114, 116, 84, 105, 109, 101, 24, 2, 32, 1, 40, 3, 82, 9, 83, 116, 97, 114, 116, 84, 105, 109, 101, 18, 24, 10, 7, 69, 110, 100, 84, 105, 109, 101, 24, 3, 32, 1, 40, 3, 82, 7, 69, 110, 100, 84, 105, 109, 101, 18, 22, 10, 6, 83, 116, 97, 116, 117, 115, 24, 15, 32, 1, 40, 8, 82, 6, 83, 116, 97, 116, 117, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 140, 1, 10, 13, 65, 99, 116, 105, 118, 105, 116, 121, 81, 117, 101, 115, 116, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 22, 10, 6, 83, 116, 97, 116, 117, 115, 24, 2, 32, 1, 40, 13, 82, 6, 83, 116, 97, 116, 117, 115, 18, 48, 10, 8, 80, 114, 111, 103, 114, 101, 115, 115, 24, 15, 32, 3, 40, 11, 50, 20, 46, 112, 114, 111, 116, 111, 46, 81, 117, 101, 115, 116, 80, 114, 111, 103, 114, 101, 115, 115, 82, 8, 80, 114, 111, 103, 114, 101, 115, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 165, 1, 10, 16, 65, 99, 116, 105, 118, 105, 116, 121, 80, 101, 114, 105, 111, 100, 105, 99, 18, 30, 10, 10, 65, 99, 116, 105, 118, 105, 116, 121, 73, 100, 24, 1, 32, 1, 40, 13, 82, 10, 65, 99, 116, 105, 118, 105, 116, 121, 73, 100, 18, 32, 10, 11, 70, 105, 110, 97, 108, 83, 116, 97, 116, 117, 115, 24, 2, 32, 1, 40, 8, 82, 11, 70, 105, 110, 97, 108, 83, 116, 97, 116, 117, 115, 18, 44, 10, 6, 81, 117, 101, 115, 116, 115, 24, 15, 32, 3, 40, 11, 50, 20, 46, 112, 114, 111, 116, 111, 46, 65, 99, 116, 105, 118, 105, 116, 121, 81, 117, 101, 115, 116, 82, 6, 81, 117, 101, 115, 116, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 132, 1, 10, 13, 65, 99, 116, 105, 118, 105, 116, 121, 76, 111, 103, 105, 110, 18, 30, 10, 10, 65, 99, 116, 105, 118, 105, 116, 121, 73, 100, 24, 1, 32, 1, 40, 13, 82, 10, 65, 99, 116, 105, 118, 105, 116, 121, 73, 100, 18, 24, 10, 7, 82, 101, 99, 101, 105, 118, 101, 24, 2, 32, 1, 40, 13, 82, 7, 82, 101, 99, 101, 105, 118, 101, 18, 22, 10, 6, 65, 99, 116, 117, 97, 108, 24, 3, 32, 1, 40, 13, 82, 6, 65, 99, 116, 117, 97, 108, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 187, 1, 10, 12, 65, 102, 102, 105, 110, 105, 116, 121, 73, 110, 102, 111, 18, 22, 10, 6, 67, 104, 97, 114, 73, 100, 24, 1, 32, 1, 40, 13, 82, 6, 67, 104, 97, 114, 73, 100, 18, 36, 10, 13, 65, 102, 102, 105, 110, 105, 116, 121, 76, 101, 118, 101, 108, 24, 2, 32, 1, 40, 13, 82, 13, 65, 102, 102, 105, 110, 105, 116, 121, 76, 101, 118, 101, 108, 18, 32, 10, 11, 65, 102, 102, 105, 110, 105, 116, 121, 69, 120, 112, 24, 3, 32, 1, 40, 13, 82, 11, 65, 102, 102, 105, 110, 105, 116, 121, 69, 120, 112, 18, 40, 10, 7, 82, 101, 119, 97, 114, 100, 115, 24, 4, 32, 3, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 84, 112, 108, 82, 7, 82, 101, 119, 97, 114, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 109, 10, 4, 67, 104, 97, 116, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 24, 10, 7, 79, 112, 116, 105, 111, 110, 115, 24, 2, 32, 3, 40, 13, 82, 7, 79, 112, 116, 105, 111, 110, 115, 18, 24, 10, 7, 80, 114, 111, 99, 101, 115, 115, 24, 3, 32, 1, 40, 13, 82, 7, 80, 114, 111, 99, 101, 115, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 138, 1, 10, 8, 67, 111, 110, 116, 97, 99, 116, 115, 18, 22, 10, 6, 67, 104, 97, 114, 73, 100, 24, 1, 32, 1, 40, 13, 82, 6, 67, 104, 97, 114, 73, 100, 18, 32, 10, 11, 84, 114, 105, 103, 103, 101, 114, 84, 105, 109, 101, 24, 2, 32, 1, 40, 3, 82, 11, 84, 114, 105, 103, 103, 101, 114, 84, 105, 109, 101, 18, 33, 10, 5, 67, 104, 97, 116, 115, 24, 3, 32, 3, 40, 11, 50, 11, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 116, 82, 5, 67, 104, 97, 116, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 137, 1, 10, 22, 73, 110, 102, 105, 110, 105, 116, 121, 84, 111, 119, 101, 114, 76, 101, 118, 101, 108, 73, 110, 102, 111, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 24, 10, 7, 76, 101, 118, 101, 108, 73, 100, 24, 2, 32, 1, 40, 13, 82, 7, 76, 101, 118, 101, 108, 73, 100, 18, 34, 10, 12, 67, 104, 97, 108, 108, 101, 110, 103, 101, 73, 100, 115, 24, 3, 32, 3, 40, 13, 82, 12, 67, 104, 97, 108, 108, 101, 110, 103, 101, 73, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 202, 1, 10, 11, 67, 111, 108, 108, 101, 99, 116, 82, 101, 115, 112, 18, 53, 10, 6, 83, 116, 97, 116, 117, 115, 24, 1, 32, 1, 40, 14, 50, 29, 46, 112, 114, 111, 116, 111, 46, 67, 111, 108, 108, 101, 99, 116, 82, 101, 115, 112, 46, 83, 116, 97, 116, 117, 115, 69, 110, 117, 109, 82, 6, 83, 116, 97, 116, 117, 115, 18, 39, 10, 5, 73, 116, 101, 109, 115, 24, 2, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 5, 73, 116, 101, 109, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 56, 10, 10, 83, 116, 97, 116, 117, 115, 69, 110, 117, 109, 18, 10, 10, 6, 85, 110, 112, 97, 105, 100, 16, 0, 18, 8, 10, 4, 68, 111, 110, 101, 16, 1, 18, 9, 10, 5, 82, 101, 116, 114, 121, 16, 2, 18, 9, 10, 5, 69, 114, 114, 111, 114, 16, 3, 34, 88, 10, 13, 69, 113, 117, 105, 112, 109, 101, 110, 116, 65, 116, 116, 114, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 20, 10, 5, 86, 97, 108, 117, 101, 24, 2, 32, 1, 40, 5, 82, 5, 86, 97, 108, 117, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 186, 1, 10, 13, 69, 113, 117, 105, 112, 109, 101, 110, 116, 73, 110, 102, 111, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 4, 82, 2, 73, 100, 18, 16, 10, 3, 84, 105, 100, 24, 2, 32, 1, 40, 13, 82, 3, 84, 105, 100, 18, 16, 10, 3, 69, 120, 112, 24, 3, 32, 1, 40, 13, 82, 3, 69, 120, 112, 18, 18, 10, 4, 76, 111, 99, 107, 24, 4, 32, 1, 40, 8, 82, 4, 76, 111, 99, 107, 18, 18, 10, 4, 84, 97, 103, 115, 24, 5, 32, 3, 40, 13, 82, 4, 84, 97, 103, 115, 18, 42, 10, 5, 65, 116, 116, 114, 115, 24, 6, 32, 3, 40, 11, 50, 20, 46, 112, 114, 111, 116, 111, 46, 69, 113, 117, 105, 112, 109, 101, 110, 116, 65, 116, 116, 114, 82, 5, 65, 116, 116, 114, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 116, 10, 17, 69, 113, 117, 105, 112, 109, 101, 110, 116, 73, 110, 115, 116, 97, 110, 99, 101, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 18, 10, 4, 83, 116, 97, 114, 24, 2, 32, 1, 40, 13, 82, 4, 83, 116, 97, 114, 18, 24, 10, 7, 66, 117, 105, 108, 100, 73, 100, 24, 15, 32, 1, 40, 4, 82, 7, 66, 117, 105, 108, 100, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 178, 1, 10, 9, 65, 103, 101, 110, 116, 73, 110, 102, 111, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 32, 10, 11, 80, 114, 111, 99, 101, 115, 115, 84, 105, 109, 101, 24, 2, 32, 1, 40, 13, 82, 11, 80, 114, 111, 99, 101, 115, 115, 84, 105, 109, 101, 18, 24, 10, 7, 67, 104, 97, 114, 73, 100, 115, 24, 3, 32, 3, 40, 13, 82, 7, 67, 104, 97, 114, 73, 100, 115, 18, 24, 10, 7, 66, 117, 105, 108, 100, 73, 100, 24, 4, 32, 1, 40, 4, 82, 7, 66, 117, 105, 108, 100, 73, 100, 18, 28, 10, 9, 83, 116, 97, 114, 116, 84, 105, 109, 101, 24, 5, 32, 1, 40, 3, 82, 9, 83, 116, 97, 114, 116, 84, 105, 109, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 178, 1, 10, 9, 65, 103, 101, 110, 116, 68, 97, 116, 97, 18, 38, 10, 5, 73, 110, 102, 111, 115, 24, 1, 32, 3, 40, 11, 50, 16, 46, 112, 114, 111, 116, 111, 46, 65, 103, 101, 110, 116, 73, 110, 102, 111, 82, 5, 73, 110, 102, 111, 115, 18, 32, 10, 11, 78, 101, 119, 65, 103, 101, 110, 116, 73, 100, 115, 24, 2, 32, 3, 40, 13, 82, 11, 78, 101, 119, 65, 103, 101, 110, 116, 73, 100, 115, 18, 26, 10, 8, 68, 97, 105, 108, 121, 73, 100, 115, 24, 3, 32, 3, 40, 13, 82, 8, 68, 97, 105, 108, 121, 73, 100, 115, 18, 28, 10, 9, 87, 101, 101, 107, 108, 121, 73, 100, 115, 24, 4, 32, 3, 40, 13, 82, 9, 87, 101, 101, 107, 108, 121, 73, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 94, 10, 9, 72, 111, 110, 111, 114, 73, 110, 102, 111, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 30, 10, 10, 65, 102, 102, 105, 110, 105, 116, 121, 76, 86, 24, 2, 32, 1, 40, 13, 82, 10, 65, 102, 102, 105, 110, 105, 116, 121, 76, 86, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 113, 10, 20, 86, 97, 109, 112, 105, 114, 101, 83, 117, 114, 118, 105, 118, 111, 114, 69, 118, 101, 110, 116, 18, 28, 10, 9, 69, 118, 101, 110, 116, 84, 121, 112, 101, 24, 1, 32, 1, 40, 13, 82, 9, 69, 118, 101, 110, 116, 84, 121, 112, 101, 18, 24, 10, 7, 78, 117, 109, 98, 101, 114, 115, 24, 2, 32, 3, 40, 13, 82, 7, 78, 117, 109, 98, 101, 114, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 141, 1, 10, 26, 86, 97, 109, 112, 105, 114, 101, 83, 117, 114, 118, 105, 118, 111, 114, 76, 101, 118, 101, 108, 82, 101, 119, 97, 114, 100, 18, 20, 10, 5, 76, 101, 118, 101, 108, 24, 1, 32, 1, 40, 13, 82, 5, 76, 101, 118, 101, 108, 18, 54, 10, 3, 80, 107, 103, 24, 2, 32, 1, 40, 11, 50, 36, 46, 112, 114, 111, 116, 111, 46, 86, 97, 109, 112, 105, 114, 101, 83, 117, 114, 118, 105, 118, 111, 114, 70, 97, 116, 101, 67, 97, 114, 100, 83, 101, 108, 101, 99, 116, 82, 3, 80, 107, 103, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 132, 1, 10, 29, 86, 97, 109, 112, 105, 114, 101, 83, 117, 114, 118, 105, 118, 111, 114, 70, 97, 116, 101, 67, 97, 114, 100, 83, 101, 108, 101, 99, 116, 18, 16, 10, 3, 73, 100, 115, 24, 1, 32, 3, 40, 13, 82, 3, 73, 100, 115, 18, 22, 10, 6, 78, 101, 119, 73, 100, 115, 24, 2, 32, 3, 40, 13, 82, 6, 78, 101, 119, 73, 100, 115, 18, 22, 10, 6, 82, 101, 82, 111, 108, 108, 24, 3, 32, 1, 40, 13, 82, 6, 82, 101, 82, 111, 108, 108, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 212, 2, 10, 25, 86, 97, 109, 112, 105, 114, 101, 83, 117, 114, 118, 105, 118, 111, 114, 82, 101, 99, 111, 114, 100, 73, 110, 102, 111, 18, 28, 10, 9, 80, 97, 115, 115, 101, 100, 73, 100, 115, 24, 1, 32, 3, 40, 13, 82, 9, 80, 97, 115, 115, 101, 100, 73, 100, 115, 18, 65, 10, 7, 78, 111, 114, 109, 97, 108, 115, 24, 2, 32, 3, 40, 11, 50, 39, 46, 112, 114, 111, 116, 111, 46, 86, 97, 109, 112, 105, 114, 101, 83, 117, 114, 118, 105, 118, 111, 114, 82, 101, 99, 111, 114, 100, 73, 110, 102, 111, 46, 82, 101, 99, 111, 114, 100, 82, 7, 78, 111, 114, 109, 97, 108, 115, 18, 63, 10, 6, 83, 101, 97, 115, 111, 110, 24, 3, 32, 1, 40, 11, 50, 39, 46, 112, 114, 111, 116, 111, 46, 86, 97, 109, 112, 105, 114, 101, 83, 117, 114, 118, 105, 118, 111, 114, 82, 101, 99, 111, 114, 100, 73, 110, 102, 111, 46, 82, 101, 99, 111, 114, 100, 82, 6, 83, 101, 97, 115, 111, 110, 18, 32, 10, 11, 83, 101, 97, 115, 111, 110, 83, 99, 111, 114, 101, 24, 4, 32, 1, 40, 13, 82, 11, 83, 101, 97, 115, 111, 110, 83, 99, 111, 114, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 26, 80, 10, 6, 82, 101, 99, 111, 114, 100, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 26, 10, 8, 66, 117, 105, 108, 100, 73, 100, 49, 24, 2, 32, 1, 40, 4, 82, 8, 66, 117, 105, 108, 100, 73, 100, 49, 18, 26, 10, 8, 66, 117, 105, 108, 100, 73, 100, 50, 24, 3, 32, 1, 40, 4, 82, 8, 66, 117, 105, 108, 100, 73, 100, 50, 42, 222, 1, 10, 9, 81, 117, 101, 115, 116, 84, 121, 112, 101, 18, 16, 10, 12, 85, 110, 107, 110, 111, 119, 110, 81, 117, 101, 115, 116, 16, 0, 18, 13, 10, 9, 84, 111, 117, 114, 71, 117, 105, 100, 101, 16, 1, 18, 9, 10, 5, 68, 97, 105, 108, 121, 16, 2, 18, 16, 10, 12, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 16, 3, 18, 25, 10, 21, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 67, 104, 97, 108, 108, 101, 110, 103, 101, 16, 4, 18, 12, 10, 8, 65, 102, 102, 105, 110, 105, 116, 121, 16, 5, 18, 19, 10, 15, 66, 97, 116, 116, 108, 101, 80, 97, 115, 115, 68, 97, 105, 108, 121, 16, 6, 18, 20, 10, 16, 66, 97, 116, 116, 108, 101, 80, 97, 115, 115, 87, 101, 101, 107, 108, 121, 16, 7, 18, 25, 10, 21, 86, 97, 109, 112, 105, 114, 101, 83, 117, 114, 118, 105, 118, 111, 114, 78, 111, 114, 109, 97, 108, 16, 8, 18, 25, 10, 21, 86, 97, 109, 112, 105, 114, 101, 83, 117, 114, 118, 105, 118, 111, 114, 83, 101, 97, 115, 111, 110, 16, 9, 18, 9, 10, 5, 84, 111, 119, 101, 114, 16, 10, 98, 6, 112, 114, 111, 116, 111, 51, 10, 55, 10, 22, 97, 99, 104, 105, 101, 118, 101, 109, 101, 110, 116, 95, 105, 110, 102, 111, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 142, 1, 10, 32, 97, 99, 104, 105, 101, 118, 101, 109, 101, 110, 116, 95, 114, 101, 119, 97, 114, 100, 95, 114, 101, 99, 101, 105, 118, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 75, 10, 20, 65, 99, 104, 105, 101, 118, 101, 109, 101, 110, 116, 82, 101, 119, 97, 114, 100, 82, 101, 113, 18, 16, 10, 3, 73, 100, 115, 24, 1, 32, 3, 40, 13, 82, 3, 73, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 193, 2, 10, 21, 97, 99, 116, 105, 118, 105, 116, 121, 95, 100, 101, 116, 97, 105, 108, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 173, 1, 10, 11, 65, 99, 116, 105, 118, 105, 116, 121, 77, 115, 103, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 53, 10, 8, 80, 101, 114, 105, 111, 100, 105, 99, 24, 2, 32, 1, 40, 11, 50, 23, 46, 112, 114, 111, 116, 111, 46, 65, 99, 116, 105, 118, 105, 116, 121, 80, 101, 114, 105, 111, 100, 105, 99, 72, 0, 82, 8, 80, 101, 114, 105, 111, 100, 105, 99, 18, 44, 10, 5, 76, 111, 103, 105, 110, 24, 3, 32, 1, 40, 11, 50, 20, 46, 112, 114, 111, 116, 111, 46, 65, 99, 116, 105, 118, 105, 116, 121, 76, 111, 103, 105, 110, 72, 0, 82, 5, 76, 111, 103, 105, 110, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 66, 6, 10, 4, 68, 97, 116, 97, 34, 89, 10, 12, 65, 99, 116, 105, 118, 105, 116, 121, 82, 101, 115, 112, 18, 38, 10, 4, 76, 105, 115, 116, 24, 1, 32, 3, 40, 11, 50, 18, 46, 112, 114, 111, 116, 111, 46, 65, 99, 116, 105, 118, 105, 116, 121, 77, 115, 103, 82, 4, 76, 105, 115, 116, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 68, 10, 35, 97, 99, 116, 105, 118, 105, 116, 121, 95, 108, 111, 103, 105, 110, 95, 114, 101, 119, 97, 114, 100, 95, 114, 101, 99, 101, 105, 118, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 77, 10, 44, 97, 99, 116, 105, 118, 105, 116, 121, 95, 112, 101, 114, 105, 111, 100, 105, 99, 95, 102, 105, 110, 97, 108, 95, 114, 101, 119, 97, 114, 100, 95, 114, 101, 99, 101, 105, 118, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 193, 1, 10, 38, 97, 99, 116, 105, 118, 105, 116, 121, 95, 112, 101, 114, 105, 111, 100, 105, 99, 95, 114, 101, 119, 97, 114, 100, 95, 114, 101, 99, 101, 105, 118, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 120, 10, 25, 65, 99, 116, 105, 118, 105, 116, 121, 80, 101, 114, 105, 111, 100, 105, 99, 82, 101, 119, 97, 114, 100, 82, 101, 113, 18, 30, 10, 10, 65, 99, 116, 105, 118, 105, 116, 121, 73, 100, 24, 1, 32, 1, 40, 13, 82, 10, 65, 99, 116, 105, 118, 105, 116, 121, 73, 100, 18, 24, 10, 7, 81, 117, 101, 115, 116, 73, 100, 24, 2, 32, 1, 40, 13, 82, 7, 81, 117, 101, 115, 116, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 242, 3, 10, 17, 97, 103, 101, 110, 116, 95, 97, 112, 112, 108, 121, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 95, 10, 13, 65, 103, 101, 110, 116, 65, 112, 112, 108, 121, 82, 101, 113, 18, 43, 10, 5, 65, 112, 112, 108, 121, 24, 1, 32, 3, 40, 11, 50, 21, 46, 112, 114, 111, 116, 111, 46, 65, 103, 101, 110, 116, 65, 112, 112, 108, 121, 73, 110, 102, 111, 82, 5, 65, 112, 112, 108, 121, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 153, 1, 10, 14, 65, 103, 101, 110, 116, 65, 112, 112, 108, 121, 73, 110, 102, 111, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 32, 10, 11, 80, 114, 111, 99, 101, 115, 115, 84, 105, 109, 101, 24, 2, 32, 1, 40, 13, 82, 11, 80, 114, 111, 99, 101, 115, 115, 84, 105, 109, 101, 18, 24, 10, 7, 67, 104, 97, 114, 73, 100, 115, 24, 3, 32, 3, 40, 13, 82, 7, 67, 104, 97, 114, 73, 100, 115, 18, 24, 10, 7, 66, 117, 105, 108, 100, 73, 100, 24, 4, 32, 1, 40, 4, 82, 7, 66, 117, 105, 108, 100, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 95, 10, 14, 65, 103, 101, 110, 116, 65, 112, 112, 108, 121, 82, 101, 115, 112, 18, 42, 10, 5, 73, 110, 102, 111, 115, 24, 1, 32, 3, 40, 11, 50, 20, 46, 112, 114, 111, 116, 111, 46, 65, 103, 101, 110, 116, 82, 101, 115, 112, 73, 110, 102, 111, 82, 5, 73, 110, 102, 111, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 96, 10, 13, 65, 103, 101, 110, 116, 82, 101, 115, 112, 73, 110, 102, 111, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 28, 10, 9, 66, 101, 103, 105, 110, 84, 105, 109, 101, 24, 2, 32, 1, 40, 3, 82, 9, 66, 101, 103, 105, 110, 84, 105, 109, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 227, 1, 10, 19, 97, 103, 101, 110, 116, 95, 103, 105, 118, 101, 95, 117, 112, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 67, 10, 14, 65, 103, 101, 110, 116, 71, 105, 118, 101, 85, 112, 82, 101, 113, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 104, 10, 15, 65, 103, 101, 110, 116, 71, 105, 118, 101, 85, 112, 82, 101, 115, 112, 18, 24, 10, 7, 67, 104, 97, 114, 73, 100, 115, 24, 1, 32, 3, 40, 13, 82, 7, 67, 104, 97, 114, 73, 100, 115, 18, 24, 10, 7, 66, 117, 105, 108, 100, 73, 100, 24, 2, 32, 1, 40, 4, 82, 7, 66, 117, 105, 108, 100, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 175, 4, 10, 26, 97, 103, 101, 110, 116, 95, 114, 101, 119, 97, 114, 100, 95, 114, 101, 99, 101, 105, 118, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 74, 10, 21, 65, 103, 101, 110, 116, 82, 101, 119, 97, 114, 100, 82, 101, 99, 101, 105, 118, 101, 82, 101, 113, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 214, 1, 10, 22, 65, 103, 101, 110, 116, 82, 101, 119, 97, 114, 100, 82, 101, 99, 101, 105, 118, 101, 82, 101, 115, 112, 18, 24, 10, 7, 67, 104, 97, 114, 73, 100, 115, 24, 1, 32, 3, 40, 13, 82, 7, 67, 104, 97, 114, 73, 100, 115, 18, 26, 10, 8, 66, 117, 105, 108, 100, 73, 100, 115, 24, 2, 32, 3, 40, 4, 82, 8, 66, 117, 105, 108, 100, 73, 100, 115, 18, 56, 10, 11, 82, 101, 119, 97, 114, 100, 83, 104, 111, 119, 115, 24, 3, 32, 3, 40, 11, 50, 22, 46, 112, 114, 111, 116, 111, 46, 65, 103, 101, 110, 116, 82, 101, 119, 97, 114, 100, 83, 104, 111, 119, 82, 11, 82, 101, 119, 97, 114, 100, 83, 104, 111, 119, 115, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 4, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 204, 1, 10, 15, 65, 103, 101, 110, 116, 82, 101, 119, 97, 114, 100, 83, 104, 111, 119, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 40, 10, 7, 82, 101, 119, 97, 114, 100, 115, 24, 2, 32, 3, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 84, 112, 108, 82, 7, 82, 101, 119, 97, 114, 100, 115, 18, 36, 10, 5, 66, 111, 110, 117, 115, 24, 3, 32, 3, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 84, 112, 108, 82, 5, 66, 111, 110, 117, 115, 18, 54, 10, 14, 83, 112, 101, 99, 105, 97, 108, 82, 101, 119, 97, 114, 100, 115, 24, 4, 32, 3, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 84, 112, 108, 82, 14, 83, 112, 101, 99, 105, 97, 108, 82, 101, 119, 97, 114, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 189, 3, 10, 22, 98, 97, 116, 116, 108, 101, 95, 112, 97, 115, 115, 95, 105, 110, 102, 111, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 131, 3, 10, 14, 66, 97, 116, 116, 108, 101, 80, 97, 115, 115, 73, 110, 102, 111, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 18, 10, 4, 77, 111, 100, 101, 24, 2, 32, 1, 40, 13, 82, 4, 77, 111, 100, 101, 18, 24, 10, 7, 86, 101, 114, 115, 105, 111, 110, 24, 3, 32, 1, 40, 13, 82, 7, 86, 101, 114, 115, 105, 111, 110, 18, 26, 10, 8, 68, 101, 97, 100, 108, 105, 110, 101, 24, 4, 32, 1, 40, 3, 82, 8, 68, 101, 97, 100, 108, 105, 110, 101, 18, 20, 10, 5, 76, 101, 118, 101, 108, 24, 5, 32, 1, 40, 13, 82, 5, 76, 101, 118, 101, 108, 18, 16, 10, 3, 69, 120, 112, 24, 6, 32, 1, 40, 13, 82, 3, 69, 120, 112, 18, 32, 10, 11, 69, 120, 112, 84, 104, 105, 115, 87, 101, 101, 107, 24, 7, 32, 1, 40, 13, 82, 11, 69, 120, 112, 84, 104, 105, 115, 87, 101, 101, 107, 18, 32, 10, 11, 66, 97, 115, 105, 99, 82, 101, 119, 97, 114, 100, 24, 8, 32, 1, 40, 12, 82, 11, 66, 97, 115, 105, 99, 82, 101, 119, 97, 114, 100, 18, 36, 10, 13, 80, 114, 101, 109, 105, 117, 109, 82, 101, 119, 97, 114, 100, 24, 9, 32, 1, 40, 12, 82, 13, 80, 114, 101, 109, 105, 117, 109, 82, 101, 119, 97, 114, 100, 18, 47, 10, 11, 68, 97, 105, 108, 121, 81, 117, 101, 115, 116, 115, 24, 10, 32, 1, 40, 11, 50, 13, 46, 112, 114, 111, 116, 111, 46, 81, 117, 101, 115, 116, 115, 82, 11, 68, 97, 105, 108, 121, 81, 117, 101, 115, 116, 115, 18, 49, 10, 12, 87, 101, 101, 107, 108, 121, 81, 117, 101, 115, 116, 115, 24, 11, 32, 1, 40, 11, 50, 13, 46, 112, 114, 111, 116, 111, 46, 81, 117, 101, 115, 116, 115, 82, 12, 87, 101, 101, 107, 108, 121, 81, 117, 101, 115, 116, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 186, 1, 10, 27, 98, 97, 116, 116, 108, 101, 95, 112, 97, 115, 115, 95, 108, 101, 118, 101, 108, 95, 98, 117, 121, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 124, 10, 22, 66, 97, 116, 116, 108, 101, 80, 97, 115, 115, 76, 101, 118, 101, 108, 66, 117, 121, 82, 101, 115, 112, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 1, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 20, 10, 5, 76, 101, 118, 101, 108, 24, 2, 32, 1, 40, 13, 82, 5, 76, 101, 118, 101, 108, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 159, 1, 10, 23, 98, 97, 116, 116, 108, 101, 95, 112, 97, 115, 115, 95, 111, 114, 100, 101, 114, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 101, 10, 18, 66, 97, 116, 116, 108, 101, 80, 97, 115, 115, 79, 114, 100, 101, 114, 82, 101, 113, 18, 18, 10, 4, 77, 111, 100, 101, 24, 1, 32, 1, 40, 13, 82, 4, 77, 111, 100, 101, 18, 24, 10, 7, 86, 101, 114, 115, 105, 111, 110, 24, 2, 32, 1, 40, 13, 82, 7, 86, 101, 114, 115, 105, 111, 110, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 252, 1, 10, 31, 98, 97, 116, 116, 108, 101, 95, 112, 97, 115, 115, 95, 111, 114, 100, 101, 114, 95, 99, 111, 108, 108, 101, 99, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 185, 1, 10, 26, 66, 97, 116, 116, 108, 101, 80, 97, 115, 115, 79, 114, 100, 101, 114, 67, 111, 108, 108, 101, 99, 116, 82, 101, 115, 112, 18, 52, 10, 11, 67, 111, 108, 108, 101, 99, 116, 82, 101, 115, 112, 24, 1, 32, 1, 40, 11, 50, 18, 46, 112, 114, 111, 116, 111, 46, 67, 111, 108, 108, 101, 99, 116, 82, 101, 115, 112, 82, 11, 67, 111, 108, 108, 101, 99, 116, 82, 101, 115, 112, 18, 18, 10, 4, 77, 111, 100, 101, 24, 2, 32, 1, 40, 13, 82, 4, 77, 111, 100, 101, 18, 20, 10, 5, 76, 101, 118, 101, 108, 24, 3, 32, 1, 40, 13, 82, 5, 76, 101, 118, 101, 108, 18, 24, 10, 7, 86, 101, 114, 115, 105, 111, 110, 24, 4, 32, 1, 40, 13, 82, 7, 86, 101, 114, 115, 105, 111, 110, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 210, 1, 10, 38, 98, 97, 116, 116, 108, 101, 95, 112, 97, 115, 115, 95, 113, 117, 101, 115, 116, 95, 114, 101, 119, 97, 114, 100, 95, 114, 101, 99, 101, 105, 118, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 136, 1, 10, 25, 66, 97, 116, 116, 108, 101, 80, 97, 115, 115, 81, 117, 101, 115, 116, 82, 101, 119, 97, 114, 100, 82, 101, 115, 112, 18, 20, 10, 5, 76, 101, 118, 101, 108, 24, 1, 32, 1, 40, 13, 82, 5, 76, 101, 118, 101, 108, 18, 16, 10, 3, 69, 120, 112, 24, 2, 32, 1, 40, 13, 82, 3, 69, 120, 112, 18, 32, 10, 11, 69, 120, 112, 84, 104, 105, 115, 87, 101, 101, 107, 24, 3, 32, 1, 40, 13, 82, 11, 69, 120, 112, 84, 104, 105, 115, 87, 101, 101, 107, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 175, 3, 10, 32, 98, 97, 116, 116, 108, 101, 95, 112, 97, 115, 115, 95, 114, 101, 119, 97, 114, 100, 95, 114, 101, 99, 101, 105, 118, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 181, 1, 10, 26, 66, 97, 116, 116, 108, 101, 80, 97, 115, 115, 82, 101, 119, 97, 114, 100, 82, 101, 99, 101, 105, 118, 101, 82, 101, 113, 18, 30, 10, 3, 65, 108, 108, 24, 1, 32, 1, 40, 11, 50, 10, 46, 112, 114, 111, 116, 111, 46, 78, 105, 108, 72, 0, 82, 3, 65, 108, 108, 18, 22, 10, 5, 66, 97, 115, 105, 99, 24, 2, 32, 1, 40, 13, 72, 0, 82, 5, 66, 97, 115, 105, 99, 18, 26, 10, 7, 80, 114, 101, 109, 105, 117, 109, 24, 3, 32, 1, 40, 13, 72, 0, 82, 7, 80, 114, 101, 109, 105, 117, 109, 18, 24, 10, 7, 86, 101, 114, 115, 105, 111, 110, 24, 4, 32, 1, 40, 13, 82, 7, 86, 101, 114, 115, 105, 111, 110, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 66, 6, 10, 4, 77, 111, 100, 101, 34, 179, 1, 10, 27, 66, 97, 116, 116, 108, 101, 80, 97, 115, 115, 82, 101, 119, 97, 114, 100, 82, 101, 99, 101, 105, 118, 101, 82, 101, 115, 112, 18, 32, 10, 11, 66, 97, 115, 105, 99, 82, 101, 119, 97, 114, 100, 24, 1, 32, 1, 40, 12, 82, 11, 66, 97, 115, 105, 99, 82, 101, 119, 97, 114, 100, 18, 36, 10, 13, 80, 114, 101, 109, 105, 117, 109, 82, 101, 119, 97, 114, 100, 24, 2, 32, 1, 40, 12, 82, 13, 80, 114, 101, 109, 105, 117, 109, 82, 101, 119, 97, 114, 100, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 3, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 51, 10, 18, 99, 104, 97, 114, 95, 97, 100, 118, 97, 110, 99, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 185, 2, 10, 33, 99, 104, 97, 114, 95, 97, 100, 118, 97, 110, 99, 101, 95, 114, 101, 119, 97, 114, 100, 95, 114, 101, 99, 101, 105, 118, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 114, 10, 27, 67, 104, 97, 114, 65, 100, 118, 97, 110, 99, 101, 82, 101, 119, 97, 114, 100, 82, 101, 99, 101, 105, 118, 101, 82, 101, 113, 18, 22, 10, 6, 67, 104, 97, 114, 73, 100, 24, 1, 32, 1, 40, 13, 82, 6, 67, 104, 97, 114, 73, 100, 18, 24, 10, 7, 65, 100, 118, 97, 110, 99, 101, 24, 2, 32, 1, 40, 13, 82, 7, 65, 100, 118, 97, 110, 99, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 128, 1, 10, 28, 67, 104, 97, 114, 65, 100, 118, 97, 110, 99, 101, 82, 101, 119, 97, 114, 100, 82, 101, 99, 101, 105, 118, 101, 82, 101, 115, 112, 18, 18, 10, 4, 70, 108, 97, 103, 24, 1, 32, 1, 40, 12, 82, 4, 70, 108, 97, 103, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 2, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 240, 2, 10, 29, 99, 104, 97, 114, 95, 97, 102, 102, 105, 110, 105, 116, 121, 95, 103, 105, 102, 116, 95, 115, 101, 110, 100, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 122, 10, 23, 67, 104, 97, 114, 65, 102, 102, 105, 110, 105, 116, 121, 71, 105, 102, 116, 83, 101, 110, 100, 82, 101, 113, 18, 22, 10, 6, 67, 104, 97, 114, 73, 100, 24, 1, 32, 1, 40, 13, 82, 6, 67, 104, 97, 114, 73, 100, 18, 36, 10, 5, 73, 116, 101, 109, 115, 24, 2, 32, 3, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 84, 112, 108, 82, 5, 73, 116, 101, 109, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 179, 1, 10, 24, 67, 104, 97, 114, 65, 102, 102, 105, 110, 105, 116, 121, 71, 105, 102, 116, 83, 101, 110, 100, 82, 101, 115, 112, 18, 39, 10, 4, 73, 110, 102, 111, 24, 1, 32, 1, 40, 11, 50, 19, 46, 112, 114, 111, 116, 111, 46, 65, 102, 102, 105, 110, 105, 116, 121, 73, 110, 102, 111, 82, 4, 73, 110, 102, 111, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 2, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 32, 10, 11, 83, 101, 110, 100, 71, 105, 102, 116, 67, 110, 116, 24, 3, 32, 1, 40, 13, 82, 11, 83, 101, 110, 100, 71, 105, 102, 116, 67, 110, 116, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 225, 2, 10, 40, 99, 104, 97, 114, 95, 97, 102, 102, 105, 110, 105, 116, 121, 95, 113, 117, 115, 101, 116, 95, 114, 101, 119, 97, 114, 100, 95, 114, 101, 99, 101, 105, 118, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 120, 10, 33, 67, 104, 97, 114, 65, 102, 102, 105, 110, 105, 116, 121, 81, 117, 101, 115, 116, 82, 101, 119, 97, 114, 100, 82, 101, 99, 101, 105, 118, 101, 82, 101, 113, 18, 22, 10, 6, 67, 104, 97, 114, 73, 100, 24, 1, 32, 1, 40, 13, 82, 6, 67, 104, 97, 114, 73, 100, 18, 24, 10, 7, 81, 117, 101, 115, 116, 73, 100, 24, 2, 32, 1, 40, 13, 82, 7, 81, 117, 101, 115, 116, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 155, 1, 10, 34, 67, 104, 97, 114, 65, 102, 102, 105, 110, 105, 116, 121, 81, 117, 101, 115, 116, 82, 101, 119, 97, 114, 100, 82, 101, 99, 101, 105, 118, 101, 82, 101, 115, 112, 18, 39, 10, 4, 73, 110, 102, 111, 24, 1, 32, 1, 40, 11, 50, 19, 46, 112, 114, 111, 116, 111, 46, 65, 102, 102, 105, 110, 105, 116, 121, 73, 110, 102, 111, 82, 4, 73, 110, 102, 111, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 2, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 191, 1, 10, 38, 99, 104, 97, 114, 95, 100, 97, 116, 105, 110, 103, 95, 101, 118, 101, 110, 116, 95, 114, 101, 119, 97, 114, 100, 95, 114, 101, 99, 101, 105, 118, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 118, 10, 31, 67, 104, 97, 114, 68, 97, 116, 105, 110, 103, 69, 118, 101, 110, 116, 82, 101, 119, 97, 114, 100, 82, 101, 99, 101, 105, 118, 101, 82, 101, 113, 18, 22, 10, 6, 67, 104, 97, 114, 73, 100, 24, 1, 32, 1, 40, 13, 82, 6, 67, 104, 97, 114, 73, 100, 18, 24, 10, 7, 69, 118, 101, 110, 116, 73, 100, 24, 2, 32, 1, 40, 13, 82, 7, 69, 118, 101, 110, 116, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 236, 2, 10, 27, 99, 104, 97, 114, 95, 100, 97, 116, 105, 110, 103, 95, 103, 105, 102, 116, 95, 115, 101, 110, 100, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 120, 10, 21, 67, 104, 97, 114, 68, 97, 116, 105, 110, 103, 71, 105, 102, 116, 83, 101, 110, 100, 82, 101, 113, 18, 22, 10, 6, 67, 104, 97, 114, 73, 100, 24, 1, 32, 1, 40, 13, 82, 6, 67, 104, 97, 114, 73, 100, 18, 36, 10, 5, 73, 116, 101, 109, 115, 24, 2, 32, 3, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 84, 112, 108, 82, 5, 73, 116, 101, 109, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 179, 1, 10, 22, 67, 104, 97, 114, 68, 97, 116, 105, 110, 103, 71, 105, 102, 116, 83, 101, 110, 100, 82, 101, 115, 112, 18, 39, 10, 4, 73, 110, 102, 111, 24, 1, 32, 1, 40, 11, 50, 19, 46, 112, 114, 111, 116, 111, 46, 65, 102, 102, 105, 110, 105, 116, 121, 73, 110, 102, 111, 82, 4, 73, 110, 102, 111, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 2, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 34, 10, 4, 83, 104, 111, 119, 24, 3, 32, 3, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 84, 112, 108, 82, 4, 83, 104, 111, 119, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 240, 2, 10, 33, 99, 104, 97, 114, 95, 100, 97, 116, 105, 110, 103, 95, 108, 97, 110, 100, 109, 97, 114, 107, 95, 115, 101, 108, 101, 99, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 120, 10, 27, 67, 104, 97, 114, 68, 97, 116, 105, 110, 103, 76, 97, 110, 100, 109, 97, 114, 107, 83, 101, 108, 101, 99, 116, 82, 101, 113, 18, 22, 10, 6, 67, 104, 97, 114, 73, 100, 24, 1, 32, 1, 40, 13, 82, 6, 67, 104, 97, 114, 73, 100, 18, 30, 10, 10, 76, 97, 110, 100, 109, 97, 114, 107, 73, 100, 24, 2, 32, 1, 40, 13, 82, 10, 76, 97, 110, 100, 109, 97, 114, 107, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 177, 1, 10, 28, 67, 104, 97, 114, 68, 97, 116, 105, 110, 103, 76, 97, 110, 100, 109, 97, 114, 107, 83, 101, 108, 101, 99, 116, 82, 101, 115, 112, 18, 26, 10, 8, 69, 118, 101, 110, 116, 73, 100, 115, 24, 1, 32, 3, 40, 13, 82, 8, 69, 118, 101, 110, 116, 73, 100, 115, 18, 39, 10, 4, 73, 110, 102, 111, 24, 2, 32, 1, 40, 11, 50, 19, 46, 112, 114, 111, 116, 111, 46, 65, 102, 102, 105, 110, 105, 116, 121, 73, 110, 102, 111, 82, 4, 73, 110, 102, 111, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 3, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 150, 2, 10, 27, 99, 104, 97, 114, 95, 101, 113, 117, 105, 112, 109, 101, 110, 116, 95, 99, 104, 97, 110, 103, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 119, 10, 22, 67, 104, 97, 114, 69, 113, 117, 105, 112, 109, 101, 110, 116, 67, 104, 97, 110, 103, 101, 82, 101, 113, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 4, 82, 2, 73, 100, 18, 22, 10, 6, 67, 104, 97, 114, 73, 100, 24, 2, 32, 1, 40, 13, 82, 6, 67, 104, 97, 114, 73, 100, 18, 18, 10, 4, 84, 121, 112, 101, 24, 3, 32, 1, 40, 13, 82, 4, 84, 121, 112, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 95, 10, 23, 67, 104, 97, 114, 69, 113, 117, 105, 112, 109, 101, 110, 116, 67, 104, 97, 110, 103, 101, 82, 101, 115, 112, 18, 33, 10, 5, 67, 104, 97, 114, 115, 24, 1, 32, 3, 40, 11, 50, 11, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 114, 82, 5, 67, 104, 97, 114, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 55, 10, 22, 99, 104, 97, 114, 95, 114, 101, 99, 114, 117, 105, 116, 109, 101, 110, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 161, 1, 10, 24, 99, 104, 97, 114, 95, 115, 107, 105, 108, 108, 95, 117, 112, 103, 114, 97, 100, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 102, 10, 19, 67, 104, 97, 114, 83, 107, 105, 108, 108, 85, 112, 103, 114, 97, 100, 101, 82, 101, 113, 18, 22, 10, 6, 67, 104, 97, 114, 73, 100, 24, 1, 32, 1, 40, 13, 82, 6, 67, 104, 97, 114, 73, 100, 18, 20, 10, 5, 73, 110, 100, 101, 120, 24, 2, 32, 1, 40, 13, 82, 5, 73, 110, 100, 101, 120, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 153, 1, 10, 19, 99, 104, 97, 114, 95, 115, 107, 105, 110, 95, 115, 101, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 99, 10, 14, 67, 104, 97, 114, 83, 107, 105, 110, 83, 101, 116, 82, 101, 113, 18, 22, 10, 6, 67, 104, 97, 114, 73, 100, 24, 1, 32, 1, 40, 13, 82, 6, 67, 104, 97, 114, 73, 100, 18, 22, 10, 6, 83, 107, 105, 110, 73, 100, 24, 2, 32, 1, 40, 13, 82, 6, 83, 107, 105, 110, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 176, 2, 10, 18, 99, 104, 97, 114, 95, 117, 112, 103, 114, 97, 100, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 113, 10, 14, 67, 104, 97, 114, 85, 112, 103, 114, 97, 100, 101, 82, 101, 113, 18, 22, 10, 6, 67, 104, 97, 114, 73, 100, 24, 1, 32, 1, 40, 13, 82, 6, 67, 104, 97, 114, 73, 100, 18, 36, 10, 5, 73, 116, 101, 109, 115, 24, 2, 32, 3, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 84, 112, 108, 82, 5, 73, 116, 101, 109, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 135, 1, 10, 15, 67, 104, 97, 114, 85, 112, 103, 114, 97, 100, 101, 82, 101, 115, 112, 18, 20, 10, 5, 76, 101, 118, 101, 108, 24, 1, 32, 1, 40, 13, 82, 5, 76, 101, 118, 101, 108, 18, 16, 10, 3, 69, 120, 112, 24, 2, 32, 1, 40, 13, 82, 3, 69, 120, 112, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 3, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 58, 10, 25, 99, 108, 105, 101, 110, 116, 95, 101, 118, 101, 110, 116, 95, 114, 101, 112, 111, 114, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 163, 1, 10, 27, 100, 97, 105, 108, 121, 95, 101, 113, 117, 105, 112, 109, 101, 110, 116, 95, 97, 112, 112, 108, 121, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 101, 10, 22, 68, 97, 105, 108, 121, 69, 113, 117, 105, 112, 109, 101, 110, 116, 65, 112, 112, 108, 121, 82, 101, 113, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 24, 10, 7, 66, 117, 105, 108, 100, 73, 100, 24, 2, 32, 1, 40, 4, 82, 7, 66, 117, 105, 108, 100, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 153, 3, 10, 28, 100, 97, 105, 108, 121, 95, 101, 113, 117, 105, 112, 109, 101, 110, 116, 95, 115, 101, 116, 116, 108, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 119, 10, 23, 68, 97, 105, 108, 121, 69, 113, 117, 105, 112, 109, 101, 110, 116, 83, 101, 116, 116, 108, 101, 82, 101, 113, 18, 18, 10, 4, 83, 116, 97, 114, 24, 1, 32, 1, 40, 13, 82, 4, 83, 116, 97, 114, 18, 37, 10, 6, 69, 118, 101, 110, 116, 115, 24, 15, 32, 1, 40, 11, 50, 13, 46, 112, 114, 111, 116, 111, 46, 69, 118, 101, 110, 116, 115, 82, 6, 69, 118, 101, 110, 116, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 224, 1, 10, 24, 68, 97, 105, 108, 121, 69, 113, 117, 105, 112, 109, 101, 110, 116, 83, 101, 116, 116, 108, 101, 82, 101, 115, 112, 18, 31, 10, 4, 83, 116, 97, 114, 24, 1, 32, 3, 40, 11, 50, 11, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 82, 4, 83, 116, 97, 114, 18, 33, 10, 5, 70, 105, 114, 115, 116, 24, 2, 32, 3, 40, 11, 50, 11, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 82, 5, 70, 105, 114, 115, 116, 18, 16, 10, 3, 69, 120, 112, 24, 3, 32, 1, 40, 13, 82, 3, 69, 120, 112, 18, 32, 10, 11, 68, 111, 117, 98, 108, 101, 67, 111, 117, 110, 116, 24, 4, 32, 1, 40, 13, 82, 11, 68, 111, 117, 98, 108, 101, 67, 111, 117, 110, 116, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 5, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 150, 4, 10, 27, 100, 97, 105, 108, 121, 95, 101, 113, 117, 105, 112, 109, 101, 110, 116, 95, 115, 119, 101, 101, 112, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 162, 1, 10, 22, 68, 97, 105, 108, 121, 69, 113, 117, 105, 112, 109, 101, 110, 116, 83, 119, 101, 101, 112, 82, 101, 113, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 20, 10, 5, 84, 105, 109, 101, 115, 24, 2, 32, 1, 40, 13, 82, 5, 84, 105, 109, 101, 115, 18, 24, 10, 7, 66, 117, 105, 108, 100, 73, 100, 24, 3, 32, 1, 40, 4, 82, 7, 66, 117, 105, 108, 100, 73, 100, 18, 37, 10, 6, 69, 118, 101, 110, 116, 115, 24, 15, 32, 1, 40, 11, 50, 13, 46, 112, 114, 111, 116, 111, 46, 69, 118, 101, 110, 116, 115, 82, 6, 69, 118, 101, 110, 116, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 112, 10, 20, 68, 97, 105, 108, 121, 69, 113, 117, 105, 112, 109, 101, 110, 116, 82, 101, 119, 97, 114, 100, 18, 35, 10, 6, 82, 101, 119, 97, 114, 100, 24, 1, 32, 3, 40, 11, 50, 11, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 82, 6, 82, 101, 119, 97, 114, 100, 18, 16, 10, 3, 69, 120, 112, 24, 2, 32, 1, 40, 13, 82, 3, 69, 120, 112, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 192, 1, 10, 23, 68, 97, 105, 108, 121, 69, 113, 117, 105, 112, 109, 101, 110, 116, 83, 119, 101, 101, 112, 82, 101, 115, 112, 18, 53, 10, 7, 82, 101, 119, 97, 114, 100, 115, 24, 1, 32, 3, 40, 11, 50, 27, 46, 112, 114, 111, 116, 111, 46, 68, 97, 105, 108, 121, 69, 113, 117, 105, 112, 109, 101, 110, 116, 82, 101, 119, 97, 114, 100, 82, 7, 82, 101, 119, 97, 114, 100, 115, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 2, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 32, 10, 11, 68, 111, 117, 98, 108, 101, 67, 111, 117, 110, 116, 24, 3, 32, 1, 40, 13, 82, 11, 68, 111, 117, 98, 108, 101, 67, 111, 117, 110, 116, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 194, 1, 10, 26, 100, 97, 105, 108, 121, 95, 105, 110, 115, 116, 97, 110, 99, 101, 95, 97, 112, 112, 108, 121, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 132, 1, 10, 21, 68, 97, 105, 108, 121, 73, 110, 115, 116, 97, 110, 99, 101, 65, 112, 112, 108, 121, 82, 101, 113, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 30, 10, 10, 82, 101, 119, 97, 114, 100, 84, 121, 112, 101, 24, 2, 32, 1, 40, 13, 82, 10, 82, 101, 119, 97, 114, 100, 84, 121, 112, 101, 18, 24, 10, 7, 66, 117, 105, 108, 100, 73, 100, 24, 15, 32, 1, 40, 4, 82, 7, 66, 117, 105, 108, 100, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 242, 3, 10, 25, 100, 97, 105, 108, 121, 95, 105, 110, 115, 116, 97, 110, 99, 101, 95, 114, 97, 105, 100, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 166, 1, 10, 20, 68, 97, 105, 108, 121, 73, 110, 115, 116, 97, 110, 99, 101, 82, 97, 105, 100, 82, 101, 113, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 30, 10, 10, 82, 101, 119, 97, 114, 100, 84, 121, 112, 101, 24, 2, 32, 1, 40, 13, 82, 10, 82, 101, 119, 97, 114, 100, 84, 121, 112, 101, 18, 20, 10, 5, 84, 105, 109, 101, 115, 24, 4, 32, 1, 40, 13, 82, 5, 84, 105, 109, 101, 115, 18, 37, 10, 6, 69, 118, 101, 110, 116, 115, 24, 15, 32, 1, 40, 11, 50, 13, 46, 112, 114, 111, 116, 111, 46, 69, 118, 101, 110, 116, 115, 82, 6, 69, 118, 101, 110, 116, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 111, 10, 19, 68, 97, 105, 108, 121, 73, 110, 115, 116, 97, 110, 99, 101, 82, 101, 119, 97, 114, 100, 18, 35, 10, 6, 83, 101, 108, 101, 99, 116, 24, 1, 32, 3, 40, 11, 50, 11, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 82, 6, 83, 101, 108, 101, 99, 116, 18, 16, 10, 3, 69, 120, 112, 24, 15, 32, 1, 40, 13, 82, 3, 69, 120, 112, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 155, 1, 10, 21, 68, 97, 105, 108, 121, 73, 110, 115, 116, 97, 110, 99, 101, 82, 97, 105, 100, 82, 101, 115, 112, 18, 52, 10, 7, 82, 101, 119, 97, 114, 100, 115, 24, 1, 32, 3, 40, 11, 50, 26, 46, 112, 114, 111, 116, 111, 46, 68, 97, 105, 108, 121, 73, 110, 115, 116, 97, 110, 99, 101, 82, 101, 119, 97, 114, 100, 82, 7, 82, 101, 119, 97, 114, 100, 115, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 2, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 248, 2, 10, 27, 100, 97, 105, 108, 121, 95, 105, 110, 115, 116, 97, 110, 99, 101, 95, 115, 101, 116, 116, 108, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 118, 10, 22, 68, 97, 105, 108, 121, 73, 110, 115, 116, 97, 110, 99, 101, 83, 101, 116, 116, 108, 101, 82, 101, 113, 18, 18, 10, 4, 83, 116, 97, 114, 24, 1, 32, 1, 40, 13, 82, 4, 83, 116, 97, 114, 18, 37, 10, 6, 69, 118, 101, 110, 116, 115, 24, 15, 32, 1, 40, 11, 50, 13, 46, 112, 114, 111, 116, 111, 46, 69, 118, 101, 110, 116, 115, 82, 6, 69, 118, 101, 110, 116, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 193, 1, 10, 23, 68, 97, 105, 108, 121, 73, 110, 115, 116, 97, 110, 99, 101, 83, 101, 116, 116, 108, 101, 82, 101, 115, 112, 18, 35, 10, 6, 83, 101, 108, 101, 99, 116, 24, 1, 32, 3, 40, 11, 50, 11, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 82, 6, 83, 101, 108, 101, 99, 116, 18, 33, 10, 5, 70, 105, 114, 115, 116, 24, 2, 32, 3, 40, 11, 50, 11, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 82, 5, 70, 105, 114, 115, 116, 18, 16, 10, 3, 69, 120, 112, 24, 3, 32, 1, 40, 13, 82, 3, 69, 120, 112, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 15, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 64, 10, 31, 100, 97, 105, 108, 121, 95, 115, 104, 111, 112, 95, 114, 101, 119, 97, 114, 100, 95, 114, 101, 99, 101, 105, 118, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 160, 1, 10, 31, 100, 105, 99, 116, 105, 111, 110, 97, 114, 121, 95, 114, 101, 119, 97, 114, 100, 95, 114, 101, 99, 101, 105, 118, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 94, 10, 13, 68, 105, 99, 116, 82, 101, 119, 97, 114, 100, 82, 101, 113, 18, 20, 10, 5, 84, 97, 98, 73, 100, 24, 1, 32, 1, 40, 13, 82, 5, 84, 97, 98, 73, 100, 18, 20, 10, 5, 73, 110, 100, 101, 120, 24, 2, 32, 1, 40, 13, 82, 5, 73, 110, 100, 101, 120, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 137, 2, 10, 22, 100, 105, 115, 99, 95, 108, 105, 109, 105, 116, 95, 98, 114, 101, 97, 107, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 88, 10, 17, 68, 105, 115, 99, 76, 105, 109, 105, 116, 66, 114, 101, 97, 107, 82, 101, 113, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 16, 10, 3, 81, 116, 121, 24, 2, 32, 1, 40, 13, 82, 3, 81, 116, 121, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 118, 10, 18, 68, 105, 115, 99, 76, 105, 109, 105, 116, 66, 114, 101, 97, 107, 82, 101, 115, 112, 18, 18, 10, 4, 83, 116, 97, 114, 24, 1, 32, 1, 40, 13, 82, 4, 83, 116, 97, 114, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 2, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 239, 1, 10, 18, 100, 105, 115, 99, 95, 112, 114, 111, 109, 111, 116, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 67, 10, 14, 68, 105, 115, 99, 80, 114, 111, 109, 111, 116, 101, 82, 101, 113, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 117, 10, 15, 68, 105, 115, 99, 80, 114, 111, 109, 111, 116, 101, 82, 101, 115, 112, 18, 20, 10, 5, 80, 104, 97, 115, 101, 24, 1, 32, 1, 40, 13, 82, 5, 80, 104, 97, 115, 101, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 2, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 142, 1, 10, 30, 100, 105, 115, 99, 95, 114, 101, 97, 100, 95, 114, 101, 119, 97, 114, 100, 95, 114, 101, 99, 101, 105, 118, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 77, 10, 24, 68, 105, 115, 99, 82, 101, 97, 100, 82, 101, 119, 97, 114, 100, 82, 101, 99, 101, 105, 118, 101, 82, 101, 113, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 178, 2, 10, 21, 100, 105, 115, 99, 95, 115, 116, 114, 101, 110, 103, 116, 104, 101, 110, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 109, 10, 17, 68, 105, 115, 99, 83, 116, 114, 101, 110, 103, 116, 104, 101, 110, 82, 101, 113, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 37, 10, 5, 73, 116, 101, 109, 115, 24, 2, 32, 3, 40, 11, 50, 15, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 73, 110, 102, 111, 82, 5, 73, 116, 101, 109, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 138, 1, 10, 18, 68, 105, 115, 99, 83, 116, 114, 101, 110, 103, 116, 104, 101, 110, 82, 101, 115, 112, 18, 20, 10, 5, 76, 101, 118, 101, 108, 24, 1, 32, 1, 40, 13, 82, 5, 76, 101, 118, 101, 108, 18, 16, 10, 3, 69, 120, 112, 24, 2, 32, 1, 40, 13, 82, 3, 69, 120, 112, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 3, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 166, 1, 10, 16, 101, 110, 101, 114, 103, 121, 95, 98, 117, 121, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 115, 10, 13, 69, 110, 101, 114, 103, 121, 66, 117, 121, 82, 101, 115, 112, 18, 20, 10, 5, 67, 111, 117, 110, 116, 24, 1, 32, 1, 40, 13, 82, 5, 67, 111, 117, 110, 116, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 2, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 136, 1, 10, 25, 101, 113, 117, 105, 112, 109, 101, 110, 116, 95, 100, 105, 115, 109, 97, 110, 116, 108, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 76, 10, 21, 69, 113, 117, 105, 112, 109, 101, 110, 116, 68, 105, 115, 109, 97, 110, 116, 108, 101, 82, 101, 113, 18, 16, 10, 3, 73, 100, 115, 24, 1, 32, 3, 40, 4, 82, 3, 73, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 157, 1, 10, 27, 101, 113, 117, 105, 112, 109, 101, 110, 116, 95, 108, 111, 99, 107, 95, 117, 110, 108, 111, 99, 107, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 95, 10, 22, 69, 113, 117, 105, 112, 109, 101, 110, 116, 76, 111, 99, 107, 85, 110, 108, 111, 99, 107, 82, 101, 113, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 4, 82, 2, 73, 100, 18, 18, 10, 4, 76, 111, 99, 107, 24, 2, 32, 1, 40, 8, 82, 4, 76, 111, 99, 107, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 186, 2, 10, 23, 101, 113, 117, 105, 112, 109, 101, 110, 116, 95, 117, 112, 103, 114, 97, 100, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 111, 10, 19, 69, 113, 117, 105, 112, 109, 101, 110, 116, 85, 112, 103, 114, 97, 100, 101, 82, 101, 113, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 4, 82, 2, 73, 100, 18, 37, 10, 5, 73, 116, 101, 109, 115, 24, 2, 32, 3, 40, 11, 50, 15, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 73, 110, 102, 111, 82, 5, 73, 116, 101, 109, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 142, 1, 10, 20, 69, 113, 117, 105, 112, 109, 101, 110, 116, 85, 112, 103, 114, 97, 100, 101, 82, 101, 115, 112, 18, 40, 10, 4, 73, 110, 102, 111, 24, 1, 32, 1, 40, 11, 50, 20, 46, 112, 114, 111, 116, 111, 46, 69, 113, 117, 105, 112, 109, 101, 110, 116, 73, 110, 102, 111, 82, 4, 73, 110, 102, 111, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 2, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 56, 10, 23, 102, 114, 97, 103, 109, 101, 110, 116, 115, 95, 99, 111, 110, 118, 101, 114, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 118, 10, 16, 102, 114, 105, 101, 110, 100, 95, 97, 100, 100, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 67, 10, 12, 70, 114, 105, 101, 110, 100, 65, 100, 100, 82, 101, 113, 18, 16, 10, 3, 85, 73, 100, 24, 1, 32, 1, 40, 4, 82, 3, 85, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 225, 1, 10, 22, 102, 114, 105, 101, 110, 100, 95, 97, 100, 100, 95, 97, 103, 114, 101, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 72, 10, 17, 70, 114, 105, 101, 110, 100, 65, 100, 100, 65, 103, 114, 101, 101, 82, 101, 113, 18, 16, 10, 3, 85, 73, 100, 24, 1, 32, 1, 40, 4, 82, 3, 85, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 94, 10, 18, 70, 114, 105, 101, 110, 100, 65, 100, 100, 65, 103, 114, 101, 101, 82, 101, 115, 112, 18, 37, 10, 6, 70, 114, 105, 101, 110, 100, 24, 1, 32, 1, 40, 11, 50, 13, 46, 112, 114, 111, 116, 111, 46, 70, 114, 105, 101, 110, 100, 82, 6, 70, 114, 105, 101, 110, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 217, 1, 10, 22, 102, 114, 105, 101, 110, 100, 95, 97, 108, 108, 95, 97, 103, 114, 101, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 159, 1, 10, 18, 70, 114, 105, 101, 110, 100, 65, 108, 108, 65, 103, 114, 101, 101, 82, 101, 115, 112, 18, 20, 10, 5, 76, 105, 109, 105, 116, 24, 1, 32, 1, 40, 8, 82, 5, 76, 105, 109, 105, 116, 18, 39, 10, 7, 70, 114, 105, 101, 110, 100, 115, 24, 2, 32, 3, 40, 11, 50, 13, 46, 112, 114, 111, 116, 111, 46, 70, 114, 105, 101, 110, 100, 82, 7, 70, 114, 105, 101, 110, 100, 115, 18, 39, 10, 7, 73, 110, 118, 105, 116, 101, 115, 24, 3, 32, 3, 40, 11, 50, 13, 46, 112, 114, 111, 116, 111, 46, 70, 114, 105, 101, 110, 100, 82, 7, 73, 110, 118, 105, 116, 101, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 124, 10, 19, 102, 114, 105, 101, 110, 100, 95, 100, 101, 108, 101, 116, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 70, 10, 15, 70, 114, 105, 101, 110, 100, 68, 101, 108, 101, 116, 101, 82, 101, 113, 18, 16, 10, 3, 85, 73, 100, 24, 1, 32, 1, 40, 4, 82, 3, 85, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 141, 1, 10, 27, 102, 114, 105, 101, 110, 100, 95, 105, 110, 118, 105, 116, 101, 115, 95, 100, 101, 108, 101, 116, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 79, 10, 22, 70, 114, 105, 101, 110, 100, 73, 110, 118, 105, 116, 101, 115, 68, 101, 108, 101, 116, 101, 82, 101, 113, 18, 18, 10, 4, 85, 73, 100, 115, 24, 1, 32, 3, 40, 4, 82, 4, 85, 73, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 199, 1, 10, 21, 102, 114, 105, 101, 110, 100, 95, 108, 105, 115, 116, 95, 103, 101, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 142, 1, 10, 17, 70, 114, 105, 101, 110, 100, 76, 105, 115, 116, 71, 101, 116, 82, 101, 115, 112, 18, 45, 10, 7, 70, 114, 105, 101, 110, 100, 115, 24, 1, 32, 3, 40, 11, 50, 19, 46, 112, 114, 111, 116, 111, 46, 70, 114, 105, 101, 110, 100, 68, 101, 116, 97, 105, 108, 82, 7, 70, 114, 105, 101, 110, 100, 115, 18, 39, 10, 7, 73, 110, 118, 105, 116, 101, 115, 24, 2, 32, 3, 40, 11, 50, 13, 46, 112, 114, 111, 116, 111, 46, 70, 114, 105, 101, 110, 100, 82, 7, 73, 110, 118, 105, 116, 101, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 235, 1, 10, 24, 102, 114, 105, 101, 110, 100, 95, 110, 97, 109, 101, 95, 115, 101, 97, 114, 99, 104, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 76, 10, 19, 70, 114, 105, 101, 110, 100, 78, 97, 109, 101, 83, 101, 97, 114, 99, 104, 82, 101, 113, 18, 18, 10, 4, 78, 97, 109, 101, 24, 1, 32, 1, 40, 9, 82, 4, 78, 97, 109, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 98, 10, 20, 70, 114, 105, 101, 110, 100, 78, 97, 109, 101, 83, 101, 97, 114, 99, 104, 82, 101, 115, 112, 18, 39, 10, 7, 70, 114, 105, 101, 110, 100, 115, 24, 1, 32, 3, 40, 11, 50, 13, 46, 112, 114, 111, 116, 111, 46, 70, 114, 105, 101, 110, 100, 82, 7, 70, 114, 105, 101, 110, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 138, 2, 10, 27, 102, 114, 105, 101, 110, 100, 95, 114, 101, 99, 101, 105, 118, 101, 95, 101, 110, 101, 114, 103, 121, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 79, 10, 22, 70, 114, 105, 101, 110, 100, 82, 101, 99, 101, 105, 118, 101, 69, 110, 101, 114, 103, 121, 82, 101, 113, 18, 18, 10, 4, 85, 73, 100, 115, 24, 1, 32, 3, 40, 4, 82, 4, 85, 73, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 123, 10, 23, 70, 114, 105, 101, 110, 100, 82, 101, 99, 101, 105, 118, 101, 69, 110, 101, 114, 103, 121, 82, 101, 115, 112, 18, 18, 10, 4, 85, 73, 100, 115, 24, 1, 32, 3, 40, 4, 82, 4, 85, 73, 100, 115, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 2, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 171, 1, 10, 31, 102, 114, 105, 101, 110, 100, 95, 114, 101, 99, 111, 109, 109, 101, 110, 100, 97, 116, 105, 111, 110, 95, 103, 101, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 105, 10, 27, 70, 114, 105, 101, 110, 100, 82, 101, 99, 111, 109, 109, 101, 110, 100, 97, 116, 105, 111, 110, 71, 101, 116, 82, 101, 115, 112, 18, 39, 10, 7, 70, 114, 105, 101, 110, 100, 115, 24, 1, 32, 3, 40, 11, 50, 13, 46, 112, 114, 111, 116, 111, 46, 70, 114, 105, 101, 110, 100, 82, 7, 70, 114, 105, 101, 110, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 214, 1, 10, 24, 102, 114, 105, 101, 110, 100, 95, 115, 101, 110, 100, 95, 101, 110, 101, 114, 103, 121, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 76, 10, 19, 70, 114, 105, 101, 110, 100, 83, 101, 110, 100, 69, 110, 101, 114, 103, 121, 82, 101, 113, 18, 18, 10, 4, 85, 73, 100, 115, 24, 1, 32, 3, 40, 4, 82, 4, 85, 73, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 77, 10, 20, 70, 114, 105, 101, 110, 100, 83, 101, 110, 100, 69, 110, 101, 114, 103, 121, 82, 101, 115, 112, 18, 18, 10, 4, 85, 73, 100, 115, 24, 1, 32, 3, 40, 4, 82, 4, 85, 73, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 149, 1, 10, 21, 102, 114, 105, 101, 110, 100, 95, 115, 116, 97, 114, 95, 115, 101, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 93, 10, 16, 70, 114, 105, 101, 110, 100, 83, 116, 97, 114, 83, 101, 116, 82, 101, 113, 18, 18, 10, 4, 85, 73, 100, 115, 24, 1, 32, 3, 40, 4, 82, 4, 85, 73, 100, 115, 18, 18, 10, 4, 83, 116, 97, 114, 24, 2, 32, 1, 40, 8, 82, 4, 83, 116, 97, 114, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 226, 1, 10, 23, 102, 114, 105, 101, 110, 100, 95, 117, 105, 100, 95, 115, 101, 97, 114, 99, 104, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 71, 10, 18, 70, 114, 105, 101, 110, 100, 85, 73, 100, 83, 101, 97, 114, 99, 104, 82, 101, 113, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 4, 82, 2, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 95, 10, 19, 70, 114, 105, 101, 110, 100, 85, 73, 100, 83, 101, 97, 114, 99, 104, 82, 101, 115, 112, 18, 37, 10, 6, 70, 114, 105, 101, 110, 100, 24, 1, 32, 1, 40, 11, 50, 13, 46, 112, 114, 111, 116, 111, 46, 70, 114, 105, 101, 110, 100, 82, 6, 70, 114, 105, 101, 110, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 255, 1, 10, 21, 103, 97, 99, 104, 97, 95, 104, 105, 115, 116, 111, 114, 105, 101, 115, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 105, 10, 12, 71, 97, 99, 104, 97, 72, 105, 115, 116, 111, 114, 121, 18, 16, 10, 3, 73, 100, 115, 24, 1, 32, 3, 40, 13, 82, 3, 73, 100, 115, 18, 18, 10, 4, 84, 105, 109, 101, 24, 2, 32, 1, 40, 3, 82, 4, 84, 105, 109, 101, 18, 16, 10, 3, 71, 105, 100, 24, 3, 32, 1, 40, 13, 82, 3, 71, 105, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 92, 10, 14, 71, 97, 99, 104, 97, 72, 105, 115, 116, 111, 114, 105, 101, 115, 18, 39, 10, 4, 76, 105, 115, 116, 24, 1, 32, 3, 40, 11, 50, 19, 46, 112, 114, 111, 116, 111, 46, 71, 97, 99, 104, 97, 72, 105, 115, 116, 111, 114, 121, 82, 4, 76, 105, 115, 116, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 133, 2, 10, 23, 103, 97, 99, 104, 97, 95, 105, 110, 102, 111, 114, 109, 97, 116, 105, 111, 110, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 92, 10, 9, 71, 97, 99, 104, 97, 73, 110, 102, 111, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 28, 10, 9, 68, 97, 121, 115, 67, 111, 117, 110, 116, 24, 2, 32, 1, 40, 13, 82, 9, 68, 97, 121, 115, 67, 111, 117, 110, 116, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 109, 10, 20, 71, 97, 99, 104, 97, 73, 110, 102, 111, 114, 109, 97, 116, 105, 111, 110, 82, 101, 115, 112, 18, 50, 10, 11, 73, 110, 102, 111, 114, 109, 97, 116, 105, 111, 110, 24, 1, 32, 3, 40, 11, 50, 16, 46, 112, 114, 111, 116, 111, 46, 71, 97, 99, 104, 97, 73, 110, 102, 111, 82, 11, 73, 110, 102, 111, 114, 109, 97, 116, 105, 111, 110, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 192, 3, 10, 16, 103, 97, 99, 104, 97, 95, 115, 112, 105, 110, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 85, 10, 12, 71, 97, 99, 104, 97, 83, 112, 105, 110, 82, 101, 113, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 18, 10, 4, 77, 111, 100, 101, 24, 2, 32, 1, 40, 13, 82, 4, 77, 111, 100, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 183, 1, 10, 13, 71, 97, 99, 104, 97, 83, 112, 105, 110, 82, 101, 115, 112, 18, 38, 10, 5, 67, 97, 114, 100, 115, 24, 1, 32, 3, 40, 11, 50, 16, 46, 112, 114, 111, 116, 111, 46, 71, 97, 99, 104, 97, 67, 97, 114, 100, 82, 5, 67, 97, 114, 100, 115, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 2, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 18, 10, 4, 84, 105, 109, 101, 24, 3, 32, 1, 40, 3, 82, 4, 84, 105, 109, 101, 18, 28, 10, 9, 68, 97, 121, 115, 67, 111, 117, 110, 116, 24, 15, 32, 1, 40, 13, 82, 9, 68, 97, 121, 115, 67, 111, 117, 110, 116, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 124, 10, 9, 71, 97, 99, 104, 97, 67, 97, 114, 100, 18, 34, 10, 4, 67, 97, 114, 100, 24, 1, 32, 1, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 84, 112, 108, 82, 4, 67, 97, 114, 100, 18, 40, 10, 7, 82, 101, 119, 97, 114, 100, 115, 24, 2, 32, 3, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 84, 112, 108, 82, 7, 82, 101, 119, 97, 114, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 50, 10, 17, 103, 101, 109, 95, 99, 111, 110, 118, 101, 114, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 124, 10, 13, 103, 109, 95, 115, 117, 100, 111, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 34, 92, 10, 11, 83, 117, 100, 111, 67, 111, 109, 109, 97, 110, 100, 18, 22, 10, 6, 65, 99, 116, 105, 111, 110, 24, 1, 32, 1, 40, 9, 82, 6, 65, 99, 116, 105, 111, 110, 18, 18, 10, 4, 65, 114, 103, 115, 24, 2, 32, 1, 40, 9, 82, 4, 65, 114, 103, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 98, 6, 112, 114, 111, 116, 111, 51, 10, 231, 1, 10, 9, 105, 107, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 67, 10, 6, 73, 75, 69, 82, 101, 113, 18, 22, 10, 6, 80, 117, 98, 75, 101, 121, 24, 1, 32, 1, 40, 12, 82, 6, 80, 117, 98, 75, 101, 121, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 118, 10, 7, 73, 75, 69, 82, 101, 115, 112, 18, 22, 10, 6, 80, 117, 98, 75, 101, 121, 24, 1, 32, 1, 40, 12, 82, 6, 80, 117, 98, 75, 101, 121, 18, 20, 10, 5, 84, 111, 107, 101, 110, 24, 2, 32, 1, 40, 9, 82, 5, 84, 111, 107, 101, 110, 18, 26, 10, 8, 83, 101, 114, 118, 101, 114, 84, 115, 24, 3, 32, 1, 40, 3, 82, 8, 83, 101, 114, 118, 101, 114, 84, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 171, 1, 10, 26, 105, 110, 102, 105, 110, 105, 116, 121, 95, 116, 111, 119, 101, 114, 95, 97, 112, 112, 108, 121, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 110, 10, 21, 73, 110, 102, 105, 110, 105, 116, 121, 84, 111, 119, 101, 114, 65, 112, 112, 108, 121, 82, 101, 113, 18, 24, 10, 7, 76, 101, 118, 101, 108, 73, 100, 24, 1, 32, 1, 40, 13, 82, 7, 76, 101, 118, 101, 108, 73, 100, 18, 24, 10, 7, 66, 117, 105, 108, 100, 73, 100, 24, 2, 32, 1, 40, 4, 82, 7, 66, 117, 105, 108, 100, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 228, 1, 10, 41, 105, 110, 102, 105, 110, 105, 116, 121, 95, 116, 111, 119, 101, 114, 95, 100, 97, 105, 108, 121, 95, 114, 101, 119, 97, 114, 100, 95, 114, 101, 99, 101, 105, 118, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 151, 1, 10, 35, 73, 110, 102, 105, 110, 105, 116, 121, 84, 111, 119, 101, 114, 68, 97, 105, 108, 121, 82, 101, 119, 97, 114, 100, 82, 101, 99, 101, 105, 118, 101, 82, 101, 115, 112, 18, 34, 10, 4, 83, 104, 111, 119, 24, 1, 32, 3, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 84, 112, 108, 82, 4, 83, 104, 111, 119, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 2, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 234, 1, 10, 25, 105, 110, 102, 105, 110, 105, 116, 121, 95, 116, 111, 119, 101, 114, 95, 105, 110, 102, 111, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 173, 1, 10, 21, 73, 110, 102, 105, 110, 105, 116, 121, 84, 111, 119, 101, 114, 73, 110, 102, 111, 82, 101, 115, 112, 18, 32, 10, 11, 66, 111, 117, 110, 116, 121, 76, 101, 118, 101, 108, 24, 1, 32, 1, 40, 13, 82, 11, 66, 111, 117, 110, 116, 121, 76, 101, 118, 101, 108, 18, 26, 10, 8, 80, 108, 111, 116, 115, 73, 100, 115, 24, 2, 32, 3, 40, 13, 82, 8, 80, 108, 111, 116, 115, 73, 100, 115, 18, 51, 10, 5, 73, 110, 102, 111, 115, 24, 3, 32, 3, 40, 11, 50, 29, 46, 112, 114, 111, 116, 111, 46, 73, 110, 102, 105, 110, 105, 116, 121, 84, 111, 119, 101, 114, 76, 101, 118, 101, 108, 73, 110, 102, 111, 82, 5, 73, 110, 102, 111, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 226, 1, 10, 40, 105, 110, 102, 105, 110, 105, 116, 121, 95, 116, 111, 119, 101, 114, 95, 112, 108, 111, 116, 95, 114, 101, 119, 97, 114, 100, 95, 114, 101, 99, 101, 105, 118, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 150, 1, 10, 34, 73, 110, 102, 105, 110, 105, 116, 121, 84, 111, 119, 101, 114, 80, 108, 111, 116, 82, 101, 119, 97, 114, 100, 82, 101, 99, 101, 105, 118, 101, 82, 101, 115, 112, 18, 34, 10, 4, 83, 104, 111, 119, 24, 1, 32, 3, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 84, 112, 108, 82, 4, 83, 104, 111, 119, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 2, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 147, 3, 10, 27, 105, 110, 102, 105, 110, 105, 116, 121, 95, 116, 111, 119, 101, 114, 95, 115, 101, 116, 116, 108, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 212, 2, 10, 23, 73, 110, 102, 105, 110, 105, 116, 121, 84, 111, 119, 101, 114, 83, 101, 116, 116, 108, 101, 82, 101, 115, 112, 18, 32, 10, 11, 78, 101, 120, 116, 76, 101, 118, 101, 108, 73, 100, 24, 1, 32, 1, 40, 13, 82, 11, 78, 101, 120, 116, 76, 101, 118, 101, 108, 73, 100, 18, 34, 10, 4, 83, 104, 111, 119, 24, 2, 32, 3, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 84, 112, 108, 82, 4, 83, 104, 111, 119, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 3, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 32, 10, 11, 66, 111, 117, 110, 116, 121, 76, 101, 118, 101, 108, 24, 6, 32, 1, 40, 13, 82, 11, 66, 111, 117, 110, 116, 121, 76, 101, 118, 101, 108, 18, 59, 10, 5, 86, 97, 108, 117, 101, 24, 7, 32, 1, 40, 14, 50, 37, 46, 112, 114, 111, 116, 111, 46, 73, 110, 102, 105, 110, 105, 116, 121, 84, 111, 119, 101, 114, 83, 101, 116, 116, 108, 101, 82, 101, 115, 112, 46, 82, 101, 97, 115, 111, 110, 82, 5, 86, 97, 108, 117, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 70, 10, 6, 82, 101, 97, 115, 111, 110, 18, 7, 10, 3, 78, 105, 108, 16, 0, 18, 12, 10, 8, 80, 114, 101, 76, 101, 118, 101, 108, 16, 1, 18, 14, 10, 10, 87, 111, 114, 108, 100, 67, 108, 97, 115, 115, 16, 2, 18, 9, 10, 5, 66, 117, 105, 108, 100, 16, 3, 18, 10, 10, 6, 78, 111, 79, 112, 101, 110, 16, 4, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 138, 1, 10, 18, 105, 116, 101, 109, 95, 112, 114, 111, 100, 117, 99, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 85, 10, 14, 73, 116, 101, 109, 80, 114, 111, 100, 117, 99, 116, 82, 101, 113, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 16, 10, 3, 78, 117, 109, 24, 2, 32, 1, 40, 13, 82, 3, 78, 117, 109, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 204, 3, 10, 14, 105, 116, 101, 109, 95, 117, 115, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 109, 10, 8, 80, 105, 99, 107, 73, 116, 101, 109, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 4, 82, 2, 73, 100, 18, 16, 10, 3, 84, 105, 100, 24, 2, 32, 1, 40, 13, 82, 3, 84, 105, 100, 18, 28, 10, 9, 83, 101, 108, 101, 99, 116, 84, 105, 100, 24, 3, 32, 1, 40, 13, 82, 9, 83, 101, 108, 101, 99, 116, 84, 105, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 83, 10, 9, 80, 105, 99, 107, 73, 116, 101, 109, 115, 18, 35, 10, 4, 76, 105, 115, 116, 24, 1, 32, 3, 40, 11, 50, 15, 46, 112, 114, 111, 116, 111, 46, 80, 105, 99, 107, 73, 116, 101, 109, 82, 4, 76, 105, 115, 116, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 81, 10, 7, 85, 115, 101, 73, 116, 101, 109, 18, 35, 10, 4, 76, 105, 115, 116, 24, 1, 32, 3, 40, 11, 50, 15, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 73, 110, 102, 111, 82, 4, 76, 105, 115, 116, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 131, 1, 10, 10, 73, 116, 101, 109, 85, 115, 101, 82, 101, 113, 18, 38, 10, 4, 80, 105, 99, 107, 24, 1, 32, 1, 40, 11, 50, 16, 46, 112, 114, 111, 116, 111, 46, 80, 105, 99, 107, 73, 116, 101, 109, 115, 72, 0, 82, 4, 80, 105, 99, 107, 18, 34, 10, 3, 85, 115, 101, 24, 2, 32, 1, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 85, 115, 101, 73, 116, 101, 109, 72, 0, 82, 3, 85, 115, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 66, 6, 10, 4, 77, 111, 100, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 48, 10, 15, 109, 97, 105, 108, 95, 108, 105, 115, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 48, 10, 15, 109, 97, 105, 108, 95, 114, 101, 97, 100, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 158, 1, 10, 15, 109, 97, 105, 108, 95, 114, 101, 99, 118, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 108, 10, 12, 77, 97, 105, 108, 82, 101, 99, 118, 82, 101, 115, 112, 18, 16, 10, 3, 73, 100, 115, 24, 1, 32, 3, 40, 13, 82, 3, 73, 100, 115, 18, 39, 10, 5, 73, 116, 101, 109, 115, 24, 2, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 5, 73, 116, 101, 109, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 121, 10, 17, 109, 97, 105, 108, 95, 114, 101, 109, 111, 118, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 69, 10, 14, 77, 97, 105, 108, 82, 101, 109, 111, 118, 101, 82, 101, 115, 112, 18, 16, 10, 3, 73, 100, 115, 24, 1, 32, 3, 40, 13, 82, 3, 73, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 224, 1, 10, 19, 109, 97, 108, 108, 95, 103, 101, 109, 95, 108, 105, 115, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 84, 10, 7, 71, 101, 109, 73, 110, 102, 111, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 9, 82, 2, 73, 100, 18, 22, 10, 6, 77, 97, 105, 100, 101, 110, 24, 2, 32, 1, 40, 8, 82, 6, 77, 97, 105, 100, 101, 110, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 84, 10, 11, 77, 97, 108, 108, 71, 101, 109, 76, 105, 115, 116, 18, 34, 10, 4, 76, 105, 115, 116, 24, 1, 32, 3, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 71, 101, 109, 73, 110, 102, 111, 82, 4, 76, 105, 115, 116, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 177, 1, 10, 20, 109, 97, 108, 108, 95, 103, 101, 109, 95, 111, 114, 100, 101, 114, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 122, 10, 9, 79, 114, 100, 101, 114, 73, 110, 102, 111, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 4, 82, 2, 73, 100, 18, 28, 10, 9, 69, 120, 116, 114, 97, 68, 97, 116, 97, 24, 2, 32, 1, 40, 9, 82, 9, 69, 120, 116, 114, 97, 68, 97, 116, 97, 18, 28, 10, 9, 78, 111, 116, 105, 102, 121, 85, 114, 108, 24, 3, 32, 1, 40, 9, 82, 9, 78, 111, 116, 105, 102, 121, 85, 114, 108, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 162, 2, 10, 27, 109, 97, 108, 108, 95, 109, 111, 110, 116, 104, 108, 121, 99, 97, 114, 100, 95, 108, 105, 115, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 126, 10, 15, 77, 111, 110, 116, 104, 108, 121, 67, 97, 114, 100, 73, 110, 102, 111, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 9, 82, 2, 73, 100, 18, 28, 10, 9, 82, 101, 109, 97, 105, 110, 105, 110, 103, 24, 2, 32, 1, 40, 13, 82, 9, 82, 101, 109, 97, 105, 110, 105, 110, 103, 18, 26, 10, 8, 82, 101, 99, 101, 105, 118, 101, 100, 24, 3, 32, 1, 40, 8, 82, 8, 82, 101, 99, 101, 105, 118, 101, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 100, 10, 19, 77, 97, 108, 108, 77, 111, 110, 116, 104, 108, 121, 67, 97, 114, 100, 76, 105, 115, 116, 18, 42, 10, 4, 76, 105, 115, 116, 24, 1, 32, 3, 40, 11, 50, 22, 46, 112, 114, 111, 116, 111, 46, 77, 111, 110, 116, 104, 108, 121, 67, 97, 114, 100, 73, 110, 102, 111, 82, 4, 76, 105, 115, 116, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 61, 10, 28, 109, 97, 108, 108, 95, 109, 111, 110, 116, 104, 108, 121, 99, 97, 114, 100, 95, 111, 114, 100, 101, 114, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 56, 10, 23, 109, 97, 108, 108, 95, 111, 114, 100, 101, 114, 95, 99, 97, 110, 99, 101, 108, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 57, 10, 24, 109, 97, 108, 108, 95, 111, 114, 100, 101, 114, 95, 99, 111, 108, 108, 101, 99, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 144, 2, 10, 23, 109, 97, 108, 108, 95, 112, 97, 99, 107, 97, 103, 101, 95, 108, 105, 115, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 120, 10, 11, 80, 97, 99, 107, 97, 103, 101, 73, 110, 102, 111, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 9, 82, 2, 73, 100, 18, 20, 10, 5, 83, 116, 111, 99, 107, 24, 2, 32, 1, 40, 13, 82, 5, 83, 116, 111, 99, 107, 18, 32, 10, 11, 82, 101, 102, 114, 101, 115, 104, 84, 105, 109, 101, 24, 3, 32, 1, 40, 3, 82, 11, 82, 101, 102, 114, 101, 115, 104, 84, 105, 109, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 92, 10, 15, 77, 97, 108, 108, 80, 97, 99, 107, 97, 103, 101, 76, 105, 115, 116, 18, 38, 10, 4, 76, 105, 115, 116, 24, 1, 32, 3, 40, 11, 50, 18, 46, 112, 114, 111, 116, 111, 46, 80, 97, 99, 107, 97, 103, 101, 73, 110, 102, 111, 82, 4, 76, 105, 115, 116, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 230, 1, 10, 24, 109, 97, 108, 108, 95, 112, 97, 99, 107, 97, 103, 101, 95, 111, 114, 100, 101, 114, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 26, 20, 109, 97, 108, 108, 95, 103, 101, 109, 95, 111, 114, 100, 101, 114, 46, 112, 114, 111, 116, 111, 34, 148, 1, 10, 16, 77, 97, 108, 108, 80, 97, 99, 107, 97, 103, 101, 79, 114, 100, 101, 114, 18, 43, 10, 6, 67, 104, 97, 110, 103, 101, 24, 1, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 72, 0, 82, 6, 67, 104, 97, 110, 103, 101, 18, 40, 10, 5, 79, 114, 100, 101, 114, 24, 2, 32, 1, 40, 11, 50, 16, 46, 112, 114, 111, 116, 111, 46, 79, 114, 100, 101, 114, 73, 110, 102, 111, 72, 0, 82, 5, 79, 114, 100, 101, 114, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 66, 6, 10, 4, 82, 101, 115, 112, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 145, 2, 10, 20, 109, 97, 108, 108, 95, 115, 104, 111, 112, 95, 108, 105, 115, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 120, 10, 11, 80, 114, 111, 100, 117, 99, 116, 73, 110, 102, 111, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 9, 82, 2, 73, 100, 18, 20, 10, 5, 83, 116, 111, 99, 107, 24, 2, 32, 1, 40, 5, 82, 5, 83, 116, 111, 99, 107, 18, 32, 10, 11, 82, 101, 102, 114, 101, 115, 104, 84, 105, 109, 101, 24, 3, 32, 1, 40, 3, 82, 11, 82, 101, 102, 114, 101, 115, 104, 84, 105, 109, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 96, 10, 19, 77, 97, 108, 108, 83, 104, 111, 112, 80, 114, 111, 100, 117, 99, 116, 76, 105, 115, 116, 18, 38, 10, 4, 76, 105, 115, 116, 24, 1, 32, 3, 40, 11, 50, 18, 46, 112, 114, 111, 116, 111, 46, 80, 114, 111, 100, 117, 99, 116, 73, 110, 102, 111, 82, 4, 76, 105, 115, 116, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 165, 1, 10, 21, 109, 97, 108, 108, 95, 115, 104, 111, 112, 95, 111, 114, 100, 101, 114, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 26, 20, 109, 97, 108, 108, 95, 103, 101, 109, 95, 111, 114, 100, 101, 114, 46, 112, 114, 111, 116, 111, 34, 87, 10, 16, 77, 97, 108, 108, 83, 104, 111, 112, 79, 114, 100, 101, 114, 82, 101, 113, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 9, 82, 2, 73, 100, 18, 16, 10, 3, 81, 116, 121, 24, 2, 32, 1, 40, 13, 82, 3, 81, 116, 121, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 212, 11, 10, 31, 116, 114, 97, 118, 101, 108, 101, 114, 95, 100, 117, 101, 108, 95, 114, 97, 110, 107, 95, 117, 112, 108, 111, 97, 100, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 147, 1, 10, 25, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 66, 97, 116, 116, 108, 101, 83, 97, 109, 112, 108, 101, 115, 18, 55, 10, 6, 83, 97, 109, 112, 108, 101, 24, 1, 32, 3, 40, 11, 50, 31, 46, 112, 114, 111, 116, 111, 46, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 66, 97, 116, 116, 108, 101, 83, 97, 109, 112, 108, 101, 82, 6, 83, 97, 109, 112, 108, 101, 18, 26, 10, 8, 67, 104, 101, 99, 107, 115, 117, 109, 24, 2, 32, 1, 40, 4, 82, 8, 67, 104, 101, 99, 107, 115, 117, 109, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 168, 1, 10, 22, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 66, 97, 116, 116, 108, 101, 68, 97, 116, 97, 18, 47, 10, 4, 77, 101, 116, 97, 24, 1, 32, 1, 40, 11, 50, 27, 46, 112, 114, 111, 116, 111, 46, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 77, 101, 116, 97, 73, 110, 102, 111, 82, 4, 77, 101, 116, 97, 18, 58, 10, 7, 83, 97, 109, 112, 108, 101, 115, 24, 2, 32, 1, 40, 11, 50, 32, 46, 112, 114, 111, 116, 111, 46, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 66, 97, 116, 116, 108, 101, 83, 97, 109, 112, 108, 101, 115, 82, 7, 83, 97, 109, 112, 108, 101, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 169, 2, 10, 20, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 77, 101, 116, 97, 73, 110, 102, 111, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 4, 82, 2, 73, 100, 18, 24, 10, 7, 86, 101, 114, 115, 105, 111, 110, 24, 2, 32, 1, 40, 13, 82, 7, 86, 101, 114, 115, 105, 111, 110, 18, 18, 10, 4, 90, 111, 110, 101, 24, 3, 32, 1, 40, 9, 82, 4, 90, 111, 110, 101, 18, 28, 10, 9, 77, 105, 115, 115, 105, 111, 110, 73, 100, 24, 4, 32, 1, 40, 13, 82, 9, 77, 105, 115, 115, 105, 111, 110, 73, 100, 18, 22, 10, 6, 83, 101, 97, 115, 111, 110, 24, 5, 32, 1, 40, 13, 82, 6, 83, 101, 97, 115, 111, 110, 18, 26, 10, 8, 80, 108, 97, 121, 101, 114, 73, 100, 24, 6, 32, 1, 40, 4, 82, 8, 80, 108, 97, 121, 101, 114, 73, 100, 18, 26, 10, 8, 78, 105, 99, 107, 110, 97, 109, 101, 24, 7, 32, 1, 40, 9, 82, 8, 78, 105, 99, 107, 110, 97, 109, 101, 18, 26, 10, 8, 68, 117, 114, 97, 116, 105, 111, 110, 24, 8, 32, 1, 40, 13, 82, 8, 68, 117, 114, 97, 116, 105, 111, 110, 18, 18, 10, 4, 82, 97, 110, 107, 24, 9, 32, 1, 40, 13, 82, 4, 82, 97, 110, 107, 18, 18, 10, 4, 84, 105, 109, 101, 24, 10, 32, 1, 40, 3, 82, 4, 84, 105, 109, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 185, 5, 10, 24, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 66, 97, 116, 116, 108, 101, 83, 97, 109, 112, 108, 101, 18, 30, 10, 10, 70, 114, 111, 109, 83, 114, 99, 65, 116, 107, 24, 1, 32, 1, 40, 5, 82, 10, 70, 114, 111, 109, 83, 114, 99, 65, 116, 107, 18, 54, 10, 22, 70, 114, 111, 109, 80, 101, 114, 107, 73, 110, 116, 101, 110, 115, 105, 116, 121, 82, 97, 116, 105, 111, 24, 2, 32, 1, 40, 2, 82, 22, 70, 114, 111, 109, 80, 101, 114, 107, 73, 110, 116, 101, 110, 115, 105, 116, 121, 82, 97, 116, 105, 111, 18, 42, 10, 16, 70, 114, 111, 109, 83, 108, 111, 116, 68, 109, 103, 82, 97, 116, 105, 111, 24, 3, 32, 1, 40, 2, 82, 16, 70, 114, 111, 109, 83, 108, 111, 116, 68, 109, 103, 82, 97, 116, 105, 111, 18, 22, 10, 6, 70, 114, 111, 109, 69, 69, 24, 4, 32, 1, 40, 2, 82, 6, 70, 114, 111, 109, 69, 69, 18, 40, 10, 15, 70, 114, 111, 109, 71, 101, 110, 68, 109, 103, 82, 97, 116, 105, 111, 24, 5, 32, 1, 40, 2, 82, 15, 70, 114, 111, 109, 71, 101, 110, 68, 109, 103, 82, 97, 116, 105, 111, 18, 32, 10, 11, 70, 114, 111, 109, 68, 109, 103, 80, 108, 117, 115, 24, 6, 32, 1, 40, 5, 82, 11, 70, 114, 111, 109, 68, 109, 103, 80, 108, 117, 115, 18, 36, 10, 13, 70, 114, 111, 109, 67, 114, 105, 116, 82, 97, 116, 105, 111, 24, 7, 32, 1, 40, 2, 82, 13, 70, 114, 111, 109, 67, 114, 105, 116, 82, 97, 116, 105, 111, 18, 44, 10, 17, 70, 114, 111, 109, 70, 105, 110, 97, 108, 68, 109, 103, 82, 97, 116, 105, 111, 24, 8, 32, 1, 40, 2, 82, 17, 70, 114, 111, 109, 70, 105, 110, 97, 108, 68, 109, 103, 82, 97, 116, 105, 111, 18, 42, 10, 16, 70, 114, 111, 109, 70, 105, 110, 97, 108, 68, 109, 103, 80, 108, 117, 115, 24, 9, 32, 1, 40, 5, 82, 16, 70, 114, 111, 109, 70, 105, 110, 97, 108, 68, 109, 103, 80, 108, 117, 115, 18, 28, 10, 9, 84, 111, 69, 114, 65, 109, 101, 110, 100, 24, 10, 32, 1, 40, 2, 82, 9, 84, 111, 69, 114, 65, 109, 101, 110, 100, 18, 30, 10, 10, 84, 111, 68, 101, 102, 65, 109, 101, 110, 100, 24, 11, 32, 1, 40, 2, 82, 10, 84, 111, 68, 101, 102, 65, 109, 101, 110, 100, 18, 44, 10, 17, 84, 111, 82, 99, 100, 83, 108, 111, 116, 68, 109, 103, 82, 97, 116, 105, 111, 24, 12, 32, 1, 40, 2, 82, 17, 84, 111, 82, 99, 100, 83, 108, 111, 116, 68, 109, 103, 82, 97, 116, 105, 111, 18, 24, 10, 7, 84, 111, 69, 69, 82, 67, 68, 24, 13, 32, 1, 40, 2, 82, 7, 84, 111, 69, 69, 82, 67, 68, 18, 42, 10, 16, 84, 111, 71, 101, 110, 68, 109, 103, 82, 99, 100, 82, 97, 116, 105, 111, 24, 14, 32, 1, 40, 2, 82, 16, 84, 111, 71, 101, 110, 68, 109, 103, 82, 99, 100, 82, 97, 116, 105, 111, 18, 34, 10, 12, 84, 111, 68, 109, 103, 80, 108, 117, 115, 82, 99, 100, 24, 15, 32, 1, 40, 2, 82, 12, 84, 111, 68, 109, 103, 80, 108, 117, 115, 82, 99, 100, 18, 16, 10, 3, 68, 109, 103, 24, 16, 32, 1, 40, 5, 82, 3, 68, 109, 103, 18, 26, 10, 8, 67, 114, 105, 116, 82, 97, 116, 101, 24, 17, 32, 1, 40, 2, 82, 8, 67, 114, 105, 116, 82, 97, 116, 101, 18, 14, 10, 2, 72, 112, 24, 18, 32, 1, 40, 5, 82, 2, 72, 112, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 105, 10, 10, 82, 97, 110, 107, 67, 104, 97, 110, 103, 101, 18, 16, 10, 3, 79, 108, 100, 24, 1, 32, 1, 40, 13, 82, 3, 79, 108, 100, 18, 16, 10, 3, 78, 101, 119, 24, 2, 32, 1, 40, 13, 82, 3, 78, 101, 119, 18, 20, 10, 5, 84, 111, 107, 101, 110, 24, 3, 32, 1, 40, 9, 82, 5, 84, 111, 107, 101, 110, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 227, 78, 10, 23, 112, 117, 98, 108, 105, 99, 95, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 26, 31, 116, 114, 97, 118, 101, 108, 101, 114, 95, 100, 117, 101, 108, 95, 114, 97, 110, 107, 95, 117, 112, 108, 111, 97, 100, 46, 112, 114, 111, 116, 111, 34, 173, 1, 10, 13, 83, 116, 97, 114, 84, 111, 119, 101, 114, 73, 110, 102, 111, 18, 40, 10, 4, 77, 101, 116, 97, 24, 1, 32, 1, 40, 11, 50, 20, 46, 112, 114, 111, 116, 111, 46, 83, 116, 97, 114, 84, 111, 119, 101, 114, 77, 101, 116, 97, 82, 4, 77, 101, 116, 97, 18, 40, 10, 4, 82, 111, 111, 109, 24, 2, 32, 1, 40, 11, 50, 20, 46, 112, 114, 111, 116, 111, 46, 83, 116, 97, 114, 84, 111, 119, 101, 114, 82, 111, 111, 109, 82, 4, 82, 111, 111, 109, 18, 37, 10, 3, 66, 97, 103, 24, 3, 32, 1, 40, 11, 50, 19, 46, 112, 114, 111, 116, 111, 46, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 97, 103, 82, 3, 66, 97, 103, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 220, 4, 10, 13, 83, 116, 97, 114, 84, 111, 119, 101, 114, 77, 101, 116, 97, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 22, 10, 6, 67, 104, 97, 114, 72, 112, 24, 2, 32, 1, 40, 13, 82, 6, 67, 104, 97, 114, 72, 112, 18, 28, 10, 9, 84, 101, 97, 109, 76, 101, 118, 101, 108, 24, 3, 32, 1, 40, 13, 82, 9, 84, 101, 97, 109, 76, 101, 118, 101, 108, 18, 24, 10, 7, 84, 101, 97, 109, 69, 120, 112, 24, 4, 32, 1, 40, 13, 82, 7, 84, 101, 97, 109, 69, 120, 112, 18, 42, 10, 5, 67, 104, 97, 114, 115, 24, 5, 32, 3, 40, 11, 50, 20, 46, 112, 114, 111, 116, 111, 46, 83, 116, 97, 114, 84, 111, 119, 101, 114, 67, 104, 97, 114, 82, 5, 67, 104, 97, 114, 115, 18, 42, 10, 5, 68, 105, 115, 99, 115, 24, 6, 32, 3, 40, 11, 50, 20, 46, 112, 114, 111, 116, 111, 46, 83, 116, 97, 114, 84, 111, 119, 101, 114, 68, 105, 115, 99, 82, 5, 68, 105, 115, 99, 115, 18, 24, 10, 7, 68, 97, 116, 101, 76, 101, 110, 24, 7, 32, 1, 40, 13, 82, 7, 68, 97, 116, 101, 76, 101, 110, 18, 30, 10, 10, 67, 108, 105, 101, 110, 116, 68, 97, 116, 97, 24, 8, 32, 1, 40, 9, 82, 10, 67, 108, 105, 101, 110, 116, 68, 97, 116, 97, 18, 52, 10, 21, 68, 105, 115, 99, 83, 107, 105, 108, 108, 65, 99, 116, 105, 118, 101, 78, 117, 109, 98, 101, 114, 24, 9, 32, 1, 40, 13, 82, 21, 68, 105, 115, 99, 83, 107, 105, 108, 108, 65, 99, 116, 105, 118, 101, 78, 117, 109, 98, 101, 114, 18, 40, 10, 15, 72, 97, 114, 109, 111, 110, 121, 83, 107, 105, 108, 108, 73, 100, 115, 24, 10, 32, 3, 40, 13, 82, 15, 72, 97, 114, 109, 111, 110, 121, 83, 107, 105, 108, 108, 73, 100, 115, 18, 42, 10, 16, 84, 111, 119, 101, 114, 71, 114, 111, 119, 116, 104, 78, 111, 100, 101, 115, 24, 11, 32, 3, 40, 13, 82, 16, 84, 111, 119, 101, 114, 71, 114, 111, 119, 116, 104, 78, 111, 100, 101, 115, 18, 40, 10, 15, 82, 101, 115, 117, 114, 114, 101, 99, 116, 105, 111, 110, 67, 110, 116, 24, 12, 32, 1, 40, 13, 82, 15, 82, 101, 115, 117, 114, 114, 101, 99, 116, 105, 111, 110, 67, 110, 116, 18, 36, 10, 13, 82, 97, 110, 107, 84, 111, 116, 97, 108, 84, 105, 109, 101, 24, 13, 32, 1, 40, 13, 82, 13, 82, 97, 110, 107, 84, 111, 116, 97, 108, 84, 105, 109, 101, 18, 28, 10, 9, 84, 111, 116, 97, 108, 84, 105, 109, 101, 24, 14, 32, 1, 40, 13, 82, 9, 84, 111, 116, 97, 108, 84, 105, 109, 101, 18, 34, 10, 12, 84, 111, 116, 97, 108, 68, 97, 109, 97, 103, 101, 115, 24, 15, 32, 3, 40, 4, 82, 12, 84, 111, 116, 97, 108, 68, 97, 109, 97, 103, 101, 115, 18, 24, 10, 7, 66, 117, 105, 108, 100, 73, 100, 24, 16, 32, 1, 40, 4, 82, 7, 66, 117, 105, 108, 100, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 130, 1, 10, 13, 83, 116, 97, 114, 84, 111, 119, 101, 114, 68, 105, 115, 99, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 20, 10, 5, 76, 101, 118, 101, 108, 24, 2, 32, 1, 40, 13, 82, 5, 76, 101, 118, 101, 108, 18, 20, 10, 5, 80, 104, 97, 115, 101, 24, 3, 32, 1, 40, 13, 82, 5, 80, 104, 97, 115, 101, 18, 18, 10, 4, 83, 116, 97, 114, 24, 4, 32, 1, 40, 13, 82, 4, 83, 116, 97, 114, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 145, 2, 10, 13, 83, 116, 97, 114, 84, 111, 119, 101, 114, 67, 104, 97, 114, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 57, 10, 10, 69, 113, 117, 105, 112, 109, 101, 110, 116, 115, 24, 2, 32, 3, 40, 11, 50, 25, 46, 112, 114, 111, 116, 111, 46, 83, 116, 97, 114, 84, 111, 119, 101, 114, 69, 113, 117, 105, 112, 109, 101, 110, 116, 82, 10, 69, 113, 117, 105, 112, 109, 101, 110, 116, 115, 18, 20, 10, 5, 76, 101, 118, 101, 108, 24, 3, 32, 1, 40, 13, 82, 5, 76, 101, 118, 101, 108, 18, 26, 10, 8, 83, 107, 105, 108, 108, 76, 118, 115, 24, 4, 32, 3, 40, 13, 82, 8, 83, 107, 105, 108, 108, 76, 118, 115, 18, 36, 10, 13, 65, 102, 102, 105, 110, 105, 116, 121, 76, 101, 118, 101, 108, 24, 5, 32, 1, 40, 13, 82, 13, 65, 102, 102, 105, 110, 105, 116, 121, 76, 101, 118, 101, 108, 18, 24, 10, 7, 65, 100, 118, 97, 110, 99, 101, 24, 6, 32, 1, 40, 13, 82, 7, 65, 100, 118, 97, 110, 99, 101, 18, 32, 10, 11, 84, 97, 108, 101, 110, 116, 78, 111, 100, 101, 115, 24, 7, 32, 1, 40, 12, 82, 11, 84, 97, 108, 101, 110, 116, 78, 111, 100, 101, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 155, 1, 10, 18, 83, 116, 97, 114, 84, 111, 119, 101, 114, 69, 113, 117, 105, 112, 109, 101, 110, 116, 18, 16, 10, 3, 84, 105, 100, 24, 1, 32, 1, 40, 13, 82, 3, 84, 105, 100, 18, 16, 10, 3, 69, 120, 112, 24, 2, 32, 1, 40, 13, 82, 3, 69, 120, 112, 18, 18, 10, 4, 84, 97, 103, 115, 24, 3, 32, 3, 40, 13, 82, 4, 84, 97, 103, 115, 18, 42, 10, 5, 65, 116, 116, 114, 115, 24, 4, 32, 3, 40, 11, 50, 20, 46, 112, 114, 111, 116, 111, 46, 69, 113, 117, 105, 112, 109, 101, 110, 116, 65, 116, 116, 114, 82, 5, 65, 116, 116, 114, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 129, 2, 10, 12, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 97, 103, 18, 47, 10, 8, 70, 97, 116, 101, 67, 97, 114, 100, 24, 1, 32, 3, 40, 11, 50, 19, 46, 112, 114, 111, 116, 111, 46, 70, 97, 116, 101, 67, 97, 114, 100, 73, 110, 102, 111, 82, 8, 70, 97, 116, 101, 67, 97, 114, 100, 18, 20, 10, 5, 78, 111, 116, 101, 115, 24, 2, 32, 3, 40, 13, 82, 5, 78, 111, 116, 101, 115, 18, 52, 10, 10, 80, 111, 116, 101, 110, 116, 105, 97, 108, 115, 24, 3, 32, 3, 40, 11, 50, 20, 46, 112, 114, 111, 116, 111, 46, 80, 111, 116, 101, 110, 116, 105, 97, 108, 73, 110, 102, 111, 82, 10, 80, 111, 116, 101, 110, 116, 105, 97, 108, 115, 18, 42, 10, 5, 73, 116, 101, 109, 115, 24, 4, 32, 3, 40, 11, 50, 20, 46, 112, 114, 111, 116, 111, 46, 84, 111, 119, 101, 114, 73, 116, 101, 109, 73, 110, 102, 111, 82, 5, 73, 116, 101, 109, 115, 18, 37, 10, 3, 82, 101, 115, 24, 5, 32, 3, 40, 11, 50, 19, 46, 112, 114, 111, 116, 111, 46, 84, 111, 119, 101, 114, 82, 101, 115, 73, 110, 102, 111, 82, 3, 82, 101, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 144, 1, 10, 13, 83, 116, 97, 114, 84, 111, 119, 101, 114, 82, 111, 111, 109, 18, 44, 10, 4, 68, 97, 116, 97, 24, 1, 32, 1, 40, 11, 50, 24, 46, 112, 114, 111, 116, 111, 46, 83, 116, 97, 114, 84, 111, 119, 101, 114, 82, 111, 111, 109, 68, 97, 116, 97, 82, 4, 68, 97, 116, 97, 18, 46, 10, 5, 67, 97, 115, 101, 115, 24, 2, 32, 3, 40, 11, 50, 24, 46, 112, 114, 111, 116, 111, 46, 83, 116, 97, 114, 84, 111, 119, 101, 114, 82, 111, 111, 109, 67, 97, 115, 101, 82, 5, 67, 97, 115, 101, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 212, 1, 10, 17, 83, 116, 97, 114, 84, 111, 119, 101, 114, 82, 111, 111, 109, 68, 97, 116, 97, 18, 20, 10, 5, 70, 108, 111, 111, 114, 24, 1, 32, 1, 40, 13, 82, 5, 70, 108, 111, 111, 114, 18, 20, 10, 5, 77, 97, 112, 73, 100, 24, 2, 32, 1, 40, 13, 82, 5, 77, 97, 112, 73, 100, 18, 24, 10, 7, 80, 97, 114, 97, 109, 73, 100, 24, 3, 32, 1, 40, 13, 82, 7, 80, 97, 114, 97, 109, 73, 100, 18, 26, 10, 8, 82, 111, 111, 109, 84, 121, 112, 101, 24, 4, 32, 1, 40, 13, 82, 8, 82, 111, 111, 109, 84, 121, 112, 101, 18, 26, 10, 8, 77, 97, 112, 80, 97, 114, 97, 109, 24, 5, 32, 1, 40, 9, 82, 8, 77, 97, 112, 80, 97, 114, 97, 109, 18, 30, 10, 10, 77, 97, 112, 84, 97, 98, 108, 101, 73, 100, 24, 6, 32, 1, 40, 13, 82, 10, 77, 97, 112, 84, 97, 98, 108, 101, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 148, 8, 10, 17, 83, 116, 97, 114, 84, 111, 119, 101, 114, 82, 111, 111, 109, 67, 97, 115, 101, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 55, 10, 10, 66, 97, 116, 116, 108, 101, 67, 97, 115, 101, 24, 2, 32, 1, 40, 11, 50, 21, 46, 112, 114, 111, 116, 111, 46, 66, 97, 116, 116, 108, 101, 67, 97, 115, 101, 68, 97, 116, 97, 72, 0, 82, 10, 66, 97, 116, 116, 108, 101, 67, 97, 115, 101, 18, 49, 10, 8, 68, 111, 111, 114, 67, 97, 115, 101, 24, 3, 32, 1, 40, 11, 50, 19, 46, 112, 114, 111, 116, 111, 46, 68, 111, 111, 114, 67, 97, 115, 101, 68, 97, 116, 97, 72, 0, 82, 8, 68, 111, 111, 114, 67, 97, 115, 101, 18, 103, 10, 26, 83, 101, 108, 101, 99, 116, 83, 112, 101, 99, 105, 97, 108, 80, 111, 116, 101, 110, 116, 105, 97, 108, 67, 97, 115, 101, 24, 4, 32, 1, 40, 11, 50, 37, 46, 112, 114, 111, 116, 111, 46, 83, 101, 108, 101, 99, 116, 83, 112, 101, 99, 105, 97, 108, 80, 111, 116, 101, 110, 116, 105, 97, 108, 67, 97, 115, 101, 68, 97, 116, 97, 72, 0, 82, 26, 83, 101, 108, 101, 99, 116, 83, 112, 101, 99, 105, 97, 108, 80, 111, 116, 101, 110, 116, 105, 97, 108, 67, 97, 115, 101, 18, 82, 10, 19, 83, 101, 108, 101, 99, 116, 80, 111, 116, 101, 110, 116, 105, 97, 108, 67, 97, 115, 101, 24, 5, 32, 1, 40, 11, 50, 30, 46, 112, 114, 111, 116, 111, 46, 83, 101, 108, 101, 99, 116, 80, 111, 116, 101, 110, 116, 105, 97, 108, 67, 97, 115, 101, 68, 97, 116, 97, 72, 0, 82, 19, 83, 101, 108, 101, 99, 116, 80, 111, 116, 101, 110, 116, 105, 97, 108, 67, 97, 115, 101, 18, 79, 10, 18, 83, 101, 108, 101, 99, 116, 70, 97, 116, 101, 67, 97, 114, 100, 67, 97, 115, 101, 24, 6, 32, 1, 40, 11, 50, 29, 46, 112, 114, 111, 116, 111, 46, 83, 101, 108, 101, 99, 116, 70, 97, 116, 101, 67, 97, 114, 100, 67, 97, 115, 101, 68, 97, 116, 97, 72, 0, 82, 18, 83, 101, 108, 101, 99, 116, 70, 97, 116, 101, 67, 97, 114, 100, 67, 97, 115, 101, 18, 67, 10, 14, 83, 101, 108, 101, 99, 116, 78, 111, 116, 101, 67, 97, 115, 101, 24, 7, 32, 1, 40, 11, 50, 25, 46, 112, 114, 111, 116, 111, 46, 83, 101, 108, 101, 99, 116, 78, 111, 116, 101, 67, 97, 115, 101, 68, 97, 116, 97, 72, 0, 82, 14, 83, 101, 108, 101, 99, 116, 78, 111, 116, 101, 67, 97, 115, 101, 18, 91, 10, 22, 83, 101, 108, 101, 99, 116, 79, 112, 116, 105, 111, 110, 115, 69, 118, 101, 110, 116, 67, 97, 115, 101, 24, 8, 32, 1, 40, 11, 50, 33, 46, 112, 114, 111, 116, 111, 46, 83, 101, 108, 101, 99, 116, 79, 112, 116, 105, 111, 110, 115, 69, 118, 101, 110, 116, 67, 97, 115, 101, 68, 97, 116, 97, 72, 0, 82, 22, 83, 101, 108, 101, 99, 116, 79, 112, 116, 105, 111, 110, 115, 69, 118, 101, 110, 116, 67, 97, 115, 101, 18, 67, 10, 14, 82, 101, 99, 111, 118, 101, 114, 121, 72, 80, 67, 97, 115, 101, 24, 9, 32, 1, 40, 11, 50, 25, 46, 112, 114, 111, 116, 111, 46, 82, 101, 99, 111, 118, 101, 114, 121, 72, 80, 67, 97, 115, 101, 68, 97, 116, 97, 72, 0, 82, 14, 82, 101, 99, 111, 118, 101, 114, 121, 72, 80, 67, 97, 115, 101, 18, 76, 10, 17, 78, 112, 99, 82, 101, 99, 111, 118, 101, 114, 121, 72, 80, 67, 97, 115, 101, 24, 10, 32, 1, 40, 11, 50, 28, 46, 112, 114, 111, 116, 111, 46, 78, 112, 99, 82, 101, 99, 111, 118, 101, 114, 121, 72, 80, 67, 97, 115, 101, 68, 97, 116, 97, 72, 0, 82, 17, 78, 112, 99, 82, 101, 99, 111, 118, 101, 114, 121, 72, 80, 67, 97, 115, 101, 18, 55, 10, 10, 72, 97, 119, 107, 101, 114, 67, 97, 115, 101, 24, 11, 32, 1, 40, 11, 50, 21, 46, 112, 114, 111, 116, 111, 46, 72, 97, 119, 107, 101, 114, 67, 97, 115, 101, 68, 97, 116, 97, 72, 0, 82, 10, 72, 97, 119, 107, 101, 114, 67, 97, 115, 101, 18, 88, 10, 21, 83, 116, 114, 101, 110, 103, 116, 104, 101, 110, 77, 97, 99, 104, 105, 110, 101, 67, 97, 115, 101, 24, 12, 32, 1, 40, 11, 50, 32, 46, 112, 114, 111, 116, 111, 46, 83, 116, 114, 101, 110, 103, 116, 104, 101, 110, 77, 97, 99, 104, 105, 110, 101, 67, 97, 115, 101, 68, 97, 116, 97, 72, 0, 82, 21, 83, 116, 114, 101, 110, 103, 116, 104, 101, 110, 77, 97, 99, 104, 105, 110, 101, 67, 97, 115, 101, 18, 73, 10, 16, 72, 97, 114, 109, 111, 110, 121, 83, 107, 105, 108, 108, 67, 97, 115, 101, 24, 13, 32, 1, 40, 11, 50, 27, 46, 112, 114, 111, 116, 111, 46, 72, 97, 114, 109, 111, 110, 121, 83, 107, 105, 108, 108, 67, 97, 115, 101, 68, 97, 116, 97, 72, 0, 82, 16, 72, 97, 114, 109, 111, 110, 121, 83, 107, 105, 108, 108, 67, 97, 115, 101, 18, 55, 10, 10, 83, 121, 110, 99, 72, 80, 67, 97, 115, 101, 24, 15, 32, 1, 40, 11, 50, 21, 46, 112, 114, 111, 116, 111, 46, 83, 121, 110, 99, 72, 80, 67, 97, 115, 101, 68, 97, 116, 97, 72, 0, 82, 10, 83, 121, 110, 99, 72, 80, 67, 97, 115, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 66, 6, 10, 4, 68, 97, 116, 97, 34, 109, 10, 14, 66, 97, 116, 116, 108, 101, 67, 97, 115, 101, 68, 97, 116, 97, 18, 28, 10, 9, 84, 105, 109, 101, 76, 105, 109, 105, 116, 24, 1, 32, 1, 40, 8, 82, 9, 84, 105, 109, 101, 76, 105, 109, 105, 116, 18, 26, 10, 8, 70, 97, 116, 101, 67, 97, 114, 100, 24, 2, 32, 1, 40, 8, 82, 8, 70, 97, 116, 101, 67, 97, 114, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 91, 10, 12, 68, 111, 111, 114, 67, 97, 115, 101, 68, 97, 116, 97, 18, 20, 10, 5, 70, 108, 111, 111, 114, 24, 1, 32, 1, 40, 13, 82, 5, 70, 108, 111, 111, 114, 18, 18, 10, 4, 84, 121, 112, 101, 24, 2, 32, 1, 40, 13, 82, 4, 84, 121, 112, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 203, 1, 10, 30, 83, 101, 108, 101, 99, 116, 83, 112, 101, 99, 105, 97, 108, 80, 111, 116, 101, 110, 116, 105, 97, 108, 67, 97, 115, 101, 68, 97, 116, 97, 18, 16, 10, 3, 73, 100, 115, 24, 1, 32, 3, 40, 13, 82, 3, 73, 100, 115, 18, 28, 10, 9, 84, 101, 97, 109, 76, 101, 118, 101, 108, 24, 2, 32, 1, 40, 13, 82, 9, 84, 101, 97, 109, 76, 101, 118, 101, 108, 18, 22, 10, 6, 78, 101, 119, 73, 100, 115, 24, 3, 32, 3, 40, 13, 82, 6, 78, 101, 119, 73, 100, 115, 18, 28, 10, 9, 67, 97, 110, 82, 101, 82, 111, 108, 108, 24, 7, 32, 1, 40, 8, 82, 9, 67, 97, 110, 82, 101, 82, 111, 108, 108, 18, 32, 10, 11, 82, 101, 82, 111, 108, 108, 80, 114, 105, 99, 101, 24, 8, 32, 1, 40, 13, 82, 11, 82, 101, 82, 111, 108, 108, 80, 114, 105, 99, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 142, 2, 10, 23, 83, 101, 108, 101, 99, 116, 80, 111, 116, 101, 110, 116, 105, 97, 108, 67, 97, 115, 101, 68, 97, 116, 97, 18, 42, 10, 5, 73, 110, 102, 111, 115, 24, 1, 32, 3, 40, 11, 50, 20, 46, 112, 114, 111, 116, 111, 46, 80, 111, 116, 101, 110, 116, 105, 97, 108, 73, 110, 102, 111, 82, 5, 73, 110, 102, 111, 115, 18, 28, 10, 9, 84, 101, 97, 109, 76, 101, 118, 101, 108, 24, 2, 32, 1, 40, 13, 82, 9, 84, 101, 97, 109, 76, 101, 118, 101, 108, 18, 22, 10, 6, 78, 101, 119, 73, 100, 115, 24, 3, 32, 3, 40, 13, 82, 6, 78, 101, 119, 73, 100, 115, 18, 26, 10, 8, 76, 117, 99, 107, 121, 73, 100, 115, 24, 12, 32, 3, 40, 13, 82, 8, 76, 117, 99, 107, 121, 73, 100, 115, 18, 28, 10, 9, 67, 97, 110, 82, 101, 82, 111, 108, 108, 24, 13, 32, 1, 40, 8, 82, 9, 67, 97, 110, 82, 101, 82, 111, 108, 108, 18, 32, 10, 11, 82, 101, 82, 111, 108, 108, 80, 114, 105, 99, 101, 24, 14, 32, 1, 40, 13, 82, 11, 82, 101, 82, 111, 108, 108, 80, 114, 105, 99, 101, 18, 18, 10, 4, 84, 121, 112, 101, 24, 15, 32, 1, 40, 13, 82, 4, 84, 121, 112, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 145, 1, 10, 26, 83, 101, 108, 101, 99, 116, 79, 112, 116, 105, 111, 110, 115, 69, 118, 101, 110, 116, 67, 97, 115, 101, 68, 97, 116, 97, 18, 20, 10, 5, 69, 118, 116, 73, 100, 24, 1, 32, 1, 40, 13, 82, 5, 69, 118, 116, 73, 100, 18, 24, 10, 7, 79, 112, 116, 105, 111, 110, 115, 24, 2, 32, 3, 40, 13, 82, 7, 79, 112, 116, 105, 111, 110, 115, 18, 32, 10, 11, 70, 97, 105, 108, 101, 100, 73, 100, 120, 101, 115, 24, 3, 32, 3, 40, 13, 82, 11, 70, 97, 105, 108, 101, 100, 73, 100, 120, 101, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 94, 10, 18, 83, 101, 108, 101, 99, 116, 78, 111, 116, 101, 67, 97, 115, 101, 68, 97, 116, 97, 18, 37, 10, 4, 73, 110, 102, 111, 24, 1, 32, 3, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 83, 101, 108, 101, 99, 116, 78, 111, 116, 101, 82, 4, 73, 110, 102, 111, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 185, 1, 10, 22, 83, 101, 108, 101, 99, 116, 70, 97, 116, 101, 67, 97, 114, 100, 67, 97, 115, 101, 68, 97, 116, 97, 18, 16, 10, 3, 73, 100, 115, 24, 1, 32, 3, 40, 13, 82, 3, 73, 100, 115, 18, 22, 10, 6, 78, 101, 119, 73, 100, 115, 24, 2, 32, 3, 40, 13, 82, 6, 78, 101, 119, 73, 100, 115, 18, 18, 10, 4, 71, 105, 118, 101, 24, 3, 32, 1, 40, 8, 82, 4, 71, 105, 118, 101, 18, 28, 10, 9, 67, 97, 110, 82, 101, 82, 111, 108, 108, 24, 7, 32, 1, 40, 8, 82, 9, 67, 97, 110, 82, 101, 82, 111, 108, 108, 18, 32, 10, 11, 82, 101, 82, 111, 108, 108, 80, 114, 105, 99, 101, 24, 8, 32, 1, 40, 13, 82, 11, 82, 101, 82, 111, 108, 108, 80, 114, 105, 99, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 83, 10, 18, 82, 101, 99, 111, 118, 101, 114, 121, 72, 80, 67, 97, 115, 101, 68, 97, 116, 97, 18, 26, 10, 8, 69, 102, 102, 101, 99, 116, 73, 100, 24, 1, 32, 1, 40, 13, 82, 8, 69, 102, 102, 101, 99, 116, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 86, 10, 21, 78, 112, 99, 82, 101, 99, 111, 118, 101, 114, 121, 72, 80, 67, 97, 115, 101, 68, 97, 116, 97, 18, 26, 10, 8, 69, 102, 102, 101, 99, 116, 73, 100, 24, 1, 32, 1, 40, 13, 82, 8, 69, 102, 102, 101, 99, 116, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 51, 10, 14, 83, 121, 110, 99, 72, 80, 67, 97, 115, 101, 68, 97, 116, 97, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 160, 1, 10, 11, 72, 97, 119, 107, 101, 114, 71, 111, 111, 100, 115, 18, 16, 10, 3, 83, 105, 100, 24, 1, 32, 1, 40, 13, 82, 3, 83, 105, 100, 18, 16, 10, 3, 73, 100, 120, 24, 2, 32, 1, 40, 13, 82, 3, 73, 100, 120, 18, 24, 10, 7, 67, 104, 97, 114, 80, 111, 115, 24, 3, 32, 1, 40, 13, 82, 7, 67, 104, 97, 114, 80, 111, 115, 18, 20, 10, 5, 80, 114, 105, 99, 101, 24, 4, 32, 1, 40, 5, 82, 5, 80, 114, 105, 99, 101, 18, 26, 10, 8, 68, 105, 115, 99, 111, 117, 110, 116, 24, 5, 32, 1, 40, 5, 82, 8, 68, 105, 115, 99, 111, 117, 110, 116, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 217, 1, 10, 14, 72, 97, 119, 107, 101, 114, 67, 97, 115, 101, 68, 97, 116, 97, 18, 38, 10, 4, 76, 105, 115, 116, 24, 1, 32, 3, 40, 11, 50, 18, 46, 112, 114, 111, 116, 111, 46, 72, 97, 119, 107, 101, 114, 71, 111, 111, 100, 115, 82, 4, 76, 105, 115, 116, 18, 26, 10, 8, 80, 117, 114, 99, 104, 97, 115, 101, 24, 2, 32, 3, 40, 13, 82, 8, 80, 117, 114, 99, 104, 97, 115, 101, 18, 28, 10, 9, 67, 97, 110, 82, 101, 82, 111, 108, 108, 24, 7, 32, 1, 40, 8, 82, 9, 67, 97, 110, 82, 101, 82, 111, 108, 108, 18, 32, 10, 11, 82, 101, 82, 111, 108, 108, 80, 114, 105, 99, 101, 24, 8, 32, 1, 40, 13, 82, 11, 82, 101, 82, 111, 108, 108, 80, 114, 105, 99, 101, 18, 32, 10, 11, 82, 101, 82, 111, 108, 108, 84, 105, 109, 101, 115, 24, 9, 32, 1, 40, 13, 82, 11, 82, 101, 82, 111, 108, 108, 84, 105, 109, 101, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 110, 10, 17, 73, 110, 116, 101, 114, 97, 99, 116, 72, 97, 119, 107, 101, 114, 82, 101, 113, 18, 18, 10, 3, 83, 105, 100, 24, 1, 32, 1, 40, 13, 72, 0, 82, 3, 83, 105, 100, 18, 24, 10, 6, 82, 101, 82, 111, 108, 108, 24, 2, 32, 1, 40, 8, 72, 0, 82, 6, 82, 101, 82, 111, 108, 108, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 66, 8, 10, 6, 65, 99, 116, 105, 111, 110, 34, 98, 10, 29, 73, 110, 116, 101, 114, 97, 99, 116, 83, 116, 114, 101, 110, 103, 116, 104, 101, 110, 77, 97, 99, 104, 105, 110, 101, 82, 101, 115, 112, 18, 30, 10, 10, 66, 117, 121, 83, 117, 99, 99, 101, 101, 100, 24, 1, 32, 1, 40, 8, 82, 10, 66, 117, 121, 83, 117, 99, 99, 101, 101, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 142, 1, 10, 25, 83, 116, 114, 101, 110, 103, 116, 104, 101, 110, 77, 97, 99, 104, 105, 110, 101, 67, 97, 115, 101, 68, 97, 116, 97, 18, 20, 10, 5, 84, 105, 109, 101, 115, 24, 1, 32, 1, 40, 13, 82, 5, 84, 105, 109, 101, 115, 18, 28, 10, 9, 70, 105, 114, 115, 116, 70, 114, 101, 101, 24, 7, 32, 1, 40, 8, 82, 9, 70, 105, 114, 115, 116, 70, 114, 101, 101, 18, 26, 10, 8, 68, 105, 115, 99, 111, 117, 110, 116, 24, 8, 32, 1, 40, 13, 82, 8, 68, 105, 115, 99, 111, 117, 110, 116, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 143, 1, 10, 20, 72, 97, 114, 109, 111, 110, 121, 83, 107, 105, 108, 108, 67, 97, 115, 101, 68, 97, 116, 97, 18, 20, 10, 5, 83, 107, 105, 108, 108, 24, 1, 32, 1, 40, 13, 82, 5, 83, 107, 105, 108, 108, 18, 28, 10, 9, 67, 97, 110, 82, 101, 82, 111, 108, 108, 24, 2, 32, 1, 40, 8, 82, 9, 67, 97, 110, 82, 101, 82, 111, 108, 108, 18, 32, 10, 11, 82, 101, 82, 111, 108, 108, 80, 114, 105, 99, 101, 24, 3, 32, 1, 40, 13, 82, 11, 82, 101, 82, 111, 108, 108, 80, 114, 105, 99, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 247, 1, 10, 16, 73, 110, 116, 101, 114, 97, 99, 116, 69, 110, 116, 101, 114, 82, 101, 113, 18, 20, 10, 5, 77, 97, 112, 73, 100, 24, 1, 32, 1, 40, 13, 82, 5, 77, 97, 112, 73, 100, 18, 24, 10, 7, 80, 97, 114, 97, 109, 73, 100, 24, 2, 32, 1, 40, 13, 82, 7, 80, 97, 114, 97, 109, 73, 100, 18, 24, 10, 7, 68, 97, 116, 101, 76, 101, 110, 24, 3, 32, 1, 40, 13, 82, 7, 68, 97, 116, 101, 76, 101, 110, 18, 30, 10, 10, 67, 108, 105, 101, 110, 116, 68, 97, 116, 97, 24, 4, 32, 1, 40, 9, 82, 10, 67, 108, 105, 101, 110, 116, 68, 97, 116, 97, 18, 26, 10, 8, 77, 97, 112, 80, 97, 114, 97, 109, 24, 5, 32, 1, 40, 9, 82, 8, 77, 97, 112, 80, 97, 114, 97, 109, 18, 30, 10, 10, 77, 97, 112, 84, 97, 98, 108, 101, 73, 100, 24, 6, 32, 1, 40, 13, 82, 10, 77, 97, 112, 84, 97, 98, 108, 101, 73, 100, 18, 26, 10, 8, 67, 104, 101, 99, 107, 115, 117, 109, 24, 7, 32, 1, 40, 4, 82, 8, 67, 104, 101, 99, 107, 115, 117, 109, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 96, 10, 17, 73, 110, 116, 101, 114, 97, 99, 116, 69, 110, 116, 101, 114, 82, 101, 115, 112, 18, 40, 10, 4, 82, 111, 111, 109, 24, 1, 32, 1, 40, 11, 50, 20, 46, 112, 114, 111, 116, 111, 46, 83, 116, 97, 114, 84, 111, 119, 101, 114, 82, 111, 111, 109, 82, 4, 82, 111, 111, 109, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 198, 3, 10, 20, 73, 110, 116, 101, 114, 97, 99, 116, 66, 97, 116, 116, 108, 101, 69, 110, 100, 82, 101, 113, 18, 67, 10, 7, 86, 105, 99, 116, 111, 114, 121, 24, 1, 32, 1, 40, 11, 50, 39, 46, 112, 114, 111, 116, 111, 46, 73, 110, 116, 101, 114, 97, 99, 116, 66, 97, 116, 116, 108, 101, 69, 110, 100, 82, 101, 113, 46, 86, 105, 99, 116, 111, 114, 121, 68, 97, 116, 97, 72, 0, 82, 7, 86, 105, 99, 116, 111, 114, 121, 18, 24, 10, 6, 68, 101, 102, 101, 97, 116, 24, 2, 32, 1, 40, 8, 72, 0, 82, 6, 68, 101, 102, 101, 97, 116, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 26, 161, 2, 10, 11, 86, 105, 99, 116, 111, 114, 121, 68, 97, 116, 97, 18, 14, 10, 2, 72, 80, 24, 1, 32, 1, 40, 13, 82, 2, 72, 80, 18, 18, 10, 4, 84, 105, 109, 101, 24, 2, 32, 1, 40, 13, 82, 4, 84, 105, 109, 101, 18, 24, 10, 7, 68, 97, 116, 101, 76, 101, 110, 24, 3, 32, 1, 40, 13, 82, 7, 68, 97, 116, 101, 76, 101, 110, 18, 30, 10, 10, 67, 108, 105, 101, 110, 116, 68, 97, 116, 97, 24, 4, 32, 1, 40, 9, 82, 10, 67, 108, 105, 101, 110, 116, 68, 97, 116, 97, 18, 58, 10, 13, 102, 97, 116, 101, 67, 97, 114, 100, 85, 115, 97, 103, 101, 24, 5, 32, 3, 40, 11, 50, 20, 46, 112, 114, 111, 116, 111, 46, 70, 97, 116, 101, 67, 97, 114, 100, 85, 115, 97, 103, 101, 82, 13, 102, 97, 116, 101, 67, 97, 114, 100, 85, 115, 97, 103, 101, 18, 24, 10, 7, 68, 97, 109, 97, 103, 101, 115, 24, 6, 32, 3, 40, 13, 82, 7, 68, 97, 109, 97, 103, 101, 115, 18, 55, 10, 6, 83, 97, 109, 112, 108, 101, 24, 14, 32, 3, 40, 11, 50, 31, 46, 112, 114, 111, 116, 111, 46, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 66, 97, 116, 116, 108, 101, 83, 97, 109, 112, 108, 101, 82, 6, 83, 97, 109, 112, 108, 101, 18, 37, 10, 6, 69, 118, 101, 110, 116, 115, 24, 15, 32, 1, 40, 11, 50, 13, 46, 112, 114, 111, 116, 111, 46, 69, 118, 101, 110, 116, 115, 82, 6, 69, 118, 101, 110, 116, 115, 66, 8, 10, 6, 82, 101, 115, 117, 108, 116, 34, 188, 2, 10, 21, 73, 110, 116, 101, 114, 97, 99, 116, 66, 97, 116, 116, 108, 101, 69, 110, 100, 82, 101, 115, 112, 18, 68, 10, 7, 86, 105, 99, 116, 111, 114, 121, 24, 1, 32, 1, 40, 11, 50, 40, 46, 112, 114, 111, 116, 111, 46, 73, 110, 116, 101, 114, 97, 99, 116, 66, 97, 116, 116, 108, 101, 69, 110, 100, 82, 101, 115, 112, 46, 86, 105, 99, 116, 111, 114, 121, 68, 97, 116, 97, 72, 0, 82, 7, 86, 105, 99, 116, 111, 114, 121, 18, 65, 10, 6, 68, 101, 102, 101, 97, 116, 24, 2, 32, 1, 40, 11, 50, 39, 46, 112, 114, 111, 116, 111, 46, 73, 110, 116, 101, 114, 97, 99, 116, 66, 97, 116, 116, 108, 101, 69, 110, 100, 82, 101, 115, 112, 46, 68, 101, 102, 101, 97, 116, 68, 97, 116, 97, 72, 0, 82, 6, 68, 101, 102, 101, 97, 116, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 26, 79, 10, 11, 86, 105, 99, 116, 111, 114, 121, 68, 97, 116, 97, 18, 16, 10, 3, 69, 120, 112, 24, 1, 32, 1, 40, 13, 82, 3, 69, 120, 112, 18, 14, 10, 2, 76, 118, 24, 2, 32, 1, 40, 13, 82, 2, 76, 118, 18, 30, 10, 10, 66, 97, 116, 116, 108, 101, 84, 105, 109, 101, 24, 10, 32, 1, 40, 13, 82, 10, 66, 97, 116, 116, 108, 101, 84, 105, 109, 101, 26, 28, 10, 10, 68, 101, 102, 101, 97, 116, 68, 97, 116, 97, 18, 14, 10, 2, 76, 118, 24, 1, 32, 1, 40, 13, 82, 2, 76, 118, 66, 8, 10, 6, 82, 101, 115, 117, 108, 116, 34, 74, 10, 21, 73, 110, 116, 101, 114, 97, 99, 116, 82, 101, 99, 111, 118, 101, 114, 121, 72, 80, 82, 101, 113, 18, 14, 10, 2, 72, 112, 24, 1, 32, 1, 40, 13, 82, 2, 72, 112, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 88, 10, 13, 70, 97, 116, 101, 67, 97, 114, 100, 85, 115, 97, 103, 101, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 20, 10, 5, 84, 105, 109, 101, 115, 24, 2, 32, 1, 40, 13, 82, 5, 84, 105, 109, 101, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 114, 10, 17, 73, 110, 116, 101, 114, 97, 99, 116, 83, 101, 108, 101, 99, 116, 82, 101, 113, 18, 22, 10, 5, 73, 110, 100, 101, 120, 24, 1, 32, 1, 40, 13, 72, 0, 82, 5, 73, 110, 100, 101, 120, 18, 24, 10, 6, 82, 101, 82, 111, 108, 108, 24, 2, 32, 1, 40, 8, 72, 0, 82, 6, 82, 101, 82, 111, 108, 108, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 66, 8, 10, 6, 83, 101, 108, 101, 99, 116, 34, 149, 5, 10, 18, 73, 110, 116, 101, 114, 97, 99, 116, 83, 101, 108, 101, 99, 116, 82, 101, 115, 112, 18, 55, 10, 4, 82, 101, 115, 112, 24, 1, 32, 1, 40, 11, 50, 33, 46, 112, 114, 111, 116, 111, 46, 73, 110, 116, 101, 114, 97, 99, 116, 83, 101, 108, 101, 99, 116, 82, 101, 115, 112, 46, 83, 117, 99, 99, 101, 115, 115, 72, 0, 82, 4, 82, 101, 115, 112, 18, 103, 10, 26, 83, 101, 108, 101, 99, 116, 83, 112, 101, 99, 105, 97, 108, 80, 111, 116, 101, 110, 116, 105, 97, 108, 67, 97, 115, 101, 24, 2, 32, 1, 40, 11, 50, 37, 46, 112, 114, 111, 116, 111, 46, 83, 101, 108, 101, 99, 116, 83, 112, 101, 99, 105, 97, 108, 80, 111, 116, 101, 110, 116, 105, 97, 108, 67, 97, 115, 101, 68, 97, 116, 97, 72, 0, 82, 26, 83, 101, 108, 101, 99, 116, 83, 112, 101, 99, 105, 97, 108, 80, 111, 116, 101, 110, 116, 105, 97, 108, 67, 97, 115, 101, 18, 82, 10, 19, 83, 101, 108, 101, 99, 116, 80, 111, 116, 101, 110, 116, 105, 97, 108, 67, 97, 115, 101, 24, 3, 32, 1, 40, 11, 50, 30, 46, 112, 114, 111, 116, 111, 46, 83, 101, 108, 101, 99, 116, 80, 111, 116, 101, 110, 116, 105, 97, 108, 67, 97, 115, 101, 68, 97, 116, 97, 72, 0, 82, 19, 83, 101, 108, 101, 99, 116, 80, 111, 116, 101, 110, 116, 105, 97, 108, 67, 97, 115, 101, 18, 79, 10, 18, 83, 101, 108, 101, 99, 116, 70, 97, 116, 101, 67, 97, 114, 100, 67, 97, 115, 101, 24, 4, 32, 1, 40, 11, 50, 29, 46, 112, 114, 111, 116, 111, 46, 83, 101, 108, 101, 99, 116, 70, 97, 116, 101, 67, 97, 114, 100, 67, 97, 115, 101, 68, 97, 116, 97, 72, 0, 82, 18, 83, 101, 108, 101, 99, 116, 70, 97, 116, 101, 67, 97, 114, 100, 67, 97, 115, 101, 18, 55, 10, 10, 72, 97, 119, 107, 101, 114, 67, 97, 115, 101, 24, 5, 32, 1, 40, 11, 50, 21, 46, 112, 114, 111, 116, 111, 46, 72, 97, 119, 107, 101, 114, 67, 97, 115, 101, 68, 97, 116, 97, 72, 0, 82, 10, 72, 97, 119, 107, 101, 114, 67, 97, 115, 101, 18, 73, 10, 16, 72, 97, 114, 109, 111, 110, 121, 83, 107, 105, 108, 108, 67, 97, 115, 101, 24, 6, 32, 1, 40, 11, 50, 27, 46, 112, 114, 111, 116, 111, 46, 72, 97, 114, 109, 111, 110, 121, 83, 107, 105, 108, 108, 67, 97, 115, 101, 68, 97, 116, 97, 72, 0, 82, 16, 72, 97, 114, 109, 111, 110, 121, 83, 107, 105, 108, 108, 67, 97, 115, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 26, 134, 1, 10, 7, 83, 117, 99, 99, 101, 115, 115, 18, 36, 10, 5, 73, 116, 101, 109, 115, 24, 1, 32, 3, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 84, 112, 108, 82, 5, 73, 116, 101, 109, 115, 18, 36, 10, 13, 79, 112, 116, 105, 111, 110, 115, 82, 101, 115, 117, 108, 116, 24, 2, 32, 1, 40, 8, 82, 13, 79, 112, 116, 105, 111, 110, 115, 82, 101, 115, 117, 108, 116, 18, 47, 10, 8, 70, 97, 116, 101, 67, 97, 114, 100, 24, 3, 32, 3, 40, 11, 50, 19, 46, 112, 114, 111, 116, 111, 46, 70, 97, 116, 101, 67, 97, 114, 100, 73, 110, 102, 111, 82, 8, 70, 97, 116, 101, 67, 97, 114, 100, 66, 8, 10, 6, 82, 101, 115, 117, 108, 116, 34, 129, 1, 10, 12, 70, 97, 116, 101, 67, 97, 114, 100, 73, 110, 102, 111, 18, 16, 10, 3, 84, 105, 100, 24, 1, 32, 1, 40, 13, 82, 3, 84, 105, 100, 18, 16, 10, 3, 81, 116, 121, 24, 2, 32, 1, 40, 5, 82, 3, 81, 116, 121, 18, 22, 10, 6, 82, 101, 109, 97, 105, 110, 24, 3, 32, 1, 40, 5, 82, 6, 82, 101, 109, 97, 105, 110, 18, 18, 10, 4, 82, 111, 111, 109, 24, 4, 32, 1, 40, 5, 82, 4, 82, 111, 111, 109, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 90, 10, 13, 80, 111, 116, 101, 110, 116, 105, 97, 108, 73, 110, 102, 111, 18, 16, 10, 3, 84, 105, 100, 24, 1, 32, 1, 40, 13, 82, 3, 84, 105, 100, 18, 20, 10, 5, 76, 101, 118, 101, 108, 24, 2, 32, 1, 40, 5, 82, 5, 76, 101, 118, 101, 108, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 81, 10, 8, 78, 111, 116, 101, 73, 110, 102, 111, 18, 16, 10, 3, 84, 105, 100, 24, 1, 32, 1, 40, 13, 82, 3, 84, 105, 100, 18, 16, 10, 3, 81, 116, 121, 24, 2, 32, 1, 40, 5, 82, 3, 81, 116, 121, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 86, 10, 13, 84, 111, 119, 101, 114, 73, 116, 101, 109, 73, 110, 102, 111, 18, 16, 10, 3, 84, 105, 100, 24, 1, 32, 1, 40, 13, 82, 3, 84, 105, 100, 18, 16, 10, 3, 81, 116, 121, 24, 2, 32, 1, 40, 5, 82, 3, 81, 116, 121, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 85, 10, 12, 84, 111, 119, 101, 114, 82, 101, 115, 73, 110, 102, 111, 18, 16, 10, 3, 84, 105, 100, 24, 1, 32, 1, 40, 13, 82, 3, 84, 105, 100, 18, 16, 10, 3, 81, 116, 121, 24, 2, 32, 1, 40, 5, 82, 3, 81, 116, 121, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 129, 1, 10, 10, 83, 101, 108, 101, 99, 116, 78, 111, 116, 101, 18, 16, 10, 3, 73, 100, 120, 24, 1, 32, 1, 40, 13, 82, 3, 73, 100, 120, 18, 18, 10, 4, 76, 105, 115, 116, 24, 2, 32, 3, 40, 13, 82, 4, 76, 105, 115, 116, 18, 20, 10, 5, 70, 105, 110, 97, 108, 24, 3, 32, 3, 40, 13, 82, 5, 70, 105, 110, 97, 108, 18, 20, 10, 5, 66, 111, 110, 117, 115, 24, 4, 32, 3, 40, 13, 82, 5, 66, 111, 110, 117, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 133, 3, 10, 14, 83, 101, 116, 116, 108, 101, 68, 97, 116, 97, 82, 101, 115, 112, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 1, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 47, 10, 5, 66, 117, 105, 108, 100, 24, 2, 32, 1, 40, 11, 50, 25, 46, 112, 114, 111, 116, 111, 46, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 117, 105, 108, 100, 73, 110, 102, 111, 82, 5, 66, 117, 105, 108, 100, 18, 20, 10, 5, 84, 111, 107, 101, 110, 24, 7, 32, 1, 40, 9, 82, 5, 84, 111, 107, 101, 110, 18, 28, 10, 9, 66, 97, 115, 101, 83, 99, 111, 114, 101, 24, 8, 32, 1, 40, 13, 82, 9, 66, 97, 115, 101, 83, 99, 111, 114, 101, 18, 28, 10, 9, 84, 105, 109, 101, 83, 99, 111, 114, 101, 24, 9, 32, 1, 40, 13, 82, 9, 84, 105, 109, 101, 83, 99, 111, 114, 101, 18, 30, 10, 10, 70, 105, 110, 97, 108, 83, 99, 111, 114, 101, 24, 10, 32, 1, 40, 13, 82, 10, 70, 105, 110, 97, 108, 83, 99, 111, 114, 101, 18, 16, 10, 3, 79, 108, 100, 24, 11, 32, 1, 40, 13, 82, 3, 79, 108, 100, 18, 16, 10, 3, 78, 101, 119, 24, 12, 32, 1, 40, 13, 82, 3, 78, 101, 119, 18, 28, 10, 9, 82, 97, 110, 107, 84, 105, 109, 101, 115, 24, 13, 32, 1, 40, 13, 82, 9, 82, 97, 110, 107, 84, 105, 109, 101, 115, 18, 28, 10, 9, 84, 111, 116, 97, 108, 84, 105, 109, 101, 24, 14, 32, 1, 40, 13, 82, 9, 84, 111, 116, 97, 108, 84, 105, 109, 101, 18, 34, 10, 12, 84, 111, 116, 97, 108, 68, 97, 109, 97, 103, 101, 115, 24, 15, 32, 3, 40, 4, 82, 12, 84, 111, 116, 97, 108, 68, 97, 109, 97, 103, 101, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 186, 1, 10, 9, 66, 117, 105, 108, 100, 68, 105, 115, 99, 18, 22, 10, 6, 68, 105, 115, 99, 73, 100, 24, 1, 32, 1, 40, 13, 82, 6, 68, 105, 115, 99, 73, 100, 18, 56, 10, 12, 67, 111, 109, 109, 111, 110, 83, 107, 105, 108, 108, 115, 24, 2, 32, 3, 40, 11, 50, 20, 46, 112, 114, 111, 116, 111, 46, 68, 105, 115, 99, 83, 107, 105, 108, 108, 73, 110, 102, 111, 82, 12, 67, 111, 109, 109, 111, 110, 83, 107, 105, 108, 108, 115, 18, 56, 10, 12, 80, 97, 115, 115, 105, 118, 101, 83, 107, 105, 108, 108, 24, 3, 32, 1, 40, 11, 50, 20, 46, 112, 114, 111, 116, 111, 46, 68, 105, 115, 99, 83, 107, 105, 108, 108, 73, 110, 102, 111, 82, 12, 80, 97, 115, 115, 105, 118, 101, 83, 107, 105, 108, 108, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 111, 10, 14, 84, 111, 119, 101, 114, 66, 117, 105, 108, 100, 67, 104, 97, 114, 18, 22, 10, 6, 67, 104, 97, 114, 73, 100, 24, 1, 32, 1, 40, 13, 82, 6, 67, 104, 97, 114, 73, 100, 18, 34, 10, 12, 80, 111, 116, 101, 110, 116, 105, 97, 108, 67, 110, 116, 24, 2, 32, 1, 40, 13, 82, 12, 80, 111, 116, 101, 110, 116, 105, 97, 108, 67, 110, 116, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 107, 10, 14, 66, 117, 105, 108, 100, 80, 111, 116, 101, 110, 116, 105, 97, 108, 18, 32, 10, 11, 80, 111, 116, 101, 110, 116, 105, 97, 108, 73, 100, 24, 1, 32, 1, 40, 13, 82, 11, 80, 111, 116, 101, 110, 116, 105, 97, 108, 73, 100, 18, 20, 10, 5, 76, 101, 118, 101, 108, 24, 2, 32, 1, 40, 13, 82, 5, 76, 101, 118, 101, 108, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 188, 1, 10, 18, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 117, 105, 108, 100, 73, 110, 102, 111, 18, 48, 10, 5, 66, 114, 105, 101, 102, 24, 1, 32, 1, 40, 11, 50, 26, 46, 112, 114, 111, 116, 111, 46, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 117, 105, 108, 100, 66, 114, 105, 101, 102, 82, 5, 66, 114, 105, 101, 102, 18, 51, 10, 6, 68, 101, 116, 97, 105, 108, 24, 2, 32, 1, 40, 11, 50, 27, 46, 112, 114, 111, 116, 111, 46, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 117, 105, 108, 100, 68, 101, 116, 97, 105, 108, 82, 6, 68, 101, 116, 97, 105, 108, 18, 28, 10, 9, 66, 117, 105, 108, 100, 67, 111, 105, 110, 24, 3, 32, 1, 40, 13, 82, 9, 66, 117, 105, 108, 100, 67, 111, 105, 110, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 237, 1, 10, 19, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 117, 105, 108, 100, 66, 114, 105, 101, 102, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 4, 82, 2, 73, 100, 18, 18, 10, 4, 78, 97, 109, 101, 24, 2, 32, 1, 40, 9, 82, 4, 78, 97, 109, 101, 18, 18, 10, 4, 76, 111, 99, 107, 24, 3, 32, 1, 40, 8, 82, 4, 76, 111, 99, 107, 18, 30, 10, 10, 80, 114, 101, 102, 101, 114, 101, 110, 99, 101, 24, 4, 32, 1, 40, 8, 82, 10, 80, 114, 101, 102, 101, 114, 101, 110, 99, 101, 18, 20, 10, 5, 83, 99, 111, 114, 101, 24, 5, 32, 1, 40, 13, 82, 5, 83, 99, 111, 114, 101, 18, 24, 10, 7, 68, 105, 115, 99, 73, 100, 115, 24, 6, 32, 3, 40, 13, 82, 7, 68, 105, 115, 99, 73, 100, 115, 18, 43, 10, 5, 67, 104, 97, 114, 115, 24, 7, 32, 3, 40, 11, 50, 21, 46, 112, 114, 111, 116, 111, 46, 84, 111, 119, 101, 114, 66, 117, 105, 108, 100, 67, 104, 97, 114, 82, 5, 67, 104, 97, 114, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 216, 1, 10, 20, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 117, 105, 108, 100, 68, 101, 116, 97, 105, 108, 18, 38, 10, 5, 68, 105, 115, 99, 115, 24, 1, 32, 3, 40, 11, 50, 16, 46, 112, 114, 111, 116, 111, 46, 66, 117, 105, 108, 100, 68, 105, 115, 99, 82, 5, 68, 105, 115, 99, 115, 18, 53, 10, 10, 80, 111, 116, 101, 110, 116, 105, 97, 108, 115, 24, 2, 32, 3, 40, 11, 50, 21, 46, 112, 114, 111, 116, 111, 46, 66, 117, 105, 108, 100, 80, 111, 116, 101, 110, 116, 105, 97, 108, 82, 10, 80, 111, 116, 101, 110, 116, 105, 97, 108, 115, 18, 20, 10, 5, 78, 111, 116, 101, 115, 24, 3, 32, 3, 40, 13, 82, 5, 78, 111, 116, 101, 115, 18, 40, 10, 15, 72, 97, 114, 109, 111, 110, 121, 83, 107, 105, 108, 108, 73, 100, 115, 24, 4, 32, 3, 40, 13, 82, 15, 72, 97, 114, 109, 111, 110, 121, 83, 107, 105, 108, 108, 73, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 114, 10, 31, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 111, 111, 107, 67, 104, 97, 114, 80, 111, 116, 101, 110, 116, 105, 97, 108, 66, 114, 105, 101, 102, 18, 22, 10, 6, 67, 104, 97, 114, 73, 100, 24, 1, 32, 1, 40, 13, 82, 6, 67, 104, 97, 114, 73, 100, 18, 20, 10, 5, 67, 111, 117, 110, 116, 24, 2, 32, 1, 40, 13, 82, 5, 67, 111, 117, 110, 116, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 97, 10, 22, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 111, 111, 107, 80, 111, 116, 101, 110, 116, 105, 97, 108, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 20, 10, 5, 76, 101, 118, 101, 108, 24, 2, 32, 1, 40, 13, 82, 5, 76, 101, 118, 101, 108, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 150, 1, 10, 26, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 111, 111, 107, 67, 104, 97, 114, 80, 111, 116, 101, 110, 116, 105, 97, 108, 18, 22, 10, 6, 67, 104, 97, 114, 73, 100, 24, 1, 32, 1, 40, 13, 82, 6, 67, 104, 97, 114, 73, 100, 18, 61, 10, 10, 80, 111, 116, 101, 110, 116, 105, 97, 108, 115, 24, 2, 32, 3, 40, 11, 50, 29, 46, 112, 114, 111, 116, 111, 46, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 111, 111, 107, 80, 111, 116, 101, 110, 116, 105, 97, 108, 82, 10, 80, 111, 116, 101, 110, 116, 105, 97, 108, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 88, 10, 13, 68, 105, 115, 99, 83, 107, 105, 108, 108, 73, 110, 102, 111, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 20, 10, 5, 76, 101, 118, 101, 108, 24, 2, 32, 1, 40, 13, 82, 5, 76, 101, 118, 101, 108, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 148, 1, 10, 15, 84, 111, 119, 101, 114, 67, 104, 97, 110, 103, 101, 68, 97, 116, 97, 18, 52, 10, 21, 68, 105, 115, 99, 83, 107, 105, 108, 108, 65, 99, 116, 105, 118, 101, 78, 117, 109, 98, 101, 114, 24, 1, 32, 1, 40, 13, 82, 21, 68, 105, 115, 99, 83, 107, 105, 108, 108, 65, 99, 116, 105, 118, 101, 78, 117, 109, 98, 101, 114, 18, 40, 10, 15, 72, 97, 114, 109, 111, 110, 121, 83, 107, 105, 108, 108, 73, 100, 115, 24, 2, 32, 3, 40, 13, 82, 15, 72, 97, 114, 109, 111, 110, 121, 83, 107, 105, 108, 108, 73, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 80, 1, 98, 6, 112, 114, 111, 116, 111, 51, 10, 239, 11, 10, 12, 110, 111, 116, 105, 102, 121, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 26, 23, 112, 117, 98, 108, 105, 99, 95, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 46, 112, 114, 111, 116, 111, 34, 63, 10, 8, 78, 101, 119, 65, 103, 101, 110, 116, 18, 16, 10, 3, 73, 100, 115, 24, 1, 32, 3, 40, 13, 82, 3, 73, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 144, 1, 10, 18, 83, 105, 103, 110, 105, 110, 82, 101, 119, 97, 114, 100, 85, 112, 100, 97, 116, 101, 18, 20, 10, 5, 73, 110, 100, 101, 120, 24, 1, 32, 1, 40, 13, 82, 5, 73, 110, 100, 101, 120, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 2, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 22, 10, 6, 83, 119, 105, 116, 99, 104, 24, 6, 32, 1, 40, 8, 82, 6, 83, 119, 105, 116, 99, 104, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 166, 1, 10, 28, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 111, 111, 107, 80, 111, 116, 101, 110, 116, 105, 97, 108, 67, 104, 97, 110, 103, 101, 18, 73, 10, 14, 67, 104, 97, 114, 80, 111, 116, 101, 110, 116, 105, 97, 108, 115, 24, 1, 32, 3, 40, 11, 50, 33, 46, 112, 114, 111, 116, 111, 46, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 111, 111, 107, 67, 104, 97, 114, 80, 111, 116, 101, 110, 116, 105, 97, 108, 82, 14, 67, 104, 97, 114, 80, 111, 116, 101, 110, 116, 105, 97, 108, 115, 18, 24, 10, 7, 67, 104, 97, 114, 73, 100, 115, 24, 2, 32, 3, 40, 13, 82, 7, 67, 104, 97, 114, 73, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 89, 10, 24, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 111, 111, 107, 69, 118, 101, 110, 116, 67, 104, 97, 110, 103, 101, 18, 26, 10, 8, 69, 118, 101, 110, 116, 73, 100, 115, 24, 1, 32, 3, 40, 13, 82, 8, 69, 118, 101, 110, 116, 73, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 206, 1, 10, 4, 83, 107, 105, 110, 18, 31, 10, 3, 78, 101, 119, 24, 1, 32, 1, 40, 11, 50, 11, 46, 112, 114, 111, 116, 111, 46, 85, 73, 51, 50, 72, 0, 82, 3, 78, 101, 119, 18, 55, 10, 10, 68, 117, 112, 108, 105, 99, 97, 116, 101, 100, 24, 2, 32, 1, 40, 11, 50, 21, 46, 112, 114, 111, 116, 111, 46, 83, 107, 105, 110, 46, 84, 114, 97, 110, 115, 102, 111, 114, 109, 72, 0, 82, 10, 68, 117, 112, 108, 105, 99, 97, 116, 101, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 26, 65, 10, 9, 84, 114, 97, 110, 115, 102, 111, 114, 109, 18, 14, 10, 2, 73, 68, 24, 1, 32, 1, 40, 13, 82, 2, 73, 68, 18, 36, 10, 5, 73, 116, 101, 109, 115, 24, 2, 32, 3, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 84, 112, 108, 82, 5, 73, 116, 101, 109, 115, 66, 6, 10, 4, 84, 121, 112, 101, 34, 95, 10, 10, 83, 107, 105, 110, 67, 104, 97, 110, 103, 101, 18, 22, 10, 6, 67, 104, 97, 114, 73, 100, 24, 1, 32, 1, 40, 13, 82, 6, 67, 104, 97, 114, 73, 100, 18, 22, 10, 6, 83, 107, 105, 110, 73, 100, 24, 2, 32, 1, 40, 13, 82, 6, 83, 107, 105, 110, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 236, 1, 10, 18, 77, 111, 110, 116, 104, 108, 121, 67, 97, 114, 100, 82, 101, 119, 97, 114, 100, 115, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 2, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 24, 10, 7, 69, 110, 100, 84, 105, 109, 101, 24, 3, 32, 1, 40, 3, 82, 7, 69, 110, 100, 84, 105, 109, 101, 18, 40, 10, 7, 82, 101, 119, 97, 114, 100, 115, 24, 4, 32, 3, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 84, 112, 108, 82, 7, 82, 101, 119, 97, 114, 100, 115, 18, 28, 10, 9, 82, 101, 109, 97, 105, 110, 105, 110, 103, 24, 5, 32, 1, 40, 13, 82, 9, 82, 101, 109, 97, 105, 110, 105, 110, 103, 18, 22, 10, 6, 83, 119, 105, 116, 99, 104, 24, 6, 32, 1, 40, 8, 82, 6, 83, 119, 105, 116, 99, 104, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 85, 10, 20, 73, 110, 102, 105, 110, 105, 116, 121, 84, 111, 119, 101, 114, 82, 101, 119, 97, 114, 100, 115, 18, 26, 10, 8, 84, 111, 119, 101, 114, 73, 100, 115, 24, 1, 32, 3, 40, 13, 82, 8, 84, 111, 119, 101, 114, 73, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 125, 10, 30, 84, 111, 119, 101, 114, 66, 111, 111, 107, 70, 97, 116, 101, 67, 97, 114, 100, 67, 111, 108, 108, 101, 99, 116, 78, 111, 116, 105, 102, 121, 18, 20, 10, 5, 67, 97, 114, 100, 115, 24, 1, 32, 3, 40, 13, 82, 5, 67, 97, 114, 100, 115, 18, 34, 10, 12, 84, 97, 108, 101, 110, 116, 80, 111, 105, 110, 116, 115, 24, 2, 32, 1, 40, 13, 82, 12, 84, 97, 108, 101, 110, 116, 80, 111, 105, 110, 116, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 116, 10, 35, 84, 111, 119, 101, 114, 66, 111, 111, 107, 70, 97, 116, 101, 67, 97, 114, 100, 82, 101, 119, 97, 114, 100, 67, 104, 97, 110, 103, 101, 78, 111, 116, 105, 102, 121, 18, 18, 10, 4, 76, 105, 115, 116, 24, 1, 32, 3, 40, 13, 82, 4, 76, 105, 115, 116, 18, 22, 10, 6, 79, 112, 116, 105, 111, 110, 24, 2, 32, 1, 40, 8, 82, 6, 79, 112, 116, 105, 111, 110, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 96, 10, 17, 72, 111, 110, 111, 114, 67, 104, 97, 110, 103, 101, 78, 111, 116, 105, 102, 121, 18, 40, 10, 6, 72, 111, 110, 111, 114, 115, 24, 1, 32, 3, 40, 11, 50, 16, 46, 112, 114, 111, 116, 111, 46, 72, 111, 110, 111, 114, 73, 110, 102, 111, 82, 6, 72, 111, 110, 111, 114, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 80, 1, 98, 6, 112, 114, 111, 116, 111, 51, 10, 220, 14, 10, 15, 110, 111, 116, 105, 102, 121, 95, 103, 109, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 26, 23, 112, 117, 98, 108, 105, 99, 95, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 46, 112, 114, 111, 116, 111, 34, 107, 10, 12, 71, 109, 87, 111, 114, 108, 100, 67, 108, 97, 115, 115, 18, 30, 10, 10, 70, 105, 110, 97, 108, 67, 108, 97, 115, 115, 24, 1, 32, 1, 40, 13, 82, 10, 70, 105, 110, 97, 108, 67, 108, 97, 115, 115, 18, 24, 10, 7, 76, 97, 115, 116, 69, 120, 112, 24, 2, 32, 1, 40, 5, 82, 7, 76, 97, 115, 116, 69, 120, 112, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 80, 10, 25, 71, 109, 67, 108, 101, 97, 114, 65, 108, 108, 86, 97, 109, 112, 105, 114, 101, 83, 117, 114, 118, 105, 118, 111, 114, 18, 16, 10, 3, 73, 100, 115, 24, 1, 32, 3, 40, 13, 82, 3, 73, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 165, 1, 10, 23, 71, 109, 67, 108, 101, 97, 114, 65, 108, 108, 68, 97, 105, 108, 121, 73, 110, 115, 116, 97, 110, 99, 101, 18, 60, 10, 14, 68, 97, 105, 108, 121, 73, 110, 115, 116, 97, 110, 99, 101, 115, 24, 1, 32, 3, 40, 11, 50, 20, 46, 112, 114, 111, 116, 111, 46, 68, 97, 105, 108, 121, 73, 110, 115, 116, 97, 110, 99, 101, 82, 14, 68, 97, 105, 108, 121, 73, 110, 115, 116, 97, 110, 99, 101, 115, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 2, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 173, 1, 10, 25, 71, 109, 67, 108, 101, 97, 114, 65, 108, 108, 82, 101, 103, 105, 111, 110, 66, 111, 115, 115, 76, 101, 118, 101, 108, 18, 66, 10, 16, 82, 101, 103, 105, 111, 110, 66, 111, 115, 115, 76, 101, 118, 101, 108, 115, 24, 1, 32, 3, 40, 11, 50, 22, 46, 112, 114, 111, 116, 111, 46, 82, 101, 103, 105, 111, 110, 66, 111, 115, 115, 76, 101, 118, 101, 108, 82, 16, 82, 101, 103, 105, 111, 110, 66, 111, 115, 115, 76, 101, 118, 101, 108, 115, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 2, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 155, 1, 10, 21, 71, 109, 67, 108, 101, 97, 114, 65, 108, 108, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 18, 52, 10, 6, 76, 101, 118, 101, 108, 115, 24, 1, 32, 3, 40, 11, 50, 28, 46, 112, 114, 111, 116, 111, 46, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 66, 111, 115, 115, 76, 101, 118, 101, 108, 82, 6, 76, 101, 118, 101, 108, 115, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 2, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 133, 1, 10, 12, 67, 104, 97, 114, 65, 102, 102, 105, 110, 105, 116, 121, 18, 39, 10, 4, 73, 110, 102, 111, 24, 1, 32, 1, 40, 11, 50, 19, 46, 112, 114, 111, 116, 111, 46, 65, 102, 102, 105, 110, 105, 116, 121, 73, 110, 102, 111, 82, 4, 73, 110, 102, 111, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 2, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 76, 10, 21, 71, 109, 83, 84, 67, 108, 101, 97, 114, 65, 108, 108, 83, 116, 97, 114, 84, 111, 119, 101, 114, 18, 16, 10, 3, 73, 100, 115, 24, 1, 32, 3, 40, 13, 82, 3, 73, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 140, 1, 10, 15, 83, 84, 65, 100, 100, 84, 101, 97, 109, 69, 120, 112, 78, 116, 102, 18, 20, 10, 5, 76, 101, 118, 101, 108, 24, 1, 32, 1, 40, 13, 82, 5, 76, 101, 118, 101, 108, 18, 16, 10, 3, 69, 120, 112, 24, 2, 32, 1, 40, 13, 82, 3, 69, 120, 112, 18, 46, 10, 5, 67, 97, 115, 101, 115, 24, 3, 32, 3, 40, 11, 50, 24, 46, 112, 114, 111, 116, 111, 46, 83, 116, 97, 114, 84, 111, 119, 101, 114, 82, 111, 111, 109, 67, 97, 115, 101, 82, 5, 67, 97, 115, 101, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 181, 1, 10, 27, 71, 109, 67, 108, 101, 97, 114, 65, 108, 108, 69, 113, 117, 105, 112, 109, 101, 110, 116, 73, 110, 115, 116, 97, 110, 99, 101, 18, 72, 10, 18, 69, 113, 117, 105, 112, 109, 101, 110, 116, 73, 110, 115, 116, 97, 110, 99, 101, 115, 24, 1, 32, 3, 40, 11, 50, 24, 46, 112, 114, 111, 116, 111, 46, 69, 113, 117, 105, 112, 109, 101, 110, 116, 73, 110, 115, 116, 97, 110, 99, 101, 82, 18, 69, 113, 117, 105, 112, 109, 101, 110, 116, 73, 110, 115, 116, 97, 110, 99, 101, 115, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 2, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 113, 10, 23, 71, 109, 65, 108, 108, 73, 110, 102, 105, 110, 105, 116, 121, 84, 111, 119, 101, 114, 73, 110, 102, 111, 115, 18, 51, 10, 5, 73, 110, 102, 111, 115, 24, 1, 32, 3, 40, 11, 50, 29, 46, 112, 114, 111, 116, 111, 46, 73, 110, 102, 105, 110, 105, 116, 121, 84, 111, 119, 101, 114, 76, 101, 118, 101, 108, 73, 110, 102, 111, 82, 5, 73, 110, 102, 111, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 157, 1, 10, 7, 71, 109, 83, 116, 111, 114, 121, 18, 28, 10, 9, 69, 118, 105, 100, 101, 110, 99, 101, 115, 24, 1, 32, 3, 40, 13, 82, 9, 69, 118, 105, 100, 101, 110, 99, 101, 115, 18, 38, 10, 7, 83, 116, 111, 114, 105, 101, 115, 24, 2, 32, 3, 40, 11, 50, 12, 46, 112, 114, 111, 116, 111, 46, 83, 116, 111, 114, 121, 82, 7, 83, 116, 111, 114, 105, 101, 115, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 3, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 77, 10, 20, 71, 109, 72, 97, 114, 109, 111, 110, 121, 83, 107, 105, 108, 108, 78, 111, 116, 105, 102, 121, 18, 18, 10, 4, 76, 105, 115, 116, 24, 1, 32, 3, 40, 13, 82, 4, 76, 105, 115, 116, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 85, 10, 24, 71, 109, 84, 111, 119, 101, 114, 71, 114, 111, 119, 116, 104, 78, 111, 100, 101, 115, 78, 111, 116, 105, 102, 121, 18, 22, 10, 6, 68, 101, 116, 97, 105, 108, 24, 1, 32, 3, 40, 13, 82, 6, 68, 101, 116, 97, 105, 108, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 133, 1, 10, 14, 71, 109, 67, 104, 97, 114, 85, 112, 78, 111, 116, 105, 102, 121, 18, 31, 10, 4, 67, 104, 97, 114, 24, 1, 32, 1, 40, 11, 50, 11, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 114, 82, 4, 67, 104, 97, 114, 18, 47, 10, 8, 72, 97, 110, 100, 98, 111, 111, 107, 24, 2, 32, 3, 40, 11, 50, 19, 46, 112, 114, 111, 116, 111, 46, 72, 97, 110, 100, 98, 111, 111, 107, 73, 110, 102, 111, 82, 8, 72, 97, 110, 100, 98, 111, 111, 107, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 155, 1, 10, 25, 112, 104, 111, 110, 101, 95, 99, 111, 110, 116, 97, 99, 116, 115, 95, 105, 110, 102, 111, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 95, 10, 21, 80, 104, 111, 110, 101, 67, 111, 110, 116, 97, 99, 116, 115, 73, 110, 102, 111, 82, 101, 115, 112, 18, 35, 10, 4, 76, 105, 115, 116, 24, 1, 32, 3, 40, 11, 50, 15, 46, 112, 114, 111, 116, 111, 46, 67, 111, 110, 116, 97, 99, 116, 115, 82, 4, 76, 105, 115, 116, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 216, 1, 10, 27, 112, 104, 111, 110, 101, 95, 99, 111, 110, 116, 97, 99, 116, 115, 95, 114, 101, 112, 111, 114, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 153, 1, 10, 22, 80, 104, 111, 110, 101, 67, 111, 110, 116, 97, 99, 116, 115, 82, 101, 112, 111, 114, 116, 82, 101, 113, 18, 22, 10, 6, 67, 104, 97, 116, 73, 100, 24, 1, 32, 1, 40, 13, 82, 6, 67, 104, 97, 116, 73, 100, 18, 24, 10, 7, 79, 112, 116, 105, 111, 110, 115, 24, 2, 32, 3, 40, 13, 82, 7, 79, 112, 116, 105, 111, 110, 115, 18, 24, 10, 7, 80, 114, 111, 99, 101, 115, 115, 24, 3, 32, 1, 40, 13, 82, 7, 80, 114, 111, 99, 101, 115, 115, 18, 16, 10, 3, 69, 110, 100, 24, 4, 32, 1, 40, 8, 82, 3, 69, 110, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 125, 10, 18, 112, 108, 97, 121, 101, 114, 95, 98, 111, 97, 114, 100, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 72, 10, 17, 80, 108, 97, 121, 101, 114, 66, 111, 97, 114, 100, 83, 101, 116, 82, 101, 113, 18, 16, 10, 3, 73, 100, 115, 24, 1, 32, 3, 40, 13, 82, 3, 73, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 139, 1, 10, 23, 112, 108, 97, 121, 101, 114, 95, 99, 104, 97, 114, 115, 95, 115, 104, 111, 119, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 81, 10, 18, 80, 108, 97, 121, 101, 114, 67, 104, 97, 114, 115, 83, 104, 111, 119, 82, 101, 113, 18, 24, 10, 7, 67, 104, 97, 114, 73, 100, 115, 24, 1, 32, 3, 40, 13, 82, 7, 67, 104, 97, 114, 73, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 158, 18, 10, 17, 112, 108, 97, 121, 101, 114, 95, 100, 97, 116, 97, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 192, 13, 10, 10, 80, 108, 97, 121, 101, 114, 73, 110, 102, 111, 18, 32, 10, 3, 65, 99, 99, 24, 1, 32, 1, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 65, 99, 99, 73, 110, 102, 111, 82, 3, 65, 99, 99, 18, 28, 10, 3, 82, 101, 115, 24, 2, 32, 3, 40, 11, 50, 10, 46, 112, 114, 111, 116, 111, 46, 82, 101, 115, 82, 3, 82, 101, 115, 18, 33, 10, 5, 73, 116, 101, 109, 115, 24, 3, 32, 3, 40, 11, 50, 11, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 82, 5, 73, 116, 101, 109, 115, 18, 33, 10, 5, 67, 104, 97, 114, 115, 24, 4, 32, 3, 40, 11, 50, 11, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 114, 82, 5, 67, 104, 97, 114, 115, 18, 51, 10, 9, 70, 111, 114, 109, 97, 116, 105, 111, 110, 24, 5, 32, 1, 40, 11, 50, 21, 46, 112, 114, 111, 116, 111, 46, 84, 111, 119, 101, 114, 70, 111, 114, 109, 97, 116, 105, 111, 110, 82, 9, 70, 111, 114, 109, 97, 116, 105, 111, 110, 18, 48, 10, 19, 83, 116, 97, 114, 84, 111, 119, 101, 114, 82, 97, 110, 107, 84, 105, 99, 107, 101, 116, 24, 6, 32, 1, 40, 13, 82, 19, 83, 116, 97, 114, 84, 111, 119, 101, 114, 82, 97, 110, 107, 84, 105, 99, 107, 101, 116, 18, 41, 10, 6, 69, 110, 101, 114, 103, 121, 24, 7, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 69, 110, 101, 114, 103, 121, 73, 110, 102, 111, 82, 6, 69, 110, 101, 114, 103, 121, 18, 53, 10, 10, 87, 111, 114, 108, 100, 67, 108, 97, 115, 115, 24, 8, 32, 1, 40, 11, 50, 21, 46, 112, 114, 111, 116, 111, 46, 87, 111, 114, 108, 100, 67, 108, 97, 115, 115, 73, 110, 102, 111, 82, 10, 87, 111, 114, 108, 100, 67, 108, 97, 115, 115, 18, 38, 10, 5, 65, 103, 101, 110, 116, 24, 9, 32, 1, 40, 11, 50, 16, 46, 112, 114, 111, 116, 111, 46, 65, 103, 101, 110, 116, 68, 97, 116, 97, 82, 5, 65, 103, 101, 110, 116, 18, 34, 10, 12, 82, 103, 108, 80, 97, 115, 115, 101, 100, 73, 100, 115, 24, 10, 32, 3, 40, 13, 82, 12, 82, 103, 108, 80, 97, 115, 115, 101, 100, 73, 100, 115, 18, 52, 10, 10, 69, 113, 117, 105, 112, 109, 101, 110, 116, 115, 24, 11, 32, 3, 40, 11, 50, 20, 46, 112, 114, 111, 116, 111, 46, 69, 113, 117, 105, 112, 109, 101, 110, 116, 73, 110, 102, 111, 82, 10, 69, 113, 117, 105, 112, 109, 101, 110, 116, 115, 18, 66, 10, 16, 82, 101, 103, 105, 111, 110, 66, 111, 115, 115, 76, 101, 118, 101, 108, 115, 24, 12, 32, 3, 40, 11, 50, 22, 46, 112, 114, 111, 116, 111, 46, 82, 101, 103, 105, 111, 110, 66, 111, 115, 115, 76, 101, 118, 101, 108, 82, 16, 82, 101, 103, 105, 111, 110, 66, 111, 115, 115, 76, 101, 118, 101, 108, 115, 18, 37, 10, 6, 81, 117, 101, 115, 116, 115, 24, 13, 32, 1, 40, 11, 50, 13, 46, 112, 114, 111, 116, 111, 46, 81, 117, 101, 115, 116, 115, 82, 6, 81, 117, 101, 115, 116, 115, 18, 38, 10, 5, 83, 116, 97, 116, 101, 24, 14, 32, 1, 40, 11, 50, 16, 46, 112, 114, 111, 116, 111, 46, 83, 116, 97, 116, 101, 73, 110, 102, 111, 82, 5, 83, 116, 97, 116, 101, 18, 32, 10, 11, 83, 101, 110, 100, 71, 105, 102, 116, 67, 110, 116, 24, 15, 32, 1, 40, 13, 82, 11, 83, 101, 110, 100, 71, 105, 102, 116, 67, 110, 116, 18, 20, 10, 5, 66, 111, 97, 114, 100, 24, 16, 32, 3, 40, 13, 82, 5, 66, 111, 97, 114, 100, 18, 36, 10, 13, 68, 97, 116, 105, 110, 103, 67, 104, 97, 114, 73, 100, 115, 24, 17, 32, 3, 40, 13, 82, 13, 68, 97, 116, 105, 110, 103, 67, 104, 97, 114, 73, 100, 115, 18, 34, 10, 12, 65, 99, 104, 105, 101, 118, 101, 109, 101, 110, 116, 115, 24, 18, 32, 1, 40, 12, 82, 12, 65, 99, 104, 105, 101, 118, 101, 109, 101, 110, 116, 115, 18, 47, 10, 8, 72, 97, 110, 100, 98, 111, 111, 107, 24, 19, 32, 3, 40, 11, 50, 19, 46, 112, 114, 111, 116, 111, 46, 72, 97, 110, 100, 98, 111, 111, 107, 73, 110, 102, 111, 82, 8, 72, 97, 110, 100, 98, 111, 111, 107, 18, 32, 10, 11, 83, 105, 103, 110, 105, 110, 73, 110, 100, 101, 120, 24, 20, 32, 1, 40, 13, 82, 11, 83, 105, 103, 110, 105, 110, 73, 110, 100, 101, 120, 18, 36, 10, 6, 84, 105, 116, 108, 101, 115, 24, 21, 32, 3, 40, 11, 50, 12, 46, 112, 114, 111, 116, 111, 46, 84, 105, 116, 108, 101, 82, 6, 84, 105, 116, 108, 101, 115, 18, 60, 10, 14, 68, 97, 105, 108, 121, 73, 110, 115, 116, 97, 110, 99, 101, 115, 24, 22, 32, 3, 40, 11, 50, 20, 46, 112, 114, 111, 116, 111, 46, 68, 97, 105, 108, 121, 73, 110, 115, 116, 97, 110, 99, 101, 82, 14, 68, 97, 105, 108, 121, 73, 110, 115, 116, 97, 110, 99, 101, 115, 18, 56, 10, 12, 68, 105, 99, 116, 105, 111, 110, 97, 114, 105, 101, 115, 24, 23, 32, 3, 40, 11, 50, 20, 46, 112, 114, 111, 116, 111, 46, 68, 105, 99, 116, 105, 111, 110, 97, 114, 121, 84, 97, 98, 82, 12, 68, 105, 99, 116, 105, 111, 110, 97, 114, 105, 101, 115, 18, 47, 10, 10, 65, 99, 116, 105, 118, 105, 116, 105, 101, 115, 24, 24, 32, 3, 40, 11, 50, 15, 46, 112, 114, 111, 116, 111, 46, 65, 99, 116, 105, 118, 105, 116, 121, 82, 10, 65, 99, 116, 105, 118, 105, 116, 105, 101, 115, 18, 38, 10, 5, 80, 104, 111, 110, 101, 24, 25, 32, 1, 40, 11, 50, 16, 46, 112, 114, 111, 116, 111, 46, 80, 104, 111, 110, 101, 73, 110, 102, 111, 82, 5, 80, 104, 111, 110, 101, 18, 40, 10, 15, 84, 97, 108, 101, 110, 116, 82, 101, 115, 101, 116, 84, 105, 109, 101, 24, 26, 32, 1, 40, 3, 82, 15, 84, 97, 108, 101, 110, 116, 82, 101, 115, 101, 116, 84, 105, 109, 101, 18, 50, 10, 20, 69, 113, 117, 105, 112, 109, 101, 110, 116, 68, 111, 117, 98, 108, 101, 67, 111, 117, 110, 116, 24, 27, 32, 1, 40, 13, 82, 20, 69, 113, 117, 105, 112, 109, 101, 110, 116, 68, 111, 117, 98, 108, 101, 67, 111, 117, 110, 116, 18, 33, 10, 5, 68, 105, 115, 99, 115, 24, 28, 32, 3, 40, 11, 50, 11, 46, 112, 114, 111, 116, 111, 46, 68, 105, 115, 99, 82, 5, 68, 105, 115, 99, 115, 18, 72, 10, 18, 69, 113, 117, 105, 112, 109, 101, 110, 116, 73, 110, 115, 116, 97, 110, 99, 101, 115, 24, 29, 32, 3, 40, 11, 50, 24, 46, 112, 114, 111, 116, 111, 46, 69, 113, 117, 105, 112, 109, 101, 110, 116, 73, 110, 115, 116, 97, 110, 99, 101, 82, 18, 69, 113, 117, 105, 112, 109, 101, 110, 116, 73, 110, 115, 116, 97, 110, 99, 101, 115, 18, 38, 10, 5, 83, 116, 111, 114, 121, 24, 30, 32, 1, 40, 11, 50, 16, 46, 112, 114, 111, 116, 111, 46, 83, 116, 111, 114, 121, 73, 110, 102, 111, 82, 5, 83, 116, 111, 114, 121, 18, 86, 10, 21, 86, 97, 109, 112, 105, 114, 101, 83, 117, 114, 118, 105, 118, 111, 114, 82, 101, 99, 111, 114, 100, 24, 31, 32, 1, 40, 11, 50, 32, 46, 112, 114, 111, 116, 111, 46, 86, 97, 109, 112, 105, 114, 101, 83, 117, 114, 118, 105, 118, 111, 114, 82, 101, 99, 111, 114, 100, 73, 110, 102, 111, 82, 21, 86, 97, 109, 112, 105, 114, 101, 83, 117, 114, 118, 105, 118, 111, 114, 82, 101, 99, 111, 114, 100, 18, 38, 10, 14, 68, 97, 105, 108, 121, 65, 99, 116, 105, 118, 101, 73, 100, 115, 24, 32, 32, 3, 40, 13, 82, 14, 68, 97, 105, 108, 121, 65, 99, 116, 105, 118, 101, 73, 100, 115, 18, 48, 10, 19, 84, 111, 117, 114, 71, 117, 105, 100, 101, 81, 117, 101, 115, 116, 71, 114, 111, 117, 112, 24, 33, 32, 1, 40, 13, 82, 19, 84, 111, 117, 114, 71, 117, 105, 100, 101, 81, 117, 101, 115, 116, 71, 114, 111, 117, 112, 18, 28, 10, 9, 72, 111, 110, 111, 114, 76, 105, 115, 116, 24, 123, 32, 3, 40, 13, 82, 9, 72, 111, 110, 111, 114, 76, 105, 115, 116, 18, 40, 10, 6, 72, 111, 110, 111, 114, 115, 24, 124, 32, 3, 40, 11, 50, 16, 46, 112, 114, 111, 116, 111, 46, 72, 111, 110, 111, 114, 73, 110, 102, 111, 82, 6, 72, 111, 110, 111, 114, 115, 18, 52, 10, 21, 68, 97, 105, 108, 121, 83, 104, 111, 112, 82, 101, 119, 97, 114, 100, 83, 116, 97, 116, 117, 115, 24, 125, 32, 1, 40, 8, 82, 21, 68, 97, 105, 108, 121, 83, 104, 111, 112, 82, 101, 119, 97, 114, 100, 83, 116, 97, 116, 117, 115, 18, 32, 10, 11, 84, 111, 119, 101, 114, 84, 105, 99, 107, 101, 116, 24, 126, 32, 1, 40, 13, 82, 11, 84, 111, 119, 101, 114, 84, 105, 99, 107, 101, 116, 18, 26, 10, 8, 83, 101, 114, 118, 101, 114, 84, 115, 24, 127, 32, 1, 40, 3, 82, 8, 83, 101, 114, 118, 101, 114, 84, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 120, 10, 9, 80, 104, 111, 110, 101, 73, 110, 102, 111, 18, 30, 10, 10, 78, 101, 119, 77, 101, 115, 115, 97, 103, 101, 24, 1, 32, 1, 40, 13, 82, 10, 78, 101, 119, 77, 101, 115, 115, 97, 103, 101, 18, 40, 10, 15, 80, 114, 111, 103, 114, 101, 115, 115, 77, 101, 115, 115, 97, 103, 101, 24, 2, 32, 1, 40, 13, 82, 15, 80, 114, 111, 103, 114, 101, 115, 115, 77, 101, 115, 115, 97, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 98, 10, 15, 68, 105, 99, 116, 105, 111, 110, 97, 114, 121, 69, 110, 116, 114, 121, 18, 20, 10, 5, 73, 110, 100, 101, 120, 24, 1, 32, 1, 40, 13, 82, 5, 73, 110, 100, 101, 120, 18, 22, 10, 6, 83, 116, 97, 116, 117, 115, 24, 2, 32, 1, 40, 13, 82, 6, 83, 116, 97, 116, 117, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 122, 10, 13, 68, 105, 99, 116, 105, 111, 110, 97, 114, 121, 84, 97, 98, 18, 20, 10, 5, 84, 97, 98, 73, 100, 24, 1, 32, 1, 40, 13, 82, 5, 84, 97, 98, 73, 100, 18, 48, 10, 7, 69, 110, 116, 114, 105, 101, 115, 24, 2, 32, 3, 40, 11, 50, 22, 46, 112, 114, 111, 116, 111, 46, 68, 105, 99, 116, 105, 111, 110, 97, 114, 121, 69, 110, 116, 114, 121, 82, 7, 69, 110, 116, 114, 105, 101, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 108, 10, 10, 69, 110, 101, 114, 103, 121, 73, 110, 102, 111, 18, 37, 10, 6, 69, 110, 101, 114, 103, 121, 24, 1, 32, 1, 40, 11, 50, 13, 46, 112, 114, 111, 116, 111, 46, 69, 110, 101, 114, 103, 121, 82, 6, 69, 110, 101, 114, 103, 121, 18, 20, 10, 5, 67, 111, 117, 110, 116, 24, 2, 32, 1, 40, 13, 82, 5, 67, 111, 117, 110, 116, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 95, 10, 14, 87, 111, 114, 108, 100, 67, 108, 97, 115, 115, 73, 110, 102, 111, 18, 16, 10, 3, 67, 117, 114, 24, 1, 32, 1, 40, 13, 82, 3, 67, 117, 114, 18, 24, 10, 7, 76, 97, 115, 116, 69, 120, 112, 24, 2, 32, 1, 40, 5, 82, 7, 76, 97, 115, 116, 69, 120, 112, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 135, 1, 10, 20, 112, 108, 97, 121, 101, 114, 95, 100, 101, 115, 116, 114, 111, 121, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 80, 10, 13, 80, 108, 97, 121, 101, 114, 68, 101, 115, 116, 114, 111, 121, 18, 28, 10, 9, 78, 111, 116, 105, 102, 121, 85, 114, 108, 24, 1, 32, 1, 40, 9, 82, 9, 78, 111, 116, 105, 102, 121, 85, 114, 108, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 50, 10, 17, 112, 108, 97, 121, 101, 114, 95, 101, 120, 105, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 164, 1, 10, 22, 112, 108, 97, 121, 101, 114, 95, 102, 111, 114, 109, 97, 116, 105, 111, 110, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 107, 10, 18, 80, 108, 97, 121, 101, 114, 70, 111, 114, 109, 97, 116, 105, 111, 110, 82, 101, 113, 18, 50, 10, 9, 70, 111, 114, 109, 97, 116, 105, 111, 110, 24, 1, 32, 1, 40, 11, 50, 20, 46, 112, 114, 111, 116, 111, 46, 70, 111, 114, 109, 97, 116, 105, 111, 110, 73, 110, 102, 111, 82, 9, 70, 111, 114, 109, 97, 116, 105, 111, 110, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 57, 10, 24, 112, 108, 97, 121, 101, 114, 95, 103, 101, 110, 100, 101, 114, 95, 101, 100, 105, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 145, 1, 10, 25, 112, 108, 97, 121, 101, 114, 95, 104, 101, 97, 100, 105, 99, 111, 110, 95, 115, 101, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 85, 10, 20, 80, 108, 97, 121, 101, 114, 72, 101, 97, 100, 73, 99, 111, 110, 83, 101, 116, 82, 101, 113, 18, 26, 10, 8, 72, 101, 97, 100, 73, 99, 111, 110, 24, 1, 32, 1, 40, 13, 82, 8, 72, 101, 97, 100, 73, 99, 111, 110, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 133, 1, 10, 23, 112, 108, 97, 121, 101, 114, 95, 104, 111, 110, 111, 114, 95, 101, 100, 105, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 75, 10, 18, 80, 108, 97, 121, 101, 114, 72, 111, 110, 111, 114, 69, 100, 105, 116, 82, 101, 113, 18, 18, 10, 4, 76, 105, 115, 116, 24, 1, 32, 3, 40, 13, 82, 4, 76, 105, 115, 116, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 51, 10, 18, 112, 108, 97, 121, 101, 114, 95, 108, 101, 97, 114, 110, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 172, 5, 10, 18, 112, 108, 97, 121, 101, 114, 95, 108, 111, 103, 105, 110, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 189, 2, 10, 8, 76, 111, 103, 105, 110, 82, 101, 113, 18, 42, 10, 7, 65, 99, 99, 111, 117, 110, 116, 24, 1, 32, 1, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 82, 101, 103, 117, 108, 97, 114, 72, 0, 82, 7, 65, 99, 99, 111, 117, 110, 116, 18, 22, 10, 5, 84, 111, 107, 101, 110, 24, 2, 32, 1, 40, 9, 72, 0, 82, 5, 84, 111, 107, 101, 110, 18, 45, 10, 8, 79, 102, 102, 105, 99, 105, 97, 108, 24, 3, 32, 1, 40, 11, 50, 15, 46, 112, 114, 111, 116, 111, 46, 79, 102, 102, 105, 99, 105, 97, 108, 72, 0, 82, 8, 79, 102, 102, 105, 99, 105, 97, 108, 18, 43, 10, 8, 80, 108, 97, 116, 102, 111, 114, 109, 24, 11, 32, 1, 40, 14, 50, 15, 46, 112, 114, 111, 116, 111, 46, 80, 108, 97, 116, 102, 111, 114, 109, 82, 8, 80, 108, 97, 116, 102, 111, 114, 109, 18, 26, 10, 8, 76, 97, 110, 103, 117, 97, 103, 101, 24, 12, 32, 1, 40, 9, 82, 8, 76, 97, 110, 103, 117, 97, 103, 101, 18, 24, 10, 7, 67, 104, 97, 110, 110, 101, 108, 24, 13, 32, 1, 40, 9, 82, 7, 67, 104, 97, 110, 110, 101, 108, 18, 22, 10, 6, 68, 101, 118, 105, 99, 101, 24, 14, 32, 1, 40, 9, 82, 6, 68, 101, 118, 105, 99, 101, 18, 24, 10, 7, 86, 101, 114, 115, 105, 111, 110, 24, 15, 32, 1, 40, 5, 82, 7, 86, 101, 114, 115, 105, 111, 110, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 66, 6, 10, 4, 65, 117, 116, 104, 34, 85, 10, 8, 79, 102, 102, 105, 99, 105, 97, 108, 18, 16, 10, 3, 85, 105, 100, 24, 1, 32, 1, 40, 4, 82, 3, 85, 105, 100, 18, 20, 10, 5, 84, 111, 107, 101, 110, 24, 2, 32, 1, 40, 9, 82, 5, 84, 111, 107, 101, 110, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 84, 10, 7, 82, 101, 103, 117, 108, 97, 114, 18, 18, 10, 4, 78, 97, 109, 101, 24, 1, 32, 1, 40, 9, 82, 4, 78, 97, 109, 101, 18, 18, 10, 4, 80, 97, 115, 115, 24, 2, 32, 1, 40, 9, 82, 4, 80, 97, 115, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 68, 10, 9, 76, 111, 103, 105, 110, 82, 101, 115, 112, 18, 20, 10, 5, 84, 111, 107, 101, 110, 24, 1, 32, 1, 40, 9, 82, 5, 84, 111, 107, 101, 110, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 42, 68, 10, 8, 80, 108, 97, 116, 102, 111, 114, 109, 18, 11, 10, 7, 85, 110, 107, 110, 111, 119, 110, 16, 0, 18, 7, 10, 3, 73, 111, 115, 16, 1, 18, 11, 10, 7, 65, 110, 100, 114, 111, 105, 100, 16, 2, 18, 6, 10, 2, 80, 67, 16, 3, 18, 13, 10, 9, 72, 97, 114, 109, 111, 110, 121, 111, 115, 16, 4, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 214, 1, 10, 22, 112, 108, 97, 121, 101, 114, 95, 110, 97, 109, 101, 95, 101, 100, 105, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 74, 10, 17, 80, 108, 97, 121, 101, 114, 78, 97, 109, 101, 69, 100, 105, 116, 82, 101, 113, 18, 18, 10, 4, 78, 97, 109, 101, 24, 1, 32, 1, 40, 9, 82, 4, 78, 97, 109, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 81, 10, 18, 80, 108, 97, 121, 101, 114, 78, 97, 109, 101, 69, 100, 105, 116, 82, 101, 115, 112, 18, 24, 10, 7, 72, 97, 115, 104, 116, 97, 103, 24, 1, 32, 1, 40, 13, 82, 7, 72, 97, 115, 104, 116, 97, 103, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 164, 1, 10, 17, 112, 108, 97, 121, 101, 114, 95, 112, 105, 110, 103, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 41, 10, 4, 80, 105, 110, 103, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 69, 10, 4, 80, 111, 110, 103, 18, 26, 10, 8, 83, 101, 114, 118, 101, 114, 84, 115, 24, 1, 32, 1, 40, 3, 82, 8, 83, 101, 114, 118, 101, 114, 84, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 149, 1, 10, 16, 112, 108, 97, 121, 101, 114, 95, 114, 101, 103, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 98, 10, 9, 80, 108, 97, 121, 101, 114, 82, 101, 103, 18, 26, 10, 8, 78, 105, 99, 107, 110, 97, 109, 101, 24, 1, 32, 1, 40, 9, 82, 8, 78, 105, 99, 107, 110, 97, 109, 101, 18, 22, 10, 6, 71, 101, 110, 100, 101, 114, 24, 2, 32, 1, 40, 8, 82, 6, 71, 101, 110, 100, 101, 114, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 151, 1, 10, 27, 112, 108, 97, 121, 101, 114, 95, 115, 105, 103, 110, 97, 116, 117, 114, 101, 95, 101, 100, 105, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 89, 10, 22, 80, 108, 97, 121, 101, 114, 83, 105, 103, 110, 97, 116, 117, 114, 101, 69, 100, 105, 116, 82, 101, 113, 18, 28, 10, 9, 83, 105, 103, 110, 97, 116, 117, 114, 101, 24, 1, 32, 1, 40, 9, 82, 9, 83, 105, 103, 110, 97, 116, 117, 114, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 135, 1, 10, 22, 112, 108, 97, 121, 101, 114, 95, 115, 107, 105, 110, 95, 115, 104, 111, 119, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 78, 10, 17, 80, 108, 97, 121, 101, 114, 83, 107, 105, 110, 83, 104, 111, 119, 82, 101, 113, 18, 22, 10, 6, 83, 107, 105, 110, 73, 100, 24, 1, 32, 1, 40, 13, 82, 6, 83, 107, 105, 110, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 251, 1, 10, 19, 112, 108, 97, 121, 101, 114, 95, 115, 117, 114, 118, 101, 121, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 80, 10, 15, 80, 108, 97, 121, 101, 114, 83, 117, 114, 118, 101, 121, 82, 101, 113, 18, 26, 10, 8, 83, 117, 114, 118, 101, 121, 73, 100, 24, 1, 32, 1, 40, 3, 82, 8, 83, 117, 114, 118, 101, 121, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 115, 10, 16, 80, 108, 97, 121, 101, 114, 83, 117, 114, 118, 101, 121, 82, 101, 115, 112, 18, 30, 10, 10, 65, 99, 116, 105, 118, 105, 116, 121, 73, 68, 24, 1, 32, 1, 40, 9, 82, 10, 65, 99, 116, 105, 118, 105, 116, 121, 73, 68, 18, 28, 10, 9, 78, 111, 116, 105, 102, 121, 85, 114, 108, 24, 2, 32, 1, 40, 9, 82, 9, 78, 111, 116, 105, 102, 121, 85, 114, 108, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 181, 1, 10, 23, 112, 108, 97, 121, 101, 114, 95, 116, 105, 116, 108, 101, 95, 101, 100, 105, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 123, 10, 18, 80, 108, 97, 121, 101, 114, 84, 105, 116, 108, 101, 69, 100, 105, 116, 82, 101, 113, 18, 32, 10, 11, 84, 105, 116, 108, 101, 80, 114, 101, 102, 105, 120, 24, 1, 32, 1, 40, 13, 82, 11, 84, 105, 116, 108, 101, 80, 114, 101, 102, 105, 120, 18, 32, 10, 11, 84, 105, 116, 108, 101, 83, 117, 102, 102, 105, 120, 24, 2, 32, 1, 40, 13, 82, 11, 84, 105, 116, 108, 101, 83, 117, 102, 102, 105, 120, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 72, 10, 39, 112, 108, 97, 121, 101, 114, 95, 119, 111, 114, 108, 100, 95, 99, 108, 97, 115, 115, 95, 114, 101, 119, 97, 114, 100, 95, 114, 101, 99, 101, 105, 118, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 58, 10, 25, 112, 108, 111, 116, 95, 114, 101, 119, 97, 114, 100, 95, 114, 101, 99, 101, 105, 118, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 125, 10, 15, 112, 117, 98, 105, 108, 99, 95, 103, 109, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 75, 10, 5, 67, 104, 97, 114, 115, 18, 31, 10, 4, 76, 105, 115, 116, 24, 1, 32, 3, 40, 11, 50, 11, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 114, 82, 4, 76, 105, 115, 116, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 218, 1, 10, 39, 113, 117, 101, 115, 116, 95, 100, 97, 105, 108, 121, 95, 97, 99, 116, 105, 118, 101, 95, 114, 101, 119, 97, 114, 100, 95, 114, 101, 99, 101, 118, 105, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 143, 1, 10, 33, 81, 117, 101, 115, 116, 68, 97, 105, 108, 121, 65, 99, 116, 105, 118, 101, 82, 101, 119, 97, 114, 100, 82, 101, 99, 101, 105, 118, 101, 82, 101, 115, 112, 18, 28, 10, 9, 65, 99, 116, 105, 118, 101, 73, 100, 115, 24, 1, 32, 3, 40, 13, 82, 9, 65, 99, 116, 105, 118, 101, 73, 100, 115, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 2, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 65, 10, 32, 113, 117, 101, 115, 116, 95, 100, 97, 105, 108, 121, 95, 114, 101, 119, 97, 114, 100, 95, 114, 101, 99, 101, 118, 105, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 219, 1, 10, 37, 113, 117, 101, 115, 116, 95, 116, 111, 117, 114, 95, 103, 117, 105, 100, 101, 95, 114, 101, 119, 97, 114, 100, 95, 114, 101, 99, 101, 105, 118, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 146, 1, 10, 24, 84, 111, 117, 114, 71, 117, 105, 100, 101, 81, 117, 101, 115, 116, 82, 101, 119, 97, 114, 100, 82, 101, 115, 112, 18, 40, 10, 7, 82, 101, 119, 97, 114, 100, 115, 24, 1, 32, 3, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 84, 112, 108, 82, 7, 82, 101, 119, 97, 114, 100, 115, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 15, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 231, 1, 10, 44, 113, 117, 101, 115, 116, 95, 116, 111, 119, 101, 114, 95, 103, 117, 105, 100, 101, 95, 103, 114, 111, 117, 112, 95, 114, 101, 119, 97, 114, 100, 95, 114, 101, 99, 101, 105, 118, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 151, 1, 10, 29, 84, 111, 117, 114, 71, 117, 105, 100, 101, 81, 117, 101, 115, 116, 71, 114, 111, 117, 112, 82, 101, 119, 97, 114, 100, 82, 101, 115, 112, 18, 40, 10, 7, 82, 101, 119, 97, 114, 100, 115, 24, 1, 32, 3, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 84, 112, 108, 82, 7, 82, 101, 119, 97, 114, 100, 115, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 15, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 65, 10, 32, 113, 117, 101, 115, 116, 95, 116, 111, 119, 101, 114, 95, 114, 101, 119, 97, 114, 100, 95, 114, 101, 99, 101, 118, 105, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 185, 1, 10, 17, 114, 101, 100, 101, 101, 109, 95, 99, 111, 100, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 132, 1, 10, 14, 82, 101, 100, 101, 101, 109, 67, 111, 100, 101, 82, 101, 115, 112, 18, 36, 10, 5, 73, 116, 101, 109, 115, 24, 1, 32, 3, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 84, 112, 108, 82, 5, 73, 116, 101, 109, 115, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 2, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 166, 1, 10, 29, 114, 101, 103, 105, 111, 110, 95, 98, 111, 115, 115, 95, 108, 101, 118, 101, 108, 95, 97, 112, 112, 108, 121, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 102, 10, 23, 82, 101, 103, 105, 111, 110, 66, 111, 115, 115, 76, 101, 118, 101, 108, 65, 112, 112, 108, 121, 82, 101, 113, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 24, 10, 7, 66, 117, 105, 108, 100, 73, 100, 24, 2, 32, 1, 40, 4, 82, 7, 66, 117, 105, 108, 100, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 185, 4, 10, 30, 114, 101, 103, 105, 111, 110, 95, 98, 111, 115, 115, 95, 108, 101, 118, 101, 108, 95, 115, 101, 116, 116, 108, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 120, 10, 24, 82, 101, 103, 105, 111, 110, 66, 111, 115, 115, 76, 101, 118, 101, 108, 83, 101, 116, 116, 108, 101, 82, 101, 113, 18, 18, 10, 4, 83, 116, 97, 114, 24, 1, 32, 1, 40, 13, 82, 4, 83, 116, 97, 114, 18, 37, 10, 6, 69, 118, 101, 110, 116, 115, 24, 15, 32, 1, 40, 11, 50, 13, 46, 112, 114, 111, 116, 111, 46, 69, 118, 101, 110, 116, 115, 82, 6, 69, 118, 101, 110, 116, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 253, 2, 10, 25, 82, 101, 103, 105, 111, 110, 66, 111, 115, 115, 76, 101, 118, 101, 108, 83, 101, 116, 116, 108, 101, 82, 101, 115, 112, 18, 20, 10, 5, 70, 105, 114, 115, 116, 24, 1, 32, 1, 40, 8, 82, 5, 70, 105, 114, 115, 116, 18, 28, 10, 9, 84, 104, 114, 101, 101, 83, 116, 97, 114, 24, 2, 32, 1, 40, 8, 82, 9, 84, 104, 114, 101, 101, 83, 116, 97, 114, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 3, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 46, 10, 10, 65, 119, 97, 114, 100, 73, 116, 101, 109, 115, 24, 4, 32, 3, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 84, 112, 108, 82, 10, 65, 119, 97, 114, 100, 73, 116, 101, 109, 115, 18, 46, 10, 10, 70, 105, 114, 115, 116, 73, 116, 101, 109, 115, 24, 5, 32, 3, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 84, 112, 108, 82, 10, 70, 105, 114, 115, 116, 73, 116, 101, 109, 115, 18, 54, 10, 14, 84, 104, 114, 101, 101, 83, 116, 97, 114, 73, 116, 101, 109, 115, 24, 6, 32, 3, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 84, 112, 108, 82, 14, 84, 104, 114, 101, 101, 83, 116, 97, 114, 73, 116, 101, 109, 115, 18, 16, 10, 3, 69, 120, 112, 24, 7, 32, 1, 40, 13, 82, 3, 69, 120, 112, 18, 52, 10, 13, 83, 117, 114, 112, 114, 105, 115, 101, 73, 116, 101, 109, 115, 24, 8, 32, 3, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 84, 112, 108, 82, 13, 83, 117, 114, 112, 114, 105, 115, 101, 73, 116, 101, 109, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 248, 3, 10, 29, 114, 101, 103, 105, 111, 110, 95, 98, 111, 115, 115, 95, 108, 101, 118, 101, 108, 95, 115, 119, 101, 101, 112, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 137, 1, 10, 23, 82, 101, 103, 105, 111, 110, 66, 111, 115, 115, 76, 101, 118, 101, 108, 83, 119, 101, 101, 112, 82, 101, 113, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 20, 10, 5, 84, 105, 109, 101, 115, 24, 2, 32, 1, 40, 13, 82, 5, 84, 105, 109, 101, 115, 18, 37, 10, 6, 69, 118, 101, 110, 116, 115, 24, 15, 32, 1, 40, 11, 50, 13, 46, 112, 114, 111, 116, 111, 46, 69, 118, 101, 110, 116, 115, 82, 6, 69, 118, 101, 110, 116, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 166, 1, 10, 24, 82, 101, 103, 105, 111, 110, 66, 111, 115, 115, 76, 101, 118, 101, 108, 83, 119, 101, 101, 112, 82, 101, 115, 112, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 1, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 60, 10, 7, 82, 101, 119, 97, 114, 100, 115, 24, 2, 32, 3, 40, 11, 50, 34, 46, 112, 114, 111, 116, 111, 46, 82, 101, 103, 105, 111, 110, 66, 111, 115, 115, 76, 101, 118, 101, 108, 83, 119, 101, 101, 112, 82, 101, 119, 97, 114, 100, 115, 82, 7, 82, 101, 119, 97, 114, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 130, 1, 10, 27, 82, 101, 103, 105, 111, 110, 66, 111, 115, 115, 76, 101, 118, 101, 108, 83, 119, 101, 101, 112, 82, 101, 119, 97, 114, 100, 115, 18, 46, 10, 10, 65, 119, 97, 114, 100, 73, 116, 101, 109, 115, 24, 1, 32, 3, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 84, 112, 108, 82, 10, 65, 119, 97, 114, 100, 73, 116, 101, 109, 115, 18, 16, 10, 3, 69, 120, 112, 24, 2, 32, 1, 40, 13, 82, 3, 69, 120, 112, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 240, 1, 10, 23, 114, 101, 115, 105, 100, 101, 110, 116, 95, 115, 104, 111, 112, 95, 103, 101, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 81, 10, 18, 82, 101, 115, 105, 100, 101, 110, 116, 83, 104, 111, 112, 71, 101, 116, 82, 101, 113, 18, 24, 10, 7, 83, 104, 111, 112, 73, 100, 115, 24, 1, 32, 3, 40, 13, 82, 7, 83, 104, 111, 112, 73, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 99, 10, 19, 82, 101, 115, 105, 100, 101, 110, 116, 83, 104, 111, 112, 71, 101, 116, 82, 101, 115, 112, 18, 41, 10, 5, 83, 104, 111, 112, 115, 24, 1, 32, 3, 40, 11, 50, 19, 46, 112, 114, 111, 116, 111, 46, 82, 101, 115, 105, 100, 101, 110, 116, 83, 104, 111, 112, 82, 5, 83, 104, 111, 112, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 196, 3, 10, 28, 114, 101, 115, 105, 100, 101, 110, 116, 95, 115, 104, 111, 112, 95, 112, 117, 114, 99, 104, 97, 115, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 168, 1, 10, 23, 82, 101, 115, 105, 100, 101, 110, 116, 83, 104, 111, 112, 80, 117, 114, 99, 104, 97, 115, 101, 82, 101, 113, 18, 22, 10, 6, 83, 104, 111, 112, 73, 100, 24, 1, 32, 1, 40, 13, 82, 6, 83, 104, 111, 112, 73, 100, 18, 32, 10, 11, 82, 101, 102, 114, 101, 115, 104, 84, 105, 109, 101, 24, 2, 32, 1, 40, 3, 82, 11, 82, 101, 102, 114, 101, 115, 104, 84, 105, 109, 101, 18, 24, 10, 7, 71, 111, 111, 100, 115, 73, 100, 24, 3, 32, 1, 40, 13, 82, 7, 71, 111, 111, 100, 115, 73, 100, 18, 22, 10, 6, 78, 117, 109, 98, 101, 114, 24, 4, 32, 1, 40, 13, 82, 6, 78, 117, 109, 98, 101, 114, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 217, 1, 10, 24, 82, 101, 115, 105, 100, 101, 110, 116, 83, 104, 111, 112, 80, 117, 114, 99, 104, 97, 115, 101, 82, 101, 115, 112, 18, 28, 10, 9, 73, 115, 82, 101, 102, 114, 101, 115, 104, 24, 1, 32, 1, 40, 8, 82, 9, 73, 115, 82, 101, 102, 114, 101, 115, 104, 18, 39, 10, 4, 83, 104, 111, 112, 24, 2, 32, 1, 40, 11, 50, 19, 46, 112, 114, 111, 116, 111, 46, 82, 101, 115, 105, 100, 101, 110, 116, 83, 104, 111, 112, 82, 4, 83, 104, 111, 112, 18, 40, 10, 15, 80, 117, 114, 99, 104, 97, 115, 101, 100, 78, 117, 109, 98, 101, 114, 24, 3, 32, 1, 40, 13, 82, 15, 80, 117, 114, 99, 104, 97, 115, 101, 100, 78, 117, 109, 98, 101, 114, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 4, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 172, 5, 10, 22, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 95, 97, 112, 112, 108, 121, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 26, 23, 112, 117, 98, 108, 105, 99, 95, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 46, 112, 114, 111, 116, 111, 34, 130, 2, 10, 17, 83, 116, 97, 114, 84, 111, 119, 101, 114, 65, 112, 112, 108, 121, 82, 101, 113, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 32, 10, 11, 70, 111, 114, 109, 97, 116, 105, 111, 110, 73, 100, 24, 2, 32, 1, 40, 13, 82, 11, 70, 111, 114, 109, 97, 116, 105, 111, 110, 73, 100, 18, 22, 10, 6, 67, 104, 97, 114, 72, 112, 24, 3, 32, 1, 40, 13, 82, 6, 67, 104, 97, 114, 72, 112, 18, 20, 10, 5, 77, 97, 112, 73, 100, 24, 4, 32, 1, 40, 13, 82, 5, 77, 97, 112, 73, 100, 18, 24, 10, 7, 80, 97, 114, 97, 109, 73, 100, 24, 5, 32, 1, 40, 13, 82, 7, 80, 97, 114, 97, 109, 73, 100, 18, 26, 10, 8, 77, 97, 112, 80, 97, 114, 97, 109, 24, 6, 32, 1, 40, 9, 82, 8, 77, 97, 112, 80, 97, 114, 97, 109, 18, 30, 10, 10, 77, 97, 112, 84, 97, 98, 108, 101, 73, 100, 24, 7, 32, 1, 40, 13, 82, 10, 77, 97, 112, 84, 97, 98, 108, 101, 73, 100, 18, 20, 10, 5, 83, 119, 101, 101, 112, 24, 15, 32, 1, 40, 8, 82, 5, 83, 119, 101, 101, 112, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 212, 2, 10, 18, 83, 116, 97, 114, 84, 111, 119, 101, 114, 65, 112, 112, 108, 121, 82, 101, 115, 112, 18, 40, 10, 4, 73, 110, 102, 111, 24, 1, 32, 1, 40, 11, 50, 20, 46, 112, 114, 111, 116, 111, 46, 83, 116, 97, 114, 84, 111, 119, 101, 114, 73, 110, 102, 111, 82, 4, 73, 110, 102, 111, 18, 22, 10, 6, 76, 97, 115, 116, 73, 100, 24, 2, 32, 1, 40, 13, 82, 6, 76, 97, 115, 116, 73, 100, 18, 26, 10, 8, 82, 101, 112, 111, 114, 116, 73, 100, 24, 3, 32, 1, 40, 4, 82, 8, 82, 101, 112, 111, 114, 116, 73, 100, 18, 24, 10, 7, 67, 111, 105, 110, 81, 116, 121, 24, 4, 32, 1, 40, 13, 82, 7, 67, 111, 105, 110, 81, 116, 121, 18, 20, 10, 5, 78, 111, 116, 101, 115, 24, 5, 32, 3, 40, 13, 82, 5, 78, 111, 116, 101, 115, 18, 30, 10, 10, 70, 97, 116, 101, 67, 97, 114, 100, 73, 100, 24, 6, 32, 1, 40, 13, 82, 10, 70, 97, 116, 101, 67, 97, 114, 100, 73, 100, 18, 32, 10, 11, 78, 101, 119, 70, 97, 116, 101, 67, 97, 114, 100, 24, 7, 32, 1, 40, 8, 82, 11, 78, 101, 119, 70, 97, 116, 101, 67, 97, 114, 100, 18, 32, 10, 11, 83, 119, 101, 101, 112, 84, 105, 99, 107, 101, 116, 24, 8, 32, 1, 40, 13, 82, 11, 83, 119, 101, 101, 112, 84, 105, 99, 107, 101, 116, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 15, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 138, 2, 10, 40, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 95, 98, 111, 111, 107, 95, 99, 104, 97, 114, 95, 112, 111, 116, 101, 110, 116, 105, 97, 108, 95, 103, 101, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 26, 23, 112, 117, 98, 108, 105, 99, 95, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 46, 112, 114, 111, 116, 111, 34, 163, 1, 10, 29, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 111, 111, 107, 80, 111, 116, 101, 110, 116, 105, 97, 108, 71, 101, 116, 82, 101, 115, 112, 18, 61, 10, 10, 80, 111, 116, 101, 110, 116, 105, 97, 108, 115, 24, 1, 32, 3, 40, 11, 50, 29, 46, 112, 114, 111, 116, 111, 46, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 111, 111, 107, 80, 111, 116, 101, 110, 116, 105, 97, 108, 82, 10, 80, 111, 116, 101, 110, 116, 105, 97, 108, 115, 18, 32, 10, 11, 82, 101, 99, 101, 105, 118, 101, 100, 73, 100, 115, 24, 2, 32, 3, 40, 13, 82, 11, 82, 101, 99, 101, 105, 118, 101, 100, 73, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 80, 1, 98, 6, 112, 114, 111, 116, 111, 51, 10, 213, 1, 10, 31, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 95, 98, 111, 111, 107, 95, 101, 118, 101, 110, 116, 95, 103, 101, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 26, 23, 112, 117, 98, 108, 105, 99, 95, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 46, 112, 114, 111, 116, 111, 34, 120, 10, 25, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 111, 111, 107, 69, 118, 101, 110, 116, 71, 101, 116, 82, 101, 115, 112, 18, 26, 10, 8, 69, 118, 101, 110, 116, 73, 100, 115, 24, 1, 32, 3, 40, 13, 82, 8, 69, 118, 101, 110, 116, 73, 100, 115, 18, 28, 10, 9, 82, 101, 119, 97, 114, 100, 73, 100, 115, 24, 2, 32, 3, 40, 13, 82, 9, 82, 101, 119, 97, 114, 100, 73, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 80, 1, 98, 6, 112, 114, 111, 116, 111, 51, 10, 254, 1, 10, 42, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 95, 98, 111, 111, 107, 95, 101, 118, 101, 110, 116, 95, 114, 101, 119, 97, 114, 100, 95, 114, 101, 99, 101, 105, 118, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 26, 23, 112, 117, 98, 108, 105, 99, 95, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 46, 112, 114, 111, 116, 111, 34, 149, 1, 10, 35, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 111, 111, 107, 69, 118, 101, 110, 116, 82, 101, 119, 97, 114, 100, 82, 101, 99, 101, 105, 118, 101, 82, 101, 115, 112, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 1, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 32, 10, 11, 82, 101, 99, 101, 105, 118, 101, 100, 73, 100, 115, 24, 2, 32, 3, 40, 13, 82, 11, 82, 101, 99, 101, 105, 118, 101, 100, 73, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 80, 1, 98, 6, 112, 114, 111, 116, 111, 51, 10, 243, 1, 10, 46, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 95, 98, 111, 111, 107, 95, 112, 111, 116, 101, 110, 116, 105, 97, 108, 95, 98, 114, 105, 101, 102, 95, 108, 105, 115, 116, 95, 103, 101, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 26, 23, 112, 117, 98, 108, 105, 99, 95, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 46, 112, 114, 111, 116, 111, 34, 134, 1, 10, 35, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 111, 111, 107, 80, 111, 116, 101, 110, 116, 105, 97, 108, 66, 114, 105, 101, 102, 76, 105, 115, 116, 82, 101, 115, 112, 18, 60, 10, 5, 73, 110, 102, 111, 115, 24, 1, 32, 3, 40, 11, 50, 38, 46, 112, 114, 111, 116, 111, 46, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 111, 111, 107, 67, 104, 97, 114, 80, 111, 116, 101, 110, 116, 105, 97, 108, 66, 114, 105, 101, 102, 82, 5, 73, 110, 102, 111, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 80, 1, 98, 6, 112, 114, 111, 116, 111, 51, 10, 134, 2, 10, 46, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 95, 98, 111, 111, 107, 95, 112, 111, 116, 101, 110, 116, 105, 97, 108, 95, 114, 101, 119, 97, 114, 100, 95, 114, 101, 99, 101, 105, 118, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 26, 23, 112, 117, 98, 108, 105, 99, 95, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 46, 112, 114, 111, 116, 111, 34, 153, 1, 10, 39, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 111, 111, 107, 80, 111, 116, 101, 110, 116, 105, 97, 108, 82, 101, 119, 97, 114, 100, 82, 101, 99, 101, 105, 118, 101, 82, 101, 115, 112, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 1, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 32, 10, 11, 82, 101, 99, 101, 105, 118, 101, 100, 73, 100, 115, 24, 2, 32, 3, 40, 13, 82, 11, 82, 101, 99, 101, 105, 118, 101, 100, 73, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 80, 1, 98, 6, 112, 114, 111, 116, 111, 51, 10, 202, 1, 10, 37, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 95, 98, 117, 105, 108, 100, 95, 98, 114, 105, 101, 102, 95, 108, 105, 115, 116, 95, 103, 101, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 23, 112, 117, 98, 108, 105, 99, 95, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 46, 112, 114, 111, 116, 111, 34, 119, 10, 30, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 117, 105, 108, 100, 66, 114, 105, 101, 102, 76, 105, 115, 116, 71, 101, 116, 82, 101, 115, 112, 18, 50, 10, 6, 66, 114, 105, 101, 102, 115, 24, 1, 32, 3, 40, 11, 50, 26, 46, 112, 114, 111, 116, 111, 46, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 117, 105, 108, 100, 66, 114, 105, 101, 102, 82, 6, 66, 114, 105, 101, 102, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 163, 1, 10, 29, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 95, 98, 117, 105, 108, 100, 95, 100, 101, 108, 101, 116, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 23, 112, 117, 98, 108, 105, 99, 95, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 46, 112, 114, 111, 116, 111, 34, 88, 10, 23, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 117, 105, 108, 100, 68, 101, 108, 101, 116, 101, 82, 101, 113, 18, 26, 10, 8, 66, 117, 105, 108, 100, 73, 100, 115, 24, 1, 32, 3, 40, 4, 82, 8, 66, 117, 105, 108, 100, 73, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 159, 2, 10, 33, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 95, 98, 117, 105, 108, 100, 95, 100, 101, 116, 97, 105, 108, 95, 103, 101, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 23, 112, 117, 98, 108, 105, 99, 95, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 46, 112, 114, 111, 116, 111, 34, 89, 10, 26, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 117, 105, 108, 100, 68, 101, 116, 97, 105, 108, 71, 101, 116, 82, 101, 113, 18, 24, 10, 7, 66, 117, 105, 108, 100, 73, 100, 24, 1, 32, 1, 40, 4, 82, 7, 66, 117, 105, 108, 100, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 117, 10, 27, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 117, 105, 108, 100, 68, 101, 116, 97, 105, 108, 71, 101, 116, 82, 101, 115, 112, 18, 51, 10, 6, 68, 101, 116, 97, 105, 108, 24, 1, 32, 1, 40, 11, 50, 27, 46, 112, 114, 111, 116, 111, 46, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 117, 105, 108, 100, 68, 101, 116, 97, 105, 108, 82, 6, 68, 101, 116, 97, 105, 108, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 190, 1, 10, 34, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 95, 98, 117, 105, 108, 100, 95, 108, 111, 99, 107, 95, 117, 110, 108, 111, 99, 107, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 23, 112, 117, 98, 108, 105, 99, 95, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 46, 112, 114, 111, 116, 111, 34, 110, 10, 27, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 117, 105, 108, 100, 76, 111, 99, 107, 85, 110, 108, 111, 99, 107, 82, 101, 113, 18, 24, 10, 7, 66, 117, 105, 108, 100, 73, 100, 24, 1, 32, 1, 40, 4, 82, 7, 66, 117, 105, 108, 100, 73, 100, 18, 18, 10, 4, 76, 111, 99, 107, 24, 2, 32, 1, 40, 8, 82, 4, 76, 111, 99, 107, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 184, 1, 10, 31, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 95, 98, 117, 105, 108, 100, 95, 110, 97, 109, 101, 95, 115, 101, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 23, 112, 117, 98, 108, 105, 99, 95, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 46, 112, 114, 111, 116, 111, 34, 107, 10, 24, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 117, 105, 108, 100, 78, 97, 109, 101, 83, 101, 116, 82, 101, 113, 18, 24, 10, 7, 66, 117, 105, 108, 100, 73, 100, 24, 1, 32, 1, 40, 4, 82, 7, 66, 117, 105, 108, 100, 73, 100, 18, 18, 10, 4, 78, 97, 109, 101, 24, 2, 32, 1, 40, 9, 82, 4, 78, 97, 109, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 217, 1, 10, 37, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 95, 98, 117, 105, 108, 100, 95, 112, 114, 101, 102, 101, 114, 101, 110, 99, 101, 95, 115, 101, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 23, 112, 117, 98, 108, 105, 99, 95, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 46, 112, 114, 111, 116, 111, 34, 133, 1, 10, 30, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 117, 105, 108, 100, 80, 114, 101, 102, 101, 114, 101, 110, 99, 101, 83, 101, 116, 82, 101, 113, 18, 30, 10, 10, 67, 104, 101, 99, 107, 73, 110, 73, 100, 115, 24, 1, 32, 3, 40, 4, 82, 10, 67, 104, 101, 99, 107, 73, 110, 73, 100, 115, 18, 32, 10, 11, 67, 104, 101, 99, 107, 79, 117, 116, 73, 100, 115, 24, 2, 32, 3, 40, 4, 82, 11, 67, 104, 101, 99, 107, 79, 117, 116, 73, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 236, 2, 10, 35, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 95, 98, 117, 105, 108, 100, 95, 119, 104, 101, 116, 104, 101, 114, 95, 115, 97, 118, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 23, 112, 117, 98, 108, 105, 99, 95, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 46, 112, 114, 111, 116, 111, 34, 171, 1, 10, 28, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 117, 105, 108, 100, 87, 104, 101, 116, 104, 101, 114, 83, 97, 118, 101, 82, 101, 113, 18, 22, 10, 6, 68, 101, 108, 101, 116, 101, 24, 1, 32, 1, 40, 8, 82, 6, 68, 101, 108, 101, 116, 101, 18, 18, 10, 4, 76, 111, 99, 107, 24, 2, 32, 1, 40, 8, 82, 4, 76, 111, 99, 107, 18, 30, 10, 10, 80, 114, 101, 102, 101, 114, 101, 110, 99, 101, 24, 3, 32, 1, 40, 8, 82, 10, 80, 114, 101, 102, 101, 114, 101, 110, 99, 101, 18, 28, 10, 9, 66, 117, 105, 108, 100, 78, 97, 109, 101, 24, 4, 32, 1, 40, 9, 82, 9, 66, 117, 105, 108, 100, 78, 97, 109, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 109, 10, 29, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 117, 105, 108, 100, 87, 104, 101, 116, 104, 101, 114, 83, 97, 118, 101, 82, 101, 115, 112, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 1, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 213, 2, 10, 24, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 95, 103, 105, 118, 101, 95, 117, 112, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 23, 112, 117, 98, 108, 105, 99, 95, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 46, 112, 114, 111, 116, 111, 34, 144, 2, 10, 19, 83, 116, 97, 114, 84, 111, 119, 101, 114, 71, 105, 118, 101, 85, 112, 82, 101, 115, 112, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 1, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 47, 10, 5, 66, 117, 105, 108, 100, 24, 2, 32, 1, 40, 11, 50, 25, 46, 112, 114, 111, 116, 111, 46, 83, 116, 97, 114, 84, 111, 119, 101, 114, 66, 117, 105, 108, 100, 73, 110, 102, 111, 82, 5, 66, 117, 105, 108, 100, 18, 20, 10, 5, 70, 108, 111, 111, 114, 24, 12, 32, 1, 40, 13, 82, 5, 70, 108, 111, 111, 114, 18, 34, 10, 12, 80, 111, 116, 101, 110, 116, 105, 97, 108, 67, 110, 116, 24, 13, 32, 1, 40, 13, 82, 12, 80, 111, 116, 101, 110, 116, 105, 97, 108, 67, 110, 116, 18, 28, 10, 9, 84, 111, 116, 97, 108, 84, 105, 109, 101, 24, 14, 32, 1, 40, 13, 82, 9, 84, 111, 116, 97, 108, 84, 105, 109, 101, 18, 34, 10, 12, 84, 111, 116, 97, 108, 68, 97, 109, 97, 103, 101, 115, 24, 15, 32, 3, 40, 4, 82, 12, 84, 111, 116, 97, 108, 68, 97, 109, 97, 103, 101, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 98, 6, 112, 114, 111, 116, 111, 51, 10, 79, 10, 21, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 95, 105, 110, 102, 111, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 26, 23, 112, 117, 98, 108, 105, 99, 95, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 46, 112, 114, 111, 116, 111, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 175, 8, 10, 25, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 95, 105, 110, 116, 101, 114, 97, 99, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 26, 23, 112, 117, 98, 108, 105, 99, 95, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 46, 112, 114, 111, 116, 111, 34, 135, 3, 10, 20, 83, 116, 97, 114, 84, 111, 119, 101, 114, 73, 110, 116, 101, 114, 97, 99, 116, 82, 101, 113, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 53, 10, 8, 69, 110, 116, 101, 114, 82, 101, 113, 24, 2, 32, 1, 40, 11, 50, 23, 46, 112, 114, 111, 116, 111, 46, 73, 110, 116, 101, 114, 97, 99, 116, 69, 110, 116, 101, 114, 82, 101, 113, 72, 0, 82, 8, 69, 110, 116, 101, 114, 82, 101, 113, 18, 65, 10, 12, 66, 97, 116, 116, 108, 101, 69, 110, 100, 82, 101, 113, 24, 3, 32, 1, 40, 11, 50, 27, 46, 112, 114, 111, 116, 111, 46, 73, 110, 116, 101, 114, 97, 99, 116, 66, 97, 116, 116, 108, 101, 69, 110, 100, 82, 101, 113, 72, 0, 82, 12, 66, 97, 116, 116, 108, 101, 69, 110, 100, 82, 101, 113, 18, 56, 10, 9, 83, 101, 108, 101, 99, 116, 82, 101, 113, 24, 4, 32, 1, 40, 11, 50, 24, 46, 112, 114, 111, 116, 111, 46, 73, 110, 116, 101, 114, 97, 99, 116, 83, 101, 108, 101, 99, 116, 82, 101, 113, 72, 0, 82, 9, 83, 101, 108, 101, 99, 116, 82, 101, 113, 18, 68, 10, 13, 82, 101, 99, 111, 118, 101, 114, 121, 72, 80, 82, 101, 113, 24, 5, 32, 1, 40, 11, 50, 28, 46, 112, 114, 111, 116, 111, 46, 73, 110, 116, 101, 114, 97, 99, 116, 82, 101, 99, 111, 118, 101, 114, 121, 72, 80, 82, 101, 113, 72, 0, 82, 13, 82, 101, 99, 111, 118, 101, 114, 121, 72, 80, 82, 101, 113, 18, 56, 10, 9, 72, 97, 119, 107, 101, 114, 82, 101, 113, 24, 6, 32, 1, 40, 11, 50, 24, 46, 112, 114, 111, 116, 111, 46, 73, 110, 116, 101, 114, 97, 99, 116, 72, 97, 119, 107, 101, 114, 82, 101, 113, 72, 0, 82, 9, 72, 97, 119, 107, 101, 114, 82, 101, 113, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 66, 8, 10, 6, 65, 99, 116, 105, 111, 110, 34, 207, 4, 10, 21, 83, 116, 97, 114, 84, 111, 119, 101, 114, 73, 110, 116, 101, 114, 97, 99, 116, 82, 101, 115, 112, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 46, 10, 5, 67, 97, 115, 101, 115, 24, 2, 32, 3, 40, 11, 50, 24, 46, 112, 114, 111, 116, 111, 46, 83, 116, 97, 114, 84, 111, 119, 101, 114, 82, 111, 111, 109, 67, 97, 115, 101, 82, 5, 67, 97, 115, 101, 115, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 3, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 42, 10, 4, 68, 97, 116, 97, 24, 4, 32, 1, 40, 11, 50, 22, 46, 112, 114, 111, 116, 111, 46, 84, 111, 119, 101, 114, 67, 104, 97, 110, 103, 101, 68, 97, 116, 97, 82, 4, 68, 97, 116, 97, 18, 56, 10, 9, 69, 110, 116, 101, 114, 82, 101, 115, 112, 24, 7, 32, 1, 40, 11, 50, 24, 46, 112, 114, 111, 116, 111, 46, 73, 110, 116, 101, 114, 97, 99, 116, 69, 110, 116, 101, 114, 82, 101, 115, 112, 72, 0, 82, 9, 69, 110, 116, 101, 114, 82, 101, 115, 112, 18, 68, 10, 13, 66, 97, 116, 116, 108, 101, 69, 110, 100, 82, 101, 115, 112, 24, 8, 32, 1, 40, 11, 50, 28, 46, 112, 114, 111, 116, 111, 46, 73, 110, 116, 101, 114, 97, 99, 116, 66, 97, 116, 116, 108, 101, 69, 110, 100, 82, 101, 115, 112, 72, 0, 82, 13, 66, 97, 116, 116, 108, 101, 69, 110, 100, 82, 101, 115, 112, 18, 59, 10, 10, 83, 101, 108, 101, 99, 116, 82, 101, 115, 112, 24, 9, 32, 1, 40, 11, 50, 25, 46, 112, 114, 111, 116, 111, 46, 73, 110, 116, 101, 114, 97, 99, 116, 83, 101, 108, 101, 99, 116, 82, 101, 115, 112, 72, 0, 82, 10, 83, 101, 108, 101, 99, 116, 82, 101, 115, 112, 18, 92, 10, 21, 83, 116, 114, 101, 110, 103, 116, 104, 101, 110, 77, 97, 99, 104, 105, 110, 101, 82, 101, 115, 112, 24, 10, 32, 1, 40, 11, 50, 36, 46, 112, 114, 111, 116, 111, 46, 73, 110, 116, 101, 114, 97, 99, 116, 83, 116, 114, 101, 110, 103, 116, 104, 101, 110, 77, 97, 99, 104, 105, 110, 101, 82, 101, 115, 112, 72, 0, 82, 21, 83, 116, 114, 101, 110, 103, 116, 104, 101, 110, 77, 97, 99, 104, 105, 110, 101, 82, 101, 115, 112, 18, 47, 10, 6, 83, 101, 116, 116, 108, 101, 24, 14, 32, 1, 40, 11, 50, 21, 46, 112, 114, 111, 116, 111, 46, 83, 101, 116, 116, 108, 101, 68, 97, 116, 97, 82, 101, 115, 112, 72, 0, 82, 6, 83, 101, 116, 116, 108, 101, 18, 38, 10, 7, 78, 105, 108, 82, 101, 115, 112, 24, 15, 32, 1, 40, 11, 50, 10, 46, 112, 114, 111, 116, 111, 46, 78, 105, 108, 72, 0, 82, 7, 78, 105, 108, 82, 101, 115, 112, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 66, 8, 10, 6, 65, 99, 116, 105, 111, 110, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 225, 11, 10, 21, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 95, 114, 97, 110, 107, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 31, 116, 114, 97, 118, 101, 108, 101, 114, 95, 100, 117, 101, 108, 95, 114, 97, 110, 107, 95, 117, 112, 108, 111, 97, 100, 46, 112, 114, 111, 116, 111, 34, 180, 1, 10, 17, 83, 116, 97, 114, 84, 111, 119, 101, 114, 82, 97, 110, 107, 73, 110, 102, 111, 18, 40, 10, 15, 76, 97, 115, 116, 82, 101, 102, 114, 101, 115, 104, 84, 105, 109, 101, 24, 1, 32, 1, 40, 3, 82, 15, 76, 97, 115, 116, 82, 101, 102, 114, 101, 115, 104, 84, 105, 109, 101, 18, 40, 10, 4, 83, 101, 108, 102, 24, 2, 32, 1, 40, 11, 50, 20, 46, 112, 114, 111, 116, 111, 46, 84, 111, 119, 101, 114, 82, 97, 110, 107, 68, 97, 116, 97, 82, 4, 83, 101, 108, 102, 18, 40, 10, 4, 82, 97, 110, 107, 24, 3, 32, 3, 40, 11, 50, 20, 46, 112, 114, 111, 116, 111, 46, 84, 111, 119, 101, 114, 82, 97, 110, 107, 68, 97, 116, 97, 82, 4, 82, 97, 110, 107, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 88, 10, 13, 84, 111, 119, 101, 114, 82, 97, 110, 107, 67, 104, 97, 114, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 20, 10, 5, 76, 101, 118, 101, 108, 24, 2, 32, 1, 40, 13, 82, 5, 76, 101, 118, 101, 108, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 186, 3, 10, 13, 84, 111, 119, 101, 114, 82, 97, 110, 107, 68, 97, 116, 97, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 4, 82, 2, 73, 100, 18, 26, 10, 8, 78, 105, 99, 107, 78, 97, 109, 101, 24, 2, 32, 1, 40, 9, 82, 8, 78, 105, 99, 107, 78, 97, 109, 101, 18, 30, 10, 10, 87, 111, 114, 108, 100, 67, 108, 97, 115, 115, 24, 3, 32, 1, 40, 13, 82, 10, 87, 111, 114, 108, 100, 67, 108, 97, 115, 115, 18, 26, 10, 8, 72, 101, 97, 100, 73, 99, 111, 110, 24, 4, 32, 1, 40, 13, 82, 8, 72, 101, 97, 100, 73, 99, 111, 110, 18, 20, 10, 5, 83, 99, 111, 114, 101, 24, 5, 32, 1, 40, 13, 82, 5, 83, 99, 111, 114, 101, 18, 18, 10, 4, 82, 97, 110, 107, 24, 6, 32, 1, 40, 13, 82, 4, 82, 97, 110, 107, 18, 30, 10, 10, 66, 117, 105, 108, 100, 83, 99, 111, 114, 101, 24, 7, 32, 1, 40, 13, 82, 10, 66, 117, 105, 108, 100, 83, 99, 111, 114, 101, 18, 32, 10, 11, 84, 105, 116, 108, 101, 80, 114, 101, 102, 105, 120, 24, 8, 32, 1, 40, 13, 82, 11, 84, 105, 116, 108, 101, 80, 114, 101, 102, 105, 120, 18, 32, 10, 11, 84, 105, 116, 108, 101, 83, 117, 102, 102, 105, 120, 24, 9, 32, 1, 40, 13, 82, 11, 84, 105, 116, 108, 101, 83, 117, 102, 102, 105, 120, 18, 30, 10, 10, 68, 105, 102, 102, 105, 99, 117, 108, 116, 121, 24, 10, 32, 1, 40, 13, 82, 10, 68, 105, 102, 102, 105, 99, 117, 108, 116, 121, 18, 26, 10, 8, 68, 117, 114, 97, 116, 105, 111, 110, 24, 11, 32, 1, 40, 13, 82, 8, 68, 117, 114, 97, 116, 105, 111, 110, 18, 42, 10, 5, 67, 104, 97, 114, 115, 24, 12, 32, 3, 40, 11, 50, 20, 46, 112, 114, 111, 116, 111, 46, 84, 111, 119, 101, 114, 82, 97, 110, 107, 67, 104, 97, 114, 82, 5, 67, 104, 97, 114, 115, 18, 40, 10, 6, 72, 111, 110, 111, 114, 115, 24, 15, 32, 3, 40, 11, 50, 16, 46, 112, 114, 111, 116, 111, 46, 72, 111, 110, 111, 114, 73, 110, 102, 111, 82, 6, 72, 111, 110, 111, 114, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 105, 10, 18, 84, 111, 119, 101, 114, 66, 97, 116, 116, 108, 101, 83, 97, 109, 112, 108, 101, 115, 18, 48, 10, 6, 83, 97, 109, 112, 108, 101, 24, 1, 32, 3, 40, 11, 50, 24, 46, 112, 114, 111, 116, 111, 46, 84, 111, 119, 101, 114, 66, 97, 116, 116, 108, 101, 83, 97, 109, 112, 108, 101, 82, 6, 83, 97, 109, 112, 108, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 147, 1, 10, 15, 84, 111, 119, 101, 114, 66, 97, 116, 116, 108, 101, 68, 97, 116, 97, 18, 40, 10, 4, 77, 101, 116, 97, 24, 1, 32, 1, 40, 11, 50, 20, 46, 112, 114, 111, 116, 111, 46, 84, 111, 119, 101, 114, 77, 101, 116, 97, 73, 110, 102, 111, 82, 4, 77, 101, 116, 97, 18, 51, 10, 7, 83, 97, 109, 112, 108, 101, 115, 24, 2, 32, 1, 40, 11, 50, 25, 46, 112, 114, 111, 116, 111, 46, 84, 111, 119, 101, 114, 66, 97, 116, 116, 108, 101, 83, 97, 109, 112, 108, 101, 115, 82, 7, 83, 97, 109, 112, 108, 101, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 164, 2, 10, 13, 84, 111, 119, 101, 114, 77, 101, 116, 97, 73, 110, 102, 111, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 4, 82, 2, 73, 100, 18, 18, 10, 4, 90, 111, 110, 101, 24, 2, 32, 1, 40, 9, 82, 4, 90, 111, 110, 101, 18, 24, 10, 7, 84, 111, 119, 101, 114, 73, 100, 24, 3, 32, 1, 40, 13, 82, 7, 84, 111, 119, 101, 114, 73, 100, 18, 22, 10, 6, 83, 101, 97, 115, 111, 110, 24, 4, 32, 1, 40, 13, 82, 6, 83, 101, 97, 115, 111, 110, 18, 26, 10, 8, 80, 108, 97, 121, 101, 114, 73, 100, 24, 5, 32, 1, 40, 4, 82, 8, 80, 108, 97, 121, 101, 114, 73, 100, 18, 26, 10, 8, 78, 105, 99, 107, 110, 97, 109, 101, 24, 6, 32, 1, 40, 9, 82, 8, 78, 105, 99, 107, 110, 97, 109, 101, 18, 26, 10, 8, 68, 117, 114, 97, 116, 105, 111, 110, 24, 7, 32, 1, 40, 13, 82, 8, 68, 117, 114, 97, 116, 105, 111, 110, 18, 30, 10, 10, 68, 105, 102, 102, 105, 99, 117, 108, 116, 121, 24, 8, 32, 1, 40, 13, 82, 10, 68, 105, 102, 102, 105, 99, 117, 108, 116, 121, 18, 18, 10, 4, 82, 97, 110, 107, 24, 9, 32, 1, 40, 13, 82, 4, 82, 97, 110, 107, 18, 18, 10, 4, 84, 105, 109, 101, 24, 10, 32, 1, 40, 3, 82, 4, 84, 105, 109, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 159, 1, 10, 17, 84, 111, 119, 101, 114, 66, 97, 116, 116, 108, 101, 83, 97, 109, 112, 108, 101, 18, 20, 10, 5, 77, 97, 112, 73, 100, 24, 1, 32, 1, 40, 13, 82, 5, 77, 97, 112, 73, 100, 18, 24, 10, 7, 86, 101, 114, 115, 105, 111, 110, 24, 2, 32, 1, 40, 13, 82, 7, 86, 101, 114, 115, 105, 111, 110, 18, 55, 10, 6, 83, 97, 109, 112, 108, 101, 24, 3, 32, 3, 40, 11, 50, 31, 46, 112, 114, 111, 116, 111, 46, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 66, 97, 116, 116, 108, 101, 83, 97, 109, 112, 108, 101, 82, 6, 83, 97, 109, 112, 108, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 188, 3, 10, 27, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 95, 114, 97, 110, 107, 95, 97, 112, 112, 108, 121, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 26, 23, 112, 117, 98, 108, 105, 99, 95, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 46, 112, 114, 111, 116, 111, 26, 22, 115, 116, 97, 114, 95, 116, 111, 119, 101, 114, 95, 97, 112, 112, 108, 121, 46, 112, 114, 111, 116, 111, 34, 130, 1, 10, 21, 83, 116, 97, 114, 84, 111, 119, 101, 114, 82, 97, 110, 107, 65, 112, 112, 108, 121, 82, 101, 113, 18, 42, 10, 3, 82, 101, 113, 24, 1, 32, 1, 40, 11, 50, 24, 46, 112, 114, 111, 116, 111, 46, 83, 116, 97, 114, 84, 111, 119, 101, 114, 65, 112, 112, 108, 121, 82, 101, 113, 82, 3, 82, 101, 113, 18, 26, 10, 8, 83, 101, 97, 115, 111, 110, 73, 100, 24, 15, 32, 1, 40, 13, 82, 8, 83, 101, 97, 115, 111, 110, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 199, 1, 10, 22, 83, 116, 97, 114, 84, 111, 119, 101, 114, 82, 97, 110, 107, 65, 112, 112, 108, 121, 82, 101, 115, 112, 18, 45, 10, 4, 82, 101, 115, 112, 24, 1, 32, 1, 40, 11, 50, 25, 46, 112, 114, 111, 116, 111, 46, 83, 116, 97, 114, 84, 111, 119, 101, 114, 65, 112, 112, 108, 121, 82, 101, 115, 112, 82, 4, 82, 101, 115, 112, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 14, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 48, 10, 19, 83, 116, 97, 114, 84, 111, 119, 101, 114, 82, 97, 110, 107, 84, 105, 99, 107, 101, 116, 24, 15, 32, 1, 40, 13, 82, 19, 83, 116, 97, 114, 84, 111, 119, 101, 114, 82, 97, 110, 107, 84, 105, 99, 107, 101, 116, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 146, 1, 10, 17, 115, 116, 111, 114, 121, 95, 97, 112, 112, 108, 121, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 94, 10, 13, 83, 116, 111, 114, 121, 65, 112, 112, 108, 121, 82, 101, 113, 18, 16, 10, 3, 73, 100, 120, 24, 1, 32, 1, 40, 13, 82, 3, 73, 100, 120, 18, 24, 10, 7, 66, 117, 105, 108, 100, 73, 100, 24, 2, 32, 1, 40, 4, 82, 7, 66, 117, 105, 108, 100, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 204, 3, 10, 16, 115, 116, 111, 114, 121, 95, 115, 101, 116, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 164, 1, 10, 11, 83, 116, 111, 114, 121, 83, 101, 116, 116, 108, 101, 18, 16, 10, 3, 73, 100, 120, 24, 1, 32, 1, 40, 13, 82, 3, 73, 100, 120, 18, 41, 10, 5, 77, 97, 106, 111, 114, 24, 2, 32, 3, 40, 11, 50, 19, 46, 112, 114, 111, 116, 111, 46, 83, 116, 111, 114, 121, 79, 112, 116, 105, 111, 110, 115, 82, 5, 77, 97, 106, 111, 114, 18, 53, 10, 11, 80, 101, 114, 115, 111, 110, 97, 108, 105, 116, 121, 24, 3, 32, 3, 40, 11, 50, 19, 46, 112, 114, 111, 116, 111, 46, 83, 116, 111, 114, 121, 79, 112, 116, 105, 111, 110, 115, 82, 11, 80, 101, 114, 115, 111, 110, 97, 108, 105, 116, 121, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 121, 10, 14, 83, 116, 111, 114, 121, 83, 101, 116, 116, 108, 101, 82, 101, 113, 18, 38, 10, 4, 76, 105, 115, 116, 24, 1, 32, 3, 40, 11, 50, 18, 46, 112, 114, 111, 116, 111, 46, 83, 116, 111, 114, 121, 83, 101, 116, 116, 108, 101, 82, 4, 76, 105, 115, 116, 18, 28, 10, 9, 69, 118, 105, 100, 101, 110, 99, 101, 115, 24, 15, 32, 3, 40, 13, 82, 9, 69, 118, 105, 100, 101, 110, 99, 101, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 119, 10, 12, 83, 116, 111, 114, 121, 79, 112, 116, 105, 111, 110, 115, 18, 20, 10, 5, 71, 114, 111, 117, 112, 24, 1, 32, 1, 40, 13, 82, 5, 71, 114, 111, 117, 112, 18, 22, 10, 6, 67, 104, 111, 105, 99, 101, 24, 2, 32, 1, 40, 13, 82, 6, 67, 104, 111, 105, 99, 101, 18, 22, 10, 6, 70, 97, 99, 116, 111, 114, 24, 3, 32, 1, 40, 13, 82, 6, 70, 97, 99, 116, 111, 114, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 194, 1, 10, 23, 116, 97, 108, 101, 110, 116, 95, 110, 111, 100, 101, 95, 114, 101, 115, 101, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 135, 1, 10, 19, 84, 97, 108, 101, 110, 116, 78, 111, 100, 101, 82, 101, 115, 101, 116, 82, 101, 115, 112, 18, 34, 10, 12, 82, 101, 115, 101, 116, 75, 101, 121, 78, 111, 100, 101, 24, 1, 32, 1, 40, 8, 82, 12, 82, 101, 115, 101, 116, 75, 101, 121, 78, 111, 100, 101, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 2, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 154, 1, 10, 18, 116, 97, 108, 101, 110, 116, 95, 114, 101, 115, 101, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 101, 10, 14, 84, 97, 108, 101, 110, 116, 82, 101, 115, 101, 116, 82, 101, 113, 18, 22, 10, 6, 67, 104, 97, 114, 73, 100, 24, 1, 32, 1, 40, 13, 82, 6, 67, 104, 97, 114, 73, 100, 18, 24, 10, 7, 71, 114, 111, 117, 112, 73, 100, 24, 2, 32, 1, 40, 13, 82, 7, 71, 114, 111, 117, 112, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 178, 1, 10, 19, 116, 97, 108, 101, 110, 116, 95, 117, 110, 108, 111, 99, 107, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 124, 10, 16, 84, 97, 108, 101, 110, 116, 85, 110, 108, 111, 99, 107, 82, 101, 115, 112, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 1, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 26, 10, 8, 84, 97, 108, 101, 110, 116, 73, 100, 24, 2, 32, 1, 40, 13, 82, 8, 84, 97, 108, 101, 110, 116, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 178, 1, 10, 33, 116, 111, 119, 101, 114, 95, 98, 111, 111, 107, 95, 102, 97, 116, 101, 95, 99, 97, 114, 100, 95, 100, 101, 116, 97, 105, 108, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 110, 10, 27, 84, 111, 119, 101, 114, 66, 111, 111, 107, 70, 97, 116, 101, 67, 97, 114, 100, 68, 101, 116, 97, 105, 108, 82, 101, 115, 112, 18, 20, 10, 5, 67, 97, 114, 100, 115, 24, 1, 32, 3, 40, 13, 82, 5, 67, 97, 114, 100, 115, 18, 22, 10, 6, 81, 117, 101, 115, 116, 115, 24, 2, 32, 3, 40, 13, 82, 6, 81, 117, 101, 115, 116, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 201, 1, 10, 41, 116, 111, 119, 101, 114, 95, 98, 111, 111, 107, 95, 102, 97, 116, 101, 95, 99, 97, 114, 100, 95, 114, 101, 119, 97, 114, 100, 95, 114, 101, 99, 101, 105, 118, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 125, 10, 26, 84, 111, 119, 101, 114, 66, 111, 111, 107, 70, 97, 116, 101, 67, 97, 114, 100, 82, 101, 119, 97, 114, 100, 82, 101, 113, 18, 34, 10, 12, 67, 97, 114, 100, 66, 117, 110, 100, 108, 101, 73, 100, 24, 1, 32, 1, 40, 13, 82, 12, 67, 97, 114, 100, 66, 117, 110, 100, 108, 101, 73, 100, 18, 24, 10, 7, 81, 117, 101, 115, 116, 73, 100, 24, 2, 32, 1, 40, 13, 82, 7, 81, 117, 101, 115, 116, 73, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 142, 1, 10, 25, 116, 111, 119, 101, 114, 95, 103, 114, 111, 119, 116, 104, 95, 100, 101, 116, 97, 105, 108, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 82, 10, 21, 84, 111, 119, 101, 114, 71, 114, 111, 119, 116, 104, 68, 101, 116, 97, 105, 108, 82, 101, 115, 112, 18, 22, 10, 6, 68, 101, 116, 97, 105, 108, 24, 1, 32, 3, 40, 13, 82, 6, 68, 101, 116, 97, 105, 108, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 63, 10, 30, 116, 111, 119, 101, 114, 95, 103, 114, 111, 119, 116, 104, 95, 110, 111, 100, 101, 95, 117, 110, 108, 111, 99, 107, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 242, 2, 10, 24, 116, 114, 97, 118, 101, 108, 101, 114, 95, 100, 117, 101, 108, 95, 105, 110, 102, 111, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 182, 2, 10, 16, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 73, 110, 102, 111, 18, 28, 10, 9, 68, 117, 101, 108, 76, 101, 118, 101, 108, 24, 1, 32, 1, 40, 13, 82, 9, 68, 117, 101, 108, 76, 101, 118, 101, 108, 18, 24, 10, 7, 68, 117, 101, 108, 69, 120, 112, 24, 2, 32, 1, 40, 13, 82, 7, 68, 117, 101, 108, 69, 120, 112, 18, 42, 10, 16, 87, 101, 101, 107, 108, 121, 65, 119, 97, 114, 100, 84, 105, 109, 101, 115, 24, 3, 32, 1, 40, 13, 82, 16, 87, 101, 101, 107, 108, 121, 65, 119, 97, 114, 100, 84, 105, 109, 101, 115, 18, 52, 10, 6, 76, 101, 118, 101, 108, 115, 24, 4, 32, 3, 40, 11, 50, 28, 46, 112, 114, 111, 116, 111, 46, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 66, 111, 115, 115, 76, 101, 118, 101, 108, 82, 6, 76, 101, 118, 101, 108, 115, 18, 62, 10, 9, 67, 104, 97, 108, 108, 101, 110, 103, 101, 24, 5, 32, 1, 40, 11, 50, 32, 46, 112, 114, 111, 116, 111, 46, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 67, 104, 97, 108, 108, 101, 110, 103, 101, 73, 110, 102, 111, 82, 9, 67, 104, 97, 108, 108, 101, 110, 103, 101, 18, 37, 10, 6, 81, 117, 101, 115, 116, 115, 24, 6, 32, 1, 40, 11, 50, 13, 46, 112, 114, 111, 116, 111, 46, 81, 117, 101, 115, 116, 115, 82, 6, 81, 117, 101, 115, 116, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 199, 1, 10, 31, 116, 114, 97, 118, 101, 108, 101, 114, 95, 100, 117, 101, 108, 95, 108, 101, 118, 101, 108, 95, 97, 112, 112, 108, 121, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 132, 1, 10, 25, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 76, 101, 118, 101, 108, 65, 112, 112, 108, 121, 82, 101, 113, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 24, 10, 7, 66, 117, 105, 108, 100, 73, 100, 24, 2, 32, 1, 40, 4, 82, 7, 66, 117, 105, 108, 100, 73, 100, 18, 26, 10, 8, 65, 102, 102, 105, 120, 73, 100, 115, 24, 3, 32, 3, 40, 13, 82, 8, 65, 102, 102, 105, 120, 73, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 165, 6, 10, 32, 116, 114, 97, 118, 101, 108, 101, 114, 95, 100, 117, 101, 108, 95, 108, 101, 118, 101, 108, 95, 115, 101, 116, 116, 108, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 142, 1, 10, 26, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 76, 101, 118, 101, 108, 83, 101, 116, 116, 108, 101, 82, 101, 113, 18, 18, 10, 4, 83, 116, 97, 114, 24, 1, 32, 1, 40, 13, 82, 4, 83, 116, 97, 114, 18, 18, 10, 4, 84, 105, 109, 101, 24, 2, 32, 1, 40, 13, 82, 4, 84, 105, 109, 101, 18, 37, 10, 6, 69, 118, 101, 110, 116, 115, 24, 15, 32, 1, 40, 11, 50, 13, 46, 112, 114, 111, 116, 111, 46, 69, 118, 101, 110, 116, 115, 82, 6, 69, 118, 101, 110, 116, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 208, 4, 10, 27, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 76, 101, 118, 101, 108, 83, 101, 116, 116, 108, 101, 82, 101, 115, 112, 18, 20, 10, 5, 70, 105, 114, 115, 116, 24, 1, 32, 1, 40, 8, 82, 5, 70, 105, 114, 115, 116, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 2, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 46, 10, 10, 65, 119, 97, 114, 100, 73, 116, 101, 109, 115, 24, 3, 32, 3, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 84, 112, 108, 82, 10, 65, 119, 97, 114, 100, 73, 116, 101, 109, 115, 18, 46, 10, 10, 70, 105, 114, 115, 116, 73, 116, 101, 109, 115, 24, 4, 32, 3, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 84, 112, 108, 82, 10, 70, 105, 114, 115, 116, 73, 116, 101, 109, 115, 18, 28, 10, 9, 68, 117, 101, 108, 76, 101, 118, 101, 108, 24, 5, 32, 1, 40, 13, 82, 9, 68, 117, 101, 108, 76, 101, 118, 101, 108, 18, 24, 10, 7, 68, 117, 101, 108, 69, 120, 112, 24, 6, 32, 1, 40, 13, 82, 7, 68, 117, 101, 108, 69, 120, 112, 18, 36, 10, 13, 68, 117, 101, 108, 69, 120, 112, 67, 104, 97, 110, 103, 101, 24, 7, 32, 1, 40, 5, 82, 13, 68, 117, 101, 108, 69, 120, 112, 67, 104, 97, 110, 103, 101, 18, 51, 10, 10, 65, 102, 102, 105, 110, 105, 116, 105, 101, 115, 24, 8, 32, 3, 40, 11, 50, 19, 46, 112, 114, 111, 116, 111, 46, 65, 102, 102, 105, 110, 105, 116, 121, 73, 110, 102, 111, 82, 10, 65, 102, 102, 105, 110, 105, 116, 105, 101, 115, 18, 28, 10, 9, 66, 97, 115, 101, 83, 99, 111, 114, 101, 24, 9, 32, 1, 40, 13, 82, 9, 66, 97, 115, 101, 83, 99, 111, 114, 101, 18, 28, 10, 9, 84, 105, 109, 101, 83, 99, 111, 114, 101, 24, 10, 32, 1, 40, 13, 82, 9, 84, 105, 109, 101, 83, 99, 111, 114, 101, 18, 30, 10, 10, 70, 105, 110, 97, 108, 83, 99, 111, 114, 101, 24, 11, 32, 1, 40, 13, 82, 10, 70, 105, 110, 97, 108, 83, 99, 111, 114, 101, 18, 26, 10, 8, 77, 97, 120, 83, 99, 111, 114, 101, 24, 12, 32, 1, 40, 13, 82, 8, 77, 97, 120, 83, 99, 111, 114, 101, 18, 44, 10, 17, 85, 112, 108, 111, 97, 100, 82, 101, 109, 97, 105, 110, 84, 105, 109, 101, 115, 24, 13, 32, 1, 40, 13, 82, 17, 85, 112, 108, 111, 97, 100, 82, 101, 109, 97, 105, 110, 84, 105, 109, 101, 115, 18, 52, 10, 13, 83, 117, 114, 112, 114, 105, 115, 101, 73, 116, 101, 109, 115, 24, 14, 32, 3, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 84, 112, 108, 82, 13, 83, 117, 114, 112, 114, 105, 115, 101, 73, 116, 101, 109, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 240, 2, 10, 40, 116, 114, 97, 118, 101, 108, 101, 114, 95, 100, 117, 101, 108, 95, 113, 117, 101, 115, 116, 95, 114, 101, 119, 97, 114, 100, 95, 114, 101, 99, 101, 105, 118, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 124, 10, 33, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 81, 117, 101, 115, 116, 82, 101, 119, 97, 114, 100, 82, 101, 99, 101, 105, 118, 101, 82, 101, 113, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 36, 10, 4, 84, 121, 112, 101, 24, 2, 32, 1, 40, 14, 50, 16, 46, 112, 114, 111, 116, 111, 46, 81, 117, 101, 115, 116, 84, 121, 112, 101, 82, 4, 84, 121, 112, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 166, 1, 10, 34, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 81, 117, 101, 115, 116, 82, 101, 119, 97, 114, 100, 82, 101, 99, 101, 105, 118, 101, 82, 101, 115, 112, 18, 50, 10, 12, 81, 117, 101, 115, 116, 82, 101, 119, 97, 114, 100, 115, 24, 1, 32, 3, 40, 11, 50, 14, 46, 112, 114, 111, 116, 111, 46, 73, 116, 101, 109, 84, 112, 108, 82, 12, 81, 117, 101, 115, 116, 82, 101, 119, 97, 114, 100, 115, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 2, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 159, 6, 10, 24, 116, 114, 97, 118, 101, 108, 101, 114, 95, 100, 117, 101, 108, 95, 114, 97, 110, 107, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 243, 1, 10, 20, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 82, 97, 110, 107, 73, 110, 102, 111, 18, 40, 10, 15, 76, 97, 115, 116, 82, 101, 102, 114, 101, 115, 104, 84, 105, 109, 101, 24, 1, 32, 1, 40, 3, 82, 15, 76, 97, 115, 116, 82, 101, 102, 114, 101, 115, 104, 84, 105, 109, 101, 18, 47, 10, 4, 83, 101, 108, 102, 24, 2, 32, 1, 40, 11, 50, 27, 46, 112, 114, 111, 116, 111, 46, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 82, 97, 110, 107, 68, 97, 116, 97, 82, 4, 83, 101, 108, 102, 18, 47, 10, 4, 82, 97, 110, 107, 24, 3, 32, 3, 40, 11, 50, 27, 46, 112, 114, 111, 116, 111, 46, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 82, 97, 110, 107, 68, 97, 116, 97, 82, 4, 82, 97, 110, 107, 18, 44, 10, 17, 85, 112, 108, 111, 97, 100, 82, 101, 109, 97, 105, 110, 84, 105, 109, 101, 115, 24, 4, 32, 1, 40, 13, 82, 17, 85, 112, 108, 111, 97, 100, 82, 101, 109, 97, 105, 110, 84, 105, 109, 101, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 95, 10, 20, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 82, 97, 110, 107, 67, 104, 97, 114, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 20, 10, 5, 76, 101, 118, 101, 108, 24, 2, 32, 1, 40, 13, 82, 5, 76, 101, 118, 101, 108, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 140, 3, 10, 20, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 82, 97, 110, 107, 68, 97, 116, 97, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 4, 82, 2, 73, 100, 18, 26, 10, 8, 78, 105, 99, 107, 78, 97, 109, 101, 24, 2, 32, 1, 40, 9, 82, 8, 78, 105, 99, 107, 78, 97, 109, 101, 18, 30, 10, 10, 87, 111, 114, 108, 100, 67, 108, 97, 115, 115, 24, 3, 32, 1, 40, 13, 82, 10, 87, 111, 114, 108, 100, 67, 108, 97, 115, 115, 18, 26, 10, 8, 72, 101, 97, 100, 73, 99, 111, 110, 24, 4, 32, 1, 40, 13, 82, 8, 72, 101, 97, 100, 73, 99, 111, 110, 18, 20, 10, 5, 83, 99, 111, 114, 101, 24, 5, 32, 1, 40, 13, 82, 5, 83, 99, 111, 114, 101, 18, 18, 10, 4, 82, 97, 110, 107, 24, 6, 32, 1, 40, 13, 82, 4, 82, 97, 110, 107, 18, 30, 10, 10, 66, 117, 105, 108, 100, 83, 99, 111, 114, 101, 24, 7, 32, 1, 40, 13, 82, 10, 66, 117, 105, 108, 100, 83, 99, 111, 114, 101, 18, 32, 10, 11, 84, 105, 116, 108, 101, 80, 114, 101, 102, 105, 120, 24, 8, 32, 1, 40, 13, 82, 11, 84, 105, 116, 108, 101, 80, 114, 101, 102, 105, 120, 18, 32, 10, 11, 84, 105, 116, 108, 101, 83, 117, 102, 102, 105, 120, 24, 9, 32, 1, 40, 13, 82, 11, 84, 105, 116, 108, 101, 83, 117, 102, 102, 105, 120, 18, 49, 10, 5, 67, 104, 97, 114, 115, 24, 10, 32, 3, 40, 11, 50, 27, 46, 112, 114, 111, 116, 111, 46, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 82, 97, 110, 107, 67, 104, 97, 114, 82, 5, 67, 104, 97, 114, 115, 18, 40, 10, 6, 72, 111, 110, 111, 114, 115, 24, 15, 32, 3, 40, 11, 50, 16, 46, 112, 114, 111, 116, 111, 46, 72, 111, 110, 111, 114, 73, 110, 102, 111, 82, 6, 72, 111, 110, 111, 114, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 245, 3, 10, 28, 118, 97, 109, 112, 105, 114, 101, 95, 115, 117, 114, 118, 105, 118, 111, 114, 95, 97, 112, 112, 108, 121, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 132, 1, 10, 23, 86, 97, 109, 112, 105, 114, 101, 83, 117, 114, 118, 105, 118, 111, 114, 65, 112, 112, 108, 121, 82, 101, 113, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 26, 10, 8, 66, 117, 105, 108, 100, 73, 100, 49, 24, 2, 32, 1, 40, 4, 82, 8, 66, 117, 105, 108, 100, 73, 100, 49, 18, 26, 10, 8, 66, 117, 105, 108, 100, 73, 100, 50, 24, 3, 32, 1, 40, 4, 82, 8, 66, 117, 105, 108, 100, 73, 100, 50, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 174, 2, 10, 24, 86, 97, 109, 112, 105, 114, 101, 83, 117, 114, 118, 105, 118, 111, 114, 65, 112, 112, 108, 121, 82, 101, 115, 112, 18, 51, 10, 6, 69, 118, 101, 110, 116, 115, 24, 1, 32, 3, 40, 11, 50, 27, 46, 112, 114, 111, 116, 111, 46, 86, 97, 109, 112, 105, 114, 101, 83, 117, 114, 118, 105, 118, 111, 114, 69, 118, 101, 110, 116, 82, 6, 69, 118, 101, 110, 116, 115, 18, 22, 10, 6, 84, 105, 99, 107, 101, 114, 24, 2, 32, 1, 40, 13, 82, 6, 84, 105, 99, 107, 101, 114, 18, 41, 10, 6, 67, 104, 97, 110, 103, 101, 24, 3, 32, 1, 40, 11, 50, 17, 46, 112, 114, 111, 116, 111, 46, 67, 104, 97, 110, 103, 101, 73, 110, 102, 111, 82, 6, 67, 104, 97, 110, 103, 101, 18, 60, 10, 6, 83, 101, 108, 101, 99, 116, 24, 4, 32, 1, 40, 11, 50, 36, 46, 112, 114, 111, 116, 111, 46, 86, 97, 109, 112, 105, 114, 101, 83, 117, 114, 118, 105, 118, 111, 114, 70, 97, 116, 101, 67, 97, 114, 100, 83, 101, 108, 101, 99, 116, 82, 6, 83, 101, 108, 101, 99, 116, 18, 57, 10, 6, 82, 101, 119, 97, 114, 100, 24, 5, 32, 1, 40, 11, 50, 33, 46, 112, 114, 111, 116, 111, 46, 86, 97, 109, 112, 105, 114, 101, 83, 117, 114, 118, 105, 118, 111, 114, 76, 101, 118, 101, 108, 82, 101, 119, 97, 114, 100, 82, 6, 82, 101, 119, 97, 114, 100, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 149, 2, 10, 34, 118, 97, 109, 112, 105, 114, 101, 95, 115, 117, 114, 118, 105, 118, 111, 114, 95, 97, 114, 101, 97, 95, 99, 104, 97, 110, 103, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 26, 31, 116, 114, 97, 118, 101, 108, 101, 114, 95, 100, 117, 101, 108, 95, 114, 97, 110, 107, 95, 117, 112, 108, 111, 97, 100, 46, 112, 114, 111, 116, 111, 34, 172, 1, 10, 28, 86, 97, 109, 112, 105, 114, 101, 83, 117, 114, 118, 105, 118, 111, 114, 65, 114, 101, 97, 67, 104, 97, 110, 103, 101, 82, 101, 113, 18, 28, 10, 9, 75, 105, 108, 108, 67, 111, 117, 110, 116, 24, 1, 32, 3, 40, 13, 82, 9, 75, 105, 108, 108, 67, 111, 117, 110, 116, 18, 18, 10, 4, 84, 105, 109, 101, 24, 2, 32, 1, 40, 13, 82, 4, 84, 105, 109, 101, 18, 55, 10, 6, 83, 97, 109, 112, 108, 101, 24, 8, 32, 3, 40, 11, 50, 31, 46, 112, 114, 111, 116, 111, 46, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 66, 97, 116, 116, 108, 101, 83, 97, 109, 112, 108, 101, 82, 6, 83, 97, 109, 112, 108, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 80, 1, 98, 6, 112, 114, 111, 116, 111, 51, 10, 210, 1, 10, 43, 118, 97, 109, 112, 105, 114, 101, 95, 115, 117, 114, 118, 105, 118, 111, 114, 95, 113, 117, 101, 115, 116, 95, 114, 101, 119, 97, 114, 100, 95, 114, 101, 99, 101, 105, 118, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 131, 1, 10, 36, 86, 97, 109, 112, 105, 114, 101, 83, 117, 114, 118, 105, 118, 111, 114, 81, 117, 101, 115, 116, 82, 101, 119, 97, 114, 100, 82, 101, 99, 101, 105, 118, 101, 82, 101, 113, 18, 28, 10, 9, 81, 117, 101, 115, 116, 84, 121, 112, 101, 24, 1, 32, 1, 40, 13, 82, 9, 81, 117, 101, 115, 116, 84, 121, 112, 101, 18, 26, 10, 8, 81, 117, 101, 115, 116, 73, 100, 115, 24, 2, 32, 3, 40, 13, 82, 8, 81, 117, 101, 115, 116, 73, 100, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 165, 12, 10, 27, 118, 97, 109, 112, 105, 114, 101, 95, 115, 117, 114, 118, 105, 118, 111, 114, 95, 114, 97, 110, 107, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 26, 31, 116, 114, 97, 118, 101, 108, 101, 114, 95, 100, 117, 101, 108, 95, 114, 97, 110, 107, 95, 117, 112, 108, 111, 97, 100, 46, 112, 114, 111, 116, 111, 34, 182, 1, 10, 15, 86, 97, 109, 112, 105, 114, 101, 82, 97, 110, 107, 73, 110, 102, 111, 18, 40, 10, 15, 76, 97, 115, 116, 82, 101, 102, 114, 101, 115, 104, 84, 105, 109, 101, 24, 1, 32, 1, 40, 3, 82, 15, 76, 97, 115, 116, 82, 101, 102, 114, 101, 115, 104, 84, 105, 109, 101, 18, 42, 10, 4, 83, 101, 108, 102, 24, 2, 32, 1, 40, 11, 50, 22, 46, 112, 114, 111, 116, 111, 46, 86, 97, 109, 112, 105, 114, 101, 82, 97, 110, 107, 68, 97, 116, 97, 82, 4, 83, 101, 108, 102, 18, 42, 10, 4, 82, 97, 110, 107, 24, 3, 32, 3, 40, 11, 50, 22, 46, 112, 114, 111, 116, 111, 46, 86, 97, 109, 112, 105, 114, 101, 82, 97, 110, 107, 68, 97, 116, 97, 82, 4, 82, 97, 110, 107, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 87, 10, 12, 83, 117, 114, 118, 105, 118, 111, 114, 67, 104, 97, 114, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 20, 10, 5, 76, 101, 118, 101, 108, 24, 2, 32, 1, 40, 13, 82, 5, 76, 101, 118, 101, 108, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 124, 10, 12, 83, 117, 114, 118, 105, 118, 111, 114, 84, 101, 97, 109, 18, 30, 10, 10, 66, 117, 105, 108, 100, 83, 99, 111, 114, 101, 24, 1, 32, 1, 40, 13, 82, 10, 66, 117, 105, 108, 100, 83, 99, 111, 114, 101, 18, 41, 10, 5, 67, 104, 97, 114, 115, 24, 2, 32, 3, 40, 11, 50, 19, 46, 112, 114, 111, 116, 111, 46, 83, 117, 114, 118, 105, 118, 111, 114, 67, 104, 97, 114, 82, 5, 67, 104, 97, 114, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 223, 2, 10, 15, 86, 97, 109, 112, 105, 114, 101, 82, 97, 110, 107, 68, 97, 116, 97, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 4, 82, 2, 73, 100, 18, 26, 10, 8, 78, 105, 99, 107, 78, 97, 109, 101, 24, 2, 32, 1, 40, 9, 82, 8, 78, 105, 99, 107, 78, 97, 109, 101, 18, 30, 10, 10, 87, 111, 114, 108, 100, 67, 108, 97, 115, 115, 24, 3, 32, 1, 40, 13, 82, 10, 87, 111, 114, 108, 100, 67, 108, 97, 115, 115, 18, 26, 10, 8, 72, 101, 97, 100, 73, 99, 111, 110, 24, 4, 32, 1, 40, 13, 82, 8, 72, 101, 97, 100, 73, 99, 111, 110, 18, 20, 10, 5, 83, 99, 111, 114, 101, 24, 5, 32, 1, 40, 13, 82, 5, 83, 99, 111, 114, 101, 18, 18, 10, 4, 82, 97, 110, 107, 24, 6, 32, 1, 40, 13, 82, 4, 82, 97, 110, 107, 18, 32, 10, 11, 84, 105, 116, 108, 101, 80, 114, 101, 102, 105, 120, 24, 7, 32, 1, 40, 13, 82, 11, 84, 105, 116, 108, 101, 80, 114, 101, 102, 105, 120, 18, 32, 10, 11, 84, 105, 116, 108, 101, 83, 117, 102, 102, 105, 120, 24, 8, 32, 1, 40, 13, 82, 11, 84, 105, 116, 108, 101, 83, 117, 102, 102, 105, 120, 18, 40, 10, 6, 72, 111, 110, 111, 114, 115, 24, 9, 32, 3, 40, 11, 50, 16, 46, 112, 114, 111, 116, 111, 46, 72, 111, 110, 111, 114, 73, 110, 102, 111, 82, 6, 72, 111, 110, 111, 114, 115, 18, 41, 10, 5, 84, 101, 97, 109, 115, 24, 10, 32, 3, 40, 11, 50, 19, 46, 112, 114, 111, 116, 111, 46, 83, 117, 114, 118, 105, 118, 111, 114, 84, 101, 97, 109, 82, 5, 84, 101, 97, 109, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 109, 10, 20, 86, 97, 109, 112, 105, 114, 101, 66, 97, 116, 116, 108, 101, 83, 97, 109, 112, 108, 101, 115, 18, 50, 10, 6, 83, 97, 109, 112, 108, 101, 24, 1, 32, 3, 40, 11, 50, 26, 46, 112, 114, 111, 116, 111, 46, 86, 97, 109, 112, 105, 114, 101, 66, 97, 116, 116, 108, 101, 83, 97, 109, 112, 108, 101, 82, 6, 83, 97, 109, 112, 108, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 153, 1, 10, 17, 86, 97, 109, 112, 105, 114, 101, 66, 97, 116, 116, 108, 101, 68, 97, 116, 97, 18, 42, 10, 4, 77, 101, 116, 97, 24, 1, 32, 1, 40, 11, 50, 22, 46, 112, 114, 111, 116, 111, 46, 86, 97, 109, 112, 105, 114, 101, 77, 101, 116, 97, 73, 110, 102, 111, 82, 4, 77, 101, 116, 97, 18, 53, 10, 7, 83, 97, 109, 112, 108, 101, 115, 24, 2, 32, 1, 40, 11, 50, 27, 46, 112, 114, 111, 116, 111, 46, 86, 97, 109, 112, 105, 114, 101, 66, 97, 116, 116, 108, 101, 83, 97, 109, 112, 108, 101, 115, 82, 7, 83, 97, 109, 112, 108, 101, 115, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 160, 2, 10, 15, 86, 97, 109, 112, 105, 114, 101, 77, 101, 116, 97, 73, 110, 102, 111, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 4, 82, 2, 73, 100, 18, 18, 10, 4, 90, 111, 110, 101, 24, 2, 32, 1, 40, 9, 82, 4, 90, 111, 110, 101, 18, 28, 10, 9, 77, 105, 115, 115, 105, 111, 110, 73, 100, 24, 3, 32, 1, 40, 13, 82, 9, 77, 105, 115, 115, 105, 111, 110, 73, 100, 18, 22, 10, 6, 83, 101, 97, 115, 111, 110, 24, 4, 32, 1, 40, 13, 82, 6, 83, 101, 97, 115, 111, 110, 18, 26, 10, 8, 80, 108, 97, 121, 101, 114, 73, 100, 24, 5, 32, 1, 40, 4, 82, 8, 80, 108, 97, 121, 101, 114, 73, 100, 18, 26, 10, 8, 78, 105, 99, 107, 110, 97, 109, 101, 24, 6, 32, 1, 40, 9, 82, 8, 78, 105, 99, 107, 110, 97, 109, 101, 18, 26, 10, 8, 68, 117, 114, 97, 116, 105, 111, 110, 24, 7, 32, 1, 40, 13, 82, 8, 68, 117, 114, 97, 116, 105, 111, 110, 18, 20, 10, 5, 83, 99, 111, 114, 101, 24, 8, 32, 1, 40, 13, 82, 5, 83, 99, 111, 114, 101, 18, 18, 10, 4, 82, 97, 110, 107, 24, 9, 32, 1, 40, 13, 82, 4, 82, 97, 110, 107, 18, 18, 10, 4, 84, 105, 109, 101, 24, 10, 32, 1, 40, 3, 82, 4, 84, 105, 109, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 163, 1, 10, 19, 86, 97, 109, 112, 105, 114, 101, 66, 97, 116, 116, 108, 101, 83, 97, 109, 112, 108, 101, 18, 22, 10, 6, 66, 111, 115, 115, 73, 100, 24, 1, 32, 1, 40, 13, 82, 6, 66, 111, 115, 115, 73, 100, 18, 24, 10, 7, 86, 101, 114, 115, 105, 111, 110, 24, 2, 32, 1, 40, 13, 82, 7, 86, 101, 114, 115, 105, 111, 110, 18, 55, 10, 6, 83, 97, 109, 112, 108, 101, 24, 3, 32, 3, 40, 11, 50, 31, 46, 112, 114, 111, 116, 111, 46, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 66, 97, 116, 116, 108, 101, 83, 97, 109, 112, 108, 101, 82, 6, 83, 97, 109, 112, 108, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 80, 1, 98, 6, 112, 114, 111, 116, 111, 51, 10, 149, 2, 10, 35, 118, 97, 109, 112, 105, 114, 101, 95, 115, 117, 114, 118, 105, 118, 111, 114, 95, 114, 101, 119, 97, 114, 100, 95, 99, 104, 101, 115, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 34, 120, 10, 29, 86, 97, 109, 112, 105, 114, 101, 83, 117, 114, 118, 105, 118, 111, 114, 82, 101, 119, 97, 114, 100, 67, 104, 101, 115, 116, 82, 101, 113, 18, 28, 10, 9, 69, 118, 101, 110, 116, 84, 121, 112, 101, 24, 1, 32, 1, 40, 13, 82, 9, 69, 118, 101, 110, 116, 84, 121, 112, 101, 18, 22, 10, 6, 78, 117, 109, 98, 101, 114, 24, 2, 32, 1, 40, 13, 82, 6, 78, 117, 109, 98, 101, 114, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 101, 10, 30, 86, 97, 109, 112, 105, 114, 101, 83, 117, 114, 118, 105, 118, 111, 114, 82, 101, 119, 97, 114, 100, 67, 104, 101, 115, 116, 82, 101, 115, 112, 18, 14, 10, 2, 73, 100, 24, 1, 32, 1, 40, 13, 82, 2, 73, 100, 18, 16, 10, 3, 78, 101, 119, 24, 2, 32, 1, 40, 8, 82, 3, 78, 101, 119, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 98, 6, 112, 114, 111, 116, 111, 51, 10, 253, 3, 10, 36, 118, 97, 109, 112, 105, 114, 101, 95, 115, 117, 114, 118, 105, 118, 111, 114, 95, 114, 101, 119, 97, 114, 100, 95, 115, 101, 108, 101, 99, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 127, 10, 30, 86, 97, 109, 112, 105, 114, 101, 83, 117, 114, 118, 105, 118, 111, 114, 82, 101, 119, 97, 114, 100, 83, 101, 108, 101, 99, 116, 82, 101, 113, 18, 22, 10, 5, 73, 110, 100, 101, 120, 24, 1, 32, 1, 40, 13, 72, 0, 82, 5, 73, 110, 100, 101, 120, 18, 24, 10, 6, 82, 101, 82, 111, 108, 108, 24, 2, 32, 1, 40, 8, 72, 0, 82, 6, 82, 101, 82, 111, 108, 108, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 66, 8, 10, 6, 83, 101, 108, 101, 99, 116, 34, 180, 2, 10, 31, 86, 97, 109, 112, 105, 114, 101, 83, 117, 114, 118, 105, 118, 111, 114, 82, 101, 119, 97, 114, 100, 83, 101, 108, 101, 99, 116, 82, 101, 115, 112, 18, 68, 10, 4, 82, 101, 115, 112, 24, 1, 32, 1, 40, 11, 50, 46, 46, 112, 114, 111, 116, 111, 46, 86, 97, 109, 112, 105, 114, 101, 83, 117, 114, 118, 105, 118, 111, 114, 82, 101, 119, 97, 114, 100, 83, 101, 108, 101, 99, 116, 82, 101, 115, 112, 46, 83, 117, 99, 99, 101, 115, 115, 72, 0, 82, 4, 82, 101, 115, 112, 18, 56, 10, 3, 80, 107, 103, 24, 2, 32, 1, 40, 11, 50, 36, 46, 112, 114, 111, 116, 111, 46, 86, 97, 109, 112, 105, 114, 101, 83, 117, 114, 118, 105, 118, 111, 114, 70, 97, 116, 101, 67, 97, 114, 100, 83, 101, 108, 101, 99, 116, 72, 0, 82, 3, 80, 107, 103, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 26, 100, 10, 7, 83, 117, 99, 99, 101, 115, 115, 18, 30, 10, 10, 70, 97, 116, 101, 67, 97, 114, 100, 73, 100, 24, 1, 32, 1, 40, 13, 82, 10, 70, 97, 116, 101, 67, 97, 114, 100, 73, 100, 18, 57, 10, 6, 82, 101, 119, 97, 114, 100, 24, 2, 32, 1, 40, 11, 50, 33, 46, 112, 114, 111, 116, 111, 46, 86, 97, 109, 112, 105, 114, 101, 83, 117, 114, 118, 105, 118, 111, 114, 76, 101, 118, 101, 108, 82, 101, 119, 97, 114, 100, 82, 6, 82, 101, 119, 97, 114, 100, 66, 8, 10, 6, 82, 101, 115, 117, 108, 116, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 151, 7, 10, 29, 118, 97, 109, 112, 105, 114, 101, 95, 115, 117, 114, 118, 105, 118, 111, 114, 95, 115, 101, 116, 116, 108, 101, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 26, 31, 116, 114, 97, 118, 101, 108, 101, 114, 95, 100, 117, 101, 108, 95, 114, 97, 110, 107, 95, 117, 112, 108, 111, 97, 100, 46, 112, 114, 111, 116, 111, 34, 220, 1, 10, 24, 86, 97, 109, 112, 105, 114, 101, 83, 117, 114, 118, 105, 118, 111, 114, 83, 101, 116, 116, 108, 101, 82, 101, 113, 18, 28, 10, 9, 75, 105, 108, 108, 67, 111, 117, 110, 116, 24, 1, 32, 3, 40, 13, 82, 9, 75, 105, 108, 108, 67, 111, 117, 110, 116, 18, 18, 10, 4, 84, 105, 109, 101, 24, 2, 32, 1, 40, 13, 82, 4, 84, 105, 109, 101, 18, 22, 10, 6, 68, 101, 102, 101, 97, 116, 24, 3, 32, 1, 40, 8, 82, 6, 68, 101, 102, 101, 97, 116, 18, 26, 10, 8, 67, 104, 101, 99, 107, 115, 117, 109, 24, 7, 32, 1, 40, 4, 82, 8, 67, 104, 101, 99, 107, 115, 117, 109, 18, 55, 10, 6, 83, 97, 109, 112, 108, 101, 24, 8, 32, 3, 40, 11, 50, 31, 46, 112, 114, 111, 116, 111, 46, 84, 114, 97, 118, 101, 108, 101, 114, 68, 117, 101, 108, 66, 97, 116, 116, 108, 101, 83, 97, 109, 112, 108, 101, 82, 6, 83, 97, 109, 112, 108, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 34, 167, 3, 10, 25, 86, 97, 109, 112, 105, 114, 101, 83, 117, 114, 118, 105, 118, 111, 114, 83, 101, 116, 116, 108, 101, 82, 101, 115, 112, 18, 72, 10, 7, 86, 105, 99, 116, 111, 114, 121, 24, 1, 32, 1, 40, 11, 50, 44, 46, 112, 114, 111, 116, 111, 46, 86, 97, 109, 112, 105, 114, 101, 83, 117, 114, 118, 105, 118, 111, 114, 83, 101, 116, 116, 108, 101, 82, 101, 115, 112, 46, 86, 105, 99, 116, 111, 114, 121, 68, 97, 116, 97, 72, 0, 82, 7, 86, 105, 99, 116, 111, 114, 121, 18, 69, 10, 6, 68, 101, 102, 101, 97, 116, 24, 2, 32, 1, 40, 11, 50, 43, 46, 112, 114, 111, 116, 111, 46, 86, 97, 109, 112, 105, 114, 101, 83, 117, 114, 118, 105, 118, 111, 114, 83, 101, 116, 116, 108, 101, 82, 101, 115, 112, 46, 68, 101, 102, 101, 97, 116, 68, 97, 116, 97, 72, 0, 82, 6, 68, 101, 102, 101, 97, 116, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 26, 157, 1, 10, 11, 86, 105, 99, 116, 111, 114, 121, 68, 97, 116, 97, 18, 52, 10, 5, 73, 110, 102, 111, 115, 24, 1, 32, 3, 40, 11, 50, 30, 46, 112, 114, 111, 116, 111, 46, 86, 97, 109, 112, 105, 114, 101, 83, 117, 114, 118, 105, 118, 111, 114, 65, 114, 101, 97, 73, 110, 102, 111, 82, 5, 73, 110, 102, 111, 115, 18, 30, 10, 10, 70, 105, 110, 97, 108, 83, 99, 111, 114, 101, 24, 2, 32, 1, 40, 13, 82, 10, 70, 105, 110, 97, 108, 83, 99, 111, 114, 101, 18, 16, 10, 3, 79, 108, 100, 24, 3, 32, 1, 40, 13, 82, 3, 79, 108, 100, 18, 16, 10, 3, 78, 101, 119, 24, 4, 32, 1, 40, 13, 82, 3, 78, 101, 119, 18, 20, 10, 5, 84, 111, 107, 101, 110, 24, 8, 32, 1, 40, 9, 82, 5, 84, 111, 107, 101, 110, 26, 44, 10, 10, 68, 101, 102, 101, 97, 116, 68, 97, 116, 97, 18, 30, 10, 10, 70, 105, 110, 97, 108, 83, 99, 111, 114, 101, 24, 1, 32, 1, 40, 13, 82, 10, 70, 105, 110, 97, 108, 83, 99, 111, 114, 101, 66, 8, 10, 6, 82, 101, 115, 117, 108, 116, 34, 170, 1, 10, 23, 86, 97, 109, 112, 105, 114, 101, 83, 117, 114, 118, 105, 118, 111, 114, 65, 114, 101, 97, 73, 110, 102, 111, 18, 28, 10, 9, 75, 105, 108, 108, 67, 111, 117, 110, 116, 24, 1, 32, 3, 40, 13, 82, 9, 75, 105, 108, 108, 67, 111, 117, 110, 116, 18, 28, 10, 9, 75, 105, 108, 108, 83, 99, 111, 114, 101, 24, 2, 32, 3, 40, 13, 82, 9, 75, 105, 108, 108, 83, 99, 111, 114, 101, 18, 26, 10, 8, 66, 111, 115, 115, 84, 105, 109, 101, 24, 3, 32, 1, 40, 13, 82, 8, 66, 111, 115, 115, 84, 105, 109, 101, 18, 20, 10, 5, 83, 99, 111, 114, 101, 24, 4, 32, 1, 40, 13, 82, 5, 83, 99, 111, 114, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 80, 1, 98, 6, 112, 114, 111, 116, 111, 51, 10, 199, 1, 10, 27, 118, 97, 109, 112, 105, 114, 101, 95, 116, 97, 108, 101, 110, 116, 95, 100, 101, 116, 97, 105, 108, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 34, 136, 1, 10, 23, 86, 97, 109, 112, 105, 114, 101, 84, 97, 108, 101, 110, 116, 68, 101, 116, 97, 105, 108, 82, 101, 115, 112, 18, 20, 10, 5, 78, 111, 100, 101, 115, 24, 1, 32, 1, 40, 12, 82, 5, 78, 111, 100, 101, 115, 18, 22, 10, 6, 80, 111, 105, 110, 116, 115, 24, 2, 32, 1, 40, 13, 82, 6, 80, 111, 105, 110, 116, 115, 18, 28, 10, 9, 82, 101, 115, 101, 116, 84, 105, 109, 101, 24, 3, 32, 1, 40, 3, 82, 9, 82, 101, 115, 101, 116, 84, 105, 109, 101, 18, 33, 10, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 24, 255, 15, 32, 1, 40, 12, 82, 11, 78, 101, 120, 116, 80, 97, 99, 107, 97, 103, 101, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 59, 10, 26, 118, 97, 109, 112, 105, 114, 101, 95, 116, 97, 108, 101, 110, 116, 95, 114, 101, 115, 101, 116, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51, 10, 60, 10, 27, 118, 97, 109, 112, 105, 114, 101, 95, 116, 97, 108, 101, 110, 116, 95, 117, 110, 108, 111, 99, 107, 46, 112, 114, 111, 116, 111, 18, 5, 112, 114, 111, 116, 111, 26, 12, 112, 117, 98, 108, 105, 99, 46, 112, 114, 111, 116, 111, 80, 0, 98, 6, 112, 114, 111, 116, 111, 51 }; + + public static byte[] TablePB = new byte[] { 10,239,206,6,10,18,99,108,105,101,110,116,95,116,97,98,108,101,46,112,114,111,116,111,18,11,110,111,118,97,46,99,108,105,101,110,116,34,217,4,10,11,65,99,104,105,101,118,101,109,101,110,116,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,28,10,9,65,99,104,105,101,118,101,73,100,24,2,32,1,40,5,82,9,65,99,104,105,101,118,101,73,100,18,20,10,5,84,105,116,108,101,24,3,32,1,40,9,82,5,84,105,116,108,101,18,18,10,4,68,101,115,99,24,4,32,1,40,9,82,4,68,101,115,99,18,22,10,6,82,97,114,105,116,121,24,5,32,1,40,5,82,6,82,97,114,105,116,121,18,18,10,4,84,121,112,101,24,6,32,1,40,5,82,4,84,121,112,101,18,18,10,4,72,105,100,101,24,7,32,1,40,8,82,4,72,105,100,101,18,22,10,6,74,117,109,112,84,111,24,8,32,1,40,5,82,6,74,117,109,112,84,111,18,34,10,12,67,111,109,112,108,101,116,101,67,111,110,100,24,9,32,1,40,5,82,12,67,111,109,112,108,101,116,101,67,111,110,100,18,46,10,18,67,111,109,112,108,101,116,101,67,111,110,100,67,108,105,101,110,116,24,10,32,1,40,5,82,18,67,111,109,112,108,101,116,101,67,111,110,100,67,108,105,101,110,116,18,30,10,10,65,105,109,78,117,109,83,104,111,119,24,11,32,1,40,5,82,10,65,105,109,78,117,109,83,104,111,119,18,36,10,13,80,114,101,114,101,113,117,105,115,105,116,101,115,24,12,32,3,40,5,82,13,80,114,101,114,101,113,117,105,115,105,116,101,115,18,28,10,9,76,101,118,101,108,84,121,112,101,24,13,32,1,40,5,82,9,76,101,118,101,108,84,121,112,101,18,52,10,21,67,108,105,101,110,116,67,111,109,112,108,101,116,101,80,97,114,97,109,115,49,24,14,32,3,40,5,82,21,67,108,105,101,110,116,67,111,109,112,108,101,116,101,80,97,114,97,109,115,49,18,52,10,21,67,108,105,101,110,116,67,111,109,112,108,101,116,101,80,97,114,97,109,115,50,24,15,32,3,40,5,82,21,67,108,105,101,110,116,67,111,109,112,108,101,116,101,80,97,114,97,109,115,50,18,18,10,4,84,105,100,49,24,16,32,1,40,5,82,4,84,105,100,49,18,18,10,4,81,116,121,49,24,17,32,1,40,5,82,4,81,116,121,49,18,18,10,4,84,105,100,50,24,18,32,1,40,5,82,4,84,105,100,50,18,18,10,4,81,116,121,50,24,19,32,1,40,5,82,4,81,116,121,50,18,18,10,4,84,105,100,51,24,20,32,1,40,5,82,4,84,105,100,51,18,18,10,4,81,116,121,51,24,21,32,1,40,5,82,4,81,116,121,51,34,65,10,17,116,97,98,108,101,95,65,99,104,105,101,118,101,109,101,110,116,18,44,10,4,108,105,115,116,24,1,32,3,40,11,50,24,46,110,111,118,97,46,99,108,105,101,110,116,46,65,99,104,105,101,118,101,109,101,110,116,82,4,108,105,115,116,34,222,3,10,8,65,99,116,105,118,105,116,121,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,22,10,6,83,111,114,116,73,100,24,2,32,1,40,5,82,6,83,111,114,116,73,100,18,34,10,12,65,99,116,105,118,105,116,121,84,121,112,101,24,3,32,1,40,5,82,12,65,99,116,105,118,105,116,121,84,121,112,101,18,18,10,4,78,97,109,101,24,4,32,1,40,9,82,4,78,97,109,101,18,26,10,8,80,114,101,76,105,109,105,116,24,5,32,1,40,5,82,8,80,114,101,76,105,109,105,116,18,30,10,10,76,105,109,105,116,80,97,114,97,109,24,6,32,1,40,9,82,10,76,105,109,105,116,80,97,114,97,109,18,28,10,9,83,116,97,114,116,84,121,112,101,24,7,32,1,40,5,82,9,83,116,97,114,116,84,121,112,101,18,28,10,9,83,116,97,114,116,84,105,109,101,24,8,32,1,40,9,82,9,83,116,97,114,116,84,105,109,101,18,36,10,13,83,116,97,114,116,67,111,110,100,84,121,112,101,24,9,32,1,40,5,82,13,83,116,97,114,116,67,111,110,100,84,121,112,101,18,40,10,15,83,116,97,114,116,67,111,110,100,80,97,114,97,109,115,24,10,32,3,40,5,82,15,83,116,97,114,116,67,111,110,100,80,97,114,97,109,115,18,24,10,7,69,110,100,84,121,112,101,24,11,32,1,40,5,82,7,69,110,100,84,121,112,101,18,24,10,7,69,110,100,84,105,109,101,24,12,32,1,40,9,82,7,69,110,100,84,105,109,101,18,32,10,11,69,110,100,68,117,114,97,116,105,111,110,24,13,32,1,40,5,82,11,69,110,100,68,117,114,97,116,105,111,110,18,28,10,9,66,97,110,110,101,114,82,101,115,24,14,32,1,40,9,82,9,66,97,110,110,101,114,82,101,115,18,26,10,8,80,111,112,85,112,82,101,115,24,15,32,1,40,9,82,8,80,111,112,85,112,82,101,115,18,26,10,8,84,97,98,66,103,82,101,115,24,16,32,1,40,9,82,8,84,97,98,66,103,82,101,115,34,59,10,14,116,97,98,108,101,95,65,99,116,105,118,105,116,121,18,41,10,4,108,105,115,116,24,1,32,3,40,11,50,21,46,110,111,118,97,46,99,108,105,101,110,116,46,65,99,116,105,118,105,116,121,82,4,108,105,115,116,34,113,10,13,65,100,100,66,117,102,102,65,99,116,105,111,110,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,24,10,7,71,114,111,117,112,73,100,24,2,32,1,40,5,82,7,71,114,111,117,112,73,100,18,30,10,10,84,97,114,103,101,116,84,121,112,101,24,3,32,1,40,5,82,10,84,97,114,103,101,116,84,121,112,101,18,22,10,6,66,117,102,102,73,100,24,4,32,1,40,5,82,6,66,117,102,102,73,100,34,69,10,19,116,97,98,108,101,95,65,100,100,66,117,102,102,65,99,116,105,111,110,18,46,10,4,108,105,115,116,24,1,32,3,40,11,50,26,46,110,111,118,97,46,99,108,105,101,110,116,46,65,100,100,66,117,102,102,65,99,116,105,111,110,82,4,108,105,115,116,34,86,10,12,65,102,102,105,110,105,116,121,71,105,102,116,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,34,10,12,66,97,115,101,65,102,102,105,110,105,116,121,24,2,32,1,40,5,82,12,66,97,115,101,65,102,102,105,110,105,116,121,18,18,10,4,84,97,103,115,24,3,32,3,40,5,82,4,84,97,103,115,34,67,10,18,116,97,98,108,101,95,65,102,102,105,110,105,116,121,71,105,102,116,18,45,10,4,108,105,115,116,24,1,32,3,40,11,50,25,46,110,111,118,97,46,99,108,105,101,110,116,46,65,102,102,105,110,105,116,121,71,105,102,116,82,4,108,105,115,116,34,159,3,10,13,65,102,102,105,110,105,116,121,76,101,118,101,108,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,36,10,13,65,102,102,105,110,105,116,121,76,101,118,101,108,24,2,32,1,40,5,82,13,65,102,102,105,110,105,116,121,76,101,118,101,108,18,24,10,7,78,101,101,100,69,120,112,24,3,32,1,40,5,82,7,78,101,101,100,69,120,112,18,30,10,10,84,101,109,112,108,97,116,101,73,100,24,4,32,1,40,5,82,10,84,101,109,112,108,97,116,101,73,100,18,44,10,17,65,102,102,105,110,105,116,121,76,101,118,101,108,78,97,109,101,24,5,32,1,40,9,82,17,65,102,102,105,110,105,116,121,76,101,118,101,108,78,97,109,101,18,44,10,17,65,102,102,105,110,105,116,121,76,101,118,101,108,73,99,111,110,24,6,32,1,40,9,82,17,65,102,102,105,110,105,116,121,76,101,118,101,108,73,99,111,110,18,56,10,23,65,102,102,105,110,105,116,121,76,101,118,101,108,82,101,119,97,114,100,73,99,111,110,24,7,32,1,40,9,82,23,65,102,102,105,110,105,116,121,76,101,118,101,108,82,101,119,97,114,100,73,99,111,110,18,64,10,27,65,102,102,105,110,105,116,121,76,101,118,101,108,82,101,119,97,114,100,76,111,99,107,73,99,111,110,24,8,32,1,40,9,82,27,65,102,102,105,110,105,116,121,76,101,118,101,108,82,101,119,97,114,100,76,111,99,107,73,99,111,110,18,22,10,6,69,102,102,101,99,116,24,9,32,3,40,5,82,6,69,102,102,101,99,116,18,46,10,18,65,102,102,105,110,105,116,121,76,101,118,101,108,83,116,97,103,101,24,10,32,1,40,5,82,18,65,102,102,105,110,105,116,121,76,101,118,101,108,83,116,97,103,101,34,69,10,19,116,97,98,108,101,95,65,102,102,105,110,105,116,121,76,101,118,101,108,18,46,10,4,108,105,115,116,24,1,32,3,40,11,50,26,46,110,111,118,97,46,99,108,105,101,110,116,46,65,102,102,105,110,105,116,121,76,101,118,101,108,82,4,108,105,115,116,34,241,1,10,13,65,102,102,105,110,105,116,121,81,117,101,115,116,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,68,101,115,99,24,2,32,1,40,9,82,4,68,101,115,99,18,22,10,6,83,111,114,116,73,100,24,3,32,1,40,5,82,6,83,111,114,116,73,100,18,22,10,6,67,104,97,114,73,100,24,4,32,1,40,5,82,6,67,104,97,114,73,100,18,34,10,12,67,111,109,112,108,101,116,101,67,111,110,100,24,5,32,1,40,5,82,12,67,111,109,112,108,101,116,101,67,111,110,100,18,46,10,18,67,111,109,112,108,101,116,101,67,111,110,100,80,97,114,97,109,115,24,6,32,1,40,9,82,18,67,111,109,112,108,101,116,101,67,111,110,100,80,97,114,97,109,115,18,22,10,6,82,101,119,97,114,100,24,7,32,3,40,5,82,6,82,101,119,97,114,100,18,32,10,11,65,102,102,105,110,105,116,121,69,120,112,24,8,32,1,40,5,82,11,65,102,102,105,110,105,116,121,69,120,112,34,69,10,19,116,97,98,108,101,95,65,102,102,105,110,105,116,121,81,117,101,115,116,18,46,10,4,108,105,115,116,24,1,32,3,40,11,50,26,46,110,111,118,97,46,99,108,105,101,110,116,46,65,102,102,105,110,105,116,121,81,117,101,115,116,82,4,108,105,115,116,34,234,2,10,16,65,102,102,105,110,105,116,121,85,112,82,101,119,97,114,100,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,22,10,6,67,104,97,114,73,100,24,2,32,1,40,5,82,6,67,104,97,114,73,100,18,32,10,11,82,101,119,97,114,100,76,101,118,101,108,24,3,32,1,40,5,82,11,82,101,119,97,114,100,76,101,118,101,108,18,24,10,7,82,101,119,97,114,100,49,24,4,32,3,40,5,82,7,82,101,119,97,114,100,49,18,24,10,7,82,101,119,97,114,100,50,24,5,32,3,40,5,82,7,82,101,119,97,114,100,50,18,24,10,7,82,101,119,97,114,100,51,24,6,32,3,40,5,82,7,82,101,119,97,114,100,51,18,30,10,10,68,101,115,99,70,114,111,110,116,49,24,7,32,1,40,9,82,10,68,101,115,99,70,114,111,110,116,49,18,30,10,10,68,101,115,99,70,114,111,110,116,50,24,8,32,1,40,9,82,10,68,101,115,99,70,114,111,110,116,50,18,30,10,10,68,101,115,99,70,114,111,110,116,51,24,9,32,1,40,9,82,10,68,101,115,99,70,114,111,110,116,51,18,30,10,10,68,101,115,99,65,102,116,101,114,49,24,10,32,1,40,9,82,10,68,101,115,99,65,102,116,101,114,49,18,30,10,10,68,101,115,99,65,102,116,101,114,50,24,11,32,1,40,9,82,10,68,101,115,99,65,102,116,101,114,50,18,30,10,10,68,101,115,99,65,102,116,101,114,51,24,12,32,1,40,9,82,10,68,101,115,99,65,102,116,101,114,51,34,75,10,22,116,97,98,108,101,95,65,102,102,105,110,105,116,121,85,112,82,101,119,97,114,100,18,49,10,4,108,105,115,116,24,1,32,3,40,11,50,29,46,110,111,118,97,46,99,108,105,101,110,116,46,65,102,102,105,110,105,116,121,85,112,82,101,119,97,114,100,82,4,108,105,115,116,34,159,6,10,5,65,103,101,110,116,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,16,10,3,84,97,98,24,2,32,1,40,5,82,3,84,97,98,18,18,10,4,78,111,116,101,24,3,32,1,40,9,82,4,78,111,116,101,18,18,10,4,78,97,109,101,24,4,32,1,40,9,82,4,78,97,109,101,18,18,10,4,68,101,115,99,24,5,32,1,40,9,82,4,68,101,115,99,18,28,10,9,67,111,110,115,105,103,110,111,114,24,6,32,1,40,9,82,9,67,111,110,115,105,103,110,111,114,18,32,10,11,82,101,102,114,101,115,104,84,121,112,101,24,7,32,1,40,5,82,11,82,101,102,114,101,115,104,84,121,112,101,18,30,10,10,77,101,109,98,101,114,84,121,112,101,24,8,32,1,40,5,82,10,77,101,109,98,101,114,84,121,112,101,18,20,10,5,76,101,118,101,108,24,9,32,1,40,5,82,5,76,101,118,101,108,18,30,10,10,66,117,105,108,100,83,99,111,114,101,24,10,32,1,40,5,82,10,66,117,105,108,100,83,99,111,114,101,18,32,10,11,77,101,109,98,101,114,76,105,109,105,116,24,11,32,1,40,5,82,11,77,101,109,98,101,114,76,105,109,105,116,18,18,10,4,84,97,103,115,24,12,32,3,40,5,82,4,84,97,103,115,18,28,10,9,69,120,116,114,97,84,97,103,115,24,13,32,3,40,5,82,9,69,120,116,114,97,84,97,103,115,18,42,10,16,85,110,108,111,99,107,67,111,110,100,105,116,105,111,110,115,24,14,32,1,40,9,82,16,85,110,108,111,99,107,67,111,110,100,105,116,105,111,110,115,18,18,10,4,83,111,114,116,24,15,32,1,40,5,82,4,83,111,114,116,18,20,10,5,84,105,109,101,49,24,16,32,1,40,5,82,5,84,105,109,101,49,18,38,10,14,82,101,119,97,114,100,80,114,101,118,105,101,119,49,24,17,32,1,40,9,82,14,82,101,119,97,114,100,80,114,101,118,105,101,119,49,18,36,10,13,66,111,110,117,115,80,114,101,118,105,101,119,49,24,18,32,1,40,9,82,13,66,111,110,117,115,80,114,101,118,105,101,119,49,18,20,10,5,84,105,109,101,50,24,19,32,1,40,5,82,5,84,105,109,101,50,18,38,10,14,82,101,119,97,114,100,80,114,101,118,105,101,119,50,24,20,32,1,40,9,82,14,82,101,119,97,114,100,80,114,101,118,105,101,119,50,18,36,10,13,66,111,110,117,115,80,114,101,118,105,101,119,50,24,21,32,1,40,9,82,13,66,111,110,117,115,80,114,101,118,105,101,119,50,18,20,10,5,84,105,109,101,51,24,22,32,1,40,5,82,5,84,105,109,101,51,18,38,10,14,82,101,119,97,114,100,80,114,101,118,105,101,119,51,24,23,32,1,40,9,82,14,82,101,119,97,114,100,80,114,101,118,105,101,119,51,18,36,10,13,66,111,110,117,115,80,114,101,118,105,101,119,51,24,24,32,1,40,9,82,13,66,111,110,117,115,80,114,101,118,105,101,119,51,18,20,10,5,84,105,109,101,52,24,25,32,1,40,5,82,5,84,105,109,101,52,18,38,10,14,82,101,119,97,114,100,80,114,101,118,105,101,119,52,24,26,32,1,40,9,82,14,82,101,119,97,114,100,80,114,101,118,105,101,119,52,18,36,10,13,66,111,110,117,115,80,114,101,118,105,101,119,52,24,27,32,1,40,9,82,13,66,111,110,117,115,80,114,101,118,105,101,119,52,34,53,10,11,116,97,98,108,101,95,65,103,101,110,116,18,38,10,4,108,105,115,116,24,1,32,3,40,11,50,18,46,110,111,118,97,46,99,108,105,101,110,116,46,65,103,101,110,116,82,4,108,105,115,116,34,139,1,10,23,65,103,101,110,116,83,112,101,99,105,97,108,80,101,114,102,111,114,109,97,110,99,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,22,10,6,67,104,97,114,73,100,24,2,32,3,40,5,82,6,67,104,97,114,73,100,18,22,10,6,87,101,105,103,104,116,24,3,32,1,40,5,82,6,87,101,105,103,104,116,18,16,10,3,65,118,103,24,4,32,1,40,9,82,3,65,118,103,18,30,10,10,65,86,71,71,114,111,117,112,73,100,24,5,32,1,40,9,82,10,65,86,71,71,114,111,117,112,73,100,34,89,10,29,116,97,98,108,101,95,65,103,101,110,116,83,112,101,99,105,97,108,80,101,114,102,111,114,109,97,110,99,101,18,56,10,4,108,105,115,116,24,1,32,3,40,11,50,36,46,110,111,118,97,46,99,108,105,101,110,116,46,65,103,101,110,116,83,112,101,99,105,97,108,80,101,114,102,111,114,109,97,110,99,101,82,4,108,105,115,116,34,84,10,8,65,103,101,110,116,84,97,98,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,14,10,2,66,103,24,3,32,1,40,9,82,2,66,103,18,20,10,5,83,112,84,97,103,24,4,32,1,40,8,82,5,83,112,84,97,103,34,59,10,14,116,97,98,108,101,95,65,103,101,110,116,84,97,98,18,41,10,4,108,105,115,116,24,1,32,3,40,11,50,21,46,110,111,118,97,46,99,108,105,101,110,116,46,65,103,101,110,116,84,97,98,82,4,108,105,115,116,34,226,1,10,2,65,73,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,24,10,7,70,67,83,112,97,119,110,24,2,32,1,40,9,82,7,70,67,83,112,97,119,110,18,22,10,6,70,67,73,100,108,101,24,3,32,1,40,9,82,6,70,67,73,100,108,101,18,26,10,8,70,67,65,99,116,105,111,110,24,4,32,1,40,9,82,8,70,67,65,99,116,105,111,110,18,36,10,13,70,67,76,111,115,116,67,111,110,116,114,111,108,24,5,32,1,40,9,82,13,70,67,76,111,115,116,67,111,110,116,114,111,108,18,24,10,7,70,67,68,101,97,116,104,24,6,32,1,40,9,82,7,70,67,68,101,97,116,104,18,26,10,8,70,67,71,108,111,98,97,108,24,7,32,1,40,9,82,8,70,67,71,108,111,98,97,108,18,34,10,12,70,67,67,111,109,98,111,71,114,111,117,112,24,8,32,1,40,9,82,12,70,67,67,111,109,98,111,71,114,111,117,112,34,47,10,8,116,97,98,108,101,95,65,73,18,35,10,4,108,105,115,116,24,1,32,3,40,11,50,15,46,110,111,118,97,46,99,108,105,101,110,116,46,65,73,82,4,108,105,115,116,34,104,10,10,65,114,101,97,69,102,102,101,99,116,18,24,10,7,65,114,101,97,84,97,103,24,1,32,1,40,5,82,7,65,114,101,97,84,97,103,18,26,10,8,77,97,120,67,111,117,110,116,24,2,32,1,40,5,82,8,77,97,120,67,111,117,110,116,18,36,10,13,79,118,101,114,76,105,109,105,116,84,121,112,101,24,3,32,1,40,5,82,13,79,118,101,114,76,105,109,105,116,84,121,112,101,34,63,10,16,116,97,98,108,101,95,65,114,101,97,69,102,102,101,99,116,18,43,10,4,108,105,115,116,24,1,32,3,40,11,50,23,46,110,111,118,97,46,99,108,105,101,110,116,46,65,114,101,97,69,102,102,101,99,116,82,4,108,105,115,116,34,191,17,10,9,65,116,116,114,105,98,117,116,101,18,14,10,2,73,100,24,1,32,1,40,9,82,2,73,100,18,24,10,7,71,114,111,117,112,73,100,24,2,32,1,40,5,82,7,71,114,111,117,112,73,100,18,20,10,5,66,114,101,97,107,24,3,32,1,40,5,82,5,66,114,101,97,107,18,16,10,3,108,118,108,24,4,32,1,40,5,82,3,108,118,108,18,16,10,3,65,116,107,24,5,32,1,40,5,82,3,65,116,107,18,14,10,2,72,112,24,6,32,1,40,5,82,2,72,112,18,16,10,3,68,101,102,24,7,32,1,40,5,82,3,68,101,102,18,26,10,8,67,114,105,116,82,97,116,101,24,8,32,1,40,5,82,8,67,114,105,116,82,97,116,101,18,38,10,14,78,111,114,109,97,108,67,114,105,116,82,97,116,101,24,9,32,1,40,5,82,14,78,111,114,109,97,108,67,114,105,116,82,97,116,101,18,36,10,13,83,107,105,108,108,67,114,105,116,82,97,116,101,24,10,32,1,40,5,82,13,83,107,105,108,108,67,114,105,116,82,97,116,101,18,36,10,13,85,108,116,114,97,67,114,105,116,82,97,116,101,24,11,32,1,40,5,82,13,85,108,116,114,97,67,114,105,116,82,97,116,101,18,34,10,12,77,97,114,107,67,114,105,116,82,97,116,101,24,12,32,1,40,5,82,12,77,97,114,107,67,114,105,116,82,97,116,101,18,38,10,14,83,117,109,109,111,110,67,114,105,116,82,97,116,101,24,13,32,1,40,5,82,14,83,117,109,109,111,110,67,114,105,116,82,97,116,101,18,46,10,18,80,114,111,106,101,99,116,105,108,101,67,114,105,116,82,97,116,101,24,14,32,1,40,5,82,18,80,114,111,106,101,99,116,105,108,101,67,114,105,116,82,97,116,101,18,36,10,13,79,116,104,101,114,67,114,105,116,82,97,116,101,24,15,32,1,40,5,82,13,79,116,104,101,114,67,114,105,116,82,97,116,101,18,38,10,14,67,114,105,116,82,101,115,105,115,116,97,110,99,101,24,16,32,1,40,5,82,14,67,114,105,116,82,101,115,105,115,116,97,110,99,101,18,28,10,9,67,114,105,116,80,111,119,101,114,24,17,32,1,40,5,82,9,67,114,105,116,80,111,119,101,114,18,40,10,15,78,111,114,109,97,108,67,114,105,116,80,111,119,101,114,24,18,32,1,40,5,82,15,78,111,114,109,97,108,67,114,105,116,80,111,119,101,114,18,38,10,14,83,107,105,108,108,67,114,105,116,80,111,119,101,114,24,19,32,1,40,5,82,14,83,107,105,108,108,67,114,105,116,80,111,119,101,114,18,38,10,14,85,108,116,114,97,67,114,105,116,80,111,119,101,114,24,20,32,1,40,5,82,14,85,108,116,114,97,67,114,105,116,80,111,119,101,114,18,36,10,13,77,97,114,107,67,114,105,116,80,111,119,101,114,24,21,32,1,40,5,82,13,77,97,114,107,67,114,105,116,80,111,119,101,114,18,40,10,15,83,117,109,109,111,110,67,114,105,116,80,111,119,101,114,24,22,32,1,40,5,82,15,83,117,109,109,111,110,67,114,105,116,80,111,119,101,114,18,48,10,19,80,114,111,106,101,99,116,105,108,101,67,114,105,116,80,111,119,101,114,24,23,32,1,40,5,82,19,80,114,111,106,101,99,116,105,108,101,67,114,105,116,80,111,119,101,114,18,38,10,14,79,116,104,101,114,67,114,105,116,80,111,119,101,114,24,24,32,1,40,5,82,14,79,116,104,101,114,67,114,105,116,80,111,119,101,114,18,24,10,7,72,105,116,82,97,116,101,24,25,32,1,40,5,82,7,72,105,116,82,97,116,101,18,16,10,3,69,118,100,24,26,32,1,40,5,82,3,69,118,100,18,28,10,9,68,101,102,80,105,101,114,99,101,24,27,32,1,40,5,82,9,68,101,102,80,105,101,114,99,101,18,28,10,9,68,101,102,73,103,110,111,114,101,24,28,32,1,40,5,82,9,68,101,102,73,103,110,111,114,101,18,16,10,3,87,69,80,24,29,32,1,40,5,82,3,87,69,80,18,16,10,3,70,69,80,24,30,32,1,40,5,82,3,70,69,80,18,16,10,3,83,69,80,24,31,32,1,40,5,82,3,83,69,80,18,16,10,3,65,69,80,24,32,32,1,40,5,82,3,65,69,80,18,16,10,3,76,69,80,24,33,32,1,40,5,82,3,76,69,80,18,16,10,3,68,69,80,24,34,32,1,40,5,82,3,68,69,80,18,16,10,3,87,69,73,24,35,32,1,40,5,82,3,87,69,73,18,16,10,3,70,69,73,24,36,32,1,40,5,82,3,70,69,73,18,16,10,3,83,69,73,24,37,32,1,40,5,82,3,83,69,73,18,16,10,3,65,69,73,24,38,32,1,40,5,82,3,65,69,73,18,16,10,3,76,69,73,24,39,32,1,40,5,82,3,76,69,73,18,16,10,3,68,69,73,24,40,32,1,40,5,82,3,68,69,73,18,16,10,3,87,69,69,24,41,32,1,40,5,82,3,87,69,69,18,16,10,3,70,69,69,24,42,32,1,40,5,82,3,70,69,69,18,16,10,3,83,69,69,24,43,32,1,40,5,82,3,83,69,69,18,16,10,3,65,69,69,24,44,32,1,40,5,82,3,65,69,69,18,16,10,3,76,69,69,24,45,32,1,40,5,82,3,76,69,69,18,16,10,3,68,69,69,24,46,32,1,40,5,82,3,68,69,69,18,16,10,3,87,69,82,24,47,32,1,40,5,82,3,87,69,82,18,16,10,3,70,69,82,24,48,32,1,40,5,82,3,70,69,82,18,16,10,3,83,69,82,24,49,32,1,40,5,82,3,83,69,82,18,16,10,3,65,69,82,24,50,32,1,40,5,82,3,65,69,82,18,16,10,3,76,69,82,24,51,32,1,40,5,82,3,76,69,82,18,16,10,3,68,69,82,24,52,32,1,40,5,82,3,68,69,82,18,52,10,21,84,111,117,103,104,110,101,115,115,68,97,109,97,103,101,65,100,106,117,115,116,24,53,32,1,40,5,82,21,84,111,117,103,104,110,101,115,115,68,97,109,97,103,101,65,100,106,117,115,116,18,28,10,9,84,111,117,103,104,110,101,115,115,24,54,32,1,40,5,82,9,84,111,117,103,104,110,101,115,115,18,26,10,8,83,117,112,112,114,101,115,115,24,55,32,1,40,5,82,8,83,117,112,112,114,101,115,115,18,28,10,9,78,79,82,77,65,76,68,77,71,24,56,32,1,40,5,82,9,78,79,82,77,65,76,68,77,71,18,26,10,8,83,75,73,76,76,68,77,71,24,57,32,1,40,5,82,8,83,75,73,76,76,68,77,71,18,26,10,8,85,76,84,82,65,68,77,71,24,58,32,1,40,5,82,8,85,76,84,82,65,68,77,71,18,26,10,8,79,84,72,69,82,68,77,71,24,59,32,1,40,5,82,8,79,84,72,69,82,68,77,71,18,34,10,12,82,67,68,78,79,82,77,65,76,68,77,71,24,60,32,1,40,5,82,12,82,67,68,78,79,82,77,65,76,68,77,71,18,32,10,11,82,67,68,83,75,73,76,76,68,77,71,24,61,32,1,40,5,82,11,82,67,68,83,75,73,76,76,68,77,71,18,32,10,11,82,67,68,85,76,84,82,65,68,77,71,24,62,32,1,40,5,82,11,82,67,68,85,76,84,82,65,68,77,71,18,32,10,11,82,67,68,79,84,72,69,82,68,77,71,24,63,32,1,40,5,82,11,82,67,68,79,84,72,69,82,68,77,71,18,24,10,7,77,65,82,75,68,77,71,24,64,32,1,40,5,82,7,77,65,82,75,68,77,71,18,30,10,10,82,67,68,77,65,82,75,68,77,71,24,65,32,1,40,5,82,10,82,67,68,77,65,82,75,68,77,71,18,28,10,9,83,85,77,77,79,78,68,77,71,24,66,32,1,40,5,82,9,83,85,77,77,79,78,68,77,71,18,34,10,12,82,67,68,83,85,77,77,79,78,68,77,71,24,67,32,1,40,5,82,12,82,67,68,83,85,77,77,79,78,68,77,71,18,36,10,13,80,82,79,74,69,67,84,73,76,69,68,77,71,24,68,32,1,40,5,82,13,80,82,79,74,69,67,84,73,76,69,68,77,71,18,42,10,16,82,67,68,80,82,79,74,69,67,84,73,76,69,68,77,71,24,69,32,1,40,5,82,16,82,67,68,80,82,79,74,69,67,84,73,76,69,68,77,71,18,22,10,6,71,69,78,68,77,71,24,70,32,1,40,5,82,6,71,69,78,68,77,71,18,24,10,7,68,77,71,80,76,85,83,24,71,32,1,40,5,82,7,68,77,71,80,76,85,83,18,26,10,8,70,73,78,65,76,68,77,71,24,72,32,1,40,5,82,8,70,73,78,65,76,68,77,71,18,34,10,12,70,73,78,65,76,68,77,71,80,76,85,83,24,73,32,1,40,5,82,12,70,73,78,65,76,68,77,71,80,76,85,83,18,22,10,6,87,69,69,82,67,68,24,74,32,1,40,5,82,6,87,69,69,82,67,68,18,22,10,6,70,69,69,82,67,68,24,75,32,1,40,5,82,6,70,69,69,82,67,68,18,22,10,6,83,69,69,82,67,68,24,76,32,1,40,5,82,6,83,69,69,82,67,68,18,22,10,6,65,69,69,82,67,68,24,77,32,1,40,5,82,6,65,69,69,82,67,68,18,22,10,6,76,69,69,82,67,68,24,78,32,1,40,5,82,6,76,69,69,82,67,68,18,22,10,6,68,69,69,82,67,68,24,79,32,1,40,5,82,6,68,69,69,82,67,68,18,28,10,9,71,69,78,68,77,71,82,67,68,24,80,32,1,40,5,82,9,71,69,78,68,77,71,82,67,68,18,30,10,10,68,77,71,80,76,85,83,82,67,68,24,81,32,1,40,5,82,10,68,77,71,80,76,85,83,82,67,68,34,61,10,15,116,97,98,108,101,95,65,116,116,114,105,98,117,116,101,18,42,10,4,108,105,115,116,24,1,32,3,40,11,50,22,46,110,111,118,97,46,99,108,105,101,110,116,46,65,116,116,114,105,98,117,116,101,82,4,108,105,115,116,34,106,10,14,65,116,116,114,105,98,117,116,101,76,105,109,105,116,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,20,10,5,76,111,119,101,114,24,2,32,1,40,5,82,5,76,111,119,101,114,18,20,10,5,85,112,112,101,114,24,3,32,1,40,5,82,5,85,112,112,101,114,18,28,10,9,73,115,76,105,109,105,116,101,100,24,4,32,1,40,8,82,9,73,115,76,105,109,105,116,101,100,34,71,10,20,116,97,98,108,101,95,65,116,116,114,105,98,117,116,101,76,105,109,105,116,18,47,10,4,108,105,115,116,24,1,32,3,40,11,50,27,46,110,111,118,97,46,99,108,105,101,110,116,46,65,116,116,114,105,98,117,116,101,76,105,109,105,116,82,4,108,105,115,116,34,142,6,10,10,66,97,116,116,108,101,80,97,115,115,18,14,10,2,73,68,24,1,32,1,40,5,82,2,73,68,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,28,10,9,83,116,97,114,116,84,105,109,101,24,3,32,1,40,9,82,9,83,116,97,114,116,84,105,109,101,18,24,10,7,69,110,100,84,105,109,101,24,4,32,1,40,9,82,7,69,110,100,84,105,109,101,18,40,10,15,76,117,120,117,114,121,80,114,111,100,117,99,116,73,100,24,5,32,1,40,9,82,15,76,117,120,117,114,121,80,114,111,100,117,99,116,73,100,18,32,10,11,76,117,120,117,114,121,80,114,105,99,101,24,6,32,1,40,5,82,11,76,117,120,117,114,121,80,114,105,99,101,18,42,10,16,76,117,120,117,114,121,66,111,110,117,115,76,101,118,101,108,24,7,32,1,40,5,82,16,76,117,120,117,114,121,66,111,110,117,115,76,101,118,101,108,18,28,10,9,76,117,120,117,114,121,84,105,100,24,8,32,1,40,5,82,9,76,117,120,117,114,121,84,105,100,18,28,10,9,76,117,120,117,114,121,81,116,121,24,9,32,1,40,5,82,9,76,117,120,117,114,121,81,116,121,18,42,10,16,80,114,101,109,105,117,109,80,114,111,100,117,99,116,73,100,24,10,32,1,40,9,82,16,80,114,101,109,105,117,109,80,114,111,100,117,99,116,73,100,18,34,10,12,80,114,101,109,105,117,109,80,114,105,99,101,24,11,32,1,40,5,82,12,80,114,101,109,105,117,109,80,114,105,99,101,18,30,10,10,80,114,101,109,105,117,109,84,105,100,24,12,32,1,40,5,82,10,80,114,101,109,105,117,109,84,105,100,18,30,10,10,80,114,101,109,105,117,109,81,116,121,24,13,32,1,40,5,82,10,80,114,101,109,105,117,109,81,116,121,18,54,10,22,67,111,109,112,108,101,109,101,110,116,97,114,121,80,114,111,100,117,99,116,73,100,24,14,32,1,40,9,82,22,67,111,109,112,108,101,109,101,110,116,97,114,121,80,114,111,100,117,99,116,73,100,18,46,10,18,67,111,109,112,108,101,109,101,110,116,97,114,121,80,114,105,99,101,24,15,32,1,40,5,82,18,67,111,109,112,108,101,109,101,110,116,97,114,121,80,114,105,99,101,18,42,10,16,67,111,109,112,108,101,109,101,110,116,97,114,121,84,105,100,24,16,32,1,40,5,82,16,67,111,109,112,108,101,109,101,110,116,97,114,121,84,105,100,18,42,10,16,67,111,109,112,108,101,109,101,110,116,97,114,121,81,116,121,24,17,32,1,40,5,82,16,67,111,109,112,108,101,109,101,110,116,97,114,121,81,116,121,18,20,10,5,67,111,118,101,114,24,18,32,1,40,9,82,5,67,111,118,101,114,18,42,10,16,80,114,101,109,105,117,109,83,104,111,119,73,116,101,109,115,24,19,32,3,40,5,82,16,80,114,101,109,105,117,109,83,104,111,119,73,116,101,109,115,18,40,10,15,76,117,120,117,114,121,83,104,111,119,73,116,101,109,115,24,20,32,3,40,5,82,15,76,117,120,117,114,121,83,104,111,119,73,116,101,109,115,18,52,10,21,79,117,116,102,105,116,80,97,99,107,97,103,101,83,104,111,119,73,116,101,109,24,21,32,1,40,5,82,21,79,117,116,102,105,116,80,97,99,107,97,103,101,83,104,111,119,73,116,101,109,34,63,10,16,116,97,98,108,101,95,66,97,116,116,108,101,80,97,115,115,18,43,10,4,108,105,115,116,24,1,32,3,40,11,50,23,46,110,111,118,97,46,99,108,105,101,110,116,46,66,97,116,116,108,101,80,97,115,115,82,4,108,105,115,116,34,87,10,15,66,97,116,116,108,101,80,97,115,115,76,101,118,101,108,18,14,10,2,73,68,24,1,32,1,40,5,82,2,73,68,18,16,10,3,69,120,112,24,2,32,1,40,5,82,3,69,120,112,18,16,10,3,84,105,100,24,3,32,1,40,5,82,3,84,105,100,18,16,10,3,81,116,121,24,4,32,1,40,5,82,3,81,116,121,34,73,10,21,116,97,98,108,101,95,66,97,116,116,108,101,80,97,115,115,76,101,118,101,108,18,48,10,4,108,105,115,116,24,1,32,3,40,11,50,28,46,110,111,118,97,46,99,108,105,101,110,116,46,66,97,116,116,108,101,80,97,115,115,76,101,118,101,108,82,4,108,105,115,116,34,117,10,15,66,97,116,116,108,101,80,97,115,115,81,117,101,115,116,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,84,121,112,101,24,2,32,1,40,5,82,4,84,121,112,101,18,20,10,5,84,105,116,108,101,24,3,32,1,40,9,82,5,84,105,116,108,101,18,22,10,6,74,117,109,112,84,111,24,4,32,1,40,5,82,6,74,117,109,112,84,111,18,16,10,3,69,120,112,24,5,32,1,40,5,82,3,69,120,112,34,73,10,21,116,97,98,108,101,95,66,97,116,116,108,101,80,97,115,115,81,117,101,115,116,18,48,10,4,108,105,115,116,24,1,32,3,40,11,50,28,46,110,111,118,97,46,99,108,105,101,110,116,46,66,97,116,116,108,101,80,97,115,115,81,117,101,115,116,82,4,108,105,115,116,34,198,1,10,16,66,97,116,116,108,101,80,97,115,115,82,101,119,97,114,100,18,14,10,2,73,68,24,1,32,1,40,5,82,2,73,68,18,20,10,5,76,101,118,101,108,24,2,32,1,40,5,82,5,76,101,118,101,108,18,18,10,4,84,105,100,49,24,3,32,1,40,5,82,4,84,105,100,49,18,18,10,4,81,116,121,49,24,4,32,1,40,5,82,4,81,116,121,49,18,18,10,4,84,105,100,50,24,5,32,1,40,5,82,4,84,105,100,50,18,18,10,4,81,116,121,50,24,6,32,1,40,5,82,4,81,116,121,50,18,18,10,4,84,105,100,51,24,7,32,1,40,5,82,4,84,105,100,51,18,18,10,4,81,116,121,51,24,8,32,1,40,5,82,4,81,116,121,51,18,20,10,5,70,111,99,117,115,24,9,32,1,40,8,82,5,70,111,99,117,115,34,75,10,22,116,97,98,108,101,95,66,97,116,116,108,101,80,97,115,115,82,101,119,97,114,100,18,49,10,4,108,105,115,116,24,1,32,3,40,11,50,29,46,110,111,118,97,46,99,108,105,101,110,116,46,66,97,116,116,108,101,80,97,115,115,82,101,119,97,114,100,82,4,108,105,115,116,34,197,5,10,15,66,97,116,116,108,101,84,104,114,101,115,104,111,108,100,18,28,10,9,77,105,115,115,105,111,110,73,100,24,1,32,1,40,5,82,9,77,105,115,115,105,111,110,73,100,18,24,10,7,86,101,114,115,105,111,110,24,2,32,1,40,5,82,7,86,101,114,115,105,111,110,18,30,10,10,102,114,111,109,83,114,99,65,116,107,24,3,32,1,40,5,82,10,102,114,111,109,83,114,99,65,116,107,18,54,10,22,102,114,111,109,80,101,114,107,73,110,116,101,110,115,105,116,121,82,97,116,105,111,24,4,32,1,40,5,82,22,102,114,111,109,80,101,114,107,73,110,116,101,110,115,105,116,121,82,97,116,105,111,18,42,10,16,102,114,111,109,83,108,111,116,68,109,103,82,97,116,105,111,24,5,32,1,40,5,82,16,102,114,111,109,83,108,111,116,68,109,103,82,97,116,105,111,18,22,10,6,102,114,111,109,69,69,24,6,32,1,40,5,82,6,102,114,111,109,69,69,18,40,10,15,102,114,111,109,71,101,110,68,109,103,82,97,116,105,111,24,7,32,1,40,5,82,15,102,114,111,109,71,101,110,68,109,103,82,97,116,105,111,18,32,10,11,102,114,111,109,68,109,103,80,108,117,115,24,8,32,1,40,5,82,11,102,114,111,109,68,109,103,80,108,117,115,18,36,10,13,102,114,111,109,67,114,105,116,82,97,116,105,111,24,9,32,1,40,5,82,13,102,114,111,109,67,114,105,116,82,97,116,105,111,18,44,10,17,102,114,111,109,70,105,110,97,108,68,109,103,82,97,116,105,111,24,10,32,1,40,5,82,17,102,114,111,109,70,105,110,97,108,68,109,103,82,97,116,105,111,18,42,10,16,102,114,111,109,70,105,110,97,108,68,109,103,80,108,117,115,24,11,32,1,40,5,82,16,102,114,111,109,70,105,110,97,108,68,109,103,80,108,117,115,18,28,10,9,116,111,69,114,65,109,101,110,100,24,12,32,1,40,5,82,9,116,111,69,114,65,109,101,110,100,18,30,10,10,116,111,68,101,102,65,109,101,110,100,24,13,32,1,40,5,82,10,116,111,68,101,102,65,109,101,110,100,18,44,10,17,116,111,82,99,100,83,108,111,116,68,109,103,82,97,116,105,111,24,14,32,1,40,5,82,17,116,111,82,99,100,83,108,111,116,68,109,103,82,97,116,105,111,18,24,10,7,116,111,69,69,82,67,68,24,15,32,1,40,5,82,7,116,111,69,69,82,67,68,18,42,10,16,116,111,71,101,110,68,109,103,82,99,100,82,97,116,105,111,24,16,32,1,40,5,82,16,116,111,71,101,110,68,109,103,82,99,100,82,97,116,105,111,18,34,10,12,116,111,68,109,103,80,108,117,115,82,99,100,24,17,32,1,40,5,82,12,116,111,68,109,103,80,108,117,115,82,99,100,18,16,10,3,68,109,103,24,18,32,1,40,5,82,3,68,109,103,18,26,10,8,67,114,105,116,82,97,116,101,24,19,32,1,40,5,82,8,67,114,105,116,82,97,116,101,18,14,10,2,72,112,24,20,32,1,40,5,82,2,72,112,34,73,10,21,116,97,98,108,101,95,66,97,116,116,108,101,84,104,114,101,115,104,111,108,100,18,48,10,4,108,105,115,116,24,1,32,3,40,11,50,28,46,110,111,118,97,46,99,108,105,101,110,116,46,66,97,116,116,108,101,84,104,114,101,115,104,111,108,100,82,4,108,105,115,116,34,106,10,8,66,111,97,114,100,78,80,67,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,20,10,5,65,108,105,97,115,24,3,32,1,40,9,82,5,65,108,105,97,115,18,36,10,13,68,101,102,97,117,108,116,83,107,105,110,73,100,24,4,32,1,40,5,82,13,68,101,102,97,117,108,116,83,107,105,110,73,100,34,59,10,14,116,97,98,108,101,95,66,111,97,114,100,78,80,67,18,41,10,4,108,105,115,116,24,1,32,3,40,11,50,21,46,110,111,118,97,46,99,108,105,101,110,116,46,66,111,97,114,100,78,80,67,82,4,108,105,115,116,34,158,4,10,4,66,117,102,102,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,36,10,13,108,101,118,101,108,84,121,112,101,68,97,116,97,24,3,32,1,40,5,82,13,108,101,118,101,108,84,121,112,101,68,97,116,97,18,28,10,9,76,101,118,101,108,68,97,116,97,24,4,32,1,40,5,82,9,76,101,118,101,108,68,97,116,97,18,36,10,13,77,97,105,110,79,114,83,117,112,112,111,114,116,24,5,32,1,40,5,82,13,77,97,105,110,79,114,83,117,112,112,111,114,116,18,24,10,7,71,114,111,117,112,73,100,24,6,32,1,40,5,82,7,71,114,111,117,112,73,100,18,30,10,10,82,101,100,117,99,101,84,105,109,101,24,7,32,1,40,5,82,10,82,101,100,117,99,101,84,105,109,101,18,26,10,8,66,117,102,102,84,97,103,49,24,8,32,1,40,5,82,8,66,117,102,102,84,97,103,49,18,26,10,8,66,117,102,102,84,97,103,50,24,9,32,1,40,5,82,8,66,117,102,102,84,97,103,50,18,26,10,8,66,117,102,102,84,97,103,51,24,10,32,1,40,5,82,8,66,117,102,102,84,97,103,51,18,26,10,8,66,117,102,102,84,97,103,52,24,11,32,1,40,5,82,8,66,117,102,102,84,97,103,52,18,26,10,8,66,117,102,102,84,97,103,53,24,12,32,1,40,5,82,8,66,117,102,102,84,97,103,53,18,30,10,10,66,105,110,100,69,102,102,101,99,116,24,13,32,1,40,9,82,10,66,105,110,100,69,102,102,101,99,116,18,18,10,4,73,99,111,110,24,14,32,1,40,9,82,4,73,99,111,110,18,22,10,6,73,115,83,104,111,119,24,15,32,1,40,8,82,6,73,115,83,104,111,119,18,40,10,15,84,111,112,111,102,72,101,97,100,69,102,102,101,99,116,24,16,32,1,40,9,82,15,84,111,112,111,102,72,101,97,100,69,102,102,101,99,116,18,46,10,18,66,117,102,102,78,117,109,69,102,102,101,99,116,76,101,118,101,108,24,17,32,3,40,5,82,18,66,117,102,102,78,117,109,69,102,102,101,99,116,76,101,118,101,108,18,28,10,9,78,111,116,82,101,109,111,118,101,24,18,32,1,40,8,82,9,78,111,116,82,101,109,111,118,101,34,51,10,10,116,97,98,108,101,95,66,117,102,102,18,37,10,4,108,105,115,116,24,1,32,3,40,11,50,17,46,110,111,118,97,46,99,108,105,101,110,116,46,66,117,102,102,82,4,108,105,115,116,34,151,3,10,9,66,117,102,102,86,97,108,117,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,18,10,4,83,111,114,116,24,3,32,1,40,5,82,4,83,111,114,116,18,32,10,11,66,117,102,102,69,102,102,101,99,116,115,24,4,32,3,40,5,82,11,66,117,102,102,69,102,102,101,99,116,115,18,18,10,4,84,105,109,101,24,5,32,1,40,5,82,4,84,105,109,101,18,34,10,12,76,97,109,105,110,97,116,101,100,78,117,109,24,6,32,1,40,5,82,12,76,97,109,105,110,97,116,101,100,78,117,109,18,16,10,3,78,117,109,24,7,32,1,40,5,82,3,78,117,109,18,44,10,17,84,105,109,101,83,117,112,101,114,112,111,115,105,116,105,111,110,24,8,32,1,40,5,82,17,84,105,109,101,83,117,112,101,114,112,111,115,105,116,105,111,110,18,22,10,6,84,105,109,105,110,103,24,9,32,1,40,5,82,6,84,105,109,105,110,103,18,32,10,11,82,101,112,108,97,99,101,84,121,112,101,24,10,32,1,40,8,82,11,82,101,112,108,97,99,101,84,121,112,101,18,32,10,11,65,116,116,97,99,107,67,108,101,97,114,24,11,32,1,40,8,82,11,65,116,116,97,99,107,67,108,101,97,114,18,26,10,8,72,105,116,67,108,101,97,114,24,12,32,1,40,8,82,8,72,105,116,67,108,101,97,114,18,28,10,9,73,115,73,110,104,101,114,105,116,24,13,32,1,40,8,82,9,73,115,73,110,104,101,114,105,116,18,34,10,12,73,115,69,120,105,116,68,101,108,101,116,101,24,14,32,1,40,8,82,12,73,115,69,120,105,116,68,101,108,101,116,101,34,61,10,15,116,97,98,108,101,95,66,117,102,102,86,97,108,117,101,18,42,10,4,108,105,115,116,24,1,32,3,40,11,50,22,46,110,111,118,97,46,99,108,105,101,110,116,46,66,117,102,102,86,97,108,117,101,82,4,108,105,115,116,34,149,2,10,7,67,104,97,112,116,101,114,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,18,10,4,68,101,115,99,24,3,32,1,40,9,82,4,68,101,115,99,18,32,10,11,67,104,97,112,116,101,114,84,121,112,101,24,4,32,1,40,5,82,11,67,104,97,112,116,101,114,84,121,112,101,18,30,10,10,87,111,114,108,100,67,108,97,115,115,24,5,32,1,40,5,82,10,87,111,114,108,100,67,108,97,115,115,18,36,10,13,80,114,101,118,77,97,105,110,108,105,110,101,115,24,6,32,3,40,5,82,13,80,114,101,118,77,97,105,110,108,105,110,101,115,18,40,10,15,67,111,109,112,108,101,116,101,82,101,119,97,114,100,115,24,7,32,1,40,9,82,15,67,111,109,112,108,101,116,101,82,101,119,97,114,100,115,18,30,10,10,67,104,97,112,116,101,114,73,109,103,24,8,32,1,40,9,82,10,67,104,97,112,116,101,114,73,109,103,18,32,10,11,67,104,97,112,116,101,114,73,99,111,110,24,9,32,1,40,9,82,11,67,104,97,112,116,101,114,73,99,111,110,34,57,10,13,116,97,98,108,101,95,67,104,97,112,116,101,114,18,40,10,4,108,105,115,116,24,1,32,3,40,11,50,20,46,110,111,118,97,46,99,108,105,101,110,116,46,67,104,97,112,116,101,114,82,4,108,105,115,116,34,163,18,10,9,67,104,97,114,97,99,116,101,114,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,24,10,7,86,105,115,105,98,108,101,24,3,32,1,40,8,82,7,86,105,115,105,98,108,101,18,28,10,9,65,118,97,105,108,97,98,108,101,24,4,32,1,40,8,82,9,65,118,97,105,108,97,98,108,101,18,20,10,5,71,114,97,100,101,24,5,32,1,40,5,82,5,71,114,97,100,101,18,36,10,13,68,101,102,97,117,108,116,83,107,105,110,73,100,24,6,32,1,40,5,82,13,68,101,102,97,117,108,116,83,107,105,110,73,100,18,36,10,13,65,100,118,97,110,99,101,83,107,105,110,73,100,24,7,32,1,40,5,82,13,65,100,118,97,110,99,101,83,107,105,110,73,100,18,34,10,12,65,100,118,97,110,99,101,71,114,111,117,112,24,8,32,1,40,5,82,12,65,100,118,97,110,99,101,71,114,111,117,112,18,54,10,22,65,100,118,97,110,99,101,83,107,105,110,85,110,108,111,99,107,76,101,118,101,108,24,9,32,1,40,5,82,22,65,100,118,97,110,99,101,83,107,105,110,85,110,108,111,99,107,76,101,118,101,108,18,24,10,7,70,97,99,116,105,111,110,24,10,32,1,40,5,82,7,70,97,99,116,105,111,110,18,22,10,6,87,101,105,103,104,116,24,11,32,1,40,5,82,6,87,101,105,103,104,116,18,16,10,3,69,69,84,24,12,32,1,40,5,82,3,69,69,84,18,20,10,5,67,108,97,115,115,24,13,32,1,40,5,82,5,67,108,97,115,115,18,48,10,19,67,104,97,114,97,99,116,101,114,65,116,116,97,99,107,84,121,112,101,24,14,32,1,40,5,82,19,67,104,97,114,97,99,116,101,114,65,116,116,97,99,107,84,121,112,101,18,42,10,16,83,101,97,114,99,104,84,97,114,103,101,116,84,121,112,101,24,15,32,1,40,5,82,16,83,101,97,114,99,104,84,97,114,103,101,116,84,121,112,101,18,22,10,6,65,116,107,83,112,100,24,16,32,1,40,5,82,6,65,116,107,83,112,100,18,24,10,7,77,111,118,84,121,112,101,24,17,32,1,40,5,82,7,77,111,118,84,121,112,101,18,24,10,7,87,97,108,107,83,112,100,24,18,32,1,40,5,82,7,87,97,108,107,83,112,100,18,22,10,6,82,117,110,83,112,100,24,19,32,1,40,5,82,6,82,117,110,83,112,100,18,26,10,8,83,112,82,117,110,83,112,100,24,20,32,1,40,5,82,8,83,112,82,117,110,83,112,100,18,26,10,8,84,114,97,110,115,83,112,100,24,21,32,1,40,5,82,8,84,114,97,110,115,83,112,100,18,44,10,17,87,97,108,107,84,111,82,117,110,68,117,114,97,116,105,111,110,24,22,32,1,40,5,82,17,87,97,108,107,84,111,82,117,110,68,117,114,97,116,105,111,110,18,64,10,27,68,111,100,103,101,84,111,82,117,110,65,99,99,101,108,101,114,97,116,105,111,110,79,114,78,111,116,24,23,32,1,40,8,82,27,68,111,100,103,101,84,111,82,117,110,65,99,99,101,108,101,114,97,116,105,111,110,79,114,78,111,116,18,22,10,6,77,111,118,65,99,99,24,24,32,1,40,5,82,6,77,111,118,65,99,99,18,22,10,6,82,111,116,83,112,100,24,25,32,1,40,5,82,6,82,111,116,83,112,100,18,22,10,6,82,111,116,65,99,99,24,26,32,1,40,5,82,6,82,111,116,65,99,99,18,28,10,9,86,105,115,105,111,110,68,101,103,24,27,32,1,40,5,82,9,86,105,115,105,111,110,68,101,103,18,28,10,9,86,105,115,105,111,110,82,110,103,24,28,32,1,40,5,82,9,86,105,115,105,111,110,82,110,103,18,40,10,15,86,105,115,105,111,110,65,116,116,97,99,107,82,110,103,24,29,32,1,40,5,82,15,86,105,115,105,111,110,65,116,116,97,99,107,82,110,103,18,24,10,7,72,101,97,114,82,110,103,24,30,32,1,40,5,82,7,72,101,97,114,82,110,103,18,36,10,13,72,101,97,114,65,116,116,97,99,107,82,110,103,24,31,32,1,40,5,82,13,72,101,97,114,65,116,116,97,99,107,82,110,103,18,32,10,11,82,97,105,115,101,71,117,110,82,110,103,24,32,32,1,40,5,82,11,82,97,105,115,101,71,117,110,82,110,103,18,30,10,10,66,117,108,108,101,116,84,121,112,101,24,33,32,1,40,5,82,10,66,117,108,108,101,116,84,121,112,101,18,18,10,4,65,109,109,111,24,34,32,1,40,5,82,4,65,109,109,111,18,18,10,4,65,73,73,100,24,35,32,1,40,5,82,4,65,73,73,100,18,32,10,11,78,111,114,109,97,108,65,116,107,73,100,24,36,32,1,40,5,82,11,78,111,114,109,97,108,65,116,107,73,100,18,24,10,7,68,111,100,103,101,73,100,24,37,32,1,40,5,82,7,68,111,100,103,101,73,100,18,24,10,7,83,107,105,108,108,73,100,24,38,32,1,40,5,82,7,83,107,105,108,108,73,100,18,38,10,14,83,112,101,99,105,97,108,83,107,105,108,108,73,100,24,39,32,1,40,5,82,14,83,112,101,99,105,97,108,83,107,105,108,108,73,100,18,30,10,10,85,108,116,105,109,97,116,101,73,100,24,40,32,1,40,5,82,10,85,108,116,105,109,97,116,101,73,100,18,30,10,10,65,115,115,105,115,116,65,73,73,100,24,41,32,1,40,5,82,10,65,115,115,105,115,116,65,73,73,100,18,44,10,17,65,115,115,105,115,116,78,111,114,109,97,108,65,116,107,73,100,24,42,32,1,40,5,82,17,65,115,115,105,115,116,78,111,114,109,97,108,65,116,107,73,100,18,36,10,13,65,115,115,105,115,116,68,111,100,103,101,73,100,24,43,32,1,40,5,82,13,65,115,115,105,115,116,68,111,100,103,101,73,100,18,36,10,13,65,115,115,105,115,116,83,107,105,108,108,73,100,24,44,32,1,40,5,82,13,65,115,115,105,115,116,83,107,105,108,108,73,100,18,50,10,20,65,115,115,105,115,116,83,112,101,99,105,97,108,83,107,105,108,108,73,100,24,45,32,1,40,5,82,20,65,115,115,105,115,116,83,112,101,99,105,97,108,83,107,105,108,108,73,100,18,42,10,16,65,115,115,105,115,116,85,108,116,105,109,97,116,101,73,100,24,46,32,1,40,5,82,16,65,115,115,105,115,116,85,108,116,105,109,97,116,101,73,100,18,36,10,13,84,97,108,101,110,116,83,107,105,108,108,73,100,24,47,32,1,40,5,82,13,84,97,108,101,110,116,83,107,105,108,108,73,100,18,54,10,22,65,115,115,105,115,116,83,107,105,108,108,79,110,83,116,97,103,101,84,121,112,101,24,48,32,1,40,5,82,22,65,115,115,105,115,116,83,107,105,108,108,79,110,83,116,97,103,101,84,121,112,101,18,42,10,16,65,115,115,105,115,116,83,107,105,108,108,65,110,103,108,101,24,49,32,1,40,5,82,16,65,115,115,105,115,116,83,107,105,108,108,65,110,103,108,101,18,44,10,17,65,115,115,105,115,116,83,107,105,108,108,82,97,100,105,117,115,24,50,32,1,40,5,82,17,65,115,115,105,115,116,83,107,105,108,108,82,97,100,105,117,115,18,68,10,29,65,115,115,105,115,116,83,107,105,108,108,79,110,83,116,97,103,101,79,114,105,101,110,116,97,116,105,111,110,24,51,32,1,40,5,82,29,65,115,115,105,115,116,83,107,105,108,108,79,110,83,116,97,103,101,79,114,105,101,110,116,97,116,105,111,110,18,60,10,25,65,115,115,105,115,116,85,108,116,105,109,97,116,101,79,110,83,116,97,103,101,84,121,112,101,24,52,32,1,40,5,82,25,65,115,115,105,115,116,85,108,116,105,109,97,116,101,79,110,83,116,97,103,101,84,121,112,101,18,48,10,19,65,115,115,105,115,116,85,108,116,105,109,97,116,101,65,110,103,108,101,24,53,32,1,40,5,82,19,65,115,115,105,115,116,85,108,116,105,109,97,116,101,65,110,103,108,101,18,50,10,20,65,115,115,105,115,116,85,108,116,105,109,97,116,101,82,97,100,105,117,115,24,54,32,1,40,5,82,20,65,115,115,105,115,116,85,108,116,105,109,97,116,101,82,97,100,105,117,115,18,74,10,32,65,115,115,105,115,116,85,108,116,105,109,97,116,101,79,110,83,116,97,103,101,79,114,105,101,110,116,97,116,105,111,110,24,55,32,1,40,5,82,32,65,115,115,105,115,116,85,108,116,105,109,97,116,101,79,110,83,116,97,103,101,79,114,105,101,110,116,97,116,105,111,110,18,26,10,8,83,119,105,116,99,104,67,68,24,56,32,1,40,5,82,8,83,119,105,116,99,104,67,68,18,40,10,15,69,110,101,114,103,121,67,111,110,118,82,97,116,105,111,24,57,32,1,40,5,82,15,69,110,101,114,103,121,67,111,110,118,82,97,116,105,111,18,42,10,16,69,110,101,114,103,121,69,102,102,105,99,105,101,110,99,121,24,58,32,1,40,5,82,16,69,110,101,114,103,121,69,102,102,105,99,105,101,110,99,121,18,32,10,11,70,114,97,103,109,101,110,116,115,73,100,24,59,32,1,40,5,82,11,70,114,97,103,109,101,110,116,115,73,100,18,34,10,12,84,114,97,110,115,102,111,114,109,81,116,121,24,60,32,1,40,5,82,12,84,114,97,110,115,102,111,114,109,81,116,121,18,38,10,14,82,101,99,114,117,105,116,109,101,110,116,81,116,121,24,61,32,1,40,5,82,14,82,101,99,114,117,105,116,109,101,110,116,81,116,121,18,32,10,11,65,116,116,114,105,98,117,116,101,73,100,24,62,32,1,40,9,82,11,65,116,116,114,105,98,117,116,101,73,100,18,40,10,15,80,114,101,115,101,110,116,115,84,114,97,105,116,73,100,24,63,32,1,40,5,82,15,80,114,101,115,101,110,116,115,84,114,97,105,116,73,100,18,46,10,18,83,107,105,108,108,115,85,112,103,114,97,100,101,71,114,111,117,112,24,64,32,3,40,5,82,18,83,107,105,108,108,115,85,112,103,114,97,100,101,71,114,111,117,112,34,61,10,15,116,97,98,108,101,95,67,104,97,114,97,99,116,101,114,18,42,10,4,108,105,115,116,24,1,32,3,40,11,50,22,46,110,111,118,97,46,99,108,105,101,110,116,46,67,104,97,114,97,99,116,101,114,82,4,108,105,115,116,34,218,5,10,16,67,104,97,114,97,99,116,101,114,65,100,118,97,110,99,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,20,10,5,71,114,111,117,112,24,2,32,1,40,5,82,5,71,114,111,117,112,18,30,10,10,65,100,118,97,110,99,101,76,118,108,24,3,32,1,40,5,82,10,65,100,118,97,110,99,101,76,118,108,18,18,10,4,84,105,100,49,24,4,32,1,40,5,82,4,84,105,100,49,18,18,10,4,81,116,121,49,24,5,32,1,40,5,82,4,81,116,121,49,18,18,10,4,84,105,100,50,24,6,32,1,40,5,82,4,84,105,100,50,18,18,10,4,81,116,121,50,24,7,32,1,40,5,82,4,81,116,121,50,18,18,10,4,84,105,100,51,24,8,32,1,40,5,82,4,84,105,100,51,18,18,10,4,81,116,121,51,24,9,32,1,40,5,82,4,81,116,121,51,18,18,10,4,84,105,100,52,24,10,32,1,40,5,82,4,84,105,100,52,18,18,10,4,81,116,121,52,24,11,32,1,40,5,82,4,81,116,121,52,18,24,10,7,71,111,108,100,81,116,121,24,12,32,1,40,5,82,7,71,111,108,100,81,116,121,18,28,10,9,65,119,97,114,100,84,105,100,49,24,13,32,1,40,5,82,9,65,119,97,114,100,84,105,100,49,18,28,10,9,65,119,97,114,100,81,116,121,49,24,14,32,1,40,5,82,9,65,119,97,114,100,81,116,121,49,18,28,10,9,65,119,97,114,100,84,105,100,50,24,15,32,1,40,5,82,9,65,119,97,114,100,84,105,100,50,18,28,10,9,65,119,97,114,100,81,116,121,50,24,16,32,1,40,5,82,9,65,119,97,114,100,81,116,121,50,18,28,10,9,65,119,97,114,100,84,105,100,51,24,17,32,1,40,5,82,9,65,119,97,114,100,84,105,100,51,18,28,10,9,65,119,97,114,100,81,116,121,51,24,18,32,1,40,5,82,9,65,119,97,114,100,81,116,121,51,18,44,10,17,65,100,118,97,110,99,101,68,101,115,99,70,114,111,110,116,49,24,19,32,1,40,9,82,17,65,100,118,97,110,99,101,68,101,115,99,70,114,111,110,116,49,18,44,10,17,65,100,118,97,110,99,101,68,101,115,99,65,102,116,101,114,49,24,20,32,1,40,9,82,17,65,100,118,97,110,99,101,68,101,115,99,65,102,116,101,114,49,18,44,10,17,65,100,118,97,110,99,101,68,101,115,99,70,114,111,110,116,50,24,21,32,1,40,9,82,17,65,100,118,97,110,99,101,68,101,115,99,70,114,111,110,116,50,18,44,10,17,65,100,118,97,110,99,101,68,101,115,99,65,102,116,101,114,50,24,22,32,1,40,9,82,17,65,100,118,97,110,99,101,68,101,115,99,65,102,116,101,114,50,18,44,10,17,65,100,118,97,110,99,101,68,101,115,99,70,114,111,110,116,51,24,23,32,1,40,9,82,17,65,100,118,97,110,99,101,68,101,115,99,70,114,111,110,116,51,18,44,10,17,65,100,118,97,110,99,101,68,101,115,99,65,102,116,101,114,51,24,24,32,1,40,9,82,17,65,100,118,97,110,99,101,68,101,115,99,65,102,116,101,114,51,34,75,10,22,116,97,98,108,101,95,67,104,97,114,97,99,116,101,114,65,100,118,97,110,99,101,18,49,10,4,108,105,115,116,24,1,32,3,40,11,50,29,46,110,111,118,97,46,99,108,105,101,110,116,46,67,104,97,114,97,99,116,101,114,65,100,118,97,110,99,101,82,4,108,105,115,116,34,194,1,10,16,67,104,97,114,97,99,116,101,114,65,114,99,104,105,118,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,26,10,8,65,114,99,104,84,121,112,101,24,2,32,1,40,5,82,8,65,114,99,104,84,121,112,101,18,32,10,11,67,104,97,114,97,99,116,101,114,73,100,24,3,32,1,40,5,82,11,67,104,97,114,97,99,116,101,114,73,100,18,48,10,19,85,110,108,111,99,107,65,102,102,105,110,105,116,121,76,101,118,101,108,24,4,32,1,40,5,82,19,85,110,108,111,99,107,65,102,102,105,110,105,116,121,76,101,118,101,108,18,26,10,8,82,101,99,111,114,100,73,100,24,5,32,1,40,5,82,8,82,101,99,111,114,100,73,100,18,18,10,4,83,111,114,116,24,6,32,1,40,5,82,4,83,111,114,116,34,75,10,22,116,97,98,108,101,95,67,104,97,114,97,99,116,101,114,65,114,99,104,105,118,101,18,49,10,4,108,105,115,116,24,1,32,3,40,11,50,29,46,110,111,118,97,46,99,108,105,101,110,116,46,67,104,97,114,97,99,116,101,114,65,114,99,104,105,118,101,82,4,108,105,115,116,34,144,1,10,24,67,104,97,114,97,99,116,101,114,65,114,99,104,105,118,101,66,97,115,101,73,110,102,111,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,32,10,11,67,104,97,114,97,99,116,101,114,73,100,24,2,32,1,40,5,82,11,67,104,97,114,97,99,116,101,114,73,100,18,20,10,5,84,105,116,108,101,24,3,32,1,40,9,82,5,84,105,116,108,101,18,24,10,7,67,111,110,116,101,110,116,24,4,32,1,40,9,82,7,67,111,110,116,101,110,116,18,18,10,4,83,111,114,116,24,5,32,1,40,5,82,4,83,111,114,116,34,91,10,30,116,97,98,108,101,95,67,104,97,114,97,99,116,101,114,65,114,99,104,105,118,101,66,97,115,101,73,110,102,111,18,57,10,4,108,105,115,116,24,1,32,3,40,11,50,37,46,110,111,118,97,46,99,108,105,101,110,116,46,67,104,97,114,97,99,116,101,114,65,114,99,104,105,118,101,66,97,115,101,73,110,102,111,82,4,108,105,115,116,34,89,10,23,67,104,97,114,97,99,116,101,114,65,114,99,104,105,118,101,67,111,110,116,101,110,116,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,20,10,5,84,105,116,108,101,24,2,32,1,40,9,82,5,84,105,116,108,101,18,24,10,7,67,111,110,116,101,110,116,24,3,32,1,40,9,82,7,67,111,110,116,101,110,116,34,89,10,29,116,97,98,108,101,95,67,104,97,114,97,99,116,101,114,65,114,99,104,105,118,101,67,111,110,116,101,110,116,18,56,10,4,108,105,115,116,24,1,32,3,40,11,50,36,46,110,111,118,97,46,99,108,105,101,110,116,46,67,104,97,114,97,99,116,101,114,65,114,99,104,105,118,101,67,111,110,116,101,110,116,82,4,108,105,115,116,34,131,2,10,21,67,104,97,114,97,99,116,101,114,65,114,99,104,105,118,101,86,111,105,99,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,32,10,11,67,104,97,114,97,99,116,101,114,73,100,24,2,32,1,40,5,82,11,67,104,97,114,97,99,116,101,114,73,100,18,48,10,19,85,110,108,111,99,107,65,102,102,105,110,105,116,121,76,101,118,101,108,24,3,32,1,40,5,82,19,85,110,108,111,99,107,65,102,102,105,110,105,116,121,76,101,118,101,108,18,30,10,10,85,110,108,111,99,107,80,108,111,116,24,4,32,1,40,5,82,10,85,110,108,111,99,107,80,108,111,116,18,20,10,5,84,105,116,108,101,24,5,32,1,40,9,82,5,84,105,116,108,101,18,22,10,6,83,111,117,114,99,101,24,6,32,1,40,9,82,6,83,111,117,114,99,101,18,36,10,13,65,114,99,104,86,111,105,99,101,84,121,112,101,24,7,32,1,40,5,82,13,65,114,99,104,86,111,105,99,101,84,121,112,101,18,18,10,4,83,111,114,116,24,8,32,1,40,5,82,4,83,111,114,116,34,85,10,27,116,97,98,108,101,95,67,104,97,114,97,99,116,101,114,65,114,99,104,105,118,101,86,111,105,99,101,18,54,10,4,108,105,115,116,24,1,32,3,40,11,50,34,46,110,111,118,97,46,99,108,105,101,110,116,46,67,104,97,114,97,99,116,101,114,65,114,99,104,105,118,101,86,111,105,99,101,82,4,108,105,115,116,34,167,1,10,11,67,104,97,114,97,99,116,101,114,67,71,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,46,10,18,70,117,108,108,83,99,114,101,101,110,80,111,114,116,114,97,105,116,24,2,32,1,40,9,82,18,70,117,108,108,83,99,114,101,101,110,80,111,114,116,114,97,105,116,18,36,10,13,70,117,108,108,83,99,114,101,101,110,76,50,68,24,3,32,1,40,9,82,13,70,117,108,108,83,99,114,101,101,110,76,50,68,18,30,10,10,85,110,108,111,99,107,80,108,111,116,24,4,32,1,40,5,82,10,85,110,108,111,99,107,80,108,111,116,18,18,10,4,78,97,109,101,24,5,32,1,40,9,82,4,78,97,109,101,34,65,10,17,116,97,98,108,101,95,67,104,97,114,97,99,116,101,114,67,71,18,44,10,4,108,105,115,116,24,1,32,3,40,11,50,24,46,110,111,118,97,46,99,108,105,101,110,116,46,67,104,97,114,97,99,116,101,114,67,71,82,4,108,105,115,116,34,160,2,10,12,67,104,97,114,97,99,116,101,114,68,101,115,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,20,10,5,65,108,105,97,115,24,2,32,1,40,9,82,5,65,108,105,97,115,18,18,10,4,67,110,67,118,24,3,32,1,40,9,82,4,67,110,67,118,18,18,10,4,74,112,67,118,24,4,32,1,40,9,82,4,74,112,67,118,18,28,10,9,67,104,97,114,67,111,108,111,114,24,5,32,1,40,9,82,9,67,104,97,114,67,111,108,111,114,18,38,10,14,67,104,97,114,83,107,105,108,108,67,111,108,111,114,24,6,32,1,40,9,82,14,67,104,97,114,83,107,105,108,108,67,111,108,111,114,18,24,10,7,67,104,97,114,68,101,115,24,7,32,1,40,9,82,7,67,104,97,114,68,101,115,18,16,10,3,84,97,103,24,8,32,3,40,5,82,3,84,97,103,18,20,10,5,70,111,114,99,101,24,9,32,1,40,5,82,5,70,111,114,99,101,18,30,10,10,80,114,101,102,101,114,84,97,103,115,24,10,32,3,40,5,82,10,80,114,101,102,101,114,84,97,103,115,18,26,10,8,72,97,116,101,84,97,103,115,24,11,32,3,40,5,82,8,72,97,116,101,84,97,103,115,34,67,10,18,116,97,98,108,101,95,67,104,97,114,97,99,116,101,114,68,101,115,18,45,10,4,108,105,115,116,24,1,32,3,40,11,50,25,46,110,111,118,97,46,99,108,105,101,110,116,46,67,104,97,114,97,99,116,101,114,68,101,115,82,4,108,105,115,116,34,151,2,10,21,67,104,97,114,97,99,116,101,114,83,107,105,108,108,85,112,103,114,97,100,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,20,10,5,71,114,111,117,112,24,2,32,1,40,5,82,5,71,114,111,117,112,18,30,10,10,65,100,118,97,110,99,101,78,117,109,24,3,32,1,40,5,82,10,65,100,118,97,110,99,101,78,117,109,18,18,10,4,84,105,100,49,24,4,32,1,40,5,82,4,84,105,100,49,18,18,10,4,81,116,121,49,24,5,32,1,40,5,82,4,81,116,121,49,18,18,10,4,84,105,100,50,24,6,32,1,40,5,82,4,84,105,100,50,18,18,10,4,81,116,121,50,24,7,32,1,40,5,82,4,81,116,121,50,18,18,10,4,84,105,100,51,24,8,32,1,40,5,82,4,84,105,100,51,18,18,10,4,81,116,121,51,24,9,32,1,40,5,82,4,81,116,121,51,18,18,10,4,84,105,100,52,24,10,32,1,40,5,82,4,84,105,100,52,18,18,10,4,81,116,121,52,24,11,32,1,40,5,82,4,81,116,121,52,18,24,10,7,71,111,108,100,81,116,121,24,12,32,1,40,5,82,7,71,111,108,100,81,116,121,34,85,10,27,116,97,98,108,101,95,67,104,97,114,97,99,116,101,114,83,107,105,108,108,85,112,103,114,97,100,101,18,54,10,4,108,105,115,116,24,1,32,3,40,11,50,34,46,110,111,118,97,46,99,108,105,101,110,116,46,67,104,97,114,97,99,116,101,114,83,107,105,108,108,85,112,103,114,97,100,101,82,4,108,105,115,116,34,133,7,10,13,67,104,97,114,97,99,116,101,114,83,107,105,110,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,18,10,4,68,101,115,99,24,3,32,1,40,9,82,4,68,101,115,99,18,22,10,6,73,115,83,104,111,119,24,4,32,1,40,8,82,6,73,115,83,104,111,119,18,22,10,6,67,104,97,114,73,100,24,5,32,1,40,5,82,6,67,104,97,114,73,100,18,18,10,4,84,121,112,101,24,6,32,1,40,5,82,4,84,121,112,101,18,30,10,10,83,111,117,114,99,101,68,101,115,99,24,7,32,1,40,5,82,10,83,111,117,114,99,101,68,101,115,99,18,28,10,9,84,114,97,110,115,102,111,114,109,24,8,32,1,40,9,82,9,84,114,97,110,115,102,111,114,109,18,42,10,16,87,97,108,107,65,110,105,109,97,116,105,111,110,83,112,100,24,9,32,1,40,5,82,16,87,97,108,107,65,110,105,109,97,116,105,111,110,83,112,100,18,40,10,15,82,117,110,65,110,105,109,97,116,105,111,110,83,112,100,24,10,32,1,40,5,82,15,82,117,110,65,110,105,109,97,116,105,111,110,83,112,100,18,44,10,17,83,112,82,117,110,65,110,105,109,97,116,105,111,110,83,112,100,24,11,32,1,40,5,82,17,83,112,82,117,110,65,110,105,109,97,116,105,111,110,83,112,100,18,30,10,10,77,111,100,101,108,83,99,97,108,101,24,12,32,1,40,5,82,10,77,111,100,101,108,83,99,97,108,101,18,36,10,13,67,111,108,108,105,100,101,114,83,99,97,108,101,24,13,32,1,40,5,82,13,67,111,108,108,105,100,101,114,83,99,97,108,101,18,38,10,14,77,111,100,101,108,83,104,111,119,83,99,97,108,101,24,14,32,1,40,5,82,14,77,111,100,101,108,83,104,111,119,83,99,97,108,101,18,36,10,13,77,111,100,101,108,69,110,100,83,99,97,108,101,24,15,32,1,40,5,82,13,77,111,100,101,108,69,110,100,83,99,97,108,101,18,44,10,17,70,111,114,98,105,100,100,101,110,66,101,104,105,116,82,111,116,24,16,32,1,40,8,82,17,70,111,114,98,105,100,100,101,110,66,101,104,105,116,82,111,116,18,18,10,4,73,99,111,110,24,17,32,1,40,9,82,4,73,99,111,110,18,26,10,8,80,111,114,116,114,97,105,116,24,18,32,1,40,9,82,8,80,111,114,116,114,97,105,116,18,14,10,2,66,103,24,19,32,1,40,9,82,2,66,103,18,22,10,6,79,102,102,115,101,116,24,20,32,1,40,9,82,6,79,102,102,115,101,116,18,16,10,3,76,50,68,24,21,32,1,40,9,82,3,76,50,68,18,32,10,11,67,104,97,114,97,99,116,101,114,67,71,24,22,32,1,40,5,82,11,67,104,97,114,97,99,116,101,114,67,71,18,20,10,5,77,111,100,101,108,24,23,32,1,40,9,82,5,77,111,100,101,108,18,29,10,10,77,111,100,101,108,95,83,104,111,119,24,24,32,1,40,9,82,9,77,111,100,101,108,83,104,111,119,18,27,10,9,77,111,100,101,108,95,69,110,100,24,25,32,1,40,9,82,8,77,111,100,101,108,69,110,100,18,26,10,8,71,97,99,104,97,76,50,68,24,26,32,1,40,9,82,8,71,97,99,104,97,76,50,68,18,28,10,9,83,107,105,110,84,104,101,109,101,24,27,32,1,40,5,82,9,83,107,105,110,84,104,101,109,101,18,42,10,16,69,102,102,101,99,116,83,99,97,108,101,86,97,108,117,101,24,28,32,1,40,5,82,16,69,102,102,101,99,116,83,99,97,108,101,86,97,108,117,101,18,48,10,19,84,97,103,69,102,102,101,99,116,83,99,97,108,101,86,97,108,117,101,24,29,32,1,40,5,82,19,84,97,103,69,102,102,101,99,116,83,99,97,108,101,86,97,108,117,101,34,69,10,19,116,97,98,108,101,95,67,104,97,114,97,99,116,101,114,83,107,105,110,18,46,10,4,108,105,115,116,24,1,32,3,40,11,50,26,46,110,111,118,97,46,99,108,105,101,110,116,46,67,104,97,114,97,99,116,101,114,83,107,105,110,82,4,108,105,115,116,34,158,1,10,22,67,104,97,114,97,99,116,101,114,83,107,105,110,80,97,110,101,108,70,97,99,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,26,10,8,77,97,105,110,86,105,101,119,24,2,32,1,40,9,82,8,77,97,105,110,86,105,101,119,18,26,10,8,67,104,97,114,73,110,102,111,24,3,32,1,40,9,82,8,67,104,97,114,73,110,102,111,18,28,10,9,66,97,116,116,101,108,87,105,110,24,4,32,1,40,9,82,9,66,97,116,116,101,108,87,105,110,18,30,10,10,66,97,116,116,108,101,76,111,115,101,24,5,32,1,40,9,82,10,66,97,116,116,108,101,76,111,115,101,34,87,10,28,116,97,98,108,101,95,67,104,97,114,97,99,116,101,114,83,107,105,110,80,97,110,101,108,70,97,99,101,18,55,10,4,108,105,115,116,24,1,32,3,40,11,50,35,46,110,111,118,97,46,99,108,105,101,110,116,46,67,104,97,114,97,99,116,101,114,83,107,105,110,80,97,110,101,108,70,97,99,101,82,4,108,105,115,116,34,96,10,18,67,104,97,114,97,99,116,101,114,83,107,105,110,84,104,101,109,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,18,10,4,68,101,115,99,24,3,32,1,40,9,82,4,68,101,115,99,18,18,10,4,73,99,111,110,24,4,32,1,40,9,82,4,73,99,111,110,34,79,10,24,116,97,98,108,101,95,67,104,97,114,97,99,116,101,114,83,107,105,110,84,104,101,109,101,18,51,10,4,108,105,115,116,24,1,32,3,40,11,50,31,46,110,111,118,97,46,99,108,105,101,110,116,46,67,104,97,114,97,99,116,101,114,83,107,105,110,84,104,101,109,101,82,4,108,105,115,116,34,78,10,12,67,104,97,114,97,99,116,101,114,84,97,103,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,20,10,5,84,105,116,108,101,24,2,32,1,40,9,82,5,84,105,116,108,101,18,24,10,7,84,97,103,84,121,112,101,24,3,32,1,40,5,82,7,84,97,103,84,121,112,101,34,67,10,18,116,97,98,108,101,95,67,104,97,114,97,99,116,101,114,84,97,103,18,45,10,4,108,105,115,116,24,1,32,3,40,11,50,25,46,110,111,118,97,46,99,108,105,101,110,116,46,67,104,97,114,97,99,116,101,114,84,97,103,82,4,108,105,115,116,34,98,10,16,67,104,97,114,97,99,116,101,114,85,112,103,114,97,100,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,22,10,6,82,97,114,105,116,121,24,2,32,1,40,5,82,6,82,97,114,105,116,121,18,20,10,5,76,101,118,101,108,24,3,32,1,40,5,82,5,76,101,118,101,108,18,16,10,3,69,120,112,24,4,32,1,40,5,82,3,69,120,112,34,75,10,22,116,97,98,108,101,95,67,104,97,114,97,99,116,101,114,85,112,103,114,97,100,101,18,49,10,4,108,105,115,116,24,1,32,3,40,11,50,29,46,110,111,118,97,46,99,108,105,101,110,116,46,67,104,97,114,97,99,116,101,114,85,112,103,114,97,100,101,82,4,108,105,115,116,34,141,2,10,21,67,104,97,114,97,99,116,101,114,86,111,105,99,101,67,111,110,116,114,111,108,18,14,10,2,73,100,24,1,32,1,40,9,82,2,73,100,18,32,10,11,112,114,111,98,97,98,105,108,105,116,121,24,2,32,1,40,5,82,11,112,114,111,98,97,98,105,108,105,116,121,18,24,10,7,114,101,115,84,121,112,101,24,3,32,1,40,5,82,7,114,101,115,84,121,112,101,18,30,10,10,99,111,109,98,97,116,79,110,108,121,24,4,32,1,40,8,82,10,99,111,109,98,97,116,79,110,108,121,18,40,10,15,119,111,114,108,100,76,101,118,101,108,84,121,112,101,115,24,5,32,3,40,5,82,15,119,111,114,108,100,76,101,118,101,108,84,121,112,101,115,18,22,10,6,98,117,98,98,108,101,24,6,32,1,40,8,82,6,98,117,98,98,108,101,18,14,10,2,99,100,24,7,32,1,40,2,82,2,99,100,18,26,10,8,118,111,80,108,97,121,101,114,24,8,32,1,40,5,82,8,118,111,80,108,97,121,101,114,18,26,10,8,112,114,105,111,114,105,116,121,24,9,32,1,40,5,82,8,112,114,105,111,114,105,116,121,34,85,10,27,116,97,98,108,101,95,67,104,97,114,97,99,116,101,114,86,111,105,99,101,67,111,110,116,114,111,108,18,54,10,4,108,105,115,116,24,1,32,3,40,11,50,34,46,110,111,118,97,46,99,108,105,101,110,116,46,67,104,97,114,97,99,116,101,114,86,111,105,99,101,67,111,110,116,114,111,108,82,4,108,105,115,116,34,70,10,20,67,104,97,114,65,102,102,105,110,105,116,121,84,101,109,112,108,97,116,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,30,10,10,84,101,109,112,108,97,116,101,73,100,24,2,32,1,40,5,82,10,84,101,109,112,108,97,116,101,73,100,34,83,10,26,116,97,98,108,101,95,67,104,97,114,65,102,102,105,110,105,116,121,84,101,109,112,108,97,116,101,18,53,10,4,108,105,115,116,24,1,32,3,40,11,50,33,46,110,111,118,97,46,99,108,105,101,110,116,46,67,104,97,114,65,102,102,105,110,105,116,121,84,101,109,112,108,97,116,101,82,4,108,105,115,116,34,205,1,10,9,67,104,97,114,71,114,97,100,101,18,20,10,5,71,114,97,100,101,24,1,32,1,40,5,82,5,71,114,97,100,101,18,34,10,12,70,114,97,103,109,101,110,116,115,81,116,121,24,2,32,1,40,5,82,12,70,114,97,103,109,101,110,116,115,81,116,121,18,44,10,17,71,101,110,101,114,97,108,70,114,97,103,109,101,110,116,73,100,24,3,32,1,40,5,82,17,71,101,110,101,114,97,108,70,114,97,103,109,101,110,116,73,100,18,42,10,16,83,117,98,115,116,105,116,117,116,101,73,116,101,109,73,100,24,4,32,1,40,5,82,16,83,117,98,115,116,105,116,117,116,101,73,116,101,109,73,100,18,44,10,17,83,117,98,115,116,105,116,117,116,101,73,116,101,109,81,116,121,24,5,32,1,40,5,82,17,83,117,98,115,116,105,116,117,116,101,73,116,101,109,81,116,121,34,61,10,15,116,97,98,108,101,95,67,104,97,114,71,114,97,100,101,18,42,10,4,108,105,115,116,24,1,32,3,40,11,50,22,46,110,111,118,97,46,99,108,105,101,110,116,46,67,104,97,114,71,114,97,100,101,82,4,108,105,115,116,34,81,10,11,67,104,97,114,73,116,101,109,69,120,112,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,22,10,6,73,116,101,109,73,100,24,2,32,1,40,5,82,6,73,116,101,109,73,100,18,26,10,8,69,120,112,86,97,108,117,101,24,3,32,1,40,5,82,8,69,120,112,86,97,108,117,101,34,65,10,17,116,97,98,108,101,95,67,104,97,114,73,116,101,109,69,120,112,18,44,10,4,108,105,115,116,24,1,32,3,40,11,50,24,46,110,111,118,97,46,99,108,105,101,110,116,46,67,104,97,114,73,116,101,109,69,120,112,82,4,108,105,115,116,34,199,2,10,13,67,104,97,114,80,111,116,101,110,116,105,97,108,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,62,10,26,77,97,115,116,101,114,83,112,101,99,105,102,105,99,80,111,116,101,110,116,105,97,108,73,100,115,24,2,32,3,40,5,82,26,77,97,115,116,101,114,83,112,101,99,105,102,105,99,80,111,116,101,110,116,105,97,108,73,100,115,18,62,10,26,65,115,115,105,115,116,83,112,101,99,105,102,105,99,80,111,116,101,110,116,105,97,108,73,100,115,24,3,32,3,40,5,82,26,65,115,115,105,115,116,83,112,101,99,105,102,105,99,80,111,116,101,110,116,105,97,108,73,100,115,18,46,10,18,67,111,109,109,111,110,80,111,116,101,110,116,105,97,108,73,100,115,24,4,32,3,40,5,82,18,67,111,109,109,111,110,80,111,116,101,110,116,105,97,108,73,100,115,18,58,10,24,77,97,115,116,101,114,78,111,114,109,97,108,80,111,116,101,110,116,105,97,108,73,100,115,24,5,32,3,40,5,82,24,77,97,115,116,101,114,78,111,114,109,97,108,80,111,116,101,110,116,105,97,108,73,100,115,18,58,10,24,65,115,115,105,115,116,78,111,114,109,97,108,80,111,116,101,110,116,105,97,108,73,100,115,24,6,32,3,40,5,82,24,65,115,115,105,115,116,78,111,114,109,97,108,80,111,116,101,110,116,105,97,108,73,100,115,34,69,10,19,116,97,98,108,101,95,67,104,97,114,80,111,116,101,110,116,105,97,108,18,46,10,4,108,105,115,116,24,1,32,3,40,11,50,26,46,110,111,118,97,46,99,108,105,101,110,116,46,67,104,97,114,80,111,116,101,110,116,105,97,108,82,4,108,105,115,116,34,158,1,10,18,67,104,97,114,82,97,114,105,116,121,83,101,113,117,101,110,99,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,20,10,5,71,114,97,100,101,24,2,32,1,40,5,82,5,71,114,97,100,101,18,30,10,10,65,100,118,97,110,99,101,76,118,108,24,3,32,1,40,5,82,10,65,100,118,97,110,99,101,76,118,108,18,24,10,7,76,118,76,105,109,105,116,24,4,32,1,40,5,82,7,76,118,76,105,109,105,116,18,40,10,15,87,111,114,108,100,67,108,97,115,115,76,105,109,105,116,24,5,32,1,40,5,82,15,87,111,114,108,100,67,108,97,115,115,76,105,109,105,116,34,79,10,24,116,97,98,108,101,95,67,104,97,114,82,97,114,105,116,121,83,101,113,117,101,110,99,101,18,51,10,4,108,105,115,116,24,1,32,3,40,11,50,31,46,110,111,118,97,46,99,108,105,101,110,116,46,67,104,97,114,82,97,114,105,116,121,83,101,113,117,101,110,99,101,82,4,108,105,115,116,34,232,3,10,4,67,104,97,116,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,36,10,13,65,100,100,114,101,115,115,66,111,111,107,73,100,24,2,32,1,40,5,82,13,65,100,100,114,101,115,115,66,111,111,107,73,100,18,20,10,5,65,86,71,73,100,24,3,32,1,40,9,82,5,65,86,71,73,100,18,30,10,10,65,86,71,71,114,111,117,112,73,100,24,4,32,1,40,9,82,10,65,86,71,71,114,111,117,112,73,100,18,28,10,9,80,114,101,67,104,97,116,73,100,24,5,32,1,40,5,82,9,80,114,101,67,104,97,116,73,100,18,26,10,8,80,114,105,111,114,105,116,121,24,6,32,1,40,5,82,8,80,114,105,111,114,105,116,121,18,32,10,11,84,114,105,103,103,101,114,84,121,112,101,24,7,32,1,40,5,82,11,84,114,105,103,103,101,114,84,121,112,101,18,28,10,9,65,117,116,111,80,111,112,85,112,24,8,32,1,40,8,82,9,65,117,116,111,80,111,112,85,112,18,32,10,11,84,114,105,103,103,101,114,67,111,110,100,24,9,32,1,40,5,82,11,84,114,105,103,103,101,114,67,111,110,100,18,42,10,16,84,114,105,103,103,101,114,67,111,110,100,80,97,114,97,109,24,10,32,1,40,9,82,16,84,114,105,103,103,101,114,67,111,110,100,80,97,114,97,109,18,24,10,7,82,101,119,97,114,100,49,24,11,32,1,40,5,82,7,82,101,119,97,114,100,49,18,30,10,10,82,101,119,97,114,100,81,116,121,49,24,12,32,1,40,5,82,10,82,101,119,97,114,100,81,116,121,49,18,24,10,7,82,101,119,97,114,100,50,24,13,32,1,40,5,82,7,82,101,119,97,114,100,50,18,30,10,10,82,101,119,97,114,100,81,116,121,50,24,14,32,1,40,5,82,10,82,101,119,97,114,100,81,116,121,50,18,24,10,7,82,101,119,97,114,100,51,24,15,32,1,40,5,82,7,82,101,119,97,114,100,51,18,30,10,10,82,101,119,97,114,100,81,116,121,51,24,16,32,1,40,5,82,10,82,101,119,97,114,100,81,116,121,51,34,51,10,10,116,97,98,108,101,95,67,104,97,116,18,37,10,4,108,105,115,116,24,1,32,3,40,11,50,17,46,110,111,118,97,46,99,108,105,101,110,116,46,67,104,97,116,82,4,108,105,115,116,34,161,3,10,5,67,104,101,115,116,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,20,10,5,71,114,111,117,112,24,2,32,1,40,5,82,5,71,114,111,117,112,18,20,10,5,76,97,98,101,108,24,3,32,1,40,5,82,5,76,97,98,101,108,18,26,10,8,76,111,119,70,108,111,111,114,24,4,32,1,40,5,82,8,76,111,119,70,108,111,111,114,18,28,10,9,72,105,103,104,70,108,111,111,114,24,5,32,1,40,5,82,9,72,105,103,104,70,108,111,111,114,18,40,10,15,84,110,116,101,114,97,99,116,105,111,110,84,121,112,101,24,6,32,1,40,5,82,15,84,110,116,101,114,97,99,116,105,111,110,84,121,112,101,18,26,10,8,65,117,116,111,79,112,101,110,24,7,32,1,40,5,82,8,65,117,116,111,79,112,101,110,18,28,10,9,77,111,100,101,108,80,97,116,104,24,8,32,1,40,9,82,9,77,111,100,101,108,80,97,116,104,18,20,10,5,73,116,101,109,49,24,9,32,1,40,5,82,5,73,116,101,109,49,18,24,10,7,78,117,109,98,101,114,49,24,10,32,1,40,5,82,7,78,117,109,98,101,114,49,18,20,10,5,73,116,101,109,50,24,11,32,1,40,5,82,5,73,116,101,109,50,18,24,10,7,78,117,109,98,101,114,50,24,12,32,1,40,5,82,7,78,117,109,98,101,114,50,18,20,10,5,73,116,101,109,51,24,13,32,1,40,5,82,5,73,116,101,109,51,18,24,10,7,78,117,109,98,101,114,51,24,14,32,1,40,5,82,7,78,117,109,98,101,114,51,18,20,10,5,73,116,101,109,52,24,15,32,1,40,5,82,5,73,116,101,109,52,18,24,10,7,78,117,109,98,101,114,52,24,16,32,1,40,5,82,7,78,117,109,98,101,114,52,34,53,10,11,116,97,98,108,101,95,67,104,101,115,116,18,38,10,4,108,105,115,116,24,1,32,3,40,11,50,18,46,110,111,118,97,46,99,108,105,101,110,116,46,67,104,101,115,116,82,4,108,105,115,116,34,46,10,6,67,111,110,102,105,103,18,14,10,2,73,100,24,1,32,1,40,9,82,2,73,100,18,20,10,5,86,97,108,117,101,24,2,32,1,40,9,82,5,86,97,108,117,101,34,55,10,12,116,97,98,108,101,95,67,111,110,102,105,103,18,39,10,4,108,105,115,116,24,1,32,3,40,11,50,19,46,110,111,118,97,46,99,108,105,101,110,116,46,67,111,110,102,105,103,82,4,108,105,115,116,34,83,10,11,67,111,110,116,101,110,116,87,111,114,100,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,32,10,11,80,114,101,115,101,116,67,111,108,111,114,24,2,32,1,40,9,82,11,80,114,101,115,101,116,67,111,108,111,114,18,18,10,4,87,111,114,100,24,3,32,1,40,9,82,4,87,111,114,100,34,65,10,17,116,97,98,108,101,95,67,111,110,116,101,110,116,87,111,114,100,18,44,10,4,108,105,115,116,24,1,32,3,40,11,50,24,46,110,111,118,97,46,99,108,105,101,110,116,46,67,111,110,116,101,110,116,87,111,114,100,82,4,108,105,115,116,34,217,5,10,13,68,97,105,108,121,73,110,115,116,97,110,99,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,28,10,9,68,97,105,108,121,84,121,112,101,24,2,32,1,40,5,82,9,68,97,105,108,121,84,121,112,101,18,30,10,10,68,105,102,102,105,99,117,108,116,121,24,3,32,1,40,5,82,10,68,105,102,102,105,99,117,108,116,121,18,18,10,4,78,97,109,101,24,4,32,1,40,9,82,4,78,97,109,101,18,18,10,4,68,101,115,99,24,5,32,1,40,9,82,4,68,101,115,99,18,38,10,14,83,117,103,103,101,115,116,101,100,80,111,119,101,114,24,6,32,1,40,5,82,14,83,117,103,103,101,115,116,101,100,80,111,119,101,114,18,30,10,10,80,114,101,76,101,118,101,108,73,100,24,7,32,1,40,5,82,10,80,114,101,76,101,118,101,108,73,100,18,34,10,12,80,114,101,76,101,118,101,108,83,116,97,114,24,8,32,1,40,5,82,12,80,114,101,76,101,118,101,108,83,116,97,114,18,38,10,14,78,101,101,100,87,111,114,108,100,67,108,97,115,115,24,9,32,1,40,5,82,14,78,101,101,100,87,111,114,108,100,67,108,97,115,115,18,24,10,7,70,108,111,111,114,73,100,24,10,32,1,40,5,82,7,70,108,111,111,114,73,100,18,32,10,11,79,110,101,83,116,97,114,68,101,115,99,24,11,32,1,40,9,82,11,79,110,101,83,116,97,114,68,101,115,99,18,32,10,11,84,119,111,83,116,97,114,68,101,115,99,24,12,32,1,40,9,82,11,84,119,111,83,116,97,114,68,101,115,99,18,36,10,13,84,104,114,101,101,83,116,97,114,68,101,115,99,24,13,32,1,40,9,82,13,84,104,114,101,101,83,116,97,114,68,101,115,99,18,50,10,20,79,110,101,83,116,97,114,69,110,101,114,103,121,67,111,110,115,117,109,101,24,14,32,1,40,5,82,20,79,110,101,83,116,97,114,69,110,101,114,103,121,67,111,110,115,117,109,101,18,50,10,20,84,119,111,83,116,97,114,69,110,101,114,103,121,67,111,110,115,117,109,101,24,15,32,1,40,5,82,20,84,119,111,83,116,97,114,69,110,101,114,103,121,67,111,110,115,117,109,101,18,54,10,22,84,104,114,101,101,83,116,97,114,69,110,101,114,103,121,67,111,110,115,117,109,101,24,16,32,1,40,5,82,22,84,104,114,101,101,83,116,97,114,69,110,101,114,103,121,67,111,110,115,117,109,101,18,32,10,11,65,119,97,114,100,68,114,111,112,73,100,24,17,32,1,40,5,82,11,65,119,97,114,100,68,114,111,112,73,100,18,52,10,21,80,114,101,118,105,101,119,77,111,110,115,116,101,114,71,114,111,117,112,73,100,24,18,32,1,40,5,82,21,80,114,101,118,105,101,119,77,111,110,115,116,101,114,71,114,111,117,112,73,100,18,18,10,4,73,99,111,110,24,19,32,1,40,9,82,4,73,99,111,110,18,46,10,18,70,105,114,115,116,82,101,119,97,114,100,80,114,101,118,105,101,119,24,20,32,3,40,5,82,18,70,105,114,115,116,82,101,119,97,114,100,80,114,101,118,105,101,119,34,69,10,19,116,97,98,108,101,95,68,97,105,108,121,73,110,115,116,97,110,99,101,18,46,10,4,108,105,115,116,24,1,32,3,40,11,50,26,46,110,111,118,97,46,99,108,105,101,110,116,46,68,97,105,108,121,73,110,115,116,97,110,99,101,82,4,108,105,115,116,34,130,5,10,18,68,97,105,108,121,73,110,115,116,97,110,99,101,70,108,111,111,114,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,28,10,9,83,99,101,110,101,78,97,109,101,24,2,32,1,40,9,82,9,83,99,101,110,101,78,97,109,101,18,42,10,16,67,111,110,102,105,103,80,114,101,102,97,98,78,97,109,101,24,3,32,1,40,9,82,16,67,111,110,102,105,103,80,114,101,102,97,98,78,97,109,101,18,20,10,5,84,104,101,109,101,24,4,32,1,40,5,82,5,84,104,101,109,101,18,16,10,3,66,71,77,24,5,32,1,40,9,82,3,66,71,77,18,44,10,17,76,101,97,118,101,84,114,105,103,103,101,114,69,118,101,110,116,24,6,32,1,40,9,82,17,76,101,97,118,101,84,114,105,103,103,101,114,69,118,101,110,116,18,28,10,9,109,111,110,115,116,101,114,73,100,24,7,32,1,40,5,82,9,109,111,110,115,116,101,114,73,100,18,42,10,16,79,110,101,83,116,97,114,67,111,110,100,105,116,105,111,110,24,8,32,1,40,5,82,16,79,110,101,83,116,97,114,67,111,110,100,105,116,105,111,110,18,42,10,16,84,119,111,83,116,97,114,67,111,110,100,105,116,105,111,110,24,9,32,1,40,5,82,16,84,119,111,83,116,97,114,67,111,110,100,105,116,105,111,110,18,46,10,18,84,104,114,101,101,83,116,97,114,67,111,110,100,105,116,105,111,110,24,10,32,1,40,5,82,18,84,104,114,101,101,83,116,97,114,67,111,110,100,105,116,105,111,110,18,38,10,14,76,101,118,101,108,84,111,116,97,108,84,105,109,101,24,11,32,1,40,5,82,14,76,101,118,101,108,84,111,116,97,108,84,105,109,101,18,44,10,17,84,105,109,101,69,110,100,83,101,116,116,108,101,109,101,110,116,24,12,32,1,40,8,82,17,84,105,109,101,69,110,100,83,101,116,116,108,101,109,101,110,116,18,44,10,17,83,116,97,114,67,111,110,100,105,116,105,111,110,84,121,112,101,24,13,32,1,40,5,82,17,83,116,97,114,67,111,110,100,105,116,105,111,110,84,121,112,101,18,28,10,9,77,111,110,115,116,101,114,76,118,24,14,32,1,40,5,82,9,77,111,110,115,116,101,114,76,118,18,44,10,17,68,114,111,112,69,110,116,105,116,121,71,114,111,117,112,73,100,24,15,32,1,40,5,82,17,68,114,111,112,69,110,116,105,116,121,71,114,111,117,112,73,100,18,38,10,14,68,114,111,112,69,110,116,105,116,121,82,97,116,101,24,16,32,1,40,5,82,14,68,114,111,112,69,110,116,105,116,121,82,97,116,101,18,30,10,10,68,114,111,112,77,97,120,78,117,109,24,17,32,1,40,5,82,10,68,114,111,112,77,97,120,78,117,109,34,79,10,24,116,97,98,108,101,95,68,97,105,108,121,73,110,115,116,97,110,99,101,70,108,111,111,114,18,51,10,4,108,105,115,116,24,1,32,3,40,11,50,31,46,110,111,118,97,46,99,108,105,101,110,116,46,68,97,105,108,121,73,110,115,116,97,110,99,101,70,108,111,111,114,82,4,108,105,115,116,34,144,2,10,24,68,97,105,108,121,73,110,115,116,97,110,99,101,82,101,119,97,114,100,71,114,111,117,112,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,24,10,7,71,114,111,117,112,73,100,24,2,32,1,40,5,82,7,71,114,111,117,112,73,100,18,40,10,15,68,97,105,108,121,82,101,119,97,114,100,84,121,112,101,24,3,32,1,40,5,82,15,68,97,105,108,121,82,101,119,97,114,100,84,121,112,101,18,30,10,10,82,101,119,97,114,100,78,97,109,101,24,4,32,1,40,9,82,10,82,101,119,97,114,100,78,97,109,101,18,28,10,9,82,101,119,97,114,100,68,101,115,24,5,32,1,40,9,82,9,82,101,119,97,114,100,68,101,115,18,30,10,10,82,101,119,97,114,100,73,99,111,110,24,6,32,1,40,9,82,10,82,101,119,97,114,100,73,99,111,110,18,22,10,6,68,114,111,112,73,100,24,7,32,1,40,5,82,6,68,114,111,112,73,100,18,42,10,16,66,97,115,101,65,119,97,114,100,80,114,101,118,105,101,119,24,8,32,1,40,9,82,16,66,97,115,101,65,119,97,114,100,80,114,101,118,105,101,119,34,91,10,30,116,97,98,108,101,95,68,97,105,108,121,73,110,115,116,97,110,99,101,82,101,119,97,114,100,71,114,111,117,112,18,57,10,4,108,105,115,116,24,1,32,3,40,11,50,37,46,110,111,118,97,46,99,108,105,101,110,116,46,68,97,105,108,121,73,110,115,116,97,110,99,101,82,101,119,97,114,100,71,114,111,117,112,82,4,108,105,115,116,34,227,1,10,17,68,97,105,108,121,73,110,115,116,97,110,99,101,84,121,112,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,30,10,10,77,97,105,110,76,105,110,101,73,100,24,3,32,1,40,5,82,10,77,97,105,110,76,105,110,101,73,100,18,40,10,15,87,111,114,108,100,67,108,97,115,115,76,101,118,101,108,24,4,32,1,40,5,82,15,87,111,114,108,100,67,108,97,115,115,76,101,118,101,108,18,24,10,7,69,112,105,115,111,100,101,24,5,32,1,40,9,82,7,69,112,105,115,111,100,101,18,20,10,5,73,109,97,103,101,24,6,32,1,40,9,82,5,73,109,97,103,101,18,18,10,4,83,111,114,116,24,7,32,1,40,5,82,4,83,111,114,116,18,28,10,9,72,111,119,82,101,119,97,114,100,24,8,32,3,40,5,82,9,72,111,119,82,101,119,97,114,100,34,77,10,23,116,97,98,108,101,95,68,97,105,108,121,73,110,115,116,97,110,99,101,84,121,112,101,18,50,10,4,108,105,115,116,24,1,32,3,40,11,50,30,46,110,111,118,97,46,99,108,105,101,110,116,46,68,97,105,108,121,73,110,115,116,97,110,99,101,84,121,112,101,82,4,108,105,115,116,34,236,3,10,10,68,97,105,108,121,81,117,101,115,116,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,20,10,5,84,105,116,108,101,24,2,32,1,40,9,82,5,84,105,116,108,101,18,18,10,4,68,101,115,99,24,3,32,1,40,9,82,4,68,101,115,99,18,22,10,6,74,117,109,112,84,111,24,4,32,1,40,5,82,6,74,117,109,112,84,111,18,20,10,5,79,114,100,101,114,24,5,32,1,40,5,82,5,79,114,100,101,114,18,22,10,6,65,99,116,105,118,101,24,6,32,1,40,5,82,6,65,99,116,105,118,101,18,20,10,5,65,112,101,97,114,24,7,32,1,40,8,82,5,65,112,101,97,114,18,36,10,13,65,99,99,101,112,116,80,97,114,97,109,115,50,24,8,32,1,40,9,82,13,65,99,99,101,112,116,80,97,114,97,109,115,50,18,34,10,12,67,111,109,112,108,101,116,101,67,111,110,100,24,9,32,1,40,5,82,12,67,111,109,112,108,101,116,101,67,111,110,100,18,46,10,18,67,111,109,112,108,101,116,101,67,111,110,100,80,97,114,97,109,115,24,10,32,1,40,9,82,18,67,111,109,112,108,101,116,101,67,111,110,100,80,97,114,97,109,115,18,46,10,18,67,111,109,112,108,101,116,101,67,111,110,100,67,108,105,101,110,116,24,11,32,1,40,5,82,18,67,111,109,112,108,101,116,101,67,111,110,100,67,108,105,101,110,116,18,52,10,21,67,108,105,101,110,116,67,111,109,112,108,101,116,101,80,97,114,97,109,115,49,24,12,32,3,40,5,82,21,67,108,105,101,110,116,67,111,109,112,108,101,116,101,80,97,114,97,109,115,49,18,52,10,21,67,108,105,101,110,116,67,111,109,112,108,101,116,101,80,97,114,97,109,115,50,24,13,32,3,40,5,82,21,67,108,105,101,110,116,67,111,109,112,108,101,116,101,80,97,114,97,109,115,50,18,24,10,7,73,116,101,109,84,105,100,24,14,32,1,40,5,82,7,73,116,101,109,84,105,100,18,24,10,7,73,116,101,109,81,116,121,24,15,32,1,40,5,82,7,73,116,101,109,81,116,121,34,63,10,16,116,97,98,108,101,95,68,97,105,108,121,81,117,101,115,116,18,43,10,4,108,105,115,116,24,1,32,3,40,11,50,23,46,110,111,118,97,46,99,108,105,101,110,116,46,68,97,105,108,121,81,117,101,115,116,82,4,108,105,115,116,34,166,1,10,16,68,97,105,108,121,81,117,101,115,116,65,99,116,105,118,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,22,10,6,65,99,116,105,118,101,24,2,32,1,40,5,82,6,65,99,116,105,118,101,18,26,10,8,73,116,101,109,84,105,100,49,24,3,32,1,40,5,82,8,73,116,101,109,84,105,100,49,18,24,10,7,78,117,109,98,101,114,49,24,4,32,1,40,5,82,7,78,117,109,98,101,114,49,18,26,10,8,73,116,101,109,84,105,100,50,24,5,32,1,40,5,82,8,73,116,101,109,84,105,100,50,18,24,10,7,78,117,109,98,101,114,50,24,6,32,1,40,5,82,7,78,117,109,98,101,114,50,34,75,10,22,116,97,98,108,101,95,68,97,105,108,121,81,117,101,115,116,65,99,116,105,118,101,18,49,10,4,108,105,115,116,24,1,32,3,40,11,50,29,46,110,111,118,97,46,99,108,105,101,110,116,46,68,97,105,108,121,81,117,101,115,116,65,99,116,105,118,101,82,4,108,105,115,116,34,219,1,10,15,68,97,105,108,121,81,117,101,115,116,65,119,97,114,100,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,20,10,5,84,105,116,108,101,24,2,32,1,40,9,82,5,84,105,116,108,101,18,28,10,9,78,101,101,100,80,111,105,110,116,24,3,32,1,40,5,82,9,78,101,101,100,80,111,105,110,116,18,24,10,7,78,117,109,83,104,111,119,24,4,32,1,40,5,82,7,78,117,109,83,104,111,119,18,26,10,8,73,116,101,109,84,105,100,49,24,5,32,1,40,5,82,8,73,116,101,109,84,105,100,49,18,24,10,7,78,117,109,98,101,114,49,24,6,32,1,40,5,82,7,78,117,109,98,101,114,49,18,26,10,8,73,116,101,109,84,105,100,50,24,7,32,1,40,5,82,8,73,116,101,109,84,105,100,50,18,24,10,7,78,117,109,98,101,114,50,24,8,32,1,40,5,82,7,78,117,109,98,101,114,50,34,73,10,21,116,97,98,108,101,95,68,97,105,108,121,81,117,101,115,116,65,119,97,114,100,18,48,10,4,108,105,115,116,24,1,32,3,40,11,50,28,46,110,111,118,97,46,99,108,105,101,110,116,46,68,97,105,108,121,81,117,101,115,116,65,119,97,114,100,82,4,108,105,115,116,34,188,1,10,18,68,97,116,105,110,103,67,104,97,114,82,101,115,112,111,110,115,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,22,10,6,67,104,97,114,73,100,24,2,32,1,40,5,82,6,67,104,97,114,73,100,18,18,10,4,84,121,112,101,24,3,32,1,40,9,82,4,84,121,112,101,18,26,10,8,86,111,105,99,101,75,101,121,24,4,32,1,40,9,82,8,86,111,105,99,101,75,101,121,18,22,10,6,65,99,116,105,111,110,24,5,32,1,40,9,82,6,65,99,116,105,111,110,18,20,10,5,87,111,114,100,115,24,6,32,1,40,9,82,5,87,111,114,100,115,18,32,10,11,66,117,98,98,108,101,69,109,111,106,105,24,7,32,1,40,9,82,11,66,117,98,98,108,101,69,109,111,106,105,34,79,10,24,116,97,98,108,101,95,68,97,116,105,110,103,67,104,97,114,82,101,115,112,111,110,115,101,18,51,10,4,108,105,115,116,24,1,32,3,40,11,50,31,46,110,111,118,97,46,99,108,105,101,110,116,46,68,97,116,105,110,103,67,104,97,114,82,101,115,112,111,110,115,101,82,4,108,105,115,116,34,253,2,10,11,68,97,116,105,110,103,69,118,101,110,116,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,40,10,15,68,97,116,105,110,103,69,118,101,110,116,84,121,112,101,24,2,32,1,40,5,82,15,68,97,116,105,110,103,69,118,101,110,116,84,121,112,101,18,44,10,17,68,97,116,105,110,103,69,118,101,110,116,80,97,114,97,109,115,24,3,32,3,40,5,82,17,68,97,116,105,110,103,69,118,101,110,116,80,97,114,97,109,115,18,26,10,8,77,117,116,101,120,84,97,103,24,4,32,1,40,5,82,8,77,117,116,101,120,84,97,103,18,24,10,7,83,111,114,116,84,97,103,24,5,32,1,40,5,82,7,83,111,114,116,84,97,103,18,26,10,8,65,102,102,105,110,105,116,121,24,6,32,1,40,5,82,8,65,102,102,105,110,105,116,121,18,22,10,6,82,101,119,97,114,100,24,7,32,3,40,5,82,6,82,101,119,97,114,100,18,20,10,5,68,101,115,99,49,24,8,32,1,40,9,82,5,68,101,115,99,49,18,20,10,5,68,101,115,99,50,24,9,32,1,40,9,82,5,68,101,115,99,50,18,20,10,5,68,101,115,99,51,24,10,32,1,40,9,82,5,68,101,115,99,51,18,26,10,8,82,101,115,112,111,110,115,101,24,11,32,1,40,9,82,8,82,101,115,112,111,110,115,101,18,18,10,4,78,97,109,101,24,12,32,1,40,9,82,4,78,97,109,101,18,18,10,4,67,108,117,101,24,13,32,1,40,9,82,4,67,108,117,101,18,22,10,6,77,101,109,111,114,121,24,14,32,1,40,9,82,6,77,101,109,111,114,121,34,65,10,17,116,97,98,108,101,95,68,97,116,105,110,103,69,118,101,110,116,18,44,10,4,108,105,115,116,24,1,32,3,40,11,50,24,46,110,111,118,97,46,99,108,105,101,110,116,46,68,97,116,105,110,103,69,118,101,110,116,82,4,108,105,115,116,34,108,10,14,68,97,116,105,110,103,76,97,110,100,109,97,114,107,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,18,10,4,68,101,115,99,24,3,32,1,40,9,82,4,68,101,115,99,18,18,10,4,73,99,111,110,24,4,32,1,40,9,82,4,73,99,111,110,18,14,10,2,66,103,24,5,32,1,40,9,82,2,66,103,34,71,10,20,116,97,98,108,101,95,68,97,116,105,110,103,76,97,110,100,109,97,114,107,18,47,10,4,108,105,115,116,24,1,32,3,40,11,50,27,46,110,111,118,97,46,99,108,105,101,110,116,46,68,97,116,105,110,103,76,97,110,100,109,97,114,107,82,4,108,105,115,116,34,155,1,10,13,68,101,115,116,114,111,121,79,98,106,101,99,116,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,14,10,2,76,118,24,3,32,1,40,5,82,2,76,118,18,32,10,11,65,116,116,114,105,98,117,116,101,73,100,24,4,32,1,40,9,82,11,65,116,116,114,105,98,117,116,101,73,100,18,26,10,8,84,101,109,112,108,101,116,101,24,5,32,1,40,5,82,8,84,101,109,112,108,101,116,101,18,24,10,7,70,97,99,116,105,111,110,24,6,32,1,40,5,82,7,70,97,99,116,105,111,110,34,69,10,19,116,97,98,108,101,95,68,101,115,116,114,111,121,79,98,106,101,99,116,18,46,10,4,108,105,115,116,24,1,32,3,40,11,50,26,46,110,111,118,97,46,99,108,105,101,110,116,46,68,101,115,116,114,111,121,79,98,106,101,99,116,82,4,108,105,115,116,34,97,10,17,68,105,99,116,105,111,110,97,114,121,68,105,97,103,114,97,109,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,20,10,5,84,105,116,108,101,24,2,32,1,40,9,82,5,84,105,116,108,101,18,18,10,4,68,101,115,99,24,3,32,1,40,9,82,4,68,101,115,99,18,18,10,4,73,99,111,110,24,4,32,1,40,9,82,4,73,99,111,110,34,77,10,23,116,97,98,108,101,95,68,105,99,116,105,111,110,97,114,121,68,105,97,103,114,97,109,18,50,10,4,108,105,115,116,24,1,32,3,40,11,50,30,46,110,111,118,97,46,99,108,105,101,110,116,46,68,105,99,116,105,111,110,97,114,121,68,105,97,103,114,97,109,82,4,108,105,115,116,34,213,1,10,15,68,105,99,116,105,111,110,97,114,121,69,110,116,114,121,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,20,10,5,73,110,100,101,120,24,2,32,1,40,5,82,5,73,110,100,101,120,18,20,10,5,84,105,116,108,101,24,3,32,1,40,9,82,5,84,105,116,108,101,18,16,10,3,84,97,98,24,4,32,1,40,5,82,3,84,97,98,18,22,10,6,73,116,101,109,73,100,24,5,32,1,40,5,82,6,73,116,101,109,73,100,18,16,10,3,81,116,121,24,6,32,1,40,5,82,3,81,116,121,18,32,10,11,68,105,97,103,114,97,109,76,105,115,116,24,7,32,3,40,5,82,11,68,105,97,103,114,97,109,76,105,115,116,18,18,10,4,83,111,114,116,24,8,32,1,40,5,82,4,83,111,114,116,18,20,10,5,80,111,112,117,112,24,9,32,1,40,8,82,5,80,111,112,117,112,34,73,10,21,116,97,98,108,101,95,68,105,99,116,105,111,110,97,114,121,69,110,116,114,121,18,48,10,4,108,105,115,116,24,1,32,3,40,11,50,28,46,110,111,118,97,46,99,108,105,101,110,116,46,68,105,99,116,105,111,110,97,114,121,69,110,116,114,121,82,4,108,105,115,116,34,137,1,10,13,68,105,99,116,105,111,110,97,114,121,84,97,98,18,20,10,5,84,97,98,73,100,24,1,32,1,40,5,82,5,84,97,98,73,100,18,18,10,4,73,99,111,110,24,2,32,1,40,9,82,4,73,99,111,110,18,20,10,5,73,99,111,110,50,24,3,32,1,40,9,82,5,73,99,111,110,50,18,20,10,5,84,105,116,108,101,24,4,32,1,40,9,82,5,84,105,116,108,101,18,34,10,12,72,105,100,101,73,110,66,97,116,116,108,101,24,5,32,1,40,8,82,12,72,105,100,101,73,110,66,97,116,116,108,101,34,69,10,19,116,97,98,108,101,95,68,105,99,116,105,111,110,97,114,121,84,97,98,18,46,10,4,108,105,115,116,24,1,32,3,40,11,50,26,46,110,111,118,97,46,99,108,105,101,110,116,46,68,105,99,116,105,111,110,97,114,121,84,97,98,82,4,108,105,115,116,34,95,10,21,68,105,99,116,105,111,110,97,114,121,84,111,112,66,97,114,69,110,116,114,121,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,20,10,5,84,105,116,108,101,24,2,32,1,40,9,82,5,84,105,116,108,101,18,32,10,11,68,105,97,103,114,97,109,76,105,115,116,24,3,32,3,40,5,82,11,68,105,97,103,114,97,109,76,105,115,116,34,85,10,27,116,97,98,108,101,95,68,105,99,116,105,111,110,97,114,121,84,111,112,66,97,114,69,110,116,114,121,18,54,10,4,108,105,115,116,24,1,32,3,40,11,50,34,46,110,111,118,97,46,99,108,105,101,110,116,46,68,105,99,116,105,111,110,97,114,121,84,111,112,66,97,114,69,110,116,114,121,82,4,108,105,115,116,34,172,7,10,4,68,105,115,99,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,16,10,3,69,69,84,24,2,32,1,40,5,82,3,69,69,84,18,18,10,4,84,97,103,115,24,3,32,3,40,5,82,4,84,97,103,115,18,24,10,7,86,105,115,105,98,108,101,24,4,32,1,40,8,82,7,86,105,115,105,98,108,101,18,28,10,9,65,118,97,105,108,97,98,108,101,24,5,32,1,40,8,82,9,65,118,97,105,108,97,98,108,101,18,20,10,5,73,109,97,103,101,24,6,32,1,40,9,82,5,73,109,97,103,101,18,18,10,4,78,111,116,101,24,7,32,3,40,5,82,4,78,111,116,101,18,22,10,6,68,105,115,99,66,103,24,8,32,1,40,9,82,6,68,105,115,99,66,103,18,18,10,4,67,97,114,100,24,9,32,1,40,9,82,4,67,97,114,100,18,24,10,7,71,97,99,104,97,66,103,24,10,32,1,40,9,82,7,71,97,99,104,97,66,103,18,44,10,17,83,116,114,101,110,103,116,104,101,110,71,114,111,117,112,73,100,24,11,32,1,40,5,82,17,83,116,114,101,110,103,116,104,101,110,71,114,111,117,112,73,100,18,40,10,15,65,116,116,114,66,97,115,101,71,114,111,117,112,73,100,24,12,32,1,40,5,82,15,65,116,116,114,66,97,115,101,71,114,111,117,112,73,100,18,38,10,14,80,114,111,109,111,116,101,71,114,111,117,112,73,100,24,13,32,1,40,5,82,14,80,114,111,109,111,116,101,71,114,111,117,112,73,100,18,40,10,15,84,114,97,110,115,102,111,114,109,73,116,101,109,73,100,24,14,32,1,40,5,82,15,84,114,97,110,115,102,111,114,109,73,116,101,109,73,100,18,50,10,20,77,97,120,83,116,97,114,84,114,97,110,115,102,111,114,109,73,116,101,109,24,15,32,3,40,5,82,20,77,97,120,83,116,97,114,84,114,97,110,115,102,111,114,109,73,116,101,109,18,48,10,19,80,97,115,115,105,118,101,83,107,105,108,108,71,114,111,117,112,73,100,24,16,32,1,40,5,82,19,80,97,115,115,105,118,101,83,107,105,108,108,71,114,111,117,112,73,100,18,38,10,14,67,111,109,109,111,110,83,107,105,108,108,73,100,49,24,17,32,1,40,5,82,14,67,111,109,109,111,110,83,107,105,108,108,73,100,49,18,38,10,14,67,111,109,109,111,110,83,107,105,108,108,73,100,50,24,18,32,1,40,5,82,14,67,111,109,109,111,110,83,107,105,108,108,73,100,50,18,30,10,10,82,101,97,100,82,101,119,97,114,100,24,19,32,3,40,5,82,10,82,101,97,100,82,101,119,97,114,100,18,22,10,6,86,111,70,105,108,101,24,20,32,1,40,9,82,6,86,111,70,105,108,101,18,26,10,8,86,111,66,101,103,105,110,49,24,21,32,1,40,2,82,8,86,111,66,101,103,105,110,49,18,24,10,7,86,111,76,111,111,112,49,24,22,32,1,40,2,82,7,86,111,76,111,111,112,49,18,24,10,7,86,111,78,97,109,101,49,24,23,32,1,40,9,82,7,86,111,78,97,109,101,49,18,26,10,8,86,111,66,101,103,105,110,50,24,24,32,1,40,2,82,8,86,111,66,101,103,105,110,50,18,24,10,7,86,111,76,111,111,112,50,24,25,32,1,40,2,82,7,86,111,76,111,111,112,50,18,24,10,7,86,111,78,97,109,101,50,24,26,32,1,40,9,82,7,86,111,78,97,109,101,50,18,24,10,7,86,111,83,116,111,114,121,24,27,32,1,40,9,82,7,86,111,83,116,111,114,121,18,28,10,9,83,116,111,114,121,78,97,109,101,24,28,32,1,40,9,82,9,83,116,111,114,121,78,97,109,101,18,28,10,9,83,116,111,114,121,68,101,115,99,24,29,32,1,40,9,82,9,83,116,111,114,121,68,101,115,99,18,22,10,6,67,104,97,114,73,100,24,30,32,1,40,5,82,6,67,104,97,114,73,100,18,32,10,11,83,107,105,108,108,83,99,114,105,112,116,24,31,32,1,40,9,82,11,83,107,105,108,108,83,99,114,105,112,116,34,51,10,10,116,97,98,108,101,95,68,105,115,99,18,37,10,4,108,105,115,116,24,1,32,3,40,11,50,17,46,110,111,118,97,46,99,108,105,101,110,116,46,68,105,115,99,82,4,108,105,115,116,34,161,5,10,15,68,105,115,99,67,111,109,109,111,110,83,107,105,108,108,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,38,10,14,65,99,116,105,118,101,78,111,116,101,84,121,112,101,24,2,32,3,40,5,82,14,65,99,116,105,118,101,78,111,116,101,84,121,112,101,18,36,10,13,65,99,116,105,118,101,78,111,116,101,78,117,109,24,3,32,3,40,5,82,13,65,99,116,105,118,101,78,111,116,101,78,117,109,18,28,10,9,69,102,102,101,99,116,73,100,49,24,4,32,3,40,5,82,9,69,102,102,101,99,116,73,100,49,18,28,10,9,69,102,102,101,99,116,73,100,50,24,5,32,3,40,5,82,9,69,102,102,101,99,116,73,100,50,18,28,10,9,69,102,102,101,99,116,73,100,51,24,6,32,3,40,5,82,9,69,102,102,101,99,116,73,100,51,18,28,10,9,69,102,102,101,99,116,73,100,52,24,7,32,3,40,5,82,9,69,102,102,101,99,116,73,100,52,18,28,10,9,69,102,102,101,99,116,73,100,53,24,8,32,3,40,5,82,9,69,102,102,101,99,116,73,100,53,18,28,10,9,69,102,102,101,99,116,73,100,54,24,9,32,3,40,5,82,9,69,102,102,101,99,116,73,100,54,18,28,10,9,69,102,102,101,99,116,73,100,55,24,10,32,3,40,5,82,9,69,102,102,101,99,116,73,100,55,18,28,10,9,69,102,102,101,99,116,73,100,56,24,11,32,3,40,5,82,9,69,102,102,101,99,116,73,100,56,18,28,10,9,69,102,102,101,99,116,73,100,57,24,12,32,3,40,5,82,9,69,102,102,101,99,116,73,100,57,18,30,10,10,69,102,102,101,99,116,73,100,49,48,24,13,32,3,40,5,82,10,69,102,102,101,99,116,73,100,49,48,18,30,10,10,76,97,121,101,114,83,99,111,114,101,24,14,32,3,40,5,82,10,76,97,121,101,114,83,99,111,114,101,18,18,10,4,78,97,109,101,24,15,32,1,40,9,82,4,78,97,109,101,18,18,10,4,73,99,111,110,24,16,32,1,40,9,82,4,73,99,111,110,18,22,10,6,73,99,111,110,66,103,24,17,32,1,40,9,82,6,73,99,111,110,66,103,18,18,10,4,68,101,115,99,24,18,32,1,40,9,82,4,68,101,115,99,18,22,10,6,80,97,114,97,109,49,24,19,32,3,40,9,82,6,80,97,114,97,109,49,18,22,10,6,80,97,114,97,109,50,24,20,32,3,40,9,82,6,80,97,114,97,109,50,18,22,10,6,80,97,114,97,109,51,24,21,32,3,40,9,82,6,80,97,114,97,109,51,18,22,10,6,80,97,114,97,109,52,24,22,32,3,40,9,82,6,80,97,114,97,109,52,18,22,10,6,80,97,114,97,109,53,24,23,32,3,40,9,82,6,80,97,114,97,109,53,18,22,10,6,80,97,114,97,109,54,24,24,32,3,40,9,82,6,80,97,114,97,109,54,34,73,10,21,116,97,98,108,101,95,68,105,115,99,67,111,109,109,111,110,83,107,105,108,108,18,48,10,4,108,105,115,116,24,1,32,3,40,11,50,28,46,110,111,118,97,46,99,108,105,101,110,116,46,68,105,115,99,67,111,109,109,111,110,83,107,105,108,108,82,4,108,105,115,116,34,71,10,11,68,105,115,99,73,116,101,109,69,120,112,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,22,10,6,73,116,101,109,73,100,24,2,32,1,40,5,82,6,73,116,101,109,73,100,18,16,10,3,69,120,112,24,3,32,1,40,5,82,3,69,120,112,34,65,10,17,116,97,98,108,101,95,68,105,115,99,73,116,101,109,69,120,112,18,44,10,4,108,105,115,116,24,1,32,3,40,11,50,24,46,110,111,118,97,46,99,108,105,101,110,116,46,68,105,115,99,73,116,101,109,69,120,112,82,4,108,105,115,116,34,172,6,10,16,68,105,115,99,80,97,115,115,105,118,101,83,107,105,108,108,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,24,10,7,71,114,111,117,112,73,100,24,2,32,1,40,5,82,7,71,114,111,117,112,73,100,18,20,10,5,76,101,118,101,108,24,3,32,1,40,5,82,5,76,101,118,101,108,18,20,10,5,66,114,101,97,107,24,4,32,1,40,5,82,5,66,114,101,97,107,18,26,10,8,77,97,105,110,78,111,116,101,24,5,32,1,40,5,82,8,77,97,105,110,78,111,116,101,18,34,10,12,65,99,116,105,118,101,80,97,114,97,109,49,24,6,32,1,40,9,82,12,65,99,116,105,118,101,80,97,114,97,109,49,18,28,10,9,69,102,102,101,99,116,73,100,49,24,7,32,3,40,5,82,9,69,102,102,101,99,116,73,100,49,18,34,10,12,65,99,116,105,118,101,80,97,114,97,109,50,24,8,32,1,40,9,82,12,65,99,116,105,118,101,80,97,114,97,109,50,18,28,10,9,69,102,102,101,99,116,73,100,50,24,9,32,3,40,5,82,9,69,102,102,101,99,116,73,100,50,18,34,10,12,65,99,116,105,118,101,80,97,114,97,109,51,24,10,32,1,40,9,82,12,65,99,116,105,118,101,80,97,114,97,109,51,18,28,10,9,69,102,102,101,99,116,73,100,51,24,11,32,3,40,5,82,9,69,102,102,101,99,116,73,100,51,18,34,10,12,65,99,116,105,118,101,80,97,114,97,109,52,24,12,32,1,40,9,82,12,65,99,116,105,118,101,80,97,114,97,109,52,18,28,10,9,69,102,102,101,99,116,73,100,52,24,13,32,3,40,5,82,9,69,102,102,101,99,116,73,100,52,18,34,10,12,65,99,116,105,118,101,80,97,114,97,109,53,24,14,32,1,40,9,82,12,65,99,116,105,118,101,80,97,114,97,109,53,18,28,10,9,69,102,102,101,99,116,73,100,53,24,15,32,3,40,5,82,9,69,102,102,101,99,116,73,100,53,18,30,10,10,76,97,121,101,114,83,99,111,114,101,24,16,32,3,40,5,82,10,76,97,121,101,114,83,99,111,114,101,18,18,10,4,78,97,109,101,24,17,32,1,40,9,82,4,78,97,109,101,18,18,10,4,73,99,111,110,24,18,32,1,40,9,82,4,73,99,111,110,18,22,10,6,73,99,111,110,66,103,24,19,32,1,40,9,82,6,73,99,111,110,66,103,18,20,10,5,68,101,115,99,49,24,20,32,1,40,9,82,5,68,101,115,99,49,18,20,10,5,68,101,115,99,50,24,21,32,1,40,9,82,5,68,101,115,99,50,18,20,10,5,68,101,115,99,51,24,22,32,1,40,9,82,5,68,101,115,99,51,18,20,10,5,68,101,115,99,52,24,23,32,1,40,9,82,5,68,101,115,99,52,18,20,10,5,68,101,115,99,53,24,24,32,1,40,9,82,5,68,101,115,99,53,18,22,10,6,80,97,114,97,109,49,24,25,32,1,40,9,82,6,80,97,114,97,109,49,18,22,10,6,80,97,114,97,109,50,24,26,32,1,40,9,82,6,80,97,114,97,109,50,18,22,10,6,80,97,114,97,109,51,24,27,32,1,40,9,82,6,80,97,114,97,109,51,18,22,10,6,80,97,114,97,109,52,24,28,32,1,40,9,82,6,80,97,114,97,109,52,18,22,10,6,80,97,114,97,109,53,24,29,32,1,40,9,82,6,80,97,114,97,109,53,18,22,10,6,80,97,114,97,109,54,24,30,32,1,40,9,82,6,80,97,114,97,109,54,34,75,10,22,116,97,98,108,101,95,68,105,115,99,80,97,115,115,105,118,101,83,107,105,108,108,18,49,10,4,108,105,115,116,24,1,32,3,40,11,50,29,46,110,111,118,97,46,99,108,105,101,110,116,46,68,105,115,99,80,97,115,115,105,118,101,83,107,105,108,108,82,4,108,105,115,116,34,247,1,10,11,68,105,115,99,80,114,111,109,111,116,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,24,10,7,73,116,101,109,73,100,49,24,2,32,1,40,5,82,7,73,116,101,109,73,100,49,18,18,10,4,78,117,109,49,24,3,32,1,40,5,82,4,78,117,109,49,18,24,10,7,73,116,101,109,73,100,50,24,4,32,1,40,5,82,7,73,116,101,109,73,100,50,18,18,10,4,78,117,109,50,24,5,32,1,40,5,82,4,78,117,109,50,18,24,10,7,73,116,101,109,73,100,51,24,6,32,1,40,5,82,7,73,116,101,109,73,100,51,18,18,10,4,78,117,109,51,24,7,32,1,40,5,82,4,78,117,109,51,18,24,10,7,73,116,101,109,73,100,52,24,8,32,1,40,5,82,7,73,116,101,109,73,100,52,18,18,10,4,78,117,109,52,24,9,32,1,40,5,82,4,78,117,109,52,18,32,10,11,69,120,112,101,110,115,101,71,111,108,100,24,10,32,1,40,5,82,11,69,120,112,101,110,115,101,71,111,108,100,34,65,10,17,116,97,98,108,101,95,68,105,115,99,80,114,111,109,111,116,101,18,44,10,4,108,105,115,116,24,1,32,3,40,11,50,24,46,110,111,118,97,46,99,108,105,101,110,116,46,68,105,115,99,80,114,111,109,111,116,101,82,4,108,105,115,116,34,108,10,16,68,105,115,99,80,114,111,109,111,116,101,76,105,109,105,116,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,22,10,6,82,97,114,105,116,121,24,2,32,1,40,5,82,6,82,97,114,105,116,121,18,20,10,5,80,104,97,115,101,24,3,32,1,40,9,82,5,80,104,97,115,101,18,26,10,8,77,97,120,76,101,118,101,108,24,4,32,1,40,9,82,8,77,97,120,76,101,118,101,108,34,75,10,22,116,97,98,108,101,95,68,105,115,99,80,114,111,109,111,116,101,76,105,109,105,116,18,49,10,4,108,105,115,116,24,1,32,3,40,11,50,29,46,110,111,118,97,46,99,108,105,101,110,116,46,68,105,115,99,80,114,111,109,111,116,101,76,105,109,105,116,82,4,108,105,115,116,34,50,10,14,68,105,115,99,83,116,114,101,110,103,116,104,101,110,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,16,10,3,69,120,112,24,2,32,1,40,5,82,3,69,120,112,34,71,10,20,116,97,98,108,101,95,68,105,115,99,83,116,114,101,110,103,116,104,101,110,18,47,10,4,108,105,115,116,24,1,32,3,40,11,50,27,46,110,111,118,97,46,99,108,105,101,110,116,46,68,105,115,99,83,116,114,101,110,103,116,104,101,110,82,4,108,105,115,116,34,47,10,7,68,105,115,99,84,97,103,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,20,10,5,84,105,116,108,101,24,2,32,1,40,9,82,5,84,105,116,108,101,34,57,10,13,116,97,98,108,101,95,68,105,115,99,84,97,103,18,40,10,4,108,105,115,116,24,1,32,3,40,11,50,20,46,110,111,118,97,46,99,108,105,101,110,116,46,68,105,115,99,84,97,103,82,4,108,105,115,116,34,52,10,4,68,114,111,112,18,22,10,6,68,114,111,112,73,100,24,1,32,1,40,5,82,6,68,114,111,112,73,100,18,20,10,5,80,107,103,73,100,24,2,32,1,40,5,82,5,80,107,103,73,100,34,51,10,10,116,97,98,108,101,95,68,114,111,112,18,37,10,4,108,105,115,116,24,1,32,3,40,11,50,17,46,110,111,118,97,46,99,108,105,101,110,116,46,68,114,111,112,82,4,108,105,115,116,34,88,10,12,68,114,111,112,73,116,101,109,83,104,111,119,18,22,10,6,68,114,111,112,73,100,24,1,32,1,40,5,82,6,68,114,111,112,73,100,18,22,10,6,73,116,101,109,73,100,24,2,32,1,40,5,82,6,73,116,101,109,73,100,18,24,10,7,73,116,101,109,81,116,121,24,3,32,1,40,5,82,7,73,116,101,109,81,116,121,34,67,10,18,116,97,98,108,101,95,68,114,111,112,73,116,101,109,83,104,111,119,18,45,10,4,108,105,115,116,24,1,32,3,40,11,50,25,46,110,111,118,97,46,99,108,105,101,110,116,46,68,114,111,112,73,116,101,109,83,104,111,119,82,4,108,105,115,116,34,66,10,10,68,114,111,112,79,98,106,101,99,116,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,36,10,13,68,114,111,112,79,98,106,101,99,116,82,101,115,24,2,32,1,40,9,82,13,68,114,111,112,79,98,106,101,99,116,82,101,115,34,63,10,16,116,97,98,108,101,95,68,114,111,112,79,98,106,101,99,116,18,43,10,4,108,105,115,116,24,1,32,3,40,11,50,23,46,110,111,118,97,46,99,108,105,101,110,116,46,68,114,111,112,79,98,106,101,99,116,82,4,108,105,115,116,34,123,10,15,68,114,111,112,79,98,106,101,99,116,71,114,111,117,112,18,44,10,17,68,114,111,112,79,98,106,101,99,116,71,114,111,117,112,73,100,24,1,32,1,40,5,82,17,68,114,111,112,79,98,106,101,99,116,71,114,111,117,112,73,100,18,34,10,12,68,114,111,112,79,98,106,101,99,116,73,100,24,2,32,1,40,5,82,12,68,114,111,112,79,98,106,101,99,116,73,100,18,22,10,6,119,101,105,103,104,116,24,3,32,1,40,5,82,6,119,101,105,103,104,116,34,73,10,21,116,97,98,108,101,95,68,114,111,112,79,98,106,101,99,116,71,114,111,117,112,18,48,10,4,108,105,115,116,24,1,32,3,40,11,50,28,46,110,111,118,97,46,99,108,105,101,110,116,46,68,114,111,112,79,98,106,101,99,116,71,114,111,117,112,82,4,108,105,115,116,34,55,10,7,68,114,111,112,80,107,103,18,20,10,5,80,107,103,73,100,24,1,32,1,40,5,82,5,80,107,103,73,100,18,22,10,6,73,116,101,109,73,100,24,2,32,1,40,5,82,6,73,116,101,109,73,100,34,57,10,13,116,97,98,108,101,95,68,114,111,112,80,107,103,18,40,10,4,108,105,115,116,24,1,32,3,40,11,50,20,46,110,111,118,97,46,99,108,105,101,110,116,46,68,114,111,112,80,107,103,82,4,108,105,115,116,34,224,13,10,6,69,102,102,101,99,116,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,36,10,13,108,101,118,101,108,84,121,112,101,68,97,116,97,24,3,32,1,40,5,82,13,108,101,118,101,108,84,121,112,101,68,97,116,97,18,28,10,9,76,101,118,101,108,68,97,116,97,24,4,32,1,40,5,82,9,76,101,118,101,108,68,97,116,97,18,36,10,13,77,97,105,110,79,114,83,117,112,112,111,114,116,24,5,32,1,40,5,82,13,77,97,105,110,79,114,83,117,112,112,111,114,116,18,24,10,7,84,114,105,103,103,101,114,24,6,32,1,40,5,82,7,84,114,105,103,103,101,114,18,36,10,13,84,114,105,103,103,101,114,84,97,114,103,101,116,24,7,32,1,40,5,82,13,84,114,105,103,103,101,114,84,97,114,103,101,116,18,44,10,17,84,114,105,103,103,101,114,67,111,110,100,105,116,105,111,110,49,24,8,32,1,40,5,82,17,84,114,105,103,103,101,114,67,111,110,100,105,116,105,111,110,49,18,36,10,13,84,114,105,103,103,101,114,80,97,114,97,109,49,24,9,32,1,40,9,82,13,84,114,105,103,103,101,114,80,97,114,97,109,49,18,36,10,13,84,114,105,103,103,101,114,80,97,114,97,109,50,24,10,32,1,40,9,82,13,84,114,105,103,103,101,114,80,97,114,97,109,50,18,36,10,13,84,114,105,103,103,101,114,80,97,114,97,109,51,24,11,32,1,40,9,82,13,84,114,105,103,103,101,114,80,97,114,97,109,51,18,36,10,13,84,114,105,103,103,101,114,80,97,114,97,109,52,24,12,32,1,40,9,82,13,84,114,105,103,103,101,114,80,97,114,97,109,52,18,38,10,14,84,114,105,103,103,101,114,84,97,114,103,101,116,50,24,13,32,1,40,5,82,14,84,114,105,103,103,101,114,84,97,114,103,101,116,50,18,44,10,17,84,114,105,103,103,101,114,67,111,110,100,105,116,105,111,110,50,24,14,32,1,40,5,82,17,84,114,105,103,103,101,114,67,111,110,100,105,116,105,111,110,50,18,38,10,14,84,114,105,103,103,101,114,50,80,97,114,97,109,49,24,15,32,1,40,9,82,14,84,114,105,103,103,101,114,50,80,97,114,97,109,49,18,38,10,14,84,114,105,103,103,101,114,50,80,97,114,97,109,50,24,16,32,1,40,9,82,14,84,114,105,103,103,101,114,50,80,97,114,97,109,50,18,38,10,14,84,114,105,103,103,101,114,50,80,97,114,97,109,51,24,17,32,1,40,9,82,14,84,114,105,103,103,101,114,50,80,97,114,97,109,51,18,38,10,14,84,114,105,103,103,101,114,50,80,97,114,97,109,52,24,18,32,1,40,9,82,14,84,114,105,103,103,101,114,50,80,97,114,97,109,52,18,42,10,16,84,114,105,103,103,101,114,76,111,103,105,99,84,121,112,101,24,19,32,1,40,5,82,16,84,114,105,103,103,101,114,76,111,103,105,99,84,121,112,101,18,44,10,17,84,97,107,101,69,102,102,101,99,116,84,97,114,103,101,116,49,24,20,32,1,40,5,82,17,84,97,107,101,69,102,102,101,99,116,84,97,114,103,101,116,49,18,50,10,20,84,97,107,101,69,102,102,101,99,116,67,111,110,100,105,116,105,111,110,49,24,21,32,1,40,5,82,20,84,97,107,101,69,102,102,101,99,116,67,111,110,100,105,116,105,111,110,49,18,42,10,16,84,97,107,101,69,102,102,101,99,116,80,97,114,97,109,49,24,22,32,1,40,9,82,16,84,97,107,101,69,102,102,101,99,116,80,97,114,97,109,49,18,42,10,16,84,97,107,101,69,102,102,101,99,116,80,97,114,97,109,50,24,23,32,1,40,9,82,16,84,97,107,101,69,102,102,101,99,116,80,97,114,97,109,50,18,42,10,16,84,97,107,101,69,102,102,101,99,116,80,97,114,97,109,51,24,24,32,1,40,9,82,16,84,97,107,101,69,102,102,101,99,116,80,97,114,97,109,51,18,42,10,16,84,97,107,101,69,102,102,101,99,116,80,97,114,97,109,52,24,25,32,1,40,9,82,16,84,97,107,101,69,102,102,101,99,116,80,97,114,97,109,52,18,44,10,17,84,97,107,101,69,102,102,101,99,116,84,97,114,103,101,116,50,24,26,32,1,40,5,82,17,84,97,107,101,69,102,102,101,99,116,84,97,114,103,101,116,50,18,50,10,20,84,97,107,101,69,102,102,101,99,116,67,111,110,100,105,116,105,111,110,50,24,27,32,1,40,5,82,20,84,97,107,101,69,102,102,101,99,116,67,111,110,100,105,116,105,111,110,50,18,44,10,17,84,97,107,101,69,102,102,101,99,116,50,80,97,114,97,109,49,24,28,32,1,40,9,82,17,84,97,107,101,69,102,102,101,99,116,50,80,97,114,97,109,49,18,44,10,17,84,97,107,101,69,102,102,101,99,116,50,80,97,114,97,109,50,24,29,32,1,40,9,82,17,84,97,107,101,69,102,102,101,99,116,50,80,97,114,97,109,50,18,44,10,17,84,97,107,101,69,102,102,101,99,116,50,80,97,114,97,109,51,24,30,32,1,40,9,82,17,84,97,107,101,69,102,102,101,99,116,50,80,97,114,97,109,51,18,44,10,17,84,97,107,101,69,102,102,101,99,116,50,80,97,114,97,109,52,24,31,32,1,40,9,82,17,84,97,107,101,69,102,102,101,99,116,50,80,97,114,97,109,52,18,48,10,19,84,97,107,101,69,102,102,101,99,116,76,111,103,105,99,84,121,112,101,24,32,32,1,40,5,82,19,84,97,107,101,69,102,102,101,99,116,76,111,103,105,99,84,121,112,101,18,24,10,7,84,97,114,103,101,116,49,24,33,32,1,40,5,82,7,84,97,114,103,101,116,49,18,42,10,16,84,97,114,103,101,116,67,111,110,100,105,116,105,111,110,49,24,34,32,1,40,5,82,16,84,97,114,103,101,116,67,111,110,100,105,116,105,111,110,49,18,34,10,12,84,97,114,103,101,116,80,97,114,97,109,49,24,35,32,1,40,9,82,12,84,97,114,103,101,116,80,97,114,97,109,49,18,34,10,12,84,97,114,103,101,116,80,97,114,97,109,50,24,36,32,1,40,9,82,12,84,97,114,103,101,116,80,97,114,97,109,50,18,34,10,12,84,97,114,103,101,116,80,97,114,97,109,51,24,37,32,1,40,9,82,12,84,97,114,103,101,116,80,97,114,97,109,51,18,34,10,12,84,97,114,103,101,116,80,97,114,97,109,52,24,38,32,1,40,9,82,12,84,97,114,103,101,116,80,97,114,97,109,52,18,42,10,16,84,97,114,103,101,116,67,111,110,100,105,116,105,111,110,50,24,39,32,1,40,5,82,16,84,97,114,103,101,116,67,111,110,100,105,116,105,111,110,50,18,36,10,13,84,97,114,103,101,116,50,80,97,114,97,109,49,24,40,32,1,40,9,82,13,84,97,114,103,101,116,50,80,97,114,97,109,49,18,36,10,13,84,97,114,103,101,116,50,80,97,114,97,109,50,24,41,32,1,40,9,82,13,84,97,114,103,101,116,50,80,97,114,97,109,50,18,36,10,13,84,97,114,103,101,116,50,80,97,114,97,109,51,24,42,32,1,40,9,82,13,84,97,114,103,101,116,50,80,97,114,97,109,51,18,36,10,13,84,97,114,103,101,116,50,80,97,114,97,109,52,24,43,32,1,40,9,82,13,84,97,114,103,101,116,50,80,97,114,97,109,52,18,40,10,15,70,105,108,116,101,114,76,111,103,105,99,84,121,112,101,24,44,32,1,40,5,82,15,70,105,108,116,101,114,76,111,103,105,99,84,121,112,101,34,55,10,12,116,97,98,108,101,95,69,102,102,101,99,116,18,39,10,4,108,105,115,116,24,1,32,3,40,11,50,19,46,110,111,118,97,46,99,108,105,101,110,116,46,69,102,102,101,99,116,82,4,108,105,115,116,34,138,2,10,10,69,102,102,101,99,116,68,101,115,99,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,22,10,6,84,121,112,101,73,68,24,2,32,1,40,5,82,6,84,121,112,101,73,68,18,24,10,7,84,121,112,101,50,73,68,24,3,32,1,40,5,82,7,84,121,112,101,50,73,68,18,18,10,4,68,101,115,99,24,4,32,1,40,9,82,4,68,101,115,99,18,38,10,14,82,97,110,100,111,109,65,116,116,114,68,101,115,99,24,5,32,1,40,9,82,14,82,97,110,100,111,109,65,116,116,114,68,101,115,99,18,28,10,9,65,116,116,114,105,98,117,116,101,24,6,32,1,40,9,82,9,65,116,116,114,105,98,117,116,101,18,22,10,6,87,111,114,100,73,68,24,7,32,1,40,5,82,6,87,111,114,100,73,68,18,28,10,9,105,115,80,101,114,99,101,110,116,24,8,32,1,40,8,82,9,105,115,80,101,114,99,101,110,116,18,18,10,4,73,99,111,110,24,9,32,1,40,9,82,4,73,99,111,110,18,22,10,6,70,111,114,109,97,116,24,10,32,1,40,5,82,6,70,111,114,109,97,116,34,63,10,16,116,97,98,108,101,95,69,102,102,101,99,116,68,101,115,99,18,43,10,4,108,105,115,116,24,1,32,3,40,11,50,23,46,110,111,118,97,46,99,108,105,101,110,116,46,69,102,102,101,99,116,68,101,115,99,82,4,108,105,115,116,34,251,4,10,11,69,102,102,101,99,116,86,97,108,117,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,16,10,3,84,97,103,24,3,32,1,40,9,82,3,84,97,103,18,40,10,15,84,97,107,101,69,102,102,101,99,116,76,105,109,105,116,24,4,32,1,40,5,82,15,84,97,107,101,69,102,102,101,99,116,76,105,109,105,116,18,22,10,6,82,101,109,111,118,101,24,5,32,1,40,8,82,6,82,101,109,111,118,101,18,14,10,2,67,68,24,6,32,1,40,5,82,2,67,68,18,30,10,10,69,102,102,101,99,116,82,97,116,101,24,7,32,1,40,5,82,10,69,102,102,101,99,116,82,97,116,101,18,30,10,10,69,102,102,101,99,116,84,121,112,101,24,8,32,1,40,5,82,10,69,102,102,101,99,116,84,121,112,101,18,54,10,22,69,102,102,101,99,116,84,121,112,101,70,105,114,115,116,83,117,98,116,121,112,101,24,9,32,1,40,5,82,22,69,102,102,101,99,116,84,121,112,101,70,105,114,115,116,83,117,98,116,121,112,101,18,56,10,23,69,102,102,101,99,116,84,121,112,101,83,101,99,111,110,100,83,117,98,116,121,112,101,24,10,32,1,40,5,82,23,69,102,102,101,99,116,84,121,112,101,83,101,99,111,110,100,83,117,98,116,121,112,101,18,42,10,16,69,102,102,101,99,116,84,121,112,101,80,97,114,97,109,49,24,11,32,1,40,9,82,16,69,102,102,101,99,116,84,121,112,101,80,97,114,97,109,49,18,42,10,16,69,102,102,101,99,116,84,121,112,101,80,97,114,97,109,50,24,12,32,1,40,9,82,16,69,102,102,101,99,116,84,121,112,101,80,97,114,97,109,50,18,42,10,16,69,102,102,101,99,116,84,121,112,101,80,97,114,97,109,51,24,13,32,1,40,9,82,16,69,102,102,101,99,116,84,121,112,101,80,97,114,97,109,51,18,42,10,16,69,102,102,101,99,116,84,121,112,101,80,97,114,97,109,52,24,14,32,1,40,9,82,16,69,102,102,101,99,116,84,121,112,101,80,97,114,97,109,52,18,42,10,16,69,102,102,101,99,116,84,121,112,101,80,97,114,97,109,53,24,15,32,1,40,9,82,16,69,102,102,101,99,116,84,121,112,101,80,97,114,97,109,53,18,42,10,16,69,102,102,101,99,116,84,121,112,101,80,97,114,97,109,54,24,16,32,1,40,9,82,16,69,102,102,101,99,116,84,121,112,101,80,97,114,97,109,54,18,42,10,16,69,102,102,101,99,116,84,121,112,101,80,97,114,97,109,55,24,17,32,1,40,9,82,16,69,102,102,101,99,116,84,121,112,101,80,97,114,97,109,55,34,65,10,17,116,97,98,108,101,95,69,102,102,101,99,116,86,97,108,117,101,18,44,10,4,108,105,115,116,24,1,32,3,40,11,50,24,46,110,111,118,97,46,99,108,105,101,110,116,46,69,102,102,101,99,116,86,97,108,117,101,82,4,108,105,115,116,34,106,10,12,69,110,100,83,99,101,110,101,84,121,112,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,20,10,5,84,104,101,109,101,24,2,32,1,40,5,82,5,84,104,101,109,101,18,34,10,12,69,110,100,83,99,101,110,101,78,97,109,101,24,3,32,1,40,9,82,12,69,110,100,83,99,101,110,101,78,97,109,101,18,16,10,3,66,71,77,24,4,32,1,40,9,82,3,66,71,77,34,67,10,18,116,97,98,108,101,95,69,110,100,83,99,101,110,101,84,121,112,101,18,45,10,4,108,105,115,116,24,1,32,3,40,11,50,25,46,110,111,118,97,46,99,108,105,101,110,116,46,69,110,100,83,99,101,110,101,84,121,112,101,82,4,108,105,115,116,34,143,1,10,9,69,110,101,114,103,121,66,117,121,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,38,10,14,67,117,114,114,101,110,99,121,73,116,101,109,73,100,24,2,32,1,40,5,82,14,67,117,114,114,101,110,99,121,73,116,101,109,73,100,18,40,10,15,67,117,114,114,101,110,99,121,73,116,101,109,81,116,121,24,3,32,1,40,5,82,15,67,117,114,114,101,110,99,121,73,116,101,109,81,116,121,18,32,10,11,69,110,101,114,103,121,86,97,108,117,101,24,4,32,1,40,5,82,11,69,110,101,114,103,121,86,97,108,117,101,34,61,10,15,116,97,98,108,101,95,69,110,101,114,103,121,66,117,121,18,42,10,4,108,105,115,116,24,1,32,3,40,11,50,22,46,110,111,118,97,46,99,108,105,101,110,116,46,69,110,101,114,103,121,66,117,121,82,4,108,105,115,116,34,78,10,8,69,110,117,109,68,101,115,99,18,26,10,8,69,110,117,109,78,97,109,101,24,1,32,1,40,9,82,8,69,110,117,109,78,97,109,101,18,20,10,5,86,97,108,117,101,24,2,32,1,40,5,82,5,86,97,108,117,101,18,16,10,3,75,101,121,24,3,32,1,40,9,82,3,75,101,121,34,59,10,14,116,97,98,108,101,95,69,110,117,109,68,101,115,99,18,41,10,4,108,105,115,116,24,1,32,3,40,11,50,21,46,110,111,118,97,46,99,108,105,101,110,116,46,69,110,117,109,68,101,115,99,82,4,108,105,115,116,34,193,3,10,9,69,113,117,105,112,109,101,110,116,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,36,10,13,69,113,117,105,112,109,101,110,116,84,121,112,101,24,3,32,1,40,5,82,13,69,113,117,105,112,109,101,110,116,84,121,112,101,18,32,10,11,65,116,116,114,71,114,111,117,112,73,100,24,4,32,1,40,5,82,11,65,116,116,114,71,114,111,117,112,73,100,18,30,10,10,69,120,112,71,114,111,117,112,73,100,24,5,32,1,40,5,82,10,69,120,112,71,114,111,117,112,73,100,18,26,10,8,77,97,120,76,101,118,101,108,24,6,32,1,40,5,82,8,77,97,120,76,101,118,101,108,18,40,10,15,82,97,110,100,111,109,65,116,116,114,67,111,117,110,116,24,7,32,1,40,5,82,15,82,97,110,100,111,109,65,116,116,114,67,111,117,110,116,18,42,10,16,65,116,116,114,49,85,110,108,111,99,107,76,101,118,101,108,24,8,32,1,40,5,82,16,65,116,116,114,49,85,110,108,111,99,107,76,101,118,101,108,18,42,10,16,65,116,116,114,50,85,110,108,111,99,107,76,101,118,101,108,24,9,32,1,40,5,82,16,65,116,116,114,50,85,110,108,111,99,107,76,101,118,101,108,18,42,10,16,65,116,116,114,51,85,110,108,111,99,107,76,101,118,101,108,24,10,32,1,40,5,82,16,65,116,116,114,51,85,110,108,111,99,107,76,101,118,101,108,18,42,10,16,65,116,116,114,52,85,110,108,111,99,107,76,101,118,101,108,24,11,32,1,40,5,82,16,65,116,116,114,52,85,110,108,111,99,107,76,101,118,101,108,18,30,10,10,80,114,111,118,105,100,101,69,120,112,24,12,32,1,40,5,82,10,80,114,111,118,105,100,101,69,120,112,18,18,10,4,73,99,111,110,24,13,32,1,40,9,82,4,73,99,111,110,34,61,10,15,116,97,98,108,101,95,69,113,117,105,112,109,101,110,116,18,42,10,4,108,105,115,116,24,1,32,3,40,11,50,22,46,110,111,118,97,46,99,108,105,101,110,116,46,69,113,117,105,112,109,101,110,116,82,4,108,105,115,116,34,137,1,10,17,69,113,117,105,112,109,101,110,116,71,114,111,117,112,69,120,112,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,24,10,7,71,114,111,117,112,73,100,24,2,32,1,40,5,82,7,71,114,111,117,112,73,100,18,20,10,5,76,101,118,101,108,24,3,32,1,40,5,82,5,76,101,118,101,108,18,24,10,7,78,101,101,100,69,120,112,24,4,32,1,40,5,82,7,78,101,101,100,69,120,112,18,26,10,8,84,111,116,97,108,69,120,112,24,5,32,1,40,5,82,8,84,111,116,97,108,69,120,112,34,77,10,23,116,97,98,108,101,95,69,113,117,105,112,109,101,110,116,71,114,111,117,112,69,120,112,18,50,10,4,108,105,115,116,24,1,32,3,40,11,50,30,46,110,111,118,97,46,99,108,105,101,110,116,46,69,113,117,105,112,109,101,110,116,71,114,111,117,112,69,120,112,82,4,108,105,115,116,34,191,5,10,17,69,113,117,105,112,109,101,110,116,73,110,115,116,97,110,99,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,36,10,13,69,113,117,105,112,109,101,110,116,84,121,112,101,24,2,32,1,40,5,82,13,69,113,117,105,112,109,101,110,116,84,121,112,101,18,30,10,10,68,105,102,102,105,99,117,108,116,121,24,3,32,1,40,5,82,10,68,105,102,102,105,99,117,108,116,121,18,18,10,4,78,97,109,101,24,4,32,1,40,9,82,4,78,97,109,101,18,18,10,4,68,101,115,99,24,5,32,1,40,9,82,4,68,101,115,99,18,38,10,14,83,117,103,103,101,115,116,101,100,80,111,119,101,114,24,6,32,1,40,5,82,14,83,117,103,103,101,115,116,101,100,80,111,119,101,114,18,30,10,10,80,114,101,76,101,118,101,108,73,100,24,7,32,1,40,5,82,10,80,114,101,76,101,118,101,108,73,100,18,34,10,12,80,114,101,76,101,118,101,108,83,116,97,114,24,8,32,1,40,5,82,12,80,114,101,76,101,118,101,108,83,116,97,114,18,38,10,14,78,101,101,100,87,111,114,108,100,67,108,97,115,115,24,9,32,1,40,5,82,14,78,101,101,100,87,111,114,108,100,67,108,97,115,115,18,24,10,7,70,108,111,111,114,73,100,24,10,32,1,40,5,82,7,70,108,111,111,114,73,100,18,32,10,11,79,110,101,83,116,97,114,68,101,115,99,24,11,32,1,40,9,82,11,79,110,101,83,116,97,114,68,101,115,99,18,32,10,11,84,119,111,83,116,97,114,68,101,115,99,24,12,32,1,40,9,82,11,84,119,111,83,116,97,114,68,101,115,99,18,36,10,13,84,104,114,101,101,83,116,97,114,68,101,115,99,24,13,32,1,40,9,82,13,84,104,114,101,101,83,116,97,114,68,101,115,99,18,50,10,20,79,110,101,83,116,97,114,69,110,101,114,103,121,67,111,110,115,117,109,101,24,14,32,1,40,5,82,20,79,110,101,83,116,97,114,69,110,101,114,103,121,67,111,110,115,117,109,101,18,50,10,20,84,119,111,83,116,97,114,69,110,101,114,103,121,67,111,110,115,117,109,101,24,15,32,1,40,5,82,20,84,119,111,83,116,97,114,69,110,101,114,103,121,67,111,110,115,117,109,101,18,54,10,22,84,104,114,101,101,83,116,97,114,69,110,101,114,103,121,67,111,110,115,117,109,101,24,16,32,1,40,5,82,22,84,104,114,101,101,83,116,97,114,69,110,101,114,103,121,67,111,110,115,117,109,101,18,42,10,16,66,97,115,101,65,119,97,114,100,80,114,101,118,105,101,119,24,17,32,1,40,9,82,16,66,97,115,101,65,119,97,114,100,80,114,101,118,105,101,119,18,52,10,21,80,114,101,118,105,101,119,77,111,110,115,116,101,114,71,114,111,117,112,73,100,24,18,32,1,40,5,82,21,80,114,101,118,105,101,119,77,111,110,115,116,101,114,71,114,111,117,112,73,100,18,18,10,4,73,99,111,110,24,19,32,1,40,9,82,4,73,99,111,110,34,77,10,23,116,97,98,108,101,95,69,113,117,105,112,109,101,110,116,73,110,115,116,97,110,99,101,18,50,10,4,108,105,115,116,24,1,32,3,40,11,50,30,46,110,111,118,97,46,99,108,105,101,110,116,46,69,113,117,105,112,109,101,110,116,73,110,115,116,97,110,99,101,82,4,108,105,115,116,34,134,5,10,22,69,113,117,105,112,109,101,110,116,73,110,115,116,97,110,99,101,70,108,111,111,114,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,28,10,9,83,99,101,110,101,78,97,109,101,24,2,32,1,40,9,82,9,83,99,101,110,101,78,97,109,101,18,42,10,16,67,111,110,102,105,103,80,114,101,102,97,98,78,97,109,101,24,3,32,1,40,9,82,16,67,111,110,102,105,103,80,114,101,102,97,98,78,97,109,101,18,20,10,5,84,104,101,109,101,24,4,32,1,40,5,82,5,84,104,101,109,101,18,16,10,3,66,71,77,24,5,32,1,40,9,82,3,66,71,77,18,44,10,17,76,101,97,118,101,84,114,105,103,103,101,114,69,118,101,110,116,24,6,32,1,40,9,82,17,76,101,97,118,101,84,114,105,103,103,101,114,69,118,101,110,116,18,28,10,9,109,111,110,115,116,101,114,73,100,24,7,32,1,40,5,82,9,109,111,110,115,116,101,114,73,100,18,42,10,16,79,110,101,83,116,97,114,67,111,110,100,105,116,105,111,110,24,8,32,1,40,5,82,16,79,110,101,83,116,97,114,67,111,110,100,105,116,105,111,110,18,42,10,16,84,119,111,83,116,97,114,67,111,110,100,105,116,105,111,110,24,9,32,1,40,5,82,16,84,119,111,83,116,97,114,67,111,110,100,105,116,105,111,110,18,46,10,18,84,104,114,101,101,83,116,97,114,67,111,110,100,105,116,105,111,110,24,10,32,1,40,5,82,18,84,104,114,101,101,83,116,97,114,67,111,110,100,105,116,105,111,110,18,38,10,14,76,101,118,101,108,84,111,116,97,108,84,105,109,101,24,11,32,1,40,5,82,14,76,101,118,101,108,84,111,116,97,108,84,105,109,101,18,44,10,17,84,105,109,101,69,110,100,83,101,116,116,108,101,109,101,110,116,24,12,32,1,40,8,82,17,84,105,109,101,69,110,100,83,101,116,116,108,101,109,101,110,116,18,44,10,17,83,116,97,114,67,111,110,100,105,116,105,111,110,84,121,112,101,24,13,32,1,40,5,82,17,83,116,97,114,67,111,110,100,105,116,105,111,110,84,121,112,101,18,28,10,9,77,111,110,115,116,101,114,76,118,24,14,32,1,40,5,82,9,77,111,110,115,116,101,114,76,118,18,44,10,17,68,114,111,112,79,98,106,101,99,116,71,114,111,117,112,73,100,24,15,32,1,40,5,82,17,68,114,111,112,79,98,106,101,99,116,71,114,111,117,112,73,100,18,38,10,14,68,114,111,112,79,98,106,101,99,116,82,97,116,101,24,16,32,1,40,5,82,14,68,114,111,112,79,98,106,101,99,116,82,97,116,101,18,30,10,10,68,114,111,112,77,97,120,78,117,109,24,17,32,1,40,5,82,10,68,114,111,112,77,97,120,78,117,109,34,87,10,28,116,97,98,108,101,95,69,113,117,105,112,109,101,110,116,73,110,115,116,97,110,99,101,70,108,111,111,114,18,55,10,4,108,105,115,116,24,1,32,3,40,11,50,35,46,110,111,118,97,46,99,108,105,101,110,116,46,69,113,117,105,112,109,101,110,116,73,110,115,116,97,110,99,101,70,108,111,111,114,82,4,108,105,115,116,34,181,2,10,21,69,113,117,105,112,109,101,110,116,73,110,115,116,97,110,99,101,84,121,112,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,30,10,10,77,97,105,110,76,105,110,101,73,100,24,3,32,1,40,5,82,10,77,97,105,110,76,105,110,101,73,100,18,40,10,15,87,111,114,108,100,67,108,97,115,115,76,101,118,101,108,24,4,32,1,40,5,82,15,87,111,114,108,100,67,108,97,115,115,76,101,118,101,108,18,24,10,7,79,112,101,110,68,97,121,24,5,32,3,40,5,82,7,79,112,101,110,68,97,121,18,32,10,11,79,112,101,110,68,97,121,68,101,115,99,24,6,32,1,40,9,82,11,79,112,101,110,68,97,121,68,101,115,99,18,24,10,7,69,112,105,115,111,100,101,24,7,32,1,40,9,82,7,69,112,105,115,111,100,101,18,20,10,5,73,109,97,103,101,24,8,32,1,40,9,82,5,73,109,97,103,101,18,18,10,4,83,111,114,116,24,9,32,1,40,5,82,4,83,111,114,116,18,28,10,9,72,111,119,82,101,119,97,114,100,24,10,32,3,40,5,82,9,72,111,119,82,101,119,97,114,100,18,16,10,3,69,69,84,24,11,32,3,40,5,82,3,69,69,84,34,85,10,27,116,97,98,108,101,95,69,113,117,105,112,109,101,110,116,73,110,115,116,97,110,99,101,84,121,112,101,18,54,10,4,108,105,115,116,24,1,32,3,40,11,50,34,46,110,111,118,97,46,99,108,105,101,110,116,46,69,113,117,105,112,109,101,110,116,73,110,115,116,97,110,99,101,84,121,112,101,82,4,108,105,115,116,34,76,10,16,69,113,117,105,112,109,101,110,116,73,116,101,109,69,120,112,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,22,10,6,73,116,101,109,73,100,24,2,32,1,40,5,82,6,73,116,101,109,73,100,18,16,10,3,69,120,112,24,3,32,1,40,5,82,3,69,120,112,34,75,10,22,116,97,98,108,101,95,69,113,117,105,112,109,101,110,116,73,116,101,109,69,120,112,18,49,10,4,108,105,115,116,24,1,32,3,40,11,50,29,46,110,111,118,97,46,99,108,105,101,110,116,46,69,113,117,105,112,109,101,110,116,73,116,101,109,69,120,112,82,4,108,105,115,116,34,154,2,10,24,69,113,117,105,112,109,101,110,116,82,97,110,100,111,109,65,116,116,114,105,98,117,116,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,32,10,11,69,108,101,109,101,110,116,84,121,112,101,24,2,32,1,40,5,82,11,69,108,101,109,101,110,116,84,121,112,101,18,36,10,13,65,116,116,114,71,114,111,117,112,84,121,112,101,24,3,32,1,40,5,82,13,65,116,116,114,71,114,111,117,112,84,121,112,101,18,32,10,11,65,116,116,114,86,97,108,117,101,73,100,24,4,32,1,40,5,82,11,65,116,116,114,86,97,108,117,101,73,100,18,26,10,8,65,116,116,114,84,121,112,101,24,5,32,1,40,5,82,8,65,116,116,114,84,121,112,101,18,50,10,20,65,116,116,114,84,121,112,101,70,105,114,115,116,83,117,98,116,121,112,101,24,6,32,1,40,5,82,20,65,116,116,114,84,121,112,101,70,105,114,115,116,83,117,98,116,121,112,101,18,52,10,21,65,116,116,114,84,121,112,101,83,101,99,111,110,100,83,117,98,116,121,112,101,24,7,32,1,40,5,82,21,65,116,116,114,84,121,112,101,83,101,99,111,110,100,83,117,98,116,121,112,101,34,91,10,30,116,97,98,108,101,95,69,113,117,105,112,109,101,110,116,82,97,110,100,111,109,65,116,116,114,105,98,117,116,101,18,57,10,4,108,105,115,116,24,1,32,3,40,11,50,37,46,110,111,118,97,46,99,108,105,101,110,116,46,69,113,117,105,112,109,101,110,116,82,97,110,100,111,109,65,116,116,114,105,98,117,116,101,82,4,108,105,115,116,34,105,10,9,69,114,114,111,114,67,111,100,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,20,10,5,84,105,116,108,101,24,2,32,1,40,9,82,5,84,105,116,108,101,18,26,10,8,84,101,109,112,108,97,116,101,24,3,32,1,40,9,82,8,84,101,109,112,108,97,116,101,18,26,10,8,83,104,111,119,84,121,112,101,24,4,32,1,40,5,82,8,83,104,111,119,84,121,112,101,34,61,10,15,116,97,98,108,101,95,69,114,114,111,114,67,111,100,101,18,42,10,4,108,105,115,116,24,1,32,3,40,11,50,22,46,110,111,118,97,46,99,108,105,101,110,116,46,69,114,114,111,114,67,111,100,101,82,4,108,105,115,116,34,96,10,12,69,118,101,110,116,79,112,116,105,111,110,115,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,68,101,115,99,24,2,32,1,40,9,82,4,68,101,115,99,18,44,10,17,73,103,110,111,114,101,73,110,116,101,114,65,99,116,105,118,101,24,3,32,1,40,8,82,17,73,103,110,111,114,101,73,110,116,101,114,65,99,116,105,118,101,34,67,10,18,116,97,98,108,101,95,69,118,101,110,116,79,112,116,105,111,110,115,18,45,10,4,108,105,115,116,24,1,32,3,40,11,50,25,46,110,111,118,97,46,99,108,105,101,110,116,46,69,118,101,110,116,79,112,116,105,111,110,115,82,4,108,105,115,116,34,75,10,17,69,118,101,110,116,79,112,116,105,111,110,115,82,117,108,101,115,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,18,10,4,68,101,115,99,24,3,32,1,40,9,82,4,68,101,115,99,34,77,10,23,116,97,98,108,101,95,69,118,101,110,116,79,112,116,105,111,110,115,82,117,108,101,115,18,50,10,4,108,105,115,116,24,1,32,3,40,11,50,30,46,110,111,118,97,46,99,108,105,101,110,116,46,69,118,101,110,116,79,112,116,105,111,110,115,82,117,108,101,115,82,4,108,105,115,116,34,203,1,10,11,69,118,101,110,116,82,101,115,117,108,116,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,24,10,7,69,102,102,101,99,116,49,24,2,32,1,40,5,82,7,69,102,102,101,99,116,49,18,30,10,10,80,97,114,97,109,101,116,101,114,49,24,3,32,3,40,5,82,10,80,97,114,97,109,101,116,101,114,49,18,24,10,7,69,102,102,101,99,116,50,24,4,32,1,40,5,82,7,69,102,102,101,99,116,50,18,30,10,10,80,97,114,97,109,101,116,101,114,50,24,5,32,3,40,5,82,10,80,97,114,97,109,101,116,101,114,50,18,24,10,7,69,102,102,101,99,116,51,24,6,32,1,40,5,82,7,69,102,102,101,99,116,51,18,30,10,10,80,97,114,97,109,101,116,101,114,51,24,7,32,3,40,5,82,10,80,97,114,97,109,101,116,101,114,51,34,65,10,17,116,97,98,108,101,95,69,118,101,110,116,82,101,115,117,108,116,18,44,10,4,108,105,115,116,24,1,32,3,40,11,50,24,46,110,111,118,97,46,99,108,105,101,110,116,46,69,118,101,110,116,82,101,115,117,108,116,82,4,108,105,115,116,34,83,10,15,70,97,99,116,105,111,110,82,101,108,97,116,105,111,110,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,48,10,19,70,97,99,116,105,111,110,82,101,108,97,116,105,111,110,83,104,105,112,24,2,32,3,40,5,82,19,70,97,99,116,105,111,110,82,101,108,97,116,105,111,110,83,104,105,112,34,73,10,21,116,97,98,108,101,95,70,97,99,116,105,111,110,82,101,108,97,116,105,111,110,18,48,10,4,108,105,115,116,24,1,32,3,40,11,50,28,46,110,111,118,97,46,99,108,105,101,110,116,46,70,97,99,116,105,111,110,82,101,108,97,116,105,111,110,82,4,108,105,115,116,34,224,4,10,8,70,97,116,101,67,97,114,100,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,18,10,4,68,101,115,99,24,3,32,1,40,9,82,4,68,101,115,99,18,20,10,5,68,101,115,99,50,24,4,32,1,40,9,82,5,68,101,115,99,50,18,24,10,7,73,115,84,111,119,101,114,24,5,32,1,40,8,82,7,73,115,84,111,119,101,114,18,28,10,9,73,115,86,97,109,112,105,114,101,24,6,32,1,40,8,82,9,73,115,86,97,109,112,105,114,101,18,42,10,16,73,115,86,97,109,112,105,114,101,83,112,101,99,105,97,108,24,7,32,1,40,8,82,16,73,115,86,97,109,112,105,114,101,83,112,101,99,105,97,108,18,34,10,12,65,99,116,105,118,101,78,117,109,98,101,114,24,8,32,1,40,5,82,12,65,99,116,105,118,101,78,117,109,98,101,114,18,26,10,8,68,117,114,97,116,105,111,110,24,9,32,1,40,5,82,8,68,117,114,97,116,105,111,110,18,40,10,15,65,99,116,105,118,101,82,111,111,109,84,121,112,101,115,24,10,32,3,40,5,82,15,65,99,116,105,118,101,82,111,111,109,84,121,112,101,115,18,34,10,12,65,99,116,105,118,101,65,99,116,105,111,110,24,11,32,1,40,5,82,12,65,99,116,105,118,101,65,99,116,105,111,110,18,30,10,10,77,101,116,104,111,100,77,111,100,101,24,12,32,1,40,5,82,10,77,101,116,104,111,100,77,111,100,101,18,34,10,12,67,108,105,101,110,116,69,102,102,101,99,116,24,13,32,1,40,5,82,12,67,108,105,101,110,116,69,102,102,101,99,116,18,20,10,5,67,111,117,110,116,24,14,32,1,40,5,82,5,67,111,117,110,116,18,28,10,9,84,104,101,109,101,84,121,112,101,24,15,32,1,40,5,82,9,84,104,101,109,101,84,121,112,101,18,30,10,10,84,104,101,109,101,86,97,108,117,101,24,16,32,1,40,5,82,10,84,104,101,109,101,86,97,108,117,101,18,42,10,16,84,104,101,109,101,84,114,105,103,103,101,114,84,121,112,101,24,17,32,3,40,5,82,16,84,104,101,109,101,84,114,105,103,103,101,114,84,121,112,101,18,50,10,20,69,102,102,101,99,116,105,118,101,73,109,109,101,100,105,97,116,101,108,121,24,18,32,1,40,8,82,20,69,102,102,101,99,116,105,118,101,73,109,109,101,100,105,97,116,101,108,121,18,28,10,9,82,101,109,111,118,97,98,108,101,24,19,32,1,40,8,82,9,82,101,109,111,118,97,98,108,101,34,59,10,14,116,97,98,108,101,95,70,97,116,101,67,97,114,100,18,41,10,4,108,105,115,116,24,1,32,3,40,11,50,21,46,110,111,118,97,46,99,108,105,101,110,116,46,70,97,116,101,67,97,114,100,82,4,108,105,115,116,34,133,1,10,9,70,108,111,111,114,66,117,102,102,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,24,10,7,65,100,100,67,97,109,112,24,2,32,3,40,5,82,7,65,100,100,67,97,109,112,18,26,10,8,65,100,100,67,108,97,115,115,24,3,32,3,40,5,82,8,65,100,100,67,108,97,115,115,18,26,10,8,69,102,102,101,99,116,73,100,24,4,32,3,40,5,82,8,69,102,102,101,99,116,73,100,18,22,10,6,66,117,102,102,73,100,24,5,32,3,40,5,82,6,66,117,102,102,73,100,34,61,10,15,116,97,98,108,101,95,70,108,111,111,114,66,117,102,102,18,42,10,4,108,105,115,116,24,1,32,3,40,11,50,22,46,110,111,118,97,46,99,108,105,101,110,116,46,70,108,111,111,114,66,117,102,102,82,4,108,105,115,116,34,119,10,5,70,111,114,99,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,20,10,5,84,105,116,108,101,24,2,32,1,40,9,82,5,84,105,116,108,101,18,20,10,5,73,99,111,110,49,24,3,32,1,40,9,82,5,73,99,111,110,49,18,20,10,5,73,99,111,110,50,24,4,32,1,40,9,82,5,73,99,111,110,50,18,28,10,9,84,97,108,101,110,116,80,111,115,24,5,32,3,40,5,82,9,84,97,108,101,110,116,80,111,115,34,53,10,11,116,97,98,108,101,95,70,111,114,99,101,18,38,10,4,108,105,115,116,24,1,32,3,40,11,50,18,46,110,111,118,97,46,99,108,105,101,110,116,46,70,111,114,99,101,82,4,108,105,115,116,34,66,10,14,70,111,114,109,97,116,105,111,110,83,99,101,110,101,18,28,10,9,83,99,101,110,101,78,97,109,101,24,1,32,1,40,9,82,9,83,99,101,110,101,78,97,109,101,18,18,10,4,80,97,116,104,24,2,32,1,40,9,82,4,80,97,116,104,34,71,10,20,116,97,98,108,101,95,70,111,114,109,97,116,105,111,110,83,99,101,110,101,18,47,10,4,108,105,115,116,24,1,32,3,40,11,50,27,46,110,111,118,97,46,99,108,105,101,110,116,46,70,111,114,109,97,116,105,111,110,83,99,101,110,101,82,4,108,105,115,116,34,255,4,10,5,71,97,99,104,97,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,28,10,9,68,101,102,97,117,108,116,73,100,24,2,32,1,40,5,82,9,68,101,102,97,117,108,116,73,100,18,30,10,10,68,101,102,97,117,108,116,81,116,121,24,3,32,1,40,5,82,10,68,101,102,97,117,108,116,81,116,121,18,22,10,6,67,111,115,116,73,100,24,4,32,1,40,5,82,6,67,111,115,116,73,100,18,24,10,7,67,111,115,116,81,116,121,24,5,32,1,40,5,82,7,67,111,115,116,81,116,121,18,36,10,13,79,110,99,101,80,114,101,102,101,114,114,101,100,24,6,32,1,40,9,82,13,79,110,99,101,80,114,101,102,101,114,114,101,100,18,44,10,17,84,101,110,84,105,109,101,115,80,114,101,102,101,114,114,101,100,24,7,32,1,40,9,82,17,84,101,110,84,105,109,101,115,80,114,101,102,101,114,114,101,100,18,30,10,10,76,105,109,105,116,84,105,109,101,115,24,8,32,1,40,5,82,10,76,105,109,105,116,84,105,109,101,115,18,40,10,15,65,84,121,112,101,85,112,83,104,111,119,80,114,111,98,24,9,32,1,40,5,82,15,65,84,121,112,101,85,112,83,104,111,119,80,114,111,98,18,40,10,15,66,84,121,112,101,85,112,83,104,111,119,80,114,111,98,24,10,32,1,40,5,82,15,66,84,121,112,101,85,112,83,104,111,119,80,114,111,98,18,28,10,9,83,116,111,114,97,103,101,73,100,24,11,32,1,40,5,82,9,83,116,111,114,97,103,101,73,100,18,28,10,9,83,116,97,114,116,84,105,109,101,24,12,32,1,40,9,82,9,83,116,97,114,116,84,105,109,101,18,24,10,7,69,110,100,84,105,109,101,24,13,32,1,40,9,82,7,69,110,100,84,105,109,101,18,18,10,4,83,111,114,116,24,14,32,1,40,5,82,4,83,111,114,116,18,18,10,4,73,99,111,110,24,15,32,1,40,9,82,4,73,99,111,110,18,20,10,5,73,109,97,103,101,24,16,32,1,40,9,82,5,73,109,97,103,101,18,32,10,11,85,80,67,104,97,114,97,99,116,101,114,24,17,32,3,40,5,82,11,85,80,67,104,97,114,97,99,116,101,114,18,26,10,8,85,80,79,117,116,102,105,116,24,18,32,3,40,5,82,8,85,80,79,117,116,102,105,116,18,28,10,9,67,104,97,114,97,99,116,101,114,24,19,32,3,40,5,82,9,67,104,97,114,97,99,116,101,114,18,22,10,6,79,117,116,102,105,116,24,20,32,3,40,5,82,6,79,117,116,102,105,116,18,16,10,3,84,97,103,24,21,32,1,40,9,82,3,84,97,103,18,20,10,5,86,111,105,99,101,24,22,32,1,40,9,82,5,86,111,105,99,101,34,53,10,11,116,97,98,108,101,95,71,97,99,104,97,18,38,10,4,108,105,115,116,24,1,32,3,40,11,50,18,46,110,111,118,97,46,99,108,105,101,110,116,46,71,97,99,104,97,82,4,108,105,115,116,34,184,1,10,18,71,97,99,104,97,65,99,113,117,105,114,101,82,101,119,97,114,100,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,28,10,9,105,116,101,109,83,116,121,112,101,24,2,32,1,40,5,82,9,105,116,101,109,83,116,121,112,101,18,30,10,10,105,116,101,109,82,97,114,105,116,121,24,3,32,1,40,5,82,10,105,116,101,109,82,97,114,105,116,121,18,34,10,12,65,99,113,117,105,114,101,84,105,109,101,115,24,4,32,1,40,5,82,12,65,99,113,117,105,114,101,84,105,109,101,115,18,22,10,6,73,116,101,109,73,100,24,5,32,1,40,5,82,6,73,116,101,109,73,100,18,24,10,7,73,116,101,109,78,117,109,24,6,32,1,40,5,82,7,73,116,101,109,78,117,109,34,79,10,24,116,97,98,108,101,95,71,97,99,104,97,65,99,113,117,105,114,101,82,101,119,97,114,100,18,51,10,4,108,105,115,116,24,1,32,3,40,11,50,31,46,110,111,118,97,46,99,108,105,101,110,116,46,71,97,99,104,97,65,99,113,117,105,114,101,82,101,119,97,114,100,82,4,108,105,115,116,34,243,2,10,9,71,97,99,104,97,84,121,112,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,26,10,8,67,111,105,110,73,116,101,109,24,3,32,3,40,5,82,8,67,111,105,110,73,116,101,109,18,22,10,6,84,105,116,108,101,49,24,4,32,1,40,9,82,6,84,105,116,108,101,49,18,20,10,5,68,101,115,99,49,24,5,32,1,40,9,82,5,68,101,115,99,49,18,22,10,6,84,105,116,108,101,50,24,6,32,1,40,9,82,6,84,105,116,108,101,50,18,20,10,5,68,101,115,99,50,24,7,32,1,40,9,82,5,68,101,115,99,50,18,22,10,6,84,105,116,108,101,51,24,8,32,1,40,9,82,6,84,105,116,108,101,51,18,20,10,5,68,101,115,99,51,24,9,32,1,40,9,82,5,68,101,115,99,51,18,22,10,6,84,105,116,108,101,52,24,10,32,1,40,9,82,6,84,105,116,108,101,52,18,20,10,5,68,101,115,99,52,24,11,32,1,40,9,82,5,68,101,115,99,52,18,20,10,5,68,101,115,99,53,24,12,32,1,40,9,82,5,68,101,115,99,53,18,22,10,6,84,105,116,108,101,53,24,13,32,1,40,9,82,6,84,105,116,108,101,53,18,20,10,5,68,101,115,99,54,24,14,32,1,40,9,82,5,68,101,115,99,54,18,20,10,5,68,101,115,99,55,24,15,32,1,40,9,82,5,68,101,115,99,55,18,20,10,5,68,101,115,99,56,24,16,32,1,40,9,82,5,68,101,115,99,56,34,61,10,15,116,97,98,108,101,95,71,97,99,104,97,84,121,112,101,18,42,10,4,108,105,115,116,24,1,32,3,40,11,50,22,46,110,111,118,97,46,99,108,105,101,110,116,46,71,97,99,104,97,84,121,112,101,82,4,108,105,115,116,34,101,10,13,71,97,109,101,112,97,100,66,117,116,116,111,110,18,14,10,2,73,100,24,1,32,1,40,9,82,2,73,100,18,26,10,8,88,98,111,120,73,99,111,110,24,2,32,1,40,9,82,8,88,98,111,120,73,99,111,110,18,40,10,15,80,108,97,121,83,116,97,116,105,111,110,73,99,111,110,24,3,32,1,40,9,82,15,80,108,97,121,83,116,97,116,105,111,110,73,99,111,110,34,69,10,19,116,97,98,108,101,95,71,97,109,101,112,97,100,66,117,116,116,111,110,18,46,10,4,108,105,115,116,24,1,32,3,40,11,50,26,46,110,111,118,97,46,99,108,105,101,110,116,46,71,97,109,101,112,97,100,66,117,116,116,111,110,82,4,108,105,115,116,34,55,10,7,71,77,66,117,105,108,100,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,28,10,9,66,117,105,108,100,68,97,116,97,24,2,32,1,40,9,82,9,66,117,105,108,100,68,97,116,97,34,57,10,13,116,97,98,108,101,95,71,77,66,117,105,108,100,18,40,10,4,108,105,115,116,24,1,32,3,40,11,50,20,46,110,111,118,97,46,99,108,105,101,110,116,46,71,77,66,117,105,108,100,82,4,108,105,115,116,34,211,1,10,7,71,77,79,114,100,101,114,18,20,10,5,79,114,100,101,114,24,1,32,1,40,9,82,5,79,114,100,101,114,18,18,10,4,68,101,115,99,24,2,32,1,40,9,82,4,68,101,115,99,18,30,10,10,80,97,114,97,109,67,111,117,110,116,24,3,32,1,40,5,82,10,80,97,114,97,109,67,111,117,110,116,18,30,10,10,80,97,114,97,109,78,97,109,101,49,24,4,32,1,40,9,82,10,80,97,114,97,109,78,97,109,101,49,18,30,10,10,80,97,114,97,109,78,97,109,101,50,24,5,32,1,40,9,82,10,80,97,114,97,109,78,97,109,101,50,18,30,10,10,80,97,114,97,109,78,97,109,101,51,24,6,32,1,40,9,82,10,80,97,114,97,109,78,97,109,101,51,18,30,10,10,80,97,114,97,109,78,97,109,101,52,24,7,32,1,40,9,82,10,80,97,114,97,109,78,97,109,101,52,34,57,10,13,116,97,98,108,101,95,71,77,79,114,100,101,114,18,40,10,4,108,105,115,116,24,1,32,3,40,11,50,20,46,110,111,118,97,46,99,108,105,101,110,116,46,71,77,79,114,100,101,114,82,4,108,105,115,116,34,110,10,6,71,77,84,101,97,109,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,36,10,13,84,101,97,109,67,104,97,114,97,99,116,101,114,24,3,32,3,40,5,82,13,84,101,97,109,67,104,97,114,97,99,116,101,114,18,26,10,8,84,101,97,109,68,105,115,99,24,4,32,3,40,5,82,8,84,101,97,109,68,105,115,99,34,55,10,12,116,97,98,108,101,95,71,77,84,101,97,109,18,39,10,4,108,105,115,116,24,1,32,3,40,11,50,19,46,110,111,118,97,46,99,108,105,101,110,116,46,71,77,84,101,97,109,82,4,108,105,115,116,34,169,5,10,5,71,117,105,100,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,24,10,7,71,114,111,117,112,73,100,24,2,32,1,40,5,82,7,71,114,111,117,112,73,100,18,18,10,4,83,116,101,112,24,3,32,1,40,5,82,4,83,116,101,112,18,18,10,4,84,121,112,101,24,4,32,1,40,5,82,4,84,121,112,101,18,34,10,12,71,117,105,100,101,80,114,101,112,111,115,101,24,5,32,1,40,5,82,12,71,117,105,100,101,80,114,101,112,111,115,101,18,36,10,13,80,114,101,112,111,115,101,80,97,114,97,109,115,24,6,32,1,40,9,82,13,80,114,101,112,111,115,101,80,97,114,97,109,115,18,34,10,12,71,117,105,100,101,84,114,105,103,103,101,114,24,7,32,1,40,5,82,12,71,117,105,100,101,84,114,105,103,103,101,114,18,36,10,13,84,114,105,103,103,101,114,80,97,114,97,109,115,24,8,32,1,40,9,82,13,84,114,105,103,103,101,114,80,97,114,97,109,115,18,24,10,7,69,110,100,84,121,112,101,24,9,32,1,40,5,82,7,69,110,100,84,121,112,101,18,34,10,12,67,101,110,116,101,114,79,102,102,115,101,116,24,10,32,1,40,2,82,12,67,101,110,116,101,114,79,102,102,115,101,116,18,26,10,8,66,105,110,100,73,99,111,110,24,11,32,3,40,9,82,8,66,105,110,100,73,99,111,110,18,46,10,18,66,105,110,100,73,99,111,110,67,104,105,108,100,67,111,117,110,116,24,12,32,1,40,5,82,18,66,105,110,100,73,99,111,110,67,104,105,108,100,67,111,117,110,116,18,18,10,4,83,105,122,101,24,13,32,3,40,5,82,4,83,105,122,101,18,28,10,9,68,101,118,105,97,116,105,111,110,24,14,32,3,40,5,82,9,68,101,118,105,97,116,105,111,110,18,20,10,5,68,101,108,97,121,24,15,32,1,40,5,82,5,68,101,108,97,121,18,18,10,4,72,101,97,100,24,16,32,1,40,9,82,4,72,101,97,100,18,18,10,4,68,101,115,99,24,17,32,1,40,9,82,4,68,101,115,99,18,36,10,13,68,101,115,99,68,101,118,105,97,116,105,111,110,24,18,32,3,40,5,82,13,68,101,115,99,68,101,118,105,97,116,105,111,110,18,36,10,13,72,97,110,100,68,101,118,105,97,116,105,111,110,24,19,32,3,40,5,82,13,72,97,110,100,68,101,118,105,97,116,105,111,110,18,34,10,12,72,97,110,100,82,111,116,97,116,105,111,110,24,20,32,1,40,5,82,12,72,97,110,100,82,111,116,97,116,105,111,110,18,30,10,10,68,105,99,116,105,111,110,97,114,121,24,21,32,1,40,5,82,10,68,105,99,116,105,111,110,97,114,121,18,20,10,5,65,118,103,73,100,24,22,32,1,40,9,82,5,65,118,103,73,100,18,26,10,8,73,115,65,99,116,105,118,101,24,23,32,1,40,8,82,8,73,115,65,99,116,105,118,101,34,53,10,11,116,97,98,108,101,95,71,117,105,100,101,18,38,10,4,108,105,115,116,24,1,32,3,40,11,50,18,46,110,111,118,97,46,99,108,105,101,110,116,46,71,117,105,100,101,82,4,108,105,115,116,34,232,3,10,10,71,117,105,100,101,71,114,111,117,112,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,46,10,18,71,117,105,100,101,68,101,116,101,99,116,105,111,110,84,121,112,101,24,2,32,1,40,5,82,18,71,117,105,100,101,68,101,116,101,99,116,105,111,110,84,121,112,101,18,30,10,10,80,97,115,115,105,118,101,77,115,103,24,3,32,1,40,9,82,10,80,97,115,115,105,118,101,77,115,103,18,34,10,12,71,117,105,100,101,80,114,101,112,111,115,101,24,4,32,1,40,5,82,12,71,117,105,100,101,80,114,101,112,111,115,101,18,36,10,13,80,114,101,112,111,115,101,80,97,114,97,109,115,24,5,32,1,40,9,82,13,80,114,101,112,111,115,101,80,97,114,97,109,115,18,36,10,13,71,117,105,100,101,80,114,101,112,111,115,101,50,24,6,32,1,40,5,82,13,71,117,105,100,101,80,114,101,112,111,115,101,50,18,38,10,14,80,114,101,112,111,115,101,80,97,114,97,109,115,50,24,7,32,1,40,9,82,14,80,114,101,112,111,115,101,80,97,114,97,109,115,50,18,28,10,9,71,117,105,100,101,80,111,115,116,24,8,32,1,40,5,82,9,71,117,105,100,101,80,111,115,116,18,30,10,10,80,111,115,116,80,97,114,97,109,115,24,9,32,1,40,9,82,10,80,111,115,116,80,97,114,97,109,115,18,34,10,12,71,117,105,100,101,84,114,105,103,103,101,114,24,10,32,1,40,5,82,12,71,117,105,100,101,84,114,105,103,103,101,114,18,36,10,13,84,114,105,103,103,101,114,80,97,114,97,109,115,24,11,32,1,40,9,82,13,84,114,105,103,103,101,114,80,97,114,97,109,115,18,30,10,10,84,111,119,101,114,83,116,97,116,101,24,12,32,1,40,8,82,10,84,111,119,101,114,83,116,97,116,101,18,30,10,10,83,99,114,105,112,116,80,97,116,104,24,13,32,1,40,9,82,10,83,99,114,105,112,116,80,97,116,104,18,26,10,8,73,115,65,99,116,105,118,101,24,14,32,1,40,8,82,8,73,115,65,99,116,105,118,101,34,63,10,16,116,97,98,108,101,95,71,117,105,100,101,71,114,111,117,112,18,43,10,4,108,105,115,116,24,1,32,3,40,11,50,23,46,110,111,118,97,46,99,108,105,101,110,116,46,71,117,105,100,101,71,114,111,117,112,82,4,108,105,115,116,34,136,1,10,8,72,97,110,100,98,111,111,107,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,20,10,5,73,110,100,101,120,24,2,32,1,40,5,82,5,73,110,100,101,120,18,18,10,4,84,121,112,101,24,3,32,1,40,5,82,4,84,121,112,101,18,22,10,6,67,104,97,114,73,100,24,4,32,1,40,5,82,6,67,104,97,114,73,100,18,22,10,6,83,107,105,110,73,100,24,5,32,1,40,5,82,6,83,107,105,110,73,100,18,18,10,4,67,111,110,100,24,6,32,1,40,5,82,4,67,111,110,100,34,59,10,14,116,97,98,108,101,95,72,97,110,100,98,111,111,107,18,41,10,4,108,105,115,116,24,1,32,3,40,11,50,21,46,110,111,118,97,46,99,108,105,101,110,116,46,72,97,110,100,98,111,111,107,82,4,108,105,115,116,34,139,7,10,9,72,105,116,68,97,109,97,103,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,36,10,13,108,101,118,101,108,84,121,112,101,68,97,116,97,24,2,32,1,40,5,82,13,108,101,118,101,108,84,121,112,101,68,97,116,97,18,28,10,9,76,101,118,101,108,68,97,116,97,24,3,32,1,40,5,82,9,76,101,118,101,108,68,97,116,97,18,36,10,13,77,97,105,110,79,114,83,117,112,112,111,114,116,24,4,32,1,40,5,82,13,77,97,105,110,79,114,83,117,112,112,111,114,116,18,36,10,13,72,105,116,100,97,109,97,103,101,73,110,102,111,24,5,32,1,40,9,82,13,72,105,116,100,97,109,97,103,101,73,110,102,111,18,34,10,12,68,105,115,116,97,110,99,101,84,121,112,101,24,6,32,1,40,5,82,12,68,105,115,116,97,110,99,101,84,121,112,101,18,30,10,10,83,111,117,114,99,101,84,121,112,101,24,7,32,1,40,5,82,10,83,111,117,114,99,101,84,121,112,101,18,30,10,10,68,97,109,97,103,101,84,121,112,101,24,8,32,1,40,5,82,10,68,97,109,97,103,101,84,121,112,101,18,30,10,10,69,102,102,101,99,116,84,121,112,101,24,9,32,1,40,5,82,10,69,102,102,101,99,116,84,121,112,101,18,32,10,11,69,108,101,109,101,110,116,84,121,112,101,24,10,32,1,40,5,82,11,69,108,101,109,101,110,116,84,121,112,101,18,28,10,9,68,97,109,97,103,101,84,97,103,24,11,32,3,40,5,82,9,68,97,109,97,103,101,84,97,103,18,40,10,15,68,97,109,97,103,101,66,111,110,117,115,84,121,112,101,24,12,32,1,40,5,82,15,68,97,109,97,103,101,66,111,110,117,115,84,121,112,101,18,44,10,17,83,107,105,108,108,80,101,114,99,101,110,116,65,109,101,110,100,24,13,32,3,40,5,82,17,83,107,105,108,108,80,101,114,99,101,110,116,65,109,101,110,100,18,36,10,13,83,107,105,108,108,65,98,115,65,109,101,110,100,24,14,32,3,40,5,82,13,83,107,105,108,108,65,98,115,65,109,101,110,100,18,42,10,16,65,100,100,105,116,105,111,110,97,108,83,111,117,114,99,101,24,15,32,1,40,5,82,16,65,100,100,105,116,105,111,110,97,108,83,111,117,114,99,101,18,38,10,14,65,100,100,105,116,105,111,110,97,108,84,121,112,101,24,16,32,1,40,5,82,14,65,100,100,105,116,105,111,110,97,108,84,121,112,101,18,44,10,17,65,100,100,105,116,105,111,110,97,108,80,101,114,99,101,110,116,24,17,32,3,40,5,82,17,65,100,100,105,116,105,111,110,97,108,80,101,114,99,101,110,116,18,34,10,12,69,110,101,114,103,121,67,104,97,114,103,101,24,18,32,1,40,5,82,12,69,110,101,114,103,121,67,104,97,114,103,101,18,46,10,18,84,97,108,101,110,116,80,101,114,99,101,110,116,65,109,101,110,100,24,19,32,3,40,5,82,18,84,97,108,101,110,116,80,101,114,99,101,110,116,65,109,101,110,100,18,38,10,14,84,97,108,101,110,116,65,98,115,65,109,101,110,100,24,20,32,3,40,5,82,14,84,97,108,101,110,116,65,98,115,65,109,101,110,100,18,32,10,11,73,115,68,101,110,115,101,84,121,112,101,24,21,32,1,40,8,82,11,73,115,68,101,110,115,101,84,121,112,101,18,36,10,13,80,101,114,107,73,110,116,101,110,115,105,116,121,24,22,32,3,40,5,82,13,80,101,114,107,73,110,116,101,110,115,105,116,121,18,24,10,7,83,107,105,108,108,73,100,24,23,32,1,40,5,82,7,83,107,105,108,108,73,100,18,36,10,13,83,107,105,108,108,83,108,111,116,84,121,112,101,24,24,32,1,40,5,82,13,83,107,105,108,108,83,108,111,116,84,121,112,101,18,22,10,6,80,101,114,107,73,100,24,25,32,1,40,5,82,6,80,101,114,107,73,100,34,61,10,15,116,97,98,108,101,95,72,105,116,68,97,109,97,103,101,18,42,10,4,108,105,115,116,24,1,32,3,40,11,50,22,46,110,111,118,97,46,99,108,105,101,110,116,46,72,105,116,68,97,109,97,103,101,82,4,108,105,115,116,34,135,2,10,5,72,111,110,111,114,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,26,10,8,73,115,85,110,108,111,99,107,24,3,32,1,40,8,82,8,73,115,85,110,108,111,99,107,18,18,10,4,84,121,112,101,24,4,32,1,40,5,82,4,84,121,112,101,18,24,10,7,84,97,98,84,121,112,101,24,5,32,1,40,5,82,7,84,97,98,84,121,112,101,18,22,10,6,80,97,114,97,109,115,24,6,32,3,40,5,82,6,80,97,114,97,109,115,18,26,10,8,80,114,105,111,116,105,116,121,24,7,32,1,40,5,82,8,80,114,105,111,116,105,116,121,18,24,10,7,77,97,105,110,82,101,115,24,8,32,1,40,9,82,7,77,97,105,110,82,101,115,18,22,10,6,83,117,98,82,101,115,24,9,32,1,40,9,82,6,83,117,98,82,101,115,18,18,10,4,83,111,114,116,24,10,32,1,40,5,82,4,83,111,114,116,18,22,10,6,66,71,84,121,112,101,24,11,32,1,40,5,82,6,66,71,84,121,112,101,34,53,10,11,116,97,98,108,101,95,72,111,110,111,114,18,38,10,4,108,105,115,116,24,1,32,3,40,11,50,18,46,110,111,118,97,46,99,108,105,101,110,116,46,72,111,110,111,114,82,4,108,105,115,116,34,216,1,10,14,72,111,110,111,114,67,104,97,114,97,99,116,101,114,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,22,10,6,67,104,97,114,73,100,24,2,32,1,40,5,82,6,67,104,97,114,73,100,18,20,10,5,76,101,118,101,108,24,3,32,1,40,5,82,5,76,101,118,101,108,18,28,10,9,66,105,103,66,103,80,97,116,104,24,4,32,1,40,9,82,9,66,105,103,66,103,80,97,116,104,18,32,10,11,83,109,97,108,108,66,103,80,97,116,104,24,5,32,1,40,9,82,11,83,109,97,108,108,66,103,80,97,116,104,18,28,10,9,83,116,97,114,71,114,111,117,112,24,6,32,3,40,5,82,9,83,116,97,114,71,114,111,117,112,18,18,10,4,83,111,114,116,24,7,32,1,40,5,82,4,83,111,114,116,18,22,10,6,66,71,84,121,112,101,24,8,32,1,40,5,82,6,66,71,84,121,112,101,34,71,10,20,116,97,98,108,101,95,72,111,110,111,114,67,104,97,114,97,99,116,101,114,18,47,10,4,108,105,115,116,24,1,32,3,40,11,50,27,46,110,111,118,97,46,99,108,105,101,110,116,46,72,111,110,111,114,67,104,97,114,97,99,116,101,114,82,4,108,105,115,116,34,251,1,10,13,73,110,102,105,110,105,116,121,84,111,119,101,114,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,32,10,11,69,108,101,109,101,110,116,84,121,112,101,24,3,32,1,40,5,82,11,69,108,101,109,101,110,116,84,121,112,101,18,46,10,18,70,111,114,109,97,116,105,111,110,83,99,101,110,101,78,97,109,101,24,4,32,1,40,9,82,18,70,111,114,109,97,116,105,111,110,83,99,101,110,101,78,97,109,101,18,14,10,2,66,103,24,5,32,1,40,9,82,2,66,103,18,40,10,15,80,114,101,84,111,119,101,114,76,101,118,101,108,73,100,24,6,32,1,40,5,82,15,80,114,101,84,111,119,101,114,76,101,118,101,108,73,100,18,24,10,7,79,112,101,110,68,97,121,24,7,32,3,40,5,82,7,79,112,101,110,68,97,121,18,32,10,11,79,112,101,110,68,97,121,68,101,115,99,24,8,32,1,40,9,82,11,79,112,101,110,68,97,121,68,101,115,99,34,69,10,19,116,97,98,108,101,95,73,110,102,105,110,105,116,121,84,111,119,101,114,18,46,10,4,108,105,115,116,24,1,32,3,40,11,50,26,46,110,111,118,97,46,99,108,105,101,110,116,46,73,110,102,105,110,105,116,121,84,111,119,101,114,82,4,108,105,115,116,34,182,1,10,18,73,110,102,105,110,105,116,121,84,111,119,101,114,65,102,102,105,120,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,18,10,4,68,101,115,99,24,3,32,1,40,9,82,4,68,101,115,99,18,24,10,7,65,100,100,67,97,109,112,24,4,32,3,40,5,82,7,65,100,100,67,97,109,112,18,42,10,16,84,114,105,103,103,101,114,67,111,110,100,105,116,105,111,110,24,5,32,1,40,5,82,16,84,114,105,103,103,101,114,67,111,110,100,105,116,105,111,110,18,34,10,12,84,114,105,103,103,101,114,80,97,114,97,109,24,6,32,1,40,9,82,12,84,114,105,103,103,101,114,80,97,114,97,109,34,79,10,24,116,97,98,108,101,95,73,110,102,105,110,105,116,121,84,111,119,101,114,65,102,102,105,120,18,51,10,4,108,105,115,116,24,1,32,3,40,11,50,31,46,110,111,118,97,46,99,108,105,101,110,116,46,73,110,102,105,110,105,116,121,84,111,119,101,114,65,102,102,105,120,82,4,108,105,115,116,34,168,3,10,24,73,110,102,105,110,105,116,121,84,111,119,101,114,66,111,117,110,116,121,76,101,118,101,108,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,20,10,5,76,101,118,101,108,24,2,32,1,40,5,82,5,76,101,118,101,108,18,18,10,4,78,97,109,101,24,3,32,1,40,9,82,4,78,97,109,101,18,18,10,4,73,99,111,110,24,4,32,1,40,9,82,4,73,99,111,110,18,34,10,12,82,101,119,97,114,100,68,114,111,112,73,100,24,5,32,1,40,5,82,12,82,101,119,97,114,100,68,114,111,112,73,100,18,30,10,10,82,101,119,97,114,100,83,104,111,119,24,6,32,1,40,9,82,10,82,101,119,97,114,100,83,104,111,119,18,20,10,5,67,111,110,100,49,24,7,32,1,40,5,82,5,67,111,110,100,49,18,30,10,10,67,111,110,100,80,97,114,97,109,49,24,8,32,3,40,5,82,10,67,111,110,100,80,97,114,97,109,49,18,28,10,9,67,111,110,100,68,101,115,99,49,24,9,32,1,40,9,82,9,67,111,110,100,68,101,115,99,49,18,20,10,5,67,111,110,100,50,24,10,32,1,40,5,82,5,67,111,110,100,50,18,30,10,10,67,111,110,100,80,97,114,97,109,50,24,11,32,3,40,5,82,10,67,111,110,100,80,97,114,97,109,50,18,28,10,9,67,111,110,100,68,101,115,99,50,24,12,32,1,40,9,82,9,67,111,110,100,68,101,115,99,50,18,20,10,5,67,111,110,100,51,24,13,32,1,40,5,82,5,67,111,110,100,51,18,30,10,10,67,111,110,100,80,97,114,97,109,51,24,14,32,3,40,5,82,10,67,111,110,100,80,97,114,97,109,51,18,28,10,9,67,111,110,100,68,101,115,99,51,24,15,32,1,40,9,82,9,67,111,110,100,68,101,115,99,51,34,91,10,30,116,97,98,108,101,95,73,110,102,105,110,105,116,121,84,111,119,101,114,66,111,117,110,116,121,76,101,118,101,108,18,57,10,4,108,105,115,116,24,1,32,3,40,11,50,37,46,110,111,118,97,46,99,108,105,101,110,116,46,73,110,102,105,110,105,116,121,84,111,119,101,114,66,111,117,110,116,121,76,101,118,101,108,82,4,108,105,115,116,34,129,2,10,23,73,110,102,105,110,105,116,121,84,111,119,101,114,68,105,102,102,105,99,117,108,116,121,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,24,10,7,84,111,119,101,114,73,100,24,3,32,1,40,5,82,7,84,111,119,101,114,73,100,18,42,10,16,85,110,108,111,99,107,87,111,114,108,100,67,108,97,115,115,24,4,32,1,40,5,82,16,85,110,108,111,99,107,87,111,114,108,100,67,108,97,115,115,18,30,10,10,85,110,108,111,99,107,84,105,112,115,24,5,32,1,40,9,82,10,85,110,108,111,99,107,84,105,112,115,18,32,10,11,73,115,67,104,97,108,108,101,110,103,101,24,6,32,1,40,8,82,11,73,115,67,104,97,108,108,101,110,103,101,18,38,10,14,82,101,99,111,109,109,101,110,100,76,101,118,101,108,24,7,32,1,40,5,82,14,82,101,99,111,109,109,101,110,100,76,101,118,101,108,18,18,10,4,83,111,114,116,24,8,32,1,40,5,82,4,83,111,114,116,34,89,10,29,116,97,98,108,101,95,73,110,102,105,110,105,116,121,84,111,119,101,114,68,105,102,102,105,99,117,108,116,121,18,56,10,4,108,105,115,116,24,1,32,3,40,11,50,36,46,110,111,118,97,46,99,108,105,101,110,116,46,73,110,102,105,110,105,116,121,84,111,119,101,114,68,105,102,102,105,99,117,108,116,121,82,4,108,105,115,116,34,145,2,10,21,73,110,102,105,110,105,116,121,84,111,119,101,114,69,110,101,109,121,83,101,116,18,20,10,5,83,101,116,73,100,24,1,32,1,40,5,82,5,83,101,116,73,100,18,24,10,7,87,97,118,101,78,117,109,24,2,32,1,40,5,82,7,87,97,118,101,78,117,109,18,26,10,8,71,114,111,117,112,78,117,109,24,3,32,1,40,5,82,8,71,114,111,117,112,78,117,109,18,22,10,6,77,97,120,78,117,109,24,4,32,1,40,5,82,6,77,97,120,78,117,109,18,36,10,13,77,97,120,78,117,109,80,101,114,87,97,118,101,24,5,32,1,40,5,82,13,77,97,120,78,117,109,80,101,114,87,97,118,101,18,28,10,9,77,111,110,115,116,101,114,73,100,24,6,32,1,40,5,82,9,77,111,110,115,116,101,114,73,100,18,32,10,11,76,101,118,101,108,67,104,97,110,103,101,24,7,32,1,40,5,82,11,76,101,118,101,108,67,104,97,110,103,101,18,46,10,18,67,111,109,109,111,110,71,97,109,101,112,108,97,121,84,121,112,101,24,8,32,1,40,5,82,18,67,111,109,109,111,110,71,97,109,101,112,108,97,121,84,121,112,101,34,85,10,27,116,97,98,108,101,95,73,110,102,105,110,105,116,121,84,111,119,101,114,69,110,101,109,121,83,101,116,18,54,10,4,108,105,115,116,24,1,32,3,40,11,50,34,46,110,111,118,97,46,99,108,105,101,110,116,46,73,110,102,105,110,105,116,121,84,111,119,101,114,69,110,101,109,121,83,101,116,82,4,108,105,115,116,34,192,2,10,18,73,110,102,105,110,105,116,121,84,111,119,101,114,70,108,111,111,114,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,76,118,73,100,24,2,32,1,40,5,82,4,76,118,73,100,18,20,10,5,77,97,112,73,100,24,3,32,1,40,5,82,5,77,97,112,73,100,18,26,10,8,66,97,116,116,108,101,76,118,24,4,32,1,40,5,82,8,66,97,116,116,108,101,76,118,18,28,10,9,70,108,111,111,114,70,117,110,99,24,5,32,1,40,5,82,9,70,108,111,111,114,70,117,110,99,18,28,10,9,77,111,110,115,116,101,114,76,118,24,6,32,1,40,5,82,9,77,111,110,115,116,101,114,76,118,18,20,10,5,83,116,97,103,101,24,7,32,1,40,5,82,5,83,116,97,103,101,18,20,10,5,83,101,116,73,100,24,8,32,1,40,5,82,5,83,101,116,73,100,18,28,10,9,76,105,109,105,116,84,105,109,101,24,9,32,1,40,5,82,9,76,105,109,105,116,84,105,109,101,18,52,10,21,80,114,101,118,105,101,119,77,111,110,115,116,101,114,71,114,111,117,112,73,100,24,10,32,1,40,5,82,21,80,114,101,118,105,101,119,77,111,110,115,116,101,114,71,114,111,117,112,73,100,18,24,10,7,65,102,102,105,120,73,100,24,11,32,3,40,5,82,7,65,102,102,105,120,73,100,34,79,10,24,116,97,98,108,101,95,73,110,102,105,110,105,116,121,84,111,119,101,114,70,108,111,111,114,18,51,10,4,108,105,115,116,24,1,32,3,40,11,50,31,46,110,111,118,97,46,99,108,105,101,110,116,46,73,110,102,105,110,105,116,121,84,111,119,101,114,70,108,111,111,114,82,4,108,105,115,116,34,176,3,10,18,73,110,102,105,110,105,116,121,84,111,119,101,114,76,101,118,101,108,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,34,10,12,68,105,102,102,105,99,117,108,116,121,73,100,24,3,32,1,40,5,82,12,68,105,102,102,105,99,117,108,116,121,73,100,18,28,10,9,76,101,118,101,108,84,121,112,101,24,4,32,1,40,5,82,9,76,101,118,101,108,84,121,112,101,18,20,10,5,70,108,111,111,114,24,5,32,1,40,5,82,5,70,108,111,111,114,18,24,10,7,70,108,111,111,114,73,100,24,6,32,1,40,5,82,7,70,108,111,111,114,73,100,18,30,10,10,80,114,101,76,101,118,101,108,73,100,24,7,32,1,40,5,82,10,80,114,101,76,101,118,101,108,73,100,18,28,10,9,69,110,116,114,121,67,111,110,100,24,8,32,1,40,5,82,9,69,110,116,114,121,67,111,110,100,18,38,10,14,69,110,116,114,121,67,111,110,100,80,97,114,97,109,24,9,32,3,40,5,82,14,69,110,116,114,121,67,111,110,100,80,97,114,97,109,18,32,10,11,65,119,97,114,100,68,114,111,112,73,100,24,10,32,1,40,5,82,11,65,119,97,114,100,68,114,111,112,73,100,18,32,10,11,82,101,99,111,109,109,101,110,100,76,118,24,11,32,1,40,5,82,11,82,101,99,111,109,109,101,110,100,76,118,18,46,10,18,82,101,99,111,109,109,101,110,100,66,117,105,108,100,82,97,110,107,24,12,32,1,40,5,82,18,82,101,99,111,109,109,101,110,100,66,117,105,108,100,82,97,110,107,18,42,10,16,66,97,115,101,65,119,97,114,100,80,114,101,118,105,101,119,24,13,32,1,40,9,82,16,66,97,115,101,65,119,97,114,100,80,114,101,118,105,101,119,34,79,10,24,116,97,98,108,101,95,73,110,102,105,110,105,116,121,84,111,119,101,114,76,101,118,101,108,18,51,10,4,108,105,115,116,24,1,32,3,40,11,50,31,46,110,111,118,97,46,99,108,105,101,110,116,46,73,110,102,105,110,105,116,121,84,111,119,101,114,76,101,118,101,108,82,4,108,105,115,116,34,194,1,10,16,73,110,102,105,110,105,116,121,84,111,119,101,114,77,97,112,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,28,10,9,83,99,101,110,101,78,97,109,101,24,2,32,1,40,9,82,9,83,99,101,110,101,78,97,109,101,18,42,10,16,67,111,110,102,105,103,80,114,101,102,97,98,78,97,109,101,24,3,32,1,40,9,82,16,67,111,110,102,105,103,80,114,101,102,97,98,78,97,109,101,18,20,10,5,84,104,101,109,101,24,4,32,1,40,5,82,5,84,104,101,109,101,18,16,10,3,66,71,77,24,5,32,1,40,9,82,3,66,71,77,18,44,10,17,76,101,97,118,101,84,114,105,103,103,101,114,69,118,101,110,116,24,6,32,1,40,9,82,17,76,101,97,118,101,84,114,105,103,103,101,114,69,118,101,110,116,34,75,10,22,116,97,98,108,101,95,73,110,102,105,110,105,116,121,84,111,119,101,114,77,97,112,18,49,10,4,108,105,115,116,24,1,32,3,40,11,50,29,46,110,111,118,97,46,99,108,105,101,110,116,46,73,110,102,105,110,105,116,121,84,111,119,101,114,77,97,112,82,4,108,105,115,116,34,186,1,10,16,73,110,102,105,110,105,116,121,84,111,119,101,114,77,115,103,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,20,10,5,84,105,116,108,101,24,2,32,1,40,9,82,5,84,105,116,108,101,18,24,10,7,67,111,110,116,101,110,116,24,3,32,1,40,9,82,7,67,111,110,116,101,110,116,18,18,10,4,84,121,112,101,24,4,32,1,40,5,82,4,84,121,112,101,18,28,10,9,68,97,121,79,102,87,101,101,107,24,5,32,3,40,5,82,9,68,97,121,79,102,87,101,101,107,18,28,10,9,67,111,110,100,105,116,105,111,110,24,6,32,1,40,5,82,9,67,111,110,100,105,116,105,111,110,18,22,10,6,80,97,114,97,109,115,24,7,32,1,40,9,82,6,80,97,114,97,109,115,34,75,10,22,116,97,98,108,101,95,73,110,102,105,110,105,116,121,84,111,119,101,114,77,115,103,18,49,10,4,108,105,115,116,24,1,32,3,40,11,50,29,46,110,111,118,97,46,99,108,105,101,110,116,46,73,110,102,105,110,105,116,121,84,111,119,101,114,77,115,103,82,4,108,105,115,116,34,155,2,10,17,73,110,102,105,110,105,116,121,84,111,119,101,114,80,108,111,116,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,18,10,4,68,101,115,99,24,3,32,1,40,9,82,4,68,101,115,99,18,24,10,7,80,108,111,116,83,117,109,24,4,32,1,40,9,82,7,80,108,111,116,83,117,109,18,22,10,6,80,108,111,116,73,100,24,5,32,1,40,5,82,6,80,108,111,116,73,100,18,20,10,5,97,118,103,73,100,24,6,32,1,40,9,82,5,97,118,103,73,100,18,30,10,10,85,110,108,111,99,107,67,111,110,100,24,7,32,1,40,5,82,10,85,110,108,111,99,107,67,111,110,100,18,28,10,9,67,111,110,100,80,97,114,97,109,24,8,32,3,40,5,82,9,67,111,110,100,80,97,114,97,109,18,34,10,12,82,101,119,97,114,100,73,116,101,109,73,100,24,9,32,1,40,5,82,12,82,101,119,97,114,100,73,116,101,109,73,100,18,36,10,13,82,101,119,97,114,100,73,116,101,109,81,116,121,24,10,32,1,40,5,82,13,82,101,119,97,114,100,73,116,101,109,81,116,121,34,77,10,23,116,97,98,108,101,95,73,110,102,105,110,105,116,121,84,111,119,101,114,80,108,111,116,18,50,10,4,108,105,115,116,24,1,32,3,40,11,50,30,46,110,111,118,97,46,99,108,105,101,110,116,46,73,110,102,105,110,105,116,121,84,111,119,101,114,80,108,111,116,82,4,108,105,115,116,34,157,1,10,17,73,110,116,101,114,97,99,116,105,118,101,65,99,116,105,111,110,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,28,10,9,80,108,97,121,101,114,65,110,105,24,2,32,1,40,8,82,9,80,108,97,121,101,114,65,110,105,18,20,10,5,73,99,111,110,48,24,3,32,1,40,9,82,5,73,99,111,110,48,18,22,10,6,84,105,116,108,101,48,24,4,32,1,40,9,82,6,84,105,116,108,101,48,18,20,10,5,73,99,111,110,49,24,5,32,1,40,9,82,5,73,99,111,110,49,18,22,10,6,84,105,116,108,101,49,24,6,32,1,40,9,82,6,84,105,116,108,101,49,34,77,10,23,116,97,98,108,101,95,73,110,116,101,114,97,99,116,105,118,101,65,99,116,105,111,110,18,50,10,4,108,105,115,116,24,1,32,3,40,11,50,30,46,110,111,118,97,46,99,108,105,101,110,116,46,73,110,116,101,114,97,99,116,105,118,101,65,99,116,105,111,110,82,4,108,105,115,116,34,200,3,10,4,73,116,101,109,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,20,10,5,84,105,116,108,101,24,2,32,1,40,9,82,5,84,105,116,108,101,18,18,10,4,68,101,115,99,24,3,32,1,40,9,82,4,68,101,115,99,18,26,10,8,76,105,116,101,114,97,114,121,24,4,32,1,40,9,82,8,76,105,116,101,114,97,114,121,18,18,10,4,84,121,112,101,24,5,32,1,40,5,82,4,84,121,112,101,18,20,10,5,83,116,121,112,101,24,6,32,1,40,5,82,5,83,116,121,112,101,18,22,10,6,82,97,114,105,116,121,24,7,32,1,40,5,82,6,82,97,114,105,116,121,18,20,10,5,83,116,97,99,107,24,8,32,1,40,8,82,5,83,116,97,99,107,18,36,10,13,80,111,115,105,116,105,111,110,76,105,109,105,116,24,9,32,1,40,5,82,13,80,111,115,105,116,105,111,110,76,105,109,105,116,18,30,10,10,69,120,112,105,114,101,84,121,112,101,24,10,32,1,40,5,82,10,69,120,112,105,114,101,84,121,112,101,18,24,10,7,85,115,101,77,111,100,101,24,11,32,1,40,5,82,7,85,115,101,77,111,100,101,18,28,10,9,85,115,101,65,99,116,105,111,110,24,12,32,1,40,5,82,9,85,115,101,65,99,116,105,111,110,18,24,10,7,85,115,101,65,114,103,115,24,13,32,1,40,9,82,7,85,115,101,65,114,103,115,18,24,10,7,68,105,115,112,108,97,121,24,14,32,1,40,8,82,7,68,105,115,112,108,97,121,18,30,10,10,79,98,116,97,105,110,87,97,121,115,24,15,32,1,40,9,82,10,79,98,116,97,105,110,87,97,121,115,18,22,10,6,74,117,109,112,84,111,24,16,32,3,40,5,82,6,74,117,109,112,84,111,18,18,10,4,73,99,111,110,24,17,32,1,40,9,82,4,73,99,111,110,18,20,10,5,73,99,111,110,50,24,18,32,1,40,9,82,5,73,99,111,110,50,34,51,10,10,116,97,98,108,101,95,73,116,101,109,18,37,10,4,108,105,115,116,24,1,32,3,40,11,50,17,46,110,111,118,97,46,99,108,105,101,110,116,46,73,116,101,109,82,4,108,105,115,116,34,128,1,10,12,73,116,101,109,80,97,99,107,77,97,114,107,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,26,10,8,80,97,99,107,77,97,114,107,24,2,32,1,40,5,82,8,80,97,99,107,77,97,114,107,18,28,10,9,73,116,101,109,83,116,121,112,101,24,3,32,3,40,5,82,9,73,116,101,109,83,116,121,112,101,18,18,10,4,78,97,109,101,24,4,32,1,40,9,82,4,78,97,109,101,18,18,10,4,83,111,114,116,24,5,32,1,40,5,82,4,83,111,114,116,34,67,10,18,116,97,98,108,101,95,73,116,101,109,80,97,99,107,77,97,114,107,18,45,10,4,108,105,115,116,24,1,32,3,40,11,50,25,46,110,111,118,97,46,99,108,105,101,110,116,46,73,116,101,109,80,97,99,107,77,97,114,107,82,4,108,105,115,116,34,106,10,6,74,117,109,112,84,111,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,84,121,112,101,24,2,32,1,40,5,82,4,84,121,112,101,18,20,10,5,80,97,114,97,109,24,3,32,3,40,5,82,5,80,97,114,97,109,18,18,10,4,68,101,115,99,24,4,32,1,40,9,82,4,68,101,115,99,18,18,10,4,73,99,111,110,24,5,32,1,40,9,82,4,73,99,111,110,34,55,10,12,116,97,98,108,101,95,74,117,109,112,84,111,18,39,10,4,108,105,115,116,24,1,32,3,40,11,50,19,46,110,111,118,97,46,99,108,105,101,110,116,46,74,117,109,112,84,111,82,4,108,105,115,116,34,164,1,10,18,76,111,103,105,110,82,101,119,97,114,100,67,111,110,116,114,111,108,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,34,10,12,82,101,119,97,114,100,115,71,114,111,117,112,24,2,32,1,40,5,82,12,82,101,119,97,114,100,115,71,114,111,117,112,18,24,10,7,68,101,115,84,101,120,116,24,3,32,1,40,9,82,7,68,101,115,84,101,120,116,18,26,10,8,85,73,65,115,115,101,116,115,24,4,32,1,40,9,82,8,85,73,65,115,115,101,116,115,18,36,10,13,80,111,112,85,112,85,73,65,115,115,101,116,115,24,5,32,1,40,9,82,13,80,111,112,85,112,85,73,65,115,115,101,116,115,34,79,10,24,116,97,98,108,101,95,76,111,103,105,110,82,101,119,97,114,100,67,111,110,116,114,111,108,18,51,10,4,108,105,115,116,24,1,32,3,40,11,50,31,46,110,111,118,97,46,99,108,105,101,110,116,46,76,111,103,105,110,82,101,119,97,114,100,67,111,110,116,114,111,108,82,4,108,105,115,116,34,198,2,10,16,76,111,103,105,110,82,101,119,97,114,100,71,114,111,117,112,18,36,10,13,82,101,119,97,114,100,71,114,111,117,112,73,100,24,1,32,1,40,5,82,13,82,101,119,97,114,100,71,114,111,117,112,73,100,18,20,10,5,79,114,100,101,114,24,2,32,1,40,5,82,5,79,114,100,101,114,18,28,10,9,82,101,119,97,114,100,73,100,49,24,3,32,1,40,5,82,9,82,101,119,97,114,100,73,100,49,18,18,10,4,81,116,121,49,24,4,32,1,40,5,82,4,81,116,121,49,18,28,10,9,82,101,119,97,114,100,73,100,50,24,5,32,1,40,5,82,9,82,101,119,97,114,100,73,100,50,18,18,10,4,81,116,121,50,24,6,32,1,40,5,82,4,81,116,121,50,18,28,10,9,82,101,119,97,114,100,73,100,51,24,7,32,1,40,5,82,9,82,101,119,97,114,100,73,100,51,18,18,10,4,81,116,121,51,24,8,32,1,40,5,82,4,81,116,121,51,18,30,10,10,82,101,119,97,114,100,73,99,111,110,24,9,32,1,40,9,82,10,82,101,119,97,114,100,73,99,111,110,18,32,10,11,82,101,119,97,114,100,67,111,117,110,116,24,10,32,1,40,5,82,11,82,101,119,97,114,100,67,111,117,110,116,18,30,10,10,82,101,119,97,114,100,68,101,115,99,24,11,32,1,40,9,82,10,82,101,119,97,114,100,68,101,115,99,34,75,10,22,116,97,98,108,101,95,76,111,103,105,110,82,101,119,97,114,100,71,114,111,117,112,18,49,10,4,108,105,115,116,24,1,32,3,40,11,50,29,46,110,111,118,97,46,99,108,105,101,110,116,46,76,111,103,105,110,82,101,119,97,114,100,71,114,111,117,112,82,4,108,105,115,116,34,172,4,10,12,77,97,105,108,84,101,109,112,108,97,116,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,32,10,11,69,120,112,108,97,110,97,116,105,111,110,24,2,32,1,40,9,82,11,69,120,112,108,97,110,97,116,105,111,110,18,18,10,4,73,99,111,110,24,3,32,1,40,9,82,4,73,99,111,110,18,22,10,6,65,117,116,104,111,114,24,4,32,1,40,9,82,6,65,117,116,104,111,114,18,32,10,11,76,101,116,116,101,114,80,97,112,101,114,24,5,32,1,40,9,82,11,76,101,116,116,101,114,80,97,112,101,114,18,24,10,7,83,117,98,106,101,99,116,24,6,32,1,40,9,82,7,83,117,98,106,101,99,116,18,18,10,4,68,101,115,99,24,7,32,1,40,9,82,4,68,101,115,99,18,18,10,4,84,121,112,101,24,8,32,1,40,5,82,4,84,121,112,101,18,22,10,6,80,114,111,112,115,49,24,9,32,1,40,5,82,6,80,114,111,112,115,49,18,32,10,11,80,114,111,112,115,67,111,117,110,116,49,24,10,32,1,40,5,82,11,80,114,111,112,115,67,111,117,110,116,49,18,22,10,6,80,114,111,112,115,50,24,11,32,1,40,5,82,6,80,114,111,112,115,50,18,32,10,11,80,114,111,112,115,67,111,117,110,116,50,24,12,32,1,40,5,82,11,80,114,111,112,115,67,111,117,110,116,50,18,22,10,6,80,114,111,112,115,51,24,13,32,1,40,5,82,6,80,114,111,112,115,51,18,32,10,11,80,114,111,112,115,67,111,117,110,116,51,24,14,32,1,40,5,82,11,80,114,111,112,115,67,111,117,110,116,51,18,22,10,6,80,114,111,112,115,52,24,15,32,1,40,5,82,6,80,114,111,112,115,52,18,32,10,11,80,114,111,112,115,67,111,117,110,116,52,24,16,32,1,40,5,82,11,80,114,111,112,115,67,111,117,110,116,52,18,22,10,6,80,114,111,112,115,53,24,17,32,1,40,5,82,6,80,114,111,112,115,53,18,32,10,11,80,114,111,112,115,67,111,117,110,116,53,24,18,32,1,40,5,82,11,80,114,111,112,115,67,111,117,110,116,53,18,22,10,6,80,114,111,112,115,54,24,19,32,1,40,5,82,6,80,114,111,112,115,54,18,32,10,11,80,114,111,112,115,67,111,117,110,116,54,24,20,32,1,40,5,82,11,80,114,111,112,115,67,111,117,110,116,54,34,67,10,18,116,97,98,108,101,95,77,97,105,108,84,101,109,112,108,97,116,101,18,45,10,4,108,105,115,116,24,1,32,3,40,11,50,25,46,110,111,118,97,46,99,108,105,101,110,116,46,77,97,105,108,84,101,109,112,108,97,116,101,82,4,108,105,115,116,34,194,7,10,8,77,97,105,110,108,105,110,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,16,10,3,78,117,109,24,2,32,1,40,9,82,3,78,117,109,18,18,10,4,78,97,109,101,24,3,32,1,40,9,82,4,78,97,109,101,18,18,10,4,68,101,115,99,24,4,32,1,40,9,82,4,68,101,115,99,18,18,10,4,84,121,112,101,24,5,32,1,40,5,82,4,84,121,112,101,18,22,10,6,69,110,101,114,103,121,24,6,32,1,40,5,82,6,69,110,101,114,103,121,18,28,10,9,67,104,97,112,116,101,114,73,100,24,7,32,1,40,5,82,9,67,104,97,112,116,101,114,73,100,18,18,10,4,80,114,101,118,24,8,32,3,40,5,82,4,80,114,101,118,18,18,10,4,70,111,114,109,24,9,32,3,40,5,82,4,70,111,114,109,18,20,10,5,65,118,103,73,100,24,10,32,1,40,9,82,5,65,118,103,73,100,18,38,10,14,84,114,105,97,108,67,104,97,114,97,99,116,101,114,24,11,32,3,40,5,82,14,84,114,105,97,108,67,104,97,114,97,99,116,101,114,18,32,10,11,66,101,102,111,114,101,65,118,103,73,100,24,12,32,1,40,9,82,11,66,101,102,111,114,101,65,118,103,73,100,18,30,10,10,65,102,116,101,114,65,118,103,73,100,24,13,32,1,40,9,82,10,65,102,116,101,114,65,118,103,73,100,18,36,10,13,69,110,101,114,103,121,67,111,110,115,117,109,101,24,14,32,1,40,5,82,13,69,110,101,114,103,121,67,111,110,115,117,109,101,18,30,10,10,85,110,108,111,99,107,73,116,101,109,24,15,32,1,40,5,82,10,85,110,108,111,99,107,73,116,101,109,18,28,10,9,85,110,108,111,99,107,81,116,121,24,16,32,1,40,5,82,9,85,110,108,111,99,107,81,116,121,18,30,10,10,71,108,111,98,82,101,119,97,114,100,24,17,32,1,40,5,82,10,71,108,111,98,82,101,119,97,114,100,18,36,10,13,82,101,119,97,114,100,80,114,101,118,105,101,119,24,18,32,1,40,9,82,13,82,101,119,97,114,100,80,114,101,118,105,101,119,18,30,10,10,73,116,101,109,82,101,119,97,114,100,24,19,32,1,40,5,82,10,73,116,101,109,82,101,119,97,114,100,18,40,10,15,70,105,114,115,116,73,116,101,109,82,101,119,97,114,100,24,20,32,1,40,5,82,15,70,105,114,115,116,73,116,101,109,82,101,119,97,114,100,18,36,10,13,68,105,97,109,111,110,100,82,101,119,97,114,100,24,21,32,1,40,5,82,13,68,105,97,109,111,110,100,82,101,119,97,114,100,18,38,10,14,77,105,110,67,104,101,115,116,82,101,119,97,114,100,24,22,32,1,40,9,82,14,77,105,110,67,104,101,115,116,82,101,119,97,114,100,18,38,10,14,77,97,120,67,104,101,115,116,82,101,119,97,114,100,24,23,32,1,40,9,82,14,77,97,120,67,104,101,115,116,82,101,119,97,114,100,18,30,10,10,67,104,97,114,66,97,110,110,101,100,24,24,32,3,40,5,82,10,67,104,97,114,66,97,110,110,101,100,18,24,10,7,70,108,111,111,114,73,100,24,25,32,3,40,5,82,7,70,108,111,111,114,73,100,18,18,10,4,73,99,111,110,24,26,32,1,40,9,82,4,73,99,111,110,18,20,10,5,80,111,115,73,100,24,27,32,1,40,5,82,5,80,111,115,73,100,18,52,10,21,80,114,101,118,105,101,119,77,111,110,115,116,101,114,71,114,111,117,112,73,100,24,28,32,1,40,5,82,21,80,114,101,118,105,101,119,77,111,110,115,116,101,114,71,114,111,117,112,73,100,18,28,10,9,82,101,99,111,109,109,101,110,100,24,29,32,1,40,5,82,9,82,101,99,111,109,109,101,110,100,18,22,10,6,82,101,112,101,97,116,24,30,32,1,40,8,82,6,82,101,112,101,97,116,18,30,10,10,83,117,98,77,97,112,78,97,109,101,24,31,32,1,40,5,82,10,83,117,98,77,97,112,78,97,109,101,18,32,10,11,77,97,105,110,108,105,110,101,73,109,103,24,32,32,1,40,9,82,11,77,97,105,110,108,105,110,101,73,109,103,34,59,10,14,116,97,98,108,101,95,77,97,105,110,108,105,110,101,18,41,10,4,108,105,115,116,24,1,32,3,40,11,50,21,46,110,111,118,97,46,99,108,105,101,110,116,46,77,97,105,110,108,105,110,101,82,4,108,105,115,116,34,221,1,10,13,77,97,105,110,108,105,110,101,70,108,111,111,114,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,28,10,9,83,99,101,110,101,78,97,109,101,24,2,32,1,40,9,82,9,83,99,101,110,101,78,97,109,101,18,42,10,16,67,111,110,102,105,103,80,114,101,102,97,98,78,97,109,101,24,3,32,1,40,9,82,16,67,111,110,102,105,103,80,114,101,102,97,98,78,97,109,101,18,20,10,5,84,104,101,109,101,24,4,32,1,40,5,82,5,84,104,101,109,101,18,16,10,3,66,71,77,24,5,32,1,40,9,82,3,66,71,77,18,44,10,17,76,101,97,118,101,84,114,105,103,103,101,114,69,118,101,110,116,24,6,32,1,40,9,82,17,76,101,97,118,101,84,114,105,103,103,101,114,69,118,101,110,116,18,28,10,9,77,111,110,115,116,101,114,76,118,24,7,32,1,40,5,82,9,77,111,110,115,116,101,114,76,118,34,69,10,19,116,97,98,108,101,95,77,97,105,110,108,105,110,101,70,108,111,111,114,18,46,10,4,108,105,115,116,24,1,32,3,40,11,50,26,46,110,111,118,97,46,99,108,105,101,110,116,46,77,97,105,110,108,105,110,101,70,108,111,111,114,82,4,108,105,115,116,34,255,2,10,7,77,97,108,108,71,101,109,18,14,10,2,73,100,24,1,32,1,40,9,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,20,10,5,79,114,100,101,114,24,3,32,1,40,5,82,5,79,114,100,101,114,18,30,10,10,66,97,115,101,73,116,101,109,73,100,24,4,32,1,40,5,82,10,66,97,115,101,73,116,101,109,73,100,18,32,10,11,66,97,115,101,73,116,101,109,81,116,121,24,5,32,1,40,5,82,11,66,97,115,101,73,116,101,109,81,116,121,18,54,10,22,69,120,112,101,114,105,101,110,99,101,100,66,111,110,117,115,73,116,101,109,73,100,24,6,32,1,40,5,82,22,69,120,112,101,114,105,101,110,99,101,100,66,111,110,117,115,73,116,101,109,73,100,18,56,10,23,69,120,112,101,114,105,101,110,99,101,100,66,111,110,117,115,73,116,101,109,81,116,121,24,7,32,1,40,5,82,23,69,120,112,101,114,105,101,110,99,101,100,66,111,110,117,115,73,116,101,109,81,116,121,18,44,10,17,77,97,105,100,101,110,66,111,110,117,115,73,116,101,109,73,68,24,8,32,1,40,5,82,17,77,97,105,100,101,110,66,111,110,117,115,73,116,101,109,73,68,18,46,10,18,77,97,105,100,101,110,66,111,110,117,115,73,116,101,109,81,116,121,24,9,32,1,40,5,82,18,77,97,105,100,101,110,66,111,110,117,115,73,116,101,109,81,116,121,18,20,10,5,80,114,105,99,101,24,10,32,1,40,5,82,5,80,114,105,99,101,18,18,10,4,73,99,111,110,24,11,32,1,40,9,82,4,73,99,111,110,34,57,10,13,116,97,98,108,101,95,77,97,108,108,71,101,109,18,40,10,4,108,105,115,116,24,1,32,3,40,11,50,20,46,110,111,118,97,46,99,108,105,101,110,116,46,77,97,108,108,71,101,109,82,4,108,105,115,116,34,225,1,10,15,77,97,108,108,77,111,110,116,104,108,121,67,97,114,100,18,14,10,2,73,100,24,1,32,1,40,9,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,36,10,13,77,111,110,116,104,108,121,67,97,114,100,73,100,24,3,32,1,40,5,82,13,77,111,110,116,104,108,121,67,97,114,100,73,100,18,20,10,5,80,114,105,99,101,24,4,32,1,40,5,82,5,80,114,105,99,101,18,30,10,10,66,97,115,101,73,116,101,109,73,100,24,5,32,1,40,5,82,10,66,97,115,101,73,116,101,109,73,100,18,32,10,11,66,97,115,101,73,116,101,109,81,116,121,24,6,32,1,40,5,82,11,66,97,115,101,73,116,101,109,81,116,121,18,24,10,7,77,97,120,68,97,121,115,24,7,32,1,40,5,82,7,77,97,120,68,97,121,115,18,18,10,4,73,99,111,110,24,8,32,1,40,9,82,4,73,99,111,110,34,73,10,21,116,97,98,108,101,95,77,97,108,108,77,111,110,116,104,108,121,67,97,114,100,18,48,10,4,108,105,115,116,24,1,32,3,40,11,50,28,46,110,111,118,97,46,99,108,105,101,110,116,46,77,97,108,108,77,111,110,116,104,108,121,67,97,114,100,82,4,108,105,115,116,34,177,4,10,11,77,97,108,108,80,97,99,107,97,103,101,18,14,10,2,73,100,24,1,32,1,40,9,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,24,10,7,71,114,111,117,112,73,100,24,3,32,1,40,5,82,7,71,114,111,117,112,73,100,18,18,10,4,83,111,114,116,24,4,32,1,40,5,82,4,83,111,114,116,18,34,10,12,67,117,114,114,101,110,99,121,84,121,112,101,24,5,32,1,40,5,82,12,67,117,114,114,101,110,99,121,84,121,112,101,18,38,10,14,67,117,114,114,101,110,99,121,73,116,101,109,73,100,24,6,32,1,40,5,82,14,67,117,114,114,101,110,99,121,73,116,101,109,73,100,18,40,10,15,67,117,114,114,101,110,99,121,73,116,101,109,81,116,121,24,7,32,1,40,5,82,15,67,117,114,114,101,110,99,121,73,116,101,109,81,116,121,18,20,10,5,83,116,111,99,107,24,8,32,1,40,5,82,5,83,116,111,99,107,18,32,10,11,82,101,102,114,101,115,104,84,121,112,101,24,9,32,1,40,5,82,11,82,101,102,114,101,115,104,84,121,112,101,18,20,10,5,73,116,101,109,115,24,10,32,1,40,9,82,5,73,116,101,109,115,18,34,10,12,76,105,115,116,67,111,110,100,84,121,112,101,24,11,32,1,40,5,82,12,76,105,115,116,67,111,110,100,84,121,112,101,18,38,10,14,76,105,115,116,67,111,110,100,80,97,114,97,109,115,24,12,32,1,40,9,82,14,76,105,115,116,67,111,110,100,80,97,114,97,109,115,18,36,10,13,79,114,100,101,114,67,111,110,100,84,121,112,101,24,13,32,1,40,5,82,13,79,114,100,101,114,67,111,110,100,84,121,112,101,18,40,10,15,79,114,100,101,114,67,111,110,100,80,97,114,97,109,115,24,14,32,1,40,9,82,15,79,114,100,101,114,67,111,110,100,80,97,114,97,109,115,18,26,10,8,76,105,115,116,84,105,109,101,24,15,32,1,40,9,82,8,76,105,115,116,84,105,109,101,18,30,10,10,68,101,76,105,115,116,84,105,109,101,24,16,32,1,40,9,82,10,68,101,76,105,115,116,84,105,109,101,18,32,10,11,68,105,115,112,108,97,121,77,111,100,101,24,17,32,1,40,5,82,11,68,105,115,112,108,97,121,77,111,100,101,18,18,10,4,73,99,111,110,24,18,32,1,40,9,82,4,73,99,111,110,34,65,10,17,116,97,98,108,101,95,77,97,108,108,80,97,99,107,97,103,101,18,44,10,4,108,105,115,116,24,1,32,3,40,11,50,24,46,110,111,118,97,46,99,108,105,101,110,116,46,77,97,108,108,80,97,99,107,97,103,101,82,4,108,105,115,116,34,73,10,15,77,97,108,108,80,97,99,107,97,103,101,80,97,103,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,18,10,4,83,111,114,116,24,3,32,1,40,5,82,4,83,111,114,116,34,73,10,21,116,97,98,108,101,95,77,97,108,108,80,97,99,107,97,103,101,80,97,103,101,18,48,10,4,108,105,115,116,24,1,32,3,40,11,50,28,46,110,111,118,97,46,99,108,105,101,110,116,46,77,97,108,108,80,97,99,107,97,103,101,80,97,103,101,82,4,108,105,115,116,34,166,4,10,8,77,97,108,108,83,104,111,112,18,14,10,2,73,100,24,1,32,1,40,9,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,18,10,4,68,101,115,99,24,3,32,1,40,9,82,4,68,101,115,99,18,24,10,7,71,114,111,117,112,73,100,24,4,32,1,40,5,82,7,71,114,111,117,112,73,100,18,18,10,4,83,111,114,116,24,5,32,1,40,5,82,4,83,111,114,116,18,38,10,14,69,120,99,104,97,110,103,101,73,116,101,109,73,100,24,6,32,1,40,5,82,14,69,120,99,104,97,110,103,101,73,116,101,109,73,100,18,40,10,15,69,120,99,104,97,110,103,101,73,116,101,109,81,116,121,24,7,32,1,40,5,82,15,69,120,99,104,97,110,103,101,73,116,101,109,81,116,121,18,20,10,5,83,116,111,99,107,24,8,32,1,40,5,82,5,83,116,111,99,107,18,32,10,11,82,101,102,114,101,115,104,84,121,112,101,24,9,32,1,40,5,82,11,82,101,102,114,101,115,104,84,121,112,101,18,22,10,6,73,116,101,109,73,100,24,10,32,1,40,5,82,6,73,116,101,109,73,100,18,24,10,7,73,116,101,109,81,116,121,24,11,32,1,40,5,82,7,73,116,101,109,81,116,121,18,34,10,12,76,105,115,116,67,111,110,100,84,121,112,101,24,12,32,1,40,5,82,12,76,105,115,116,67,111,110,100,84,121,112,101,18,38,10,14,76,105,115,116,67,111,110,100,80,97,114,97,109,115,24,13,32,1,40,9,82,14,76,105,115,116,67,111,110,100,80,97,114,97,109,115,18,36,10,13,79,114,100,101,114,67,111,110,100,84,121,112,101,24,14,32,1,40,5,82,13,79,114,100,101,114,67,111,110,100,84,121,112,101,18,40,10,15,79,114,100,101,114,67,111,110,100,80,97,114,97,109,115,24,15,32,1,40,9,82,15,79,114,100,101,114,67,111,110,100,80,97,114,97,109,115,18,26,10,8,76,105,115,116,84,105,109,101,24,16,32,1,40,9,82,8,76,105,115,116,84,105,109,101,18,30,10,10,68,101,76,105,115,116,84,105,109,101,24,17,32,1,40,9,82,10,68,101,76,105,115,116,84,105,109,101,18,32,10,11,68,105,115,112,108,97,121,77,111,100,101,24,18,32,1,40,5,82,11,68,105,115,112,108,97,121,77,111,100,101,34,59,10,14,116,97,98,108,101,95,77,97,108,108,83,104,111,112,18,41,10,4,108,105,115,116,24,1,32,3,40,11,50,21,46,110,111,118,97,46,99,108,105,101,110,116,46,77,97,108,108,83,104,111,112,82,4,108,105,115,116,34,200,1,10,12,77,97,108,108,83,104,111,112,80,97,103,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,83,111,114,116,24,2,32,1,40,5,82,4,83,111,114,116,18,18,10,4,78,97,109,101,24,3,32,1,40,9,82,4,78,97,109,101,18,40,10,15,82,101,102,114,101,115,104,84,105,109,101,84,121,112,101,24,4,32,1,40,5,82,15,82,101,102,114,101,115,104,84,105,109,101,84,121,112,101,18,26,10,8,83,104,111,112,67,111,105,110,24,5,32,1,40,5,82,8,83,104,111,112,67,111,105,110,18,26,10,8,76,105,115,116,84,105,109,101,24,6,32,1,40,9,82,8,76,105,115,116,84,105,109,101,18,30,10,10,68,101,76,105,115,116,84,105,109,101,24,7,32,1,40,9,82,10,68,101,76,105,115,116,84,105,109,101,34,67,10,18,116,97,98,108,101,95,77,97,108,108,83,104,111,112,80,97,103,101,18,45,10,4,108,105,115,116,24,1,32,3,40,11,50,25,46,110,111,118,97,46,99,108,105,101,110,116,46,77,97,108,108,83,104,111,112,80,97,103,101,82,4,108,105,115,116,34,135,9,10,7,77,111,110,115,116,101,114,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,34,10,12,70,111,114,109,97,108,78,97,109,101,73,100,24,3,32,1,40,5,82,12,70,111,114,109,97,108,78,97,109,101,73,100,18,22,10,6,69,112,105,99,76,118,24,4,32,1,40,5,82,6,69,112,105,99,76,118,18,40,10,15,77,111,110,115,116,101,114,80,111,115,105,116,105,111,110,24,5,32,1,40,5,82,15,77,111,110,115,116,101,114,80,111,115,105,116,105,111,110,18,28,10,9,66,108,111,111,100,84,121,112,101,24,6,32,1,40,5,82,9,66,108,111,111,100,84,121,112,101,18,20,10,5,70,111,114,99,101,24,7,32,1,40,9,82,5,70,111,114,99,101,18,18,10,4,70,67,73,100,24,8,32,1,40,5,82,4,70,67,73,100,18,18,10,4,70,65,73,100,24,9,32,1,40,5,82,4,70,65,73,100,18,24,10,7,77,111,118,84,121,112,101,24,10,32,1,40,5,82,7,77,111,118,84,121,112,101,18,22,10,6,82,117,110,83,112,100,24,11,32,1,40,5,82,6,82,117,110,83,112,100,18,36,10,13,84,114,97,110,115,83,112,100,83,99,97,108,101,24,12,32,1,40,5,82,13,84,114,97,110,115,83,112,100,83,99,97,108,101,18,24,10,7,87,97,108,107,83,112,100,24,13,32,1,40,5,82,7,87,97,108,107,83,112,100,18,22,10,6,77,111,118,65,99,99,24,14,32,1,40,5,82,6,77,111,118,65,99,99,18,28,10,9,86,105,115,105,111,110,82,110,103,24,15,32,1,40,5,82,9,86,105,115,105,111,110,82,110,103,18,28,10,9,86,105,115,105,111,110,68,101,103,24,16,32,1,40,5,82,9,86,105,115,105,111,110,68,101,103,18,24,10,7,72,101,97,114,82,110,103,24,17,32,1,40,5,82,7,72,101,97,114,82,110,103,18,22,10,6,82,101,102,82,110,103,24,18,32,1,40,5,82,6,82,101,102,82,110,103,18,22,10,6,65,99,116,82,110,103,24,19,32,1,40,5,82,6,65,99,116,82,110,103,18,28,10,9,68,105,115,65,99,116,82,110,103,24,20,32,1,40,5,82,9,68,105,115,65,99,116,82,110,103,18,28,10,9,83,101,97,114,99,104,82,110,103,24,21,32,1,40,5,82,9,83,101,97,114,99,104,82,110,103,18,22,10,6,82,111,116,83,112,100,24,22,32,1,40,5,82,6,82,111,116,83,112,100,18,36,10,13,82,111,116,83,112,100,73,110,83,107,105,108,108,24,23,32,1,40,5,82,13,82,111,116,83,112,100,73,110,83,107,105,108,108,18,26,10,8,84,101,109,112,108,101,116,101,24,24,32,1,40,5,82,8,84,101,109,112,108,101,116,101,18,24,10,7,66,117,102,102,73,100,115,24,25,32,3,40,5,82,7,66,117,102,102,73,100,115,18,24,10,7,83,117,98,84,121,112,101,24,26,32,1,40,5,82,7,83,117,98,84,121,112,101,18,24,10,7,70,97,99,116,105,111,110,24,27,32,1,40,5,82,7,70,97,99,116,105,111,110,18,30,10,10,84,114,97,112,84,97,103,73,100,115,24,28,32,3,40,5,82,10,84,114,97,112,84,97,103,73,100,115,18,28,10,9,83,117,112,67,104,97,114,103,101,24,29,32,1,40,5,82,9,83,117,112,67,104,97,114,103,101,18,28,10,9,73,115,83,104,111,119,82,110,103,24,30,32,1,40,8,82,9,73,115,83,104,111,119,82,110,103,18,22,10,6,87,101,105,103,104,116,24,31,32,1,40,5,82,6,87,101,105,103,104,116,18,48,10,19,84,111,117,103,104,110,101,115,115,66,114,111,107,101,110,84,105,109,101,24,32,32,1,40,5,82,19,84,111,117,103,104,110,101,115,115,66,114,111,107,101,110,84,105,109,101,18,18,10,4,84,97,103,49,24,33,32,1,40,9,82,4,84,97,103,49,18,18,10,4,84,97,103,50,24,34,32,1,40,9,82,4,84,97,103,50,18,18,10,4,84,97,103,51,24,35,32,1,40,9,82,4,84,97,103,51,18,18,10,4,84,97,103,52,24,36,32,1,40,9,82,4,84,97,103,52,18,18,10,4,84,97,103,53,24,37,32,1,40,9,82,4,84,97,103,53,18,38,10,14,65,116,116,97,99,107,72,105,110,116,84,121,112,101,24,38,32,1,40,5,82,14,65,116,116,97,99,107,72,105,110,116,84,121,112,101,18,36,10,13,66,108,111,99,107,80,114,105,111,114,105,116,121,24,39,32,1,40,5,82,13,66,108,111,99,107,80,114,105,111,114,105,116,121,18,36,10,13,87,97,121,80,111,105,110,116,83,104,105,102,116,24,40,32,1,40,5,82,13,87,97,121,80,111,105,110,116,83,104,105,102,116,18,36,10,13,77,111,110,115,116,101,114,84,101,97,109,73,100,24,41,32,1,40,5,82,13,77,111,110,115,116,101,114,84,101,97,109,73,100,34,57,10,13,116,97,98,108,101,95,77,111,110,115,116,101,114,18,40,10,4,108,105,115,116,24,1,32,3,40,11,50,20,46,110,111,118,97,46,99,108,105,101,110,116,46,77,111,110,115,116,101,114,82,4,108,105,115,116,34,253,7,10,19,77,111,110,115,116,101,114,65,99,116,105,111,110,66,114,97,110,99,104,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,24,10,7,71,114,111,117,112,73,100,24,2,32,1,40,5,82,7,71,114,111,117,112,73,100,18,24,10,7,83,107,105,108,108,73,100,24,3,32,1,40,5,82,7,83,107,105,108,108,73,100,18,26,10,8,80,114,105,111,114,105,116,121,24,4,32,1,40,5,82,8,80,114,105,111,114,105,116,121,18,22,10,6,87,101,105,103,104,116,24,5,32,1,40,5,82,6,87,101,105,103,104,116,18,18,10,4,82,97,116,101,24,6,32,1,40,5,82,4,82,97,116,101,18,14,10,2,67,68,24,7,32,1,40,5,82,2,67,68,18,36,10,13,73,110,105,116,105,97,108,67,68,80,111,111,108,24,8,32,3,40,5,82,13,73,110,105,116,105,97,108,67,68,80,111,111,108,18,34,10,12,77,105,110,73,110,105,116,105,97,108,67,68,24,9,32,1,40,5,82,12,77,105,110,73,110,105,116,105,97,108,67,68,18,34,10,12,77,97,120,73,110,105,116,105,97,108,67,68,24,10,32,1,40,5,82,12,77,97,120,73,110,105,116,105,97,108,67,68,18,32,10,11,83,116,97,114,116,67,68,84,105,109,101,24,11,32,1,40,5,82,11,83,116,97,114,116,67,68,84,105,109,101,18,24,10,7,70,105,120,101,100,67,68,24,12,32,1,40,8,82,7,70,105,120,101,100,67,68,18,40,10,15,82,101,108,101,97,115,101,68,105,115,116,97,110,99,101,24,13,32,1,40,5,82,15,82,101,108,101,97,115,101,68,105,115,116,97,110,99,101,18,34,10,12,82,101,108,101,97,115,101,65,110,103,108,101,24,14,32,1,40,5,82,12,82,101,108,101,97,115,101,65,110,103,108,101,18,36,10,13,84,114,97,99,101,68,117,114,97,116,105,111,110,24,15,32,1,40,5,82,13,84,114,97,99,101,68,117,114,97,116,105,111,110,18,26,10,8,65,99,116,105,118,97,116,101,24,16,32,1,40,8,82,8,65,99,116,105,118,97,116,101,18,50,10,20,65,99,116,105,118,101,67,111,110,100,105,116,105,111,110,84,121,112,101,49,24,17,32,1,40,5,82,20,65,99,116,105,118,101,67,111,110,100,105,116,105,111,110,84,121,112,101,49,18,34,10,12,65,99,116,105,118,101,80,97,114,97,109,49,24,18,32,1,40,9,82,12,65,99,116,105,118,101,80,97,114,97,109,49,18,34,10,12,65,99,116,105,118,101,80,97,114,97,109,50,24,19,32,1,40,9,82,12,65,99,116,105,118,101,80,97,114,97,109,50,18,54,10,22,68,101,65,99,116,105,118,101,67,111,110,100,105,116,105,111,110,84,121,112,101,49,24,20,32,1,40,5,82,22,68,101,65,99,116,105,118,101,67,111,110,100,105,116,105,111,110,84,121,112,101,49,18,38,10,14,68,101,65,99,116,105,118,101,80,97,114,97,109,49,24,21,32,1,40,9,82,14,68,101,65,99,116,105,118,101,80,97,114,97,109,49,18,38,10,14,68,101,65,99,116,105,118,101,80,97,114,97,109,50,24,22,32,1,40,9,82,14,68,101,65,99,116,105,118,101,80,97,114,97,109,50,18,42,10,16,70,111,108,108,111,119,69,118,101,110,116,84,121,112,101,49,24,23,32,1,40,5,82,16,70,111,108,108,111,119,69,118,101,110,116,84,121,112,101,49,18,44,10,17,70,111,108,108,111,119,69,118,101,110,116,80,97,114,97,109,49,24,24,32,1,40,9,82,17,70,111,108,108,111,119,69,118,101,110,116,80,97,114,97,109,49,18,42,10,16,70,111,108,108,111,119,69,118,101,110,116,84,121,112,101,50,24,25,32,1,40,5,82,16,70,111,108,108,111,119,69,118,101,110,116,84,121,112,101,50,18,44,10,17,70,111,108,108,111,119,69,118,101,110,116,80,97,114,97,109,50,24,26,32,1,40,9,82,17,70,111,108,108,111,119,69,118,101,110,116,80,97,114,97,109,50,18,42,10,16,70,111,108,108,111,119,69,118,101,110,116,84,121,112,101,51,24,27,32,1,40,5,82,16,70,111,108,108,111,119,69,118,101,110,116,84,121,112,101,51,18,44,10,17,70,111,108,108,111,119,69,118,101,110,116,80,97,114,97,109,51,24,28,32,1,40,9,82,17,70,111,108,108,111,119,69,118,101,110,116,80,97,114,97,109,51,34,81,10,25,116,97,98,108,101,95,77,111,110,115,116,101,114,65,99,116,105,111,110,66,114,97,110,99,104,18,52,10,4,108,105,115,116,24,1,32,3,40,11,50,32,46,110,111,118,97,46,99,108,105,101,110,116,46,77,111,110,115,116,101,114,65,99,116,105,111,110,66,114,97,110,99,104,82,4,108,105,115,116,34,173,4,10,9,77,111,110,115,116,101,114,65,73,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,38,10,14,67,111,109,98,111,71,114,111,117,112,80,97,116,104,24,2,32,1,40,9,82,14,67,111,109,98,111,71,114,111,117,112,80,97,116,104,18,42,10,16,83,112,97,119,110,83,104,111,119,83,107,105,108,108,73,100,24,3,32,1,40,5,82,16,83,112,97,119,110,83,104,111,119,83,107,105,108,108,73,100,18,40,10,15,73,100,108,101,83,104,111,119,83,107,105,108,108,73,100,24,4,32,1,40,5,82,15,73,100,108,101,83,104,111,119,83,107,105,108,108,73,100,18,30,10,10,68,105,101,83,107,105,108,108,73,100,24,5,32,1,40,5,82,10,68,105,101,83,107,105,108,108,73,100,18,34,10,12,65,99,116,105,111,110,65,73,80,97,116,104,24,6,32,1,40,9,82,12,65,99,116,105,111,110,65,73,80,97,116,104,18,40,10,15,65,99,116,105,111,110,66,114,97,110,99,104,73,100,115,24,7,32,3,40,5,82,15,65,99,116,105,111,110,66,114,97,110,99,104,73,100,115,18,36,10,13,84,104,105,110,107,73,110,116,101,114,118,97,108,24,8,32,1,40,5,82,13,84,104,105,110,107,73,110,116,101,114,118,97,108,18,30,10,10,73,100,108,101,65,73,80,97,116,104,24,9,32,1,40,9,82,10,73,100,108,101,65,73,80,97,116,104,18,32,10,11,83,112,97,119,110,65,73,80,97,116,104,24,10,32,1,40,9,82,11,83,112,97,119,110,65,73,80,97,116,104,18,38,10,14,80,97,114,97,108,108,101,108,65,73,80,97,116,104,24,11,32,1,40,9,82,14,80,97,114,97,108,108,101,108,65,73,80,97,116,104,18,42,10,16,67,104,101,99,107,65,99,104,105,101,118,101,109,101,110,116,24,12,32,1,40,8,82,16,67,104,101,99,107,65,99,104,105,101,118,101,109,101,110,116,18,32,10,11,87,97,110,100,101,114,82,97,110,103,101,24,13,32,1,40,5,82,11,87,97,110,100,101,114,82,97,110,103,101,18,38,10,14,87,97,110,100,101,114,73,110,116,101,114,118,97,108,24,14,32,1,40,5,82,14,87,97,110,100,101,114,73,110,116,101,114,118,97,108,18,30,10,10,87,97,110,100,101,114,82,97,116,101,24,15,32,1,40,5,82,10,87,97,110,100,101,114,82,97,116,101,34,61,10,15,116,97,98,108,101,95,77,111,110,115,116,101,114,65,73,18,42,10,4,108,105,115,116,24,1,32,3,40,11,50,22,46,110,111,118,97,46,99,108,105,101,110,116,46,77,111,110,115,116,101,114,65,73,82,4,108,105,115,116,34,162,1,10,16,77,111,110,115,116,101,114,66,111,114,110,71,114,111,117,112,18,24,10,7,71,114,111,117,112,73,100,24,1,32,1,40,5,82,7,71,114,111,117,112,73,100,18,28,10,9,77,111,110,115,116,101,114,73,100,24,2,32,1,40,5,82,9,77,111,110,115,116,101,114,73,100,18,30,10,10,68,105,102,102,105,99,117,108,116,121,24,3,32,1,40,5,82,10,68,105,102,102,105,99,117,108,116,121,18,26,10,8,77,105,110,70,108,111,111,114,24,4,32,1,40,5,82,8,77,105,110,70,108,111,111,114,18,26,10,8,77,97,120,70,108,111,111,114,24,5,32,1,40,5,82,8,77,97,120,70,108,111,111,114,34,75,10,22,116,97,98,108,101,95,77,111,110,115,116,101,114,66,111,114,110,71,114,111,117,112,18,49,10,4,108,105,115,116,24,1,32,3,40,11,50,29,46,110,111,118,97,46,99,108,105,101,110,116,46,77,111,110,115,116,101,114,66,111,114,110,71,114,111,117,112,82,4,108,105,115,116,34,58,10,12,77,111,110,115,116,101,114,71,114,111,117,112,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,26,10,8,77,111,110,115,116,101,114,115,24,2,32,1,40,9,82,8,77,111,110,115,116,101,114,115,34,67,10,18,116,97,98,108,101,95,77,111,110,115,116,101,114,71,114,111,117,112,18,45,10,4,108,105,115,116,24,1,32,3,40,11,50,25,46,110,111,118,97,46,99,108,105,101,110,116,46,77,111,110,115,116,101,114,71,114,111,117,112,82,4,108,105,115,116,34,243,3,10,11,77,111,110,115,116,101,114,83,107,105,110,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,18,10,4,68,101,115,99,24,3,32,1,40,9,82,4,68,101,115,99,18,18,10,4,73,99,111,110,24,4,32,1,40,9,82,4,73,99,111,110,18,26,10,8,72,105,110,116,73,99,111,110,24,5,32,1,40,9,82,8,72,105,110,116,73,99,111,110,18,20,10,5,77,111,100,101,108,24,6,32,1,40,9,82,5,77,111,100,101,108,18,40,10,15,82,117,110,65,110,105,109,97,116,105,111,110,83,112,100,24,7,32,1,40,5,82,15,82,117,110,65,110,105,109,97,116,105,111,110,83,112,100,18,42,10,16,87,97,108,107,65,110,105,109,97,116,105,111,110,83,112,100,24,8,32,1,40,5,82,16,87,97,108,107,65,110,105,109,97,116,105,111,110,83,112,100,18,28,10,9,66,97,114,72,101,105,103,104,116,24,9,32,1,40,5,82,9,66,97,114,72,101,105,103,104,116,18,30,10,10,77,111,100,101,108,83,99,97,108,101,24,10,32,1,40,5,82,10,77,111,100,101,108,83,99,97,108,101,18,32,10,11,66,117,102,102,70,88,83,99,97,108,101,24,11,32,1,40,5,82,11,66,117,102,102,70,88,83,99,97,108,101,18,36,10,13,67,111,108,108,105,100,101,114,83,99,97,108,101,24,12,32,1,40,5,82,13,67,111,108,108,105,100,101,114,83,99,97,108,101,18,44,10,17,70,111,114,98,105,100,100,101,110,66,101,104,105,116,82,111,116,24,13,32,1,40,8,82,17,70,111,114,98,105,100,100,101,110,66,101,104,105,116,82,111,116,18,42,10,16,69,102,102,101,99,116,83,99,97,108,101,86,97,108,117,101,24,14,32,1,40,5,82,16,69,102,102,101,99,116,83,99,97,108,101,86,97,108,117,101,18,48,10,19,84,97,103,69,102,102,101,99,116,83,99,97,108,101,86,97,108,117,101,24,15,32,1,40,5,82,19,84,97,103,69,102,102,101,99,116,83,99,97,108,101,86,97,108,117,101,34,65,10,17,116,97,98,108,101,95,77,111,110,115,116,101,114,83,107,105,110,18,44,10,4,108,105,115,116,24,1,32,3,40,11,50,24,46,110,111,118,97,46,99,108,105,101,110,116,46,77,111,110,115,116,101,114,83,107,105,110,82,4,108,105,115,116,34,237,1,10,11,77,111,110,115,116,101,114,84,101,97,109,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,24,10,7,77,97,116,101,48,73,100,24,2,32,1,40,5,82,7,77,97,116,101,48,73,100,18,24,10,7,77,97,116,101,49,73,100,24,3,32,1,40,5,82,7,77,97,116,101,49,73,100,18,24,10,7,77,97,116,101,50,73,100,24,4,32,1,40,5,82,7,77,97,116,101,50,73,100,18,24,10,7,77,97,116,101,51,73,100,24,5,32,1,40,5,82,7,77,97,116,101,51,73,100,18,24,10,7,77,97,116,101,52,73,100,24,6,32,1,40,5,82,7,77,97,116,101,52,73,100,18,24,10,7,77,97,116,101,53,73,100,24,7,32,1,40,5,82,7,77,97,116,101,53,73,100,18,24,10,7,77,97,116,101,54,73,100,24,8,32,1,40,5,82,7,77,97,116,101,54,73,100,18,24,10,7,77,97,116,101,55,73,100,24,9,32,1,40,5,82,7,77,97,116,101,55,73,100,34,65,10,17,116,97,98,108,101,95,77,111,110,115,116,101,114,84,101,97,109,18,44,10,4,108,105,115,116,24,1,32,3,40,11,50,24,46,110,111,118,97,46,99,108,105,101,110,116,46,77,111,110,115,116,101,114,84,101,97,109,82,4,108,105,115,116,34,196,11,10,20,77,111,110,115,116,101,114,86,97,108,117,101,84,101,109,112,108,101,116,101,18,14,10,2,73,100,24,1,32,1,40,3,82,2,73,100,18,30,10,10,84,101,109,112,108,97,116,101,73,100,24,2,32,1,40,5,82,10,84,101,109,112,108,97,116,101,73,100,18,18,10,4,78,97,109,101,24,3,32,1,40,9,82,4,78,97,109,101,18,14,10,2,76,118,24,4,32,1,40,5,82,2,76,118,18,14,10,2,72,112,24,5,32,1,40,5,82,2,72,112,18,16,10,3,65,116,107,24,6,32,1,40,5,82,3,65,116,107,18,16,10,3,68,101,102,24,7,32,1,40,5,82,3,68,101,102,18,26,10,8,67,114,105,116,82,97,116,101,24,8,32,1,40,5,82,8,67,114,105,116,82,97,116,101,18,38,10,14,78,111,114,109,97,108,67,114,105,116,82,97,116,101,24,9,32,1,40,5,82,14,78,111,114,109,97,108,67,114,105,116,82,97,116,101,18,36,10,13,83,107,105,108,108,67,114,105,116,82,97,116,101,24,10,32,1,40,5,82,13,83,107,105,108,108,67,114,105,116,82,97,116,101,18,36,10,13,85,108,116,114,97,67,114,105,116,82,97,116,101,24,11,32,1,40,5,82,13,85,108,116,114,97,67,114,105,116,82,97,116,101,18,34,10,12,77,97,114,107,67,114,105,116,82,97,116,101,24,12,32,1,40,5,82,12,77,97,114,107,67,114,105,116,82,97,116,101,18,38,10,14,83,117,109,109,111,110,67,114,105,116,82,97,116,101,24,13,32,1,40,5,82,14,83,117,109,109,111,110,67,114,105,116,82,97,116,101,18,46,10,18,80,114,111,106,101,99,116,105,108,101,67,114,105,116,82,97,116,101,24,14,32,1,40,5,82,18,80,114,111,106,101,99,116,105,108,101,67,114,105,116,82,97,116,101,18,36,10,13,79,116,104,101,114,67,114,105,116,82,97,116,101,24,15,32,1,40,5,82,13,79,116,104,101,114,67,114,105,116,82,97,116,101,18,38,10,14,67,114,105,116,82,101,115,105,115,116,97,110,99,101,24,16,32,1,40,5,82,14,67,114,105,116,82,101,115,105,115,116,97,110,99,101,18,28,10,9,67,114,105,116,80,111,119,101,114,24,17,32,1,40,5,82,9,67,114,105,116,80,111,119,101,114,18,40,10,15,78,111,114,109,97,108,67,114,105,116,80,111,119,101,114,24,18,32,1,40,5,82,15,78,111,114,109,97,108,67,114,105,116,80,111,119,101,114,18,38,10,14,83,107,105,108,108,67,114,105,116,80,111,119,101,114,24,19,32,1,40,5,82,14,83,107,105,108,108,67,114,105,116,80,111,119,101,114,18,38,10,14,85,108,116,114,97,67,114,105,116,80,111,119,101,114,24,20,32,1,40,5,82,14,85,108,116,114,97,67,114,105,116,80,111,119,101,114,18,36,10,13,77,97,114,107,67,114,105,116,80,111,119,101,114,24,21,32,1,40,5,82,13,77,97,114,107,67,114,105,116,80,111,119,101,114,18,40,10,15,83,117,109,109,111,110,67,114,105,116,80,111,119,101,114,24,22,32,1,40,5,82,15,83,117,109,109,111,110,67,114,105,116,80,111,119,101,114,18,48,10,19,80,114,111,106,101,99,116,105,108,101,67,114,105,116,80,111,119,101,114,24,23,32,1,40,5,82,19,80,114,111,106,101,99,116,105,108,101,67,114,105,116,80,111,119,101,114,18,38,10,14,79,116,104,101,114,67,114,105,116,80,111,119,101,114,24,24,32,1,40,5,82,14,79,116,104,101,114,67,114,105,116,80,111,119,101,114,18,24,10,7,72,105,116,82,97,116,101,24,25,32,1,40,5,82,7,72,105,116,82,97,116,101,18,16,10,3,69,118,100,24,26,32,1,40,5,82,3,69,118,100,18,22,10,6,65,116,107,83,112,100,24,27,32,1,40,5,82,6,65,116,107,83,112,100,18,28,10,9,68,101,102,80,105,101,114,99,101,24,28,32,1,40,5,82,9,68,101,102,80,105,101,114,99,101,18,28,10,9,68,101,102,73,103,110,111,114,101,24,29,32,1,40,5,82,9,68,101,102,73,103,110,111,114,101,18,16,10,3,87,69,80,24,30,32,1,40,5,82,3,87,69,80,18,16,10,3,70,69,80,24,31,32,1,40,5,82,3,70,69,80,18,16,10,3,83,69,80,24,32,32,1,40,5,82,3,83,69,80,18,16,10,3,65,69,80,24,33,32,1,40,5,82,3,65,69,80,18,16,10,3,76,69,80,24,34,32,1,40,5,82,3,76,69,80,18,16,10,3,68,69,80,24,35,32,1,40,5,82,3,68,69,80,18,16,10,3,87,69,73,24,36,32,1,40,5,82,3,87,69,73,18,16,10,3,70,69,73,24,37,32,1,40,5,82,3,70,69,73,18,16,10,3,83,69,73,24,38,32,1,40,5,82,3,83,69,73,18,16,10,3,65,69,73,24,39,32,1,40,5,82,3,65,69,73,18,16,10,3,76,69,73,24,40,32,1,40,5,82,3,76,69,73,18,16,10,3,68,69,73,24,41,32,1,40,5,82,3,68,69,73,18,16,10,3,87,69,69,24,42,32,1,40,5,82,3,87,69,69,18,16,10,3,70,69,69,24,43,32,1,40,5,82,3,70,69,69,18,16,10,3,83,69,69,24,44,32,1,40,5,82,3,83,69,69,18,16,10,3,65,69,69,24,45,32,1,40,5,82,3,65,69,69,18,16,10,3,76,69,69,24,46,32,1,40,5,82,3,76,69,69,18,16,10,3,68,69,69,24,47,32,1,40,5,82,3,68,69,69,18,16,10,3,87,69,82,24,48,32,1,40,5,82,3,87,69,82,18,16,10,3,70,69,82,24,49,32,1,40,5,82,3,70,69,82,18,16,10,3,83,69,82,24,50,32,1,40,5,82,3,83,69,82,18,16,10,3,65,69,82,24,51,32,1,40,5,82,3,65,69,82,18,16,10,3,76,69,82,24,52,32,1,40,5,82,3,76,69,82,18,16,10,3,68,69,82,24,53,32,1,40,5,82,3,68,69,82,18,28,10,9,84,111,117,103,104,110,101,115,115,24,54,32,1,40,5,82,9,84,111,117,103,104,110,101,115,115,18,26,10,8,83,117,112,112,114,101,115,115,24,55,32,1,40,5,82,8,83,117,112,112,114,101,115,115,18,30,10,10,82,67,68,77,65,82,75,68,77,71,24,56,32,1,40,5,82,10,82,67,68,77,65,82,75,68,77,71,34,83,10,26,116,97,98,108,101,95,77,111,110,115,116,101,114,86,97,108,117,101,84,101,109,112,108,101,116,101,18,53,10,4,108,105,115,116,24,1,32,3,40,11,50,33,46,110,111,118,97,46,99,108,105,101,110,116,46,77,111,110,115,116,101,114,86,97,108,117,101,84,101,109,112,108,101,116,101,82,4,108,105,115,116,34,188,5,10,26,77,111,110,115,116,101,114,86,97,108,117,101,84,101,109,112,108,101,116,101,65,100,106,117,115,116,18,14,10,2,73,100,24,1,32,1,40,3,82,2,73,100,18,30,10,10,84,101,109,112,108,97,116,101,73,100,24,2,32,1,40,5,82,10,84,101,109,112,108,97,116,101,73,100,18,18,10,4,78,97,109,101,24,3,32,1,40,9,82,4,78,97,109,101,18,16,10,3,69,69,84,24,4,32,1,40,5,82,3,69,69,84,18,24,10,7,87,101,97,107,69,69,84,24,5,32,3,40,5,82,7,87,101,97,107,69,69,84,18,24,10,7,72,112,82,97,116,105,111,24,6,32,1,40,5,82,7,72,112,82,97,116,105,111,18,20,10,5,72,112,70,105,120,24,7,32,1,40,5,82,5,72,112,70,105,120,18,26,10,8,65,116,107,82,97,116,105,111,24,8,32,1,40,5,82,8,65,116,107,82,97,116,105,111,18,22,10,6,65,116,107,70,105,120,24,9,32,1,40,5,82,6,65,116,107,70,105,120,18,26,10,8,87,69,82,82,97,116,105,111,24,10,32,1,40,5,82,8,87,69,82,82,97,116,105,111,18,22,10,6,87,69,82,70,105,120,24,11,32,1,40,5,82,6,87,69,82,70,105,120,18,26,10,8,70,69,82,82,97,116,105,111,24,12,32,1,40,5,82,8,70,69,82,82,97,116,105,111,18,22,10,6,70,69,82,70,105,120,24,13,32,1,40,5,82,6,70,69,82,70,105,120,18,26,10,8,83,69,82,82,97,116,105,111,24,14,32,1,40,5,82,8,83,69,82,82,97,116,105,111,18,22,10,6,83,69,82,70,105,120,24,15,32,1,40,5,82,6,83,69,82,70,105,120,18,26,10,8,65,69,82,82,97,116,105,111,24,16,32,1,40,5,82,8,65,69,82,82,97,116,105,111,18,22,10,6,65,69,82,70,105,120,24,17,32,1,40,5,82,6,65,69,82,70,105,120,18,26,10,8,76,69,82,82,97,116,105,111,24,18,32,1,40,5,82,8,76,69,82,82,97,116,105,111,18,22,10,6,76,69,82,70,105,120,24,19,32,1,40,5,82,6,76,69,82,70,105,120,18,26,10,8,68,69,82,82,97,116,105,111,24,20,32,1,40,5,82,8,68,69,82,82,97,116,105,111,18,22,10,6,68,69,82,70,105,120,24,21,32,1,40,5,82,6,68,69,82,70,105,120,18,38,10,14,84,111,117,103,104,110,101,115,115,82,97,116,105,111,24,22,32,1,40,5,82,14,84,111,117,103,104,110,101,115,115,82,97,116,105,111,18,34,10,12,84,111,117,103,104,110,101,115,115,70,105,120,24,23,32,1,40,5,82,12,84,111,117,103,104,110,101,115,115,70,105,120,18,36,10,13,83,117,112,112,114,101,115,115,82,97,116,105,111,24,24,32,1,40,5,82,13,83,117,112,112,114,101,115,115,82,97,116,105,111,18,32,10,11,83,117,112,112,114,101,115,115,70,105,120,24,25,32,1,40,5,82,11,83,117,112,112,114,101,115,115,70,105,120,34,95,10,32,116,97,98,108,101,95,77,111,110,115,116,101,114,86,97,108,117,101,84,101,109,112,108,101,116,101,65,100,106,117,115,116,18,59,10,4,108,105,115,116,24,1,32,3,40,11,50,39,46,110,111,118,97,46,99,108,105,101,110,116,46,77,111,110,115,116,101,114,86,97,108,117,101,84,101,109,112,108,101,116,101,65,100,106,117,115,116,82,4,108,105,115,116,34,177,1,10,11,77,111,110,116,104,108,121,67,97,114,100,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,22,10,6,67,97,114,100,73,100,24,2,32,1,40,5,82,6,67,97,114,100,73,100,18,28,10,9,82,101,119,97,114,100,73,100,49,24,3,32,1,40,5,82,9,82,101,119,97,114,100,73,100,49,18,30,10,10,82,101,119,97,114,100,78,117,109,49,24,4,32,1,40,5,82,10,82,101,119,97,114,100,78,117,109,49,18,28,10,9,82,101,119,97,114,100,73,100,50,24,5,32,1,40,5,82,9,82,101,119,97,114,100,73,100,50,18,30,10,10,82,101,119,97,114,100,78,117,109,50,24,6,32,1,40,5,82,10,82,101,119,97,114,100,78,117,109,50,34,65,10,17,116,97,98,108,101,95,77,111,110,116,104,108,121,67,97,114,100,18,44,10,4,108,105,115,116,24,1,32,3,40,11,50,24,46,110,111,118,97,46,99,108,105,101,110,116,46,77,111,110,116,104,108,121,67,97,114,100,82,4,108,105,115,116,34,172,2,10,4,78,111,116,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,111,116,101,24,2,32,1,40,5,82,4,78,111,116,101,18,22,10,6,83,116,121,108,101,49,24,3,32,1,40,9,82,6,83,116,121,108,101,49,18,22,10,6,83,116,121,108,101,50,24,4,32,1,40,9,82,6,83,116,121,108,101,50,18,22,10,6,83,116,121,108,101,51,24,5,32,1,40,9,82,6,83,116,121,108,101,51,18,22,10,6,83,116,121,108,101,52,24,6,32,1,40,9,82,6,83,116,121,108,101,52,18,22,10,6,83,116,121,108,101,53,24,7,32,1,40,9,82,6,83,116,121,108,101,53,18,22,10,6,83,116,121,108,101,54,24,8,32,1,40,9,82,6,83,116,121,108,101,54,18,22,10,6,83,116,121,108,101,55,24,9,32,1,40,9,82,6,83,116,121,108,101,55,18,22,10,6,83,116,121,108,101,56,24,10,32,1,40,9,82,6,83,116,121,108,101,56,18,20,10,5,67,111,108,111,114,24,11,32,1,40,9,82,5,67,111,108,111,114,18,20,10,5,78,97,109,101,49,24,12,32,1,40,9,82,5,78,97,109,101,49,18,20,10,5,78,97,109,101,50,24,13,32,1,40,9,82,5,78,97,109,101,50,34,51,10,10,116,97,98,108,101,95,78,111,116,101,18,37,10,4,108,105,115,116,24,1,32,3,40,11,50,17,46,110,111,118,97,46,99,108,105,101,110,116,46,78,111,116,101,82,4,108,105,115,116,34,157,2,10,13,78,111,116,101,68,114,111,112,71,114,111,117,112,18,20,10,5,73,110,100,101,120,24,1,32,1,40,5,82,5,73,110,100,101,120,18,24,10,7,71,114,111,117,112,73,100,24,2,32,1,40,5,82,7,71,114,111,117,112,73,100,18,40,10,15,82,97,110,100,111,109,78,111,116,101,82,97,110,103,101,24,3,32,3,40,5,82,15,82,97,110,100,111,109,78,111,116,101,82,97,110,103,101,18,30,10,10,65,78,111,116,101,82,97,110,103,101,24,4,32,3,40,5,82,10,65,78,111,116,101,82,97,110,103,101,18,30,10,10,66,78,111,116,101,82,97,110,103,101,24,5,32,3,40,5,82,10,66,78,111,116,101,82,97,110,103,101,18,30,10,10,67,78,111,116,101,82,97,110,103,101,24,6,32,3,40,5,82,10,67,78,111,116,101,82,97,110,103,101,18,30,10,10,68,78,111,116,101,82,97,110,103,101,24,7,32,3,40,5,82,10,68,78,111,116,101,82,97,110,103,101,18,30,10,10,69,78,111,116,101,82,97,110,103,101,24,8,32,3,40,5,82,10,69,78,111,116,101,82,97,110,103,101,18,18,10,4,73,99,111,110,24,9,32,1,40,9,82,4,73,99,111,110,34,69,10,19,116,97,98,108,101,95,78,111,116,101,68,114,111,112,71,114,111,117,112,18,46,10,4,108,105,115,116,24,1,32,3,40,11,50,26,46,110,111,118,97,46,99,108,105,101,110,116,46,78,111,116,101,68,114,111,112,71,114,111,117,112,82,4,108,105,115,116,34,175,2,10,9,78,80,67,67,111,110,102,105,103,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,116,121,112,101,24,2,32,1,40,5,82,4,116,121,112,101,18,18,10,4,78,97,109,101,24,3,32,1,40,9,82,4,78,97,109,101,18,18,10,4,68,101,115,99,24,4,32,1,40,9,82,4,68,101,115,99,18,26,10,8,76,105,116,101,114,97,114,121,24,5,32,1,40,9,82,8,76,105,116,101,114,97,114,121,18,34,10,12,82,101,102,114,101,115,104,80,111,105,110,116,24,6,32,1,40,5,82,12,82,101,102,114,101,115,104,80,111,105,110,116,18,30,10,10,70,105,114,115,116,76,105,110,101,115,24,7,32,1,40,5,82,10,70,105,114,115,116,76,105,110,101,115,18,20,10,5,76,105,110,101,115,24,8,32,3,40,5,82,5,76,105,110,101,115,18,18,10,4,67,104,97,116,24,9,32,3,40,5,82,4,67,104,97,116,18,26,10,8,67,104,97,116,80,114,111,112,24,10,32,1,40,5,82,8,67,104,97,116,80,114,111,112,18,26,10,8,67,104,97,116,84,105,109,101,24,11,32,1,40,5,82,8,67,104,97,116,84,105,109,101,18,20,10,5,78,80,67,73,100,24,12,32,1,40,5,82,5,78,80,67,73,100,34,61,10,15,116,97,98,108,101,95,78,80,67,67,111,110,102,105,103,18,42,10,4,108,105,115,116,24,1,32,3,40,11,50,22,46,110,111,118,97,46,99,108,105,101,110,116,46,78,80,67,67,111,110,102,105,103,82,4,108,105,115,116,34,153,4,10,7,78,80,67,83,107,105,110,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,18,10,4,68,101,115,99,24,3,32,1,40,9,82,4,68,101,115,99,18,22,10,6,73,115,83,104,111,119,24,4,32,1,40,8,82,6,73,115,83,104,111,119,18,22,10,6,67,104,97,114,73,100,24,5,32,1,40,5,82,6,67,104,97,114,73,100,18,18,10,4,84,121,112,101,24,6,32,1,40,5,82,4,84,121,112,101,18,30,10,10,83,111,117,114,99,101,68,101,115,99,24,7,32,1,40,5,82,10,83,111,117,114,99,101,68,101,115,99,18,18,10,4,73,99,111,110,24,8,32,1,40,9,82,4,73,99,111,110,18,36,10,13,83,109,97,108,108,80,111,114,116,114,97,105,116,24,9,32,1,40,9,82,13,83,109,97,108,108,80,111,114,116,114,97,105,116,18,30,10,10,77,111,100,101,108,83,99,97,108,101,24,10,32,1,40,5,82,10,77,111,100,101,108,83,99,97,108,101,18,20,10,5,77,111,100,101,108,24,11,32,1,40,9,82,5,77,111,100,101,108,18,26,10,8,80,111,114,116,114,97,105,116,24,12,32,1,40,9,82,8,80,111,114,116,114,97,105,116,18,14,10,2,66,103,24,13,32,1,40,9,82,2,66,103,18,22,10,6,79,102,102,115,101,116,24,14,32,1,40,9,82,6,79,102,102,115,101,116,18,16,10,3,76,50,68,24,15,32,1,40,9,82,3,76,50,68,18,46,10,18,70,117,108,108,83,99,114,101,101,110,80,111,114,116,114,97,105,116,24,16,32,1,40,9,82,18,70,117,108,108,83,99,114,101,101,110,80,111,114,116,114,97,105,116,18,28,10,9,83,107,105,110,84,104,101,109,101,24,17,32,1,40,5,82,9,83,107,105,110,84,104,101,109,101,18,44,10,17,73,110,116,101,114,97,99,116,105,118,101,65,99,116,105,111,110,24,18,32,1,40,8,82,17,73,110,116,101,114,97,99,116,105,118,101,65,99,116,105,111,110,18,48,10,19,73,110,116,101,114,97,99,116,105,118,101,65,99,116,105,111,110,73,100,24,19,32,1,40,5,82,19,73,110,116,101,114,97,99,116,105,118,101,65,99,116,105,111,110,73,100,34,57,10,13,116,97,98,108,101,95,78,80,67,83,107,105,110,18,40,10,4,108,105,115,116,24,1,32,3,40,11,50,20,46,110,111,118,97,46,99,108,105,101,110,116,46,78,80,67,83,107,105,110,82,4,108,105,115,116,34,147,1,10,23,79,110,99,101,65,100,100,105,116,105,111,110,97,108,65,116,116,114,105,98,117,116,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,36,10,13,108,101,118,101,108,84,121,112,101,68,97,116,97,24,2,32,1,40,5,82,13,108,101,118,101,108,84,121,112,101,68,97,116,97,18,28,10,9,76,101,118,101,108,68,97,116,97,24,3,32,1,40,5,82,9,76,101,118,101,108,68,97,116,97,18,36,10,13,77,97,105,110,79,114,83,117,112,112,111,114,116,24,4,32,1,40,5,82,13,77,97,105,110,79,114,83,117,112,112,111,114,116,34,89,10,29,116,97,98,108,101,95,79,110,99,101,65,100,100,105,116,105,111,110,97,108,65,116,116,114,105,98,117,116,101,18,56,10,4,108,105,115,116,24,1,32,3,40,11,50,36,46,110,111,118,97,46,99,108,105,101,110,116,46,79,110,99,101,65,100,100,105,116,105,111,110,97,108,65,116,116,114,105,98,117,116,101,82,4,108,105,115,116,34,230,2,10,28,79,110,99,101,65,100,100,105,116,105,111,110,97,108,65,116,116,114,105,98,117,116,101,86,97,108,117,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,38,10,14,65,116,116,114,105,98,117,116,101,84,121,112,101,49,24,2,32,1,40,5,82,14,65,116,116,114,105,98,117,116,101,84,121,112,101,49,18,38,10,14,80,97,114,97,109,101,116,101,114,84,121,112,101,49,24,3,32,1,40,5,82,14,80,97,114,97,109,101,116,101,114,84,121,112,101,49,18,22,10,6,86,97,108,117,101,49,24,4,32,1,40,5,82,6,86,97,108,117,101,49,18,38,10,14,65,116,116,114,105,98,117,116,101,84,121,112,101,50,24,5,32,1,40,5,82,14,65,116,116,114,105,98,117,116,101,84,121,112,101,50,18,38,10,14,80,97,114,97,109,101,116,101,114,84,121,112,101,50,24,6,32,1,40,5,82,14,80,97,114,97,109,101,116,101,114,84,121,112,101,50,18,22,10,6,86,97,108,117,101,50,24,7,32,1,40,5,82,6,86,97,108,117,101,50,18,38,10,14,65,116,116,114,105,98,117,116,101,84,121,112,101,51,24,8,32,1,40,5,82,14,65,116,116,114,105,98,117,116,101,84,121,112,101,51,18,38,10,14,80,97,114,97,109,101,116,101,114,84,121,112,101,51,24,9,32,1,40,5,82,14,80,97,114,97,109,101,116,101,114,84,121,112,101,51,18,22,10,6,86,97,108,117,101,51,24,10,32,1,40,5,82,6,86,97,108,117,101,51,34,99,10,34,116,97,98,108,101,95,79,110,99,101,65,100,100,105,116,105,111,110,97,108,65,116,116,114,105,98,117,116,101,86,97,108,117,101,18,61,10,4,108,105,115,116,24,1,32,3,40,11,50,41,46,110,111,118,97,46,99,108,105,101,110,116,46,79,110,99,101,65,100,100,105,116,105,111,110,97,108,65,116,116,114,105,98,117,116,101,86,97,108,117,101,82,4,108,105,115,116,34,128,2,10,8,79,112,101,110,70,117,110,99,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,38,10,14,78,101,101,100,87,111,114,108,100,67,108,97,115,115,24,3,32,1,40,5,82,14,78,101,101,100,87,111,114,108,100,67,108,97,115,115,18,38,10,14,78,101,101,100,67,111,110,100,105,116,105,111,110,115,24,4,32,1,40,5,82,14,78,101,101,100,67,111,110,100,105,116,105,111,110,115,18,36,10,13,78,101,101,100,82,111,103,117,101,108,105,107,101,24,5,32,1,40,5,82,13,78,101,101,100,82,111,103,117,101,108,105,107,101,18,30,10,10,80,111,112,87,105,110,100,111,119,115,24,6,32,1,40,8,82,10,80,111,112,87,105,110,100,111,119,115,18,18,10,4,68,101,115,99,24,7,32,1,40,9,82,4,68,101,115,99,18,18,10,4,73,99,111,110,24,8,32,1,40,9,82,4,73,99,111,110,18,18,10,4,84,105,112,115,24,9,32,1,40,9,82,4,84,105,112,115,34,59,10,14,116,97,98,108,101,95,79,112,101,110,70,117,110,99,18,41,10,4,108,105,115,116,24,1,32,3,40,11,50,21,46,110,111,118,97,46,99,108,105,101,110,116,46,79,112,101,110,70,117,110,99,82,4,108,105,115,116,34,181,1,10,13,80,101,114,105,111,100,105,99,81,117,101,115,116,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,22,10,6,66,101,108,111,110,103,24,2,32,1,40,5,82,6,66,101,108,111,110,103,18,24,10,7,71,114,111,117,112,105,100,24,3,32,1,40,5,82,7,71,114,111,117,112,105,100,18,20,10,5,84,105,116,108,101,24,4,32,1,40,9,82,5,84,105,116,108,101,18,22,10,6,74,117,109,112,84,111,24,5,32,1,40,5,82,6,74,117,109,112,84,111,18,22,10,6,82,101,119,97,114,100,24,6,32,1,40,5,82,6,82,101,119,97,114,100,18,28,10,9,82,101,119,97,114,100,81,116,121,24,7,32,1,40,5,82,9,82,101,119,97,114,100,81,116,121,34,69,10,19,116,97,98,108,101,95,80,101,114,105,111,100,105,99,81,117,101,115,116,18,46,10,4,108,105,115,116,24,1,32,3,40,11,50,26,46,110,111,118,97,46,99,108,105,101,110,116,46,80,101,114,105,111,100,105,99,81,117,101,115,116,82,4,108,105,115,116,34,132,3,10,20,80,101,114,105,111,100,105,99,81,117,101,115,116,67,111,110,116,114,111,108,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,34,10,12,70,105,110,97,108,82,101,119,97,114,100,49,24,2,32,1,40,5,82,12,70,105,110,97,108,82,101,119,97,114,100,49,18,40,10,15,70,105,110,97,108,82,101,119,97,114,100,81,116,121,49,24,3,32,1,40,5,82,15,70,105,110,97,108,82,101,119,97,114,100,81,116,121,49,18,34,10,12,70,105,110,97,108,82,101,119,97,114,100,50,24,4,32,1,40,5,82,12,70,105,110,97,108,82,101,119,97,114,100,50,18,40,10,15,70,105,110,97,108,82,101,119,97,114,100,81,116,121,50,24,5,32,1,40,5,82,15,70,105,110,97,108,82,101,119,97,114,100,81,116,121,50,18,34,10,12,70,105,110,97,108,82,101,119,97,114,100,51,24,6,32,1,40,5,82,12,70,105,110,97,108,82,101,119,97,114,100,51,18,40,10,15,70,105,110,97,108,82,101,119,97,114,100,81,116,121,51,24,7,32,1,40,5,82,15,70,105,110,97,108,82,101,119,97,114,100,81,116,121,51,18,24,10,7,68,101,115,84,101,120,116,24,8,32,1,40,9,82,7,68,101,115,84,101,120,116,18,26,10,8,85,73,65,115,115,101,116,115,24,9,32,1,40,9,82,8,85,73,65,115,115,101,116,115,18,26,10,8,67,116,114,108,78,97,109,101,24,10,32,1,40,9,82,8,67,116,114,108,78,97,109,101,18,32,10,11,80,114,101,118,105,101,119,84,121,112,101,24,11,32,1,40,5,82,11,80,114,101,118,105,101,119,84,121,112,101,34,83,10,26,116,97,98,108,101,95,80,101,114,105,111,100,105,99,81,117,101,115,116,67,111,110,116,114,111,108,18,53,10,4,108,105,115,116,24,1,32,3,40,11,50,33,46,110,111,118,97,46,99,108,105,101,110,116,46,80,101,114,105,111,100,105,99,81,117,101,115,116,67,111,110,116,114,111,108,82,4,108,105,115,116,34,102,10,18,80,101,114,105,111,100,105,99,81,117,101,115,116,71,114,111,117,112,18,22,10,6,66,101,108,111,110,103,24,1,32,1,40,5,82,6,66,101,108,111,110,103,18,24,10,7,71,114,111,117,112,73,100,24,2,32,1,40,5,82,7,71,114,111,117,112,73,100,18,30,10,10,85,110,108,111,99,107,84,105,109,101,24,3,32,1,40,5,82,10,85,110,108,111,99,107,84,105,109,101,34,79,10,24,116,97,98,108,101,95,80,101,114,105,111,100,105,99,81,117,101,115,116,71,114,111,117,112,18,51,10,4,108,105,115,116,24,1,32,3,40,11,50,31,46,110,111,118,97,46,99,108,105,101,110,116,46,80,101,114,105,111,100,105,99,81,117,101,115,116,71,114,111,117,112,82,4,108,105,115,116,34,170,6,10,4,80,101,114,107,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,26,10,8,77,97,120,76,101,118,101,108,24,2,32,1,40,5,82,8,77,97,120,76,101,118,101,108,18,40,10,15,65,100,100,105,116,105,111,110,97,108,76,101,118,101,108,24,3,32,1,40,8,82,15,65,100,100,105,116,105,111,110,97,108,76,101,118,101,108,18,16,10,3,69,69,84,24,4,32,1,40,5,82,3,69,69,84,18,34,10,12,83,99,111,114,101,71,114,111,117,112,73,100,24,5,32,1,40,5,82,12,83,99,111,114,101,71,114,111,117,112,73,100,18,36,10,13,83,116,114,101,110,103,116,104,83,99,111,114,101,24,6,32,3,40,5,82,13,83,116,114,101,110,103,116,104,83,99,111,114,101,18,26,10,8,80,101,114,107,84,121,112,101,24,7,32,1,40,5,82,8,80,101,114,107,84,121,112,101,18,22,10,6,67,104,97,114,73,100,24,8,32,1,40,5,82,6,67,104,97,114,73,100,18,34,10,12,67,104,97,114,80,101,114,107,84,121,112,101,24,9,32,1,40,5,82,12,67,104,97,114,80,101,114,107,84,121,112,101,18,20,10,5,84,104,101,109,101,24,10,32,1,40,5,82,5,84,104,101,109,101,18,30,10,10,71,97,109,101,66,111,111,107,73,100,24,11,32,1,40,5,82,10,71,97,109,101,66,111,111,107,73,100,18,46,10,18,79,112,101,114,97,116,105,110,103,70,108,111,111,114,84,121,112,101,24,12,32,3,40,5,82,18,79,112,101,114,97,116,105,110,103,70,108,111,111,114,84,121,112,101,18,40,10,15,79,112,101,114,97,116,105,110,103,78,117,109,98,101,114,24,13,32,1,40,5,82,15,79,112,101,114,97,116,105,110,103,78,117,109,98,101,114,18,20,10,5,80,114,105,99,101,24,14,32,1,40,5,82,5,80,114,105,99,101,18,18,10,4,83,108,111,116,24,15,32,1,40,5,82,4,83,108,111,116,18,18,10,4,84,97,103,115,24,16,32,3,40,5,82,4,84,97,103,115,18,30,10,10,80,114,101,80,101,114,107,73,100,115,24,17,32,3,40,5,82,10,80,114,101,80,101,114,107,73,100,115,18,30,10,10,80,114,101,84,97,103,80,107,103,115,24,18,32,1,40,9,82,10,80,114,101,84,97,103,80,107,103,115,18,28,10,9,78,101,101,100,70,108,111,111,114,24,19,32,1,40,5,82,9,78,101,101,100,70,108,111,111,114,18,36,10,13,69,102,102,101,99,116,71,114,111,117,112,73,100,24,20,32,1,40,5,82,13,69,102,102,101,99,116,71,114,111,117,112,73,100,18,32,10,11,73,115,69,102,102,101,99,116,105,118,101,24,21,32,1,40,8,82,11,73,115,69,102,102,101,99,116,105,118,101,18,26,10,8,80,101,114,107,84,97,103,49,24,22,32,1,40,9,82,8,80,101,114,107,84,97,103,49,18,26,10,8,80,101,114,107,84,97,103,50,24,23,32,1,40,9,82,8,80,101,114,107,84,97,103,50,18,26,10,8,80,101,114,107,84,97,103,51,24,24,32,1,40,9,82,8,80,101,114,107,84,97,103,51,18,26,10,8,80,101,114,107,84,97,103,52,24,25,32,1,40,9,82,8,80,101,114,107,84,97,103,52,18,26,10,8,76,111,103,111,73,99,111,110,24,26,32,1,40,9,82,8,76,111,103,111,73,99,111,110,18,24,10,7,83,108,111,116,84,97,103,24,27,32,1,40,9,82,7,83,108,111,116,84,97,103,34,51,10,10,116,97,98,108,101,95,80,101,114,107,18,37,10,4,108,105,115,116,24,1,32,3,40,11,50,17,46,110,111,118,97,46,99,108,105,101,110,116,46,80,101,114,107,82,4,108,105,115,116,34,180,3,10,16,80,101,114,107,80,97,115,115,105,118,101,83,107,105,108,108,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,24,10,7,83,104,97,114,101,67,68,24,2,32,1,40,8,82,7,83,104,97,114,101,67,68,18,30,10,10,83,104,97,114,101,84,105,109,101,115,24,3,32,1,40,8,82,10,83,104,97,114,101,84,105,109,101,115,18,28,10,9,69,102,102,101,99,116,73,100,49,24,4,32,1,40,5,82,9,69,102,102,101,99,116,73,100,49,18,28,10,9,69,102,102,101,99,116,73,100,50,24,5,32,1,40,5,82,9,69,102,102,101,99,116,73,100,50,18,28,10,9,69,102,102,101,99,116,73,100,51,24,6,32,1,40,5,82,9,69,102,102,101,99,116,73,100,51,18,28,10,9,69,102,102,101,99,116,73,100,52,24,7,32,1,40,5,82,9,69,102,102,101,99,116,73,100,52,18,18,10,4,78,97,109,101,24,8,32,1,40,9,82,4,78,97,109,101,18,18,10,4,68,101,115,99,24,9,32,1,40,9,82,4,68,101,115,99,18,20,10,5,68,101,115,99,49,24,10,32,1,40,9,82,5,68,101,115,99,49,18,22,10,6,80,97,114,97,109,49,24,11,32,1,40,9,82,6,80,97,114,97,109,49,18,20,10,5,68,101,115,99,50,24,12,32,1,40,9,82,5,68,101,115,99,50,18,22,10,6,80,97,114,97,109,50,24,13,32,1,40,9,82,6,80,97,114,97,109,50,18,20,10,5,68,101,115,99,51,24,14,32,1,40,9,82,5,68,101,115,99,51,18,22,10,6,80,97,114,97,109,51,24,15,32,1,40,9,82,6,80,97,114,97,109,51,18,20,10,5,68,101,115,99,52,24,16,32,1,40,9,82,5,68,101,115,99,52,18,22,10,6,80,97,114,97,109,52,24,17,32,1,40,9,82,6,80,97,114,97,109,52,34,75,10,22,116,97,98,108,101,95,80,101,114,107,80,97,115,115,105,118,101,83,107,105,108,108,18,49,10,4,108,105,115,116,24,1,32,3,40,11,50,29,46,110,111,118,97,46,99,108,105,101,110,116,46,80,101,114,107,80,97,115,115,105,118,101,83,107,105,108,108,82,4,108,105,115,116,34,48,10,10,80,108,97,121,101,114,72,101,97,100,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,73,99,111,110,24,2,32,1,40,9,82,4,73,99,111,110,34,63,10,16,116,97,98,108,101,95,80,108,97,121,101,114,72,101,97,100,18,43,10,4,108,105,115,116,24,1,32,3,40,11,50,23,46,110,111,118,97,46,99,108,105,101,110,116,46,80,108,97,121,101,114,72,101,97,100,82,4,108,105,115,116,34,192,2,10,4,80,108,111,116,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,67,104,97,114,24,2,32,1,40,5,82,4,67,104,97,114,18,18,10,4,78,97,109,101,24,3,32,1,40,9,82,4,78,97,109,101,18,18,10,4,68,101,115,99,24,4,32,1,40,9,82,4,68,101,115,99,18,20,10,5,65,118,103,73,100,24,5,32,1,40,9,82,5,65,118,103,73,100,18,28,10,9,77,97,105,110,108,105,110,101,115,24,6,32,3,40,5,82,9,77,97,105,110,108,105,110,101,115,18,48,10,19,85,110,108,111,99,107,65,102,102,105,110,105,116,121,76,101,118,101,108,24,7,32,1,40,5,82,19,85,110,108,111,99,107,65,102,102,105,110,105,116,121,76,101,118,101,108,18,36,10,13,67,111,110,110,101,99,116,67,104,97,116,73,100,24,8,32,1,40,5,82,13,67,111,110,110,101,99,116,67,104,97,116,73,100,18,40,10,15,67,104,97,114,65,100,118,97,110,99,101,67,111,110,100,24,9,32,1,40,9,82,15,67,104,97,114,65,100,118,97,110,99,101,67,111,110,100,18,24,10,7,82,101,119,97,114,100,115,24,10,32,1,40,9,82,7,82,101,119,97,114,100,115,18,28,10,9,80,105,99,83,111,117,114,99,101,24,11,32,1,40,9,82,9,80,105,99,83,111,117,114,99,101,34,51,10,10,116,97,98,108,101,95,80,108,111,116,18,37,10,4,108,105,115,116,24,1,32,3,40,11,50,17,46,110,111,118,97,46,99,108,105,101,110,116,46,80,108,111,116,82,4,108,105,115,116,34,147,7,10,9,80,111,116,101,110,116,105,97,108,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,22,10,6,67,104,97,114,73,100,24,2,32,1,40,5,82,6,67,104,97,114,73,100,18,30,10,10,66,114,97,110,99,104,84,121,112,101,24,3,32,1,40,5,82,10,66,114,97,110,99,104,84,121,112,101,18,26,10,8,77,97,120,76,101,118,101,108,24,4,32,1,40,5,82,8,77,97,120,76,101,118,101,108,18,34,10,12,83,99,111,114,101,71,114,111,117,112,73,100,24,5,32,1,40,5,82,12,83,99,111,114,101,71,114,111,117,112,73,100,18,30,10,10,66,117,105,108,100,83,99,111,114,101,24,6,32,3,40,5,82,10,66,117,105,108,100,83,99,111,114,101,18,30,10,10,71,97,109,101,66,111,111,107,73,100,24,7,32,1,40,5,82,10,71,97,109,101,66,111,111,107,73,100,18,36,10,13,69,102,102,101,99,116,71,114,111,117,112,73,100,24,8,32,1,40,5,82,13,69,102,102,101,99,116,71,114,111,117,112,73,100,18,32,10,11,73,115,69,102,102,101,99,116,105,118,101,24,9,32,1,40,8,82,11,73,115,69,102,102,101,99,116,105,118,101,18,36,10,13,80,111,116,101,110,116,105,97,108,84,97,103,49,24,10,32,1,40,9,82,13,80,111,116,101,110,116,105,97,108,84,97,103,49,18,36,10,13,80,111,116,101,110,116,105,97,108,84,97,103,50,24,11,32,1,40,9,82,13,80,111,116,101,110,116,105,97,108,84,97,103,50,18,36,10,13,80,111,116,101,110,116,105,97,108,84,97,103,51,24,12,32,1,40,9,82,13,80,111,116,101,110,116,105,97,108,84,97,103,51,18,36,10,13,80,111,116,101,110,116,105,97,108,84,97,103,52,24,13,32,1,40,9,82,13,80,111,116,101,110,116,105,97,108,84,97,103,52,18,22,10,6,67,111,114,110,101,114,24,14,32,1,40,5,82,6,67,111,114,110,101,114,18,18,10,4,83,112,66,103,24,15,32,1,40,9,82,4,83,112,66,103,18,22,10,6,83,112,70,97,99,101,24,16,32,1,40,9,82,6,83,112,70,97,99,101,18,28,10,9,69,102,102,101,99,116,73,100,49,24,17,32,1,40,5,82,9,69,102,102,101,99,116,73,100,49,18,28,10,9,69,102,102,101,99,116,73,100,50,24,18,32,1,40,5,82,9,69,102,102,101,99,116,73,100,50,18,28,10,9,69,102,102,101,99,116,73,100,51,24,19,32,1,40,5,82,9,69,102,102,101,99,116,73,100,51,18,28,10,9,69,102,102,101,99,116,73,100,52,24,20,32,1,40,5,82,9,69,102,102,101,99,116,73,100,52,18,28,10,9,66,114,105,101,102,68,101,115,99,24,21,32,1,40,9,82,9,66,114,105,101,102,68,101,115,99,18,18,10,4,68,101,115,99,24,22,32,1,40,9,82,4,68,101,115,99,18,22,10,6,80,97,114,97,109,49,24,23,32,1,40,9,82,6,80,97,114,97,109,49,18,22,10,6,80,97,114,97,109,50,24,24,32,1,40,9,82,6,80,97,114,97,109,50,18,22,10,6,80,97,114,97,109,51,24,25,32,1,40,9,82,6,80,97,114,97,109,51,18,22,10,6,80,97,114,97,109,52,24,26,32,1,40,9,82,6,80,97,114,97,109,52,18,22,10,6,80,97,114,97,109,53,24,27,32,1,40,9,82,6,80,97,114,97,109,53,18,22,10,6,80,97,114,97,109,54,24,28,32,1,40,9,82,6,80,97,114,97,109,54,18,22,10,6,80,97,114,97,109,55,24,29,32,1,40,9,82,6,80,97,114,97,109,55,18,22,10,6,80,97,114,97,109,56,24,30,32,1,40,9,82,6,80,97,114,97,109,56,18,22,10,6,80,97,114,97,109,57,24,31,32,1,40,9,82,6,80,97,114,97,109,57,18,24,10,7,80,97,114,97,109,49,48,24,32,32,1,40,9,82,7,80,97,114,97,109,49,48,34,61,10,15,116,97,98,108,101,95,80,111,116,101,110,116,105,97,108,18,42,10,4,108,105,115,116,24,1,32,3,40,11,50,22,46,110,111,118,97,46,99,108,105,101,110,116,46,80,111,116,101,110,116,105,97,108,82,4,108,105,115,116,34,235,2,10,21,80,111,116,101,110,116,105,97,108,80,97,115,115,105,118,101,83,107,105,108,108,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,24,10,7,83,104,97,114,101,67,68,24,2,32,1,40,8,82,7,83,104,97,114,101,67,68,18,30,10,10,83,104,97,114,101,84,105,109,101,115,24,3,32,1,40,8,82,10,83,104,97,114,101,84,105,109,101,115,18,28,10,9,69,102,102,101,99,116,73,100,49,24,4,32,1,40,5,82,9,69,102,102,101,99,116,73,100,49,18,28,10,9,69,102,102,101,99,116,73,100,50,24,5,32,1,40,5,82,9,69,102,102,101,99,116,73,100,50,18,28,10,9,69,102,102,101,99,116,73,100,51,24,6,32,1,40,5,82,9,69,102,102,101,99,116,73,100,51,18,28,10,9,69,102,102,101,99,116,73,100,52,24,7,32,1,40,5,82,9,69,102,102,101,99,116,73,100,52,18,28,10,9,66,114,105,101,102,68,101,115,99,24,8,32,1,40,9,82,9,66,114,105,101,102,68,101,115,99,18,18,10,4,68,101,115,99,24,9,32,1,40,9,82,4,68,101,115,99,18,22,10,6,80,97,114,97,109,49,24,10,32,1,40,9,82,6,80,97,114,97,109,49,18,22,10,6,80,97,114,97,109,50,24,11,32,1,40,9,82,6,80,97,114,97,109,50,18,22,10,6,80,97,114,97,109,51,24,12,32,1,40,9,82,6,80,97,114,97,109,51,18,22,10,6,80,97,114,97,109,52,24,13,32,1,40,9,82,6,80,97,114,97,109,52,34,85,10,27,116,97,98,108,101,95,80,111,116,101,110,116,105,97,108,80,97,115,115,105,118,101,83,107,105,108,108,18,54,10,4,108,105,115,116,24,1,32,3,40,11,50,34,46,110,111,118,97,46,99,108,105,101,110,116,46,80,111,116,101,110,116,105,97,108,80,97,115,115,105,118,101,83,107,105,108,108,82,4,108,105,115,116,34,159,1,10,19,80,114,101,118,105,101,119,77,111,110,115,116,101,114,71,114,111,117,112,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,24,10,7,71,114,111,117,112,73,100,24,2,32,1,40,5,82,7,71,114,111,117,112,73,100,18,50,10,20,80,114,101,118,105,101,119,77,111,110,115,116,101,114,76,105,115,116,73,100,24,3,32,1,40,5,82,20,80,114,101,118,105,101,119,77,111,110,115,116,101,114,76,105,115,116,73,100,18,20,10,5,77,105,110,76,118,24,4,32,1,40,9,82,5,77,105,110,76,118,18,20,10,5,77,97,120,76,118,24,5,32,1,40,9,82,5,77,97,120,76,118,34,81,10,25,116,97,98,108,101,95,80,114,101,118,105,101,119,77,111,110,115,116,101,114,71,114,111,117,112,18,52,10,4,108,105,115,116,24,1,32,3,40,11,50,32,46,110,111,118,97,46,99,108,105,101,110,116,46,80,114,101,118,105,101,119,77,111,110,115,116,101,114,71,114,111,117,112,82,4,108,105,115,116,34,246,3,10,18,80,114,101,118,105,101,119,77,111,110,115,116,101,114,76,105,115,116,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,73,99,111,110,24,2,32,1,40,9,82,4,73,99,111,110,18,18,10,4,78,97,109,101,24,3,32,1,40,9,82,4,78,97,109,101,18,28,10,9,82,101,115,105,115,116,69,69,84,24,4,32,3,40,5,82,9,82,101,115,105,115,116,69,69,84,18,16,10,3,69,69,84,24,5,32,3,40,5,82,3,69,69,84,18,18,10,4,68,101,115,99,24,6,32,1,40,9,82,4,68,101,115,99,18,28,10,9,83,107,105,108,108,68,101,115,99,24,7,32,1,40,9,82,9,83,107,105,108,108,68,101,115,99,18,22,10,6,69,112,105,99,76,118,24,8,32,1,40,5,82,6,69,112,105,99,76,118,18,14,10,2,72,80,24,9,32,1,40,5,82,2,72,80,18,16,10,3,65,84,75,24,10,32,1,40,5,82,3,65,84,75,18,16,10,3,68,69,70,24,11,32,1,40,5,82,3,68,69,70,18,28,10,9,84,79,85,71,72,78,69,83,83,24,12,32,1,40,5,82,9,84,79,85,71,72,78,69,83,83,18,36,10,13,65,98,105,108,105,116,121,84,105,116,108,101,49,24,13,32,1,40,9,82,13,65,98,105,108,105,116,121,84,105,116,108,101,49,18,34,10,12,65,98,105,108,105,116,121,68,101,115,99,49,24,14,32,1,40,9,82,12,65,98,105,108,105,116,121,68,101,115,99,49,18,36,10,13,65,98,105,108,105,116,121,84,105,116,108,101,50,24,15,32,1,40,9,82,13,65,98,105,108,105,116,121,84,105,116,108,101,50,18,34,10,12,65,98,105,108,105,116,121,68,101,115,99,50,24,16,32,1,40,9,82,12,65,98,105,108,105,116,121,68,101,115,99,50,18,36,10,13,65,98,105,108,105,116,121,84,105,116,108,101,51,24,17,32,1,40,9,82,13,65,98,105,108,105,116,121,84,105,116,108,101,51,18,34,10,12,65,98,105,108,105,116,121,68,101,115,99,51,24,18,32,1,40,9,82,12,65,98,105,108,105,116,121,68,101,115,99,51,34,79,10,24,116,97,98,108,101,95,80,114,101,118,105,101,119,77,111,110,115,116,101,114,76,105,115,116,18,51,10,4,108,105,115,116,24,1,32,3,40,11,50,31,46,110,111,118,97,46,99,108,105,101,110,116,46,80,114,101,118,105,101,119,77,111,110,115,116,101,114,76,105,115,116,82,4,108,105,115,116,34,168,6,10,10,80,114,111,100,117,99,116,105,111,110,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,18,10,4,68,101,115,99,24,3,32,1,40,9,82,4,68,101,115,99,18,34,10,12,80,114,111,100,117,99,116,105,111,110,73,100,24,4,32,1,40,5,82,12,80,114,111,100,117,99,116,105,111,110,73,100,18,46,10,18,80,114,111,100,117,99,116,105,111,110,80,101,114,66,97,116,99,104,24,5,32,1,40,5,82,18,80,114,111,100,117,99,116,105,111,110,80,101,114,66,97,116,99,104,18,42,10,16,83,104,111,119,80,114,111,100,117,99,116,105,111,110,73,100,24,6,32,1,40,5,82,16,83,104,111,119,80,114,111,100,117,99,116,105,111,110,73,100,18,54,10,22,83,104,111,119,80,114,111,100,117,99,116,105,111,110,80,101,114,66,97,116,99,104,24,7,32,1,40,5,82,22,83,104,111,119,80,114,111,100,117,99,116,105,111,110,80,101,114,66,97,116,99,104,18,20,10,5,71,114,111,117,112,24,8,32,1,40,5,82,5,71,114,111,117,112,18,16,10,3,84,97,103,24,9,32,1,40,5,82,3,84,97,103,18,38,10,14,82,97,119,77,97,116,101,114,105,97,108,73,100,49,24,10,32,1,40,5,82,14,82,97,119,77,97,116,101,114,105,97,108,73,100,49,18,44,10,17,82,97,119,77,97,116,101,114,105,97,108,67,111,117,110,116,49,24,11,32,1,40,5,82,17,82,97,119,77,97,116,101,114,105,97,108,67,111,117,110,116,49,18,38,10,14,82,97,119,77,97,116,101,114,105,97,108,73,100,50,24,12,32,1,40,5,82,14,82,97,119,77,97,116,101,114,105,97,108,73,100,50,18,44,10,17,82,97,119,77,97,116,101,114,105,97,108,67,111,117,110,116,50,24,13,32,1,40,5,82,17,82,97,119,77,97,116,101,114,105,97,108,67,111,117,110,116,50,18,38,10,14,82,97,119,77,97,116,101,114,105,97,108,73,100,51,24,14,32,1,40,5,82,14,82,97,119,77,97,116,101,114,105,97,108,73,100,51,18,44,10,17,82,97,119,77,97,116,101,114,105,97,108,67,111,117,110,116,51,24,15,32,1,40,5,82,17,82,97,119,77,97,116,101,114,105,97,108,67,111,117,110,116,51,18,38,10,14,82,97,119,77,97,116,101,114,105,97,108,73,100,52,24,16,32,1,40,5,82,14,82,97,119,77,97,116,101,114,105,97,108,73,100,52,18,44,10,17,82,97,119,77,97,116,101,114,105,97,108,67,111,117,110,116,52,24,17,32,1,40,5,82,17,82,97,119,77,97,116,101,114,105,97,108,67,111,117,110,116,52,18,42,10,16,73,115,83,104,111,119,87,111,114,108,100,76,101,118,101,108,24,18,32,1,40,5,82,16,73,115,83,104,111,119,87,111,114,108,100,76,101,118,101,108,18,42,10,16,85,110,108,111,99,107,87,111,114,108,100,76,101,118,101,108,24,19,32,1,40,5,82,16,85,110,108,111,99,107,87,111,114,108,100,76,101,118,101,108,18,28,10,9,85,110,108,111,99,107,84,105,112,24,20,32,1,40,9,82,9,85,110,108,111,99,107,84,105,112,18,22,10,6,83,111,114,116,73,100,24,21,32,1,40,5,82,6,83,111,114,116,73,100,18,28,10,9,73,115,65,99,116,105,118,101,100,24,22,32,1,40,8,82,9,73,115,65,99,116,105,118,101,100,34,63,10,16,116,97,98,108,101,95,80,114,111,100,117,99,116,105,111,110,18,43,10,4,108,105,115,116,24,1,32,3,40,11,50,23,46,110,111,118,97,46,99,108,105,101,110,116,46,80,114,111,100,117,99,116,105,111,110,82,4,108,105,115,116,34,84,10,14,80,114,111,100,117,99,116,105,111,110,84,121,112,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,26,10,8,84,121,112,101,78,97,109,101,24,2,32,1,40,9,82,8,84,121,112,101,78,97,109,101,18,22,10,6,83,111,114,116,73,100,24,3,32,1,40,5,82,6,83,111,114,116,73,100,34,71,10,20,116,97,98,108,101,95,80,114,111,100,117,99,116,105,111,110,84,121,112,101,18,47,10,4,108,105,115,116,24,1,32,3,40,11,50,27,46,110,111,118,97,46,99,108,105,101,110,116,46,80,114,111,100,117,99,116,105,111,110,84,121,112,101,82,4,108,105,115,116,34,250,8,10,18,82,97,110,100,111,109,76,101,118,101,108,77,111,110,115,116,101,114,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,22,10,6,69,112,105,99,76,118,24,3,32,1,40,5,82,6,69,112,105,99,76,118,18,28,10,9,66,108,111,111,100,84,121,112,101,24,4,32,1,40,5,82,9,66,108,111,111,100,84,121,112,101,18,16,10,3,69,69,84,24,5,32,1,40,5,82,3,69,69,84,18,18,10,4,70,67,73,100,24,6,32,1,40,5,82,4,70,67,73,100,18,18,10,4,70,65,73,100,24,7,32,1,40,5,82,4,70,65,73,100,18,24,10,7,77,111,118,84,121,112,101,24,8,32,1,40,5,82,7,77,111,118,84,121,112,101,18,22,10,6,82,117,110,83,112,100,24,9,32,1,40,5,82,6,82,117,110,83,112,100,18,36,10,13,84,114,97,110,115,83,112,100,83,99,97,108,101,24,10,32,1,40,5,82,13,84,114,97,110,115,83,112,100,83,99,97,108,101,18,24,10,7,87,97,108,107,83,112,100,24,11,32,1,40,5,82,7,87,97,108,107,83,112,100,18,22,10,6,77,111,118,65,99,99,24,12,32,1,40,5,82,6,77,111,118,65,99,99,18,28,10,9,86,105,115,105,111,110,82,110,103,24,13,32,1,40,5,82,9,86,105,115,105,111,110,82,110,103,18,28,10,9,86,105,115,105,111,110,68,101,103,24,14,32,1,40,5,82,9,86,105,115,105,111,110,68,101,103,18,24,10,7,72,101,97,114,82,110,103,24,15,32,1,40,5,82,7,72,101,97,114,82,110,103,18,22,10,6,82,101,102,82,110,103,24,16,32,1,40,5,82,6,82,101,102,82,110,103,18,22,10,6,65,99,116,82,110,103,24,17,32,1,40,5,82,6,65,99,116,82,110,103,18,28,10,9,68,105,115,65,99,116,82,110,103,24,18,32,1,40,5,82,9,68,105,115,65,99,116,82,110,103,18,22,10,6,82,111,116,83,112,100,24,19,32,1,40,5,82,6,82,111,116,83,112,100,18,26,10,8,84,101,109,112,108,101,116,101,24,20,32,1,40,5,82,8,84,101,109,112,108,101,116,101,18,16,10,3,87,69,80,24,21,32,1,40,5,82,3,87,69,80,18,16,10,3,70,69,80,24,22,32,1,40,5,82,3,70,69,80,18,16,10,3,83,69,80,24,23,32,1,40,5,82,3,83,69,80,18,16,10,3,65,69,80,24,24,32,1,40,5,82,3,65,69,80,18,16,10,3,76,69,80,24,25,32,1,40,5,82,3,76,69,80,18,16,10,3,68,69,80,24,26,32,1,40,5,82,3,68,69,80,18,16,10,3,87,69,69,24,27,32,1,40,5,82,3,87,69,69,18,16,10,3,70,69,69,24,28,32,1,40,5,82,3,70,69,69,18,16,10,3,83,69,69,24,29,32,1,40,5,82,3,83,69,69,18,16,10,3,65,69,69,24,30,32,1,40,5,82,3,65,69,69,18,16,10,3,76,69,69,24,31,32,1,40,5,82,3,76,69,69,18,16,10,3,68,69,69,24,32,32,1,40,5,82,3,68,69,69,18,16,10,3,87,69,82,24,33,32,1,40,5,82,3,87,69,82,18,16,10,3,70,69,82,24,34,32,1,40,5,82,3,70,69,82,18,16,10,3,83,69,82,24,35,32,1,40,5,82,3,83,69,82,18,16,10,3,65,69,82,24,36,32,1,40,5,82,3,65,69,82,18,16,10,3,76,69,82,24,37,32,1,40,5,82,3,76,69,82,18,16,10,3,68,69,82,24,38,32,1,40,5,82,3,68,69,82,18,24,10,7,66,117,102,102,73,100,115,24,39,32,3,40,5,82,7,66,117,102,102,73,100,115,18,22,10,6,119,101,105,103,104,116,24,40,32,1,40,5,82,6,119,101,105,103,104,116,18,30,10,10,84,114,97,112,84,97,103,73,100,115,24,41,32,3,40,5,82,10,84,114,97,112,84,97,103,73,100,115,18,24,10,7,70,97,99,116,105,111,110,24,42,32,1,40,5,82,7,70,97,99,116,105,111,110,18,28,10,9,83,117,112,67,104,97,114,103,101,24,43,32,1,40,5,82,9,83,117,112,67,104,97,114,103,101,18,28,10,9,73,115,83,104,111,119,82,110,103,24,44,32,1,40,8,82,9,73,115,83,104,111,119,82,110,103,18,30,10,10,84,114,97,112,65,116,116,114,73,100,24,45,32,1,40,5,82,10,84,114,97,112,65,116,116,114,73,100,18,18,10,4,84,97,103,49,24,46,32,1,40,9,82,4,84,97,103,49,18,18,10,4,84,97,103,50,24,47,32,1,40,9,82,4,84,97,103,50,18,18,10,4,84,97,103,51,24,48,32,1,40,9,82,4,84,97,103,51,18,18,10,4,84,97,103,52,24,49,32,1,40,9,82,4,84,97,103,52,18,18,10,4,84,97,103,53,24,50,32,1,40,9,82,4,84,97,103,53,34,79,10,24,116,97,98,108,101,95,82,97,110,100,111,109,76,101,118,101,108,77,111,110,115,116,101,114,18,51,10,4,108,105,115,116,24,1,32,3,40,11,50,31,46,110,111,118,97,46,99,108,105,101,110,116,46,82,97,110,100,111,109,76,101,118,101,108,77,111,110,115,116,101,114,82,4,108,105,115,116,34,44,10,4,82,97,110,107,18,18,10,4,82,97,110,107,24,1,32,1,40,5,82,4,82,97,110,107,18,16,10,3,69,120,112,24,2,32,1,40,5,82,3,69,120,112,34,51,10,10,116,97,98,108,101,95,82,97,110,107,18,37,10,4,108,105,115,116,24,1,32,3,40,11,50,17,46,110,111,118,97,46,99,108,105,101,110,116,46,82,97,110,107,82,4,108,105,115,116,34,128,3,10,10,82,101,103,105,111,110,66,111,115,115,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,28,10,9,77,111,110,115,116,101,114,73,100,24,2,32,1,40,5,82,9,77,111,110,115,116,101,114,73,100,18,30,10,10,82,101,103,105,111,110,84,121,112,101,24,3,32,1,40,5,82,10,82,101,103,105,111,110,84,121,112,101,18,18,10,4,78,97,109,101,24,4,32,1,40,9,82,4,78,97,109,101,18,18,10,4,73,99,111,110,24,5,32,1,40,9,82,4,73,99,111,110,18,40,10,15,85,110,108,111,99,107,67,111,110,100,105,116,105,111,110,24,6,32,1,40,9,82,15,85,110,108,111,99,107,67,111,110,100,105,116,105,111,110,18,36,10,13,78,101,101,100,82,111,103,117,101,108,105,107,101,24,7,32,1,40,5,82,13,78,101,101,100,82,111,103,117,101,108,105,107,101,18,18,10,4,83,111,114,116,24,8,32,1,40,5,82,4,83,111,114,116,18,24,10,7,79,112,101,110,68,97,121,24,9,32,3,40,5,82,7,79,112,101,110,68,97,121,18,32,10,11,79,112,101,110,68,97,121,68,101,115,99,24,10,32,1,40,9,82,11,79,112,101,110,68,97,121,68,101,115,99,18,16,10,3,69,69,84,24,11,32,3,40,5,82,3,69,69,84,18,24,10,7,69,112,105,115,111,100,101,24,12,32,1,40,9,82,7,69,112,105,115,111,100,101,18,20,10,5,73,109,97,103,101,24,13,32,1,40,9,82,5,73,109,97,103,101,18,26,10,8,68,114,111,112,73,116,101,109,24,14,32,3,40,5,82,8,68,114,111,112,73,116,101,109,34,63,10,16,116,97,98,108,101,95,82,101,103,105,111,110,66,111,115,115,18,43,10,4,108,105,115,116,24,1,32,3,40,11,50,23,46,110,111,118,97,46,99,108,105,101,110,116,46,82,101,103,105,111,110,66,111,115,115,82,4,108,105,115,116,34,247,1,10,15,82,101,103,105,111,110,66,111,115,115,65,102,102,105,120,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,24,10,7,71,114,111,117,112,73,100,24,2,32,1,40,5,82,7,71,114,111,117,112,73,100,18,20,10,5,76,101,118,101,108,24,3,32,1,40,5,82,5,76,101,118,101,108,18,18,10,4,78,97,109,101,24,4,32,1,40,9,82,4,78,97,109,101,18,18,10,4,68,101,115,99,24,5,32,1,40,9,82,4,68,101,115,99,18,18,10,4,73,99,111,110,24,6,32,1,40,9,82,4,73,99,111,110,18,24,10,7,69,108,101,109,101,110,116,24,7,32,1,40,5,82,7,69,108,101,109,101,110,116,18,24,10,7,65,100,100,67,97,109,112,24,8,32,3,40,5,82,7,65,100,100,67,97,109,112,18,26,10,8,65,100,100,67,108,97,115,115,24,9,32,3,40,5,82,8,65,100,100,67,108,97,115,115,18,24,10,7,83,107,105,108,108,73,100,24,10,32,1,40,5,82,7,83,107,105,108,108,73,100,34,73,10,21,116,97,98,108,101,95,82,101,103,105,111,110,66,111,115,115,65,102,102,105,120,18,48,10,4,108,105,115,116,24,1,32,3,40,11,50,28,46,110,111,118,97,46,99,108,105,101,110,116,46,82,101,103,105,111,110,66,111,115,115,65,102,102,105,120,82,4,108,105,115,116,34,131,2,10,15,82,101,103,105,111,110,66,111,115,115,70,108,111,111,114,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,28,10,9,83,99,101,110,101,78,97,109,101,24,2,32,1,40,9,82,9,83,99,101,110,101,78,97,109,101,18,42,10,16,67,111,110,102,105,103,80,114,101,102,97,98,78,97,109,101,24,3,32,1,40,9,82,16,67,111,110,102,105,103,80,114,101,102,97,98,78,97,109,101,18,20,10,5,84,104,101,109,101,24,4,32,1,40,5,82,5,84,104,101,109,101,18,16,10,3,66,71,77,24,5,32,1,40,9,82,3,66,71,77,18,44,10,17,76,101,97,118,101,84,114,105,103,103,101,114,69,118,101,110,116,24,6,32,1,40,9,82,17,76,101,97,118,101,84,114,105,103,103,101,114,69,118,101,110,116,18,28,10,9,77,111,110,115,116,101,114,76,118,24,7,32,1,40,5,82,9,77,111,110,115,116,101,114,76,118,18,34,10,12,68,117,110,103,101,111,110,68,101,108,97,121,24,8,32,1,40,5,82,12,68,117,110,103,101,111,110,68,101,108,97,121,34,73,10,21,116,97,98,108,101,95,82,101,103,105,111,110,66,111,115,115,70,108,111,111,114,18,48,10,4,108,105,115,116,24,1,32,3,40,11,50,28,46,110,111,118,97,46,99,108,105,101,110,116,46,82,101,103,105,111,110,66,111,115,115,70,108,111,111,114,82,4,108,105,115,116,34,241,8,10,15,82,101,103,105,111,110,66,111,115,115,76,101,118,101,108,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,34,10,12,82,101,103,105,111,110,66,111,115,115,73,100,24,2,32,1,40,5,82,12,82,101,103,105,111,110,66,111,115,115,73,100,18,30,10,10,68,105,102,102,105,99,117,108,116,121,24,3,32,1,40,5,82,10,68,105,102,102,105,99,117,108,116,121,18,30,10,10,82,101,103,105,111,110,84,121,112,101,24,4,32,1,40,5,82,10,82,101,103,105,111,110,84,121,112,101,18,18,10,4,78,97,109,101,24,5,32,1,40,9,82,4,78,97,109,101,18,18,10,4,68,101,115,99,24,6,32,1,40,9,82,4,68,101,115,99,18,18,10,4,73,99,111,110,24,7,32,1,40,9,82,4,73,99,111,110,18,38,10,14,83,117,103,103,101,115,116,101,100,80,111,119,101,114,24,8,32,1,40,5,82,14,83,117,103,103,101,115,116,101,100,80,111,119,101,114,18,30,10,10,80,114,101,76,101,118,101,108,73,100,24,9,32,1,40,5,82,10,80,114,101,76,101,118,101,108,73,100,18,34,10,12,66,111,115,115,83,104,111,119,84,105,109,101,24,10,32,1,40,5,82,12,66,111,115,115,83,104,111,119,84,105,109,101,18,34,10,12,80,114,101,76,101,118,101,108,83,116,97,114,24,11,32,1,40,5,82,12,80,114,101,76,101,118,101,108,83,116,97,114,18,38,10,14,78,101,101,100,87,111,114,108,100,67,108,97,115,115,24,12,32,1,40,5,82,14,78,101,101,100,87,111,114,108,100,67,108,97,115,115,18,36,10,13,78,101,101,100,82,111,103,117,101,108,105,107,101,24,13,32,1,40,5,82,13,78,101,101,100,82,111,103,117,101,108,105,107,101,18,24,10,7,70,108,111,111,114,73,100,24,14,32,1,40,5,82,7,70,108,111,111,114,73,100,18,42,10,16,79,110,101,83,116,97,114,67,111,110,100,105,116,105,111,110,24,15,32,1,40,9,82,16,79,110,101,83,116,97,114,67,111,110,100,105,116,105,111,110,18,42,10,16,84,119,111,83,116,97,114,67,111,110,100,105,116,105,111,110,24,16,32,1,40,9,82,16,84,119,111,83,116,97,114,67,111,110,100,105,116,105,111,110,18,46,10,18,84,104,114,101,101,83,116,97,114,67,111,110,100,105,116,105,111,110,24,17,32,1,40,9,82,18,84,104,114,101,101,83,116,97,114,67,111,110,100,105,116,105,111,110,18,22,10,6,68,114,111,112,73,100,24,18,32,1,40,5,82,6,68,114,111,112,73,100,18,36,10,13,69,110,101,114,103,121,67,111,110,115,117,109,101,24,19,32,1,40,5,82,13,69,110,101,114,103,121,67,111,110,115,117,109,101,18,42,10,16,66,97,115,101,65,119,97,114,100,80,114,101,118,105,101,119,24,20,32,1,40,9,82,16,66,97,115,101,65,119,97,114,100,80,114,101,118,105,101,119,18,36,10,13,69,110,116,114,121,71,114,111,117,112,73,100,49,24,21,32,1,40,5,82,13,69,110,116,114,121,71,114,111,117,112,73,100,49,18,42,10,16,69,110,116,114,121,71,114,111,117,112,76,101,118,101,108,49,24,22,32,1,40,5,82,16,69,110,116,114,121,71,114,111,117,112,76,101,118,101,108,49,18,36,10,13,69,110,116,114,121,71,114,111,117,112,73,100,50,24,23,32,1,40,5,82,13,69,110,116,114,121,71,114,111,117,112,73,100,50,18,42,10,16,69,110,116,114,121,71,114,111,117,112,76,101,118,101,108,50,24,24,32,1,40,5,82,16,69,110,116,114,121,71,114,111,117,112,76,101,118,101,108,50,18,36,10,13,69,110,116,114,121,71,114,111,117,112,73,100,51,24,25,32,1,40,5,82,13,69,110,116,114,121,71,114,111,117,112,73,100,51,18,42,10,16,69,110,116,114,121,71,114,111,117,112,76,101,118,101,108,51,24,26,32,1,40,5,82,16,69,110,116,114,121,71,114,111,117,112,76,101,118,101,108,51,18,36,10,13,69,110,116,114,121,71,114,111,117,112,73,100,52,24,27,32,1,40,5,82,13,69,110,116,114,121,71,114,111,117,112,73,100,52,18,42,10,16,69,110,116,114,121,71,114,111,117,112,76,101,118,101,108,52,24,28,32,1,40,5,82,16,69,110,116,114,121,71,114,111,117,112,76,101,118,101,108,52,18,36,10,13,69,110,116,114,121,71,114,111,117,112,73,100,53,24,29,32,1,40,5,82,13,69,110,116,114,121,71,114,111,117,112,73,100,53,18,42,10,16,69,110,116,114,121,71,114,111,117,112,76,101,118,101,108,53,24,30,32,1,40,5,82,16,69,110,116,114,121,71,114,111,117,112,76,101,118,101,108,53,18,42,10,16,69,120,116,114,97,68,114,111,112,80,114,101,118,105,101,119,24,31,32,3,40,5,82,16,69,120,116,114,97,68,114,111,112,80,114,101,118,105,101,119,34,73,10,21,116,97,98,108,101,95,82,101,103,105,111,110,66,111,115,115,76,101,118,101,108,18,48,10,4,108,105,115,116,24,1,32,3,40,11,50,28,46,110,111,118,97,46,99,108,105,101,110,116,46,82,101,103,105,111,110,66,111,115,115,76,101,118,101,108,82,4,108,105,115,116,34,169,5,10,13,82,101,115,105,100,101,110,116,71,111,111,100,115,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,18,10,4,68,101,115,99,24,3,32,1,40,9,82,4,68,101,115,99,18,22,10,6,83,104,111,112,73,100,24,4,32,1,40,5,82,6,83,104,111,112,73,100,18,30,10,10,83,97,108,101,78,117,109,98,101,114,24,5,32,1,40,5,82,10,83,97,108,101,78,117,109,98,101,114,18,22,10,6,73,116,101,109,73,100,24,6,32,1,40,5,82,6,73,116,101,109,73,100,18,34,10,12,73,116,101,109,81,117,97,110,116,105,116,121,24,7,32,1,40,5,82,12,73,116,101,109,81,117,97,110,116,105,116,121,18,34,10,12,77,97,120,105,109,117,109,76,105,109,105,116,24,8,32,1,40,5,82,12,77,97,120,105,109,117,109,76,105,109,105,116,18,38,10,14,67,117,114,114,101,110,99,121,73,116,101,109,73,100,24,9,32,1,40,5,82,14,67,117,114,114,101,110,99,121,73,116,101,109,73,100,18,20,10,5,80,114,105,99,101,24,10,32,1,40,5,82,5,80,114,105,99,101,18,36,10,13,79,114,105,103,105,110,97,108,80,114,105,99,101,24,11,32,1,40,5,82,13,79,114,105,103,105,110,97,108,80,114,105,99,101,18,26,10,8,68,105,115,99,111,117,110,116,24,12,32,1,40,5,82,8,68,105,115,99,111,117,110,116,18,38,10,14,65,112,112,101,97,114,67,111,110,100,84,121,112,101,24,13,32,1,40,5,82,14,65,112,112,101,97,114,67,111,110,100,84,121,112,101,18,42,10,16,65,112,112,101,97,114,67,111,110,100,80,97,114,97,109,115,24,14,32,1,40,9,82,16,65,112,112,101,97,114,67,111,110,100,80,97,114,97,109,115,18,42,10,16,80,117,114,99,104,97,115,101,67,111,110,100,84,121,112,101,24,15,32,1,40,5,82,16,80,117,114,99,104,97,115,101,67,111,110,100,84,121,112,101,18,46,10,18,80,117,114,99,104,97,115,101,67,111,110,100,80,97,114,97,109,115,24,16,32,1,40,9,82,18,80,117,114,99,104,97,115,101,67,111,110,100,80,97,114,97,109,115,18,32,10,11,85,112,83,104,101,108,102,84,105,109,101,24,17,32,1,40,9,82,11,85,112,83,104,101,108,102,84,105,109,101,18,36,10,13,68,111,119,110,83,104,101,108,102,84,105,109,101,24,18,32,1,40,9,82,13,68,111,119,110,83,104,101,108,102,84,105,109,101,18,46,10,18,85,110,108,111,99,107,80,117,114,99,104,97,115,101,84,105,109,101,24,19,32,1,40,9,82,18,85,110,108,111,99,107,80,117,114,99,104,97,115,101,84,105,109,101,18,32,10,11,68,105,115,112,108,97,121,77,111,100,101,24,20,32,1,40,5,82,11,68,105,115,112,108,97,121,77,111,100,101,34,69,10,19,116,97,98,108,101,95,82,101,115,105,100,101,110,116,71,111,111,100,115,18,46,10,4,108,105,115,116,24,1,32,3,40,11,50,26,46,110,111,118,97,46,99,108,105,101,110,116,46,82,101,115,105,100,101,110,116,71,111,111,100,115,82,4,108,105,115,116,34,224,2,10,12,82,101,115,105,100,101,110,116,83,104,111,112,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,26,10,8,83,104,111,112,67,111,105,110,24,2,32,1,40,5,82,8,83,104,111,112,67,111,105,110,18,18,10,4,84,121,112,101,24,3,32,1,40,5,82,4,84,121,112,101,18,18,10,4,78,97,109,101,24,4,32,1,40,9,82,4,78,97,109,101,18,26,10,8,83,101,113,117,101,110,99,101,24,5,32,1,40,5,82,8,83,101,113,117,101,110,99,101,18,40,10,15,82,101,102,114,101,115,104,84,105,109,101,84,121,112,101,24,6,32,1,40,5,82,15,82,101,102,114,101,115,104,84,105,109,101,84,121,112,101,18,40,10,15,82,101,102,114,101,115,104,73,110,116,101,114,118,97,108,24,7,32,1,40,5,82,15,82,101,102,114,101,115,104,73,110,116,101,114,118,97,108,18,38,10,14,85,110,108,111,99,107,67,111,110,100,84,121,112,101,24,8,32,1,40,5,82,14,85,110,108,111,99,107,67,111,110,100,84,121,112,101,18,42,10,16,85,110,108,111,99,107,67,111,110,100,80,97,114,97,109,115,24,9,32,1,40,9,82,16,85,110,108,111,99,107,67,111,110,100,80,97,114,97,109,115,18,26,10,8,79,112,101,110,84,105,109,101,24,10,32,1,40,9,82,8,79,112,101,110,84,105,109,101,18,28,10,9,67,108,111,115,101,84,105,109,101,24,11,32,1,40,9,82,9,67,108,111,115,101,84,105,109,101,34,67,10,18,116,97,98,108,101,95,82,101,115,105,100,101,110,116,83,104,111,112,18,45,10,4,108,105,115,116,24,1,32,3,40,11,50,25,46,110,111,118,97,46,99,108,105,101,110,116,46,82,101,115,105,100,101,110,116,83,104,111,112,82,4,108,105,115,116,34,139,1,10,15,83,99,114,105,112,116,80,97,114,97,109,101,116,101,114,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,36,10,13,108,101,118,101,108,84,121,112,101,68,97,116,97,24,2,32,1,40,5,82,13,108,101,118,101,108,84,121,112,101,68,97,116,97,18,28,10,9,76,101,118,101,108,68,97,116,97,24,3,32,1,40,5,82,9,76,101,118,101,108,68,97,116,97,18,36,10,13,77,97,105,110,79,114,83,117,112,112,111,114,116,24,4,32,1,40,5,82,13,77,97,105,110,79,114,83,117,112,112,111,114,116,34,73,10,21,116,97,98,108,101,95,83,99,114,105,112,116,80,97,114,97,109,101,116,101,114,18,48,10,4,108,105,115,116,24,1,32,3,40,11,50,28,46,110,111,118,97,46,99,108,105,101,110,116,46,83,99,114,105,112,116,80,97,114,97,109,101,116,101,114,82,4,108,105,115,116,34,70,10,20,83,99,114,105,112,116,80,97,114,97,109,101,116,101,114,86,97,108,117,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,30,10,10,67,111,109,109,111,110,68,97,116,97,24,2,32,1,40,5,82,10,67,111,109,109,111,110,68,97,116,97,34,83,10,26,116,97,98,108,101,95,83,99,114,105,112,116,80,97,114,97,109,101,116,101,114,86,97,108,117,101,18,53,10,4,108,105,115,116,24,1,32,3,40,11,50,33,46,110,111,118,97,46,99,108,105,101,110,116,46,83,99,114,105,112,116,80,97,114,97,109,101,116,101,114,86,97,108,117,101,82,4,108,105,115,116,34,226,2,10,6,83,104,105,101,108,100,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,36,10,13,108,101,118,101,108,84,121,112,101,68,97,116,97,24,3,32,1,40,5,82,13,108,101,118,101,108,84,121,112,101,68,97,116,97,18,28,10,9,76,101,118,101,108,68,97,116,97,24,4,32,1,40,5,82,9,76,101,118,101,108,68,97,116,97,18,36,10,13,77,97,105,110,79,114,83,117,112,112,111,114,116,24,5,32,1,40,5,82,13,77,97,105,110,79,114,83,117,112,112,111,114,116,18,30,10,10,66,105,110,100,69,102,102,101,99,116,24,6,32,1,40,9,82,10,66,105,110,100,69,102,102,101,99,116,18,30,10,10,83,104,105,101,108,100,84,97,103,49,24,7,32,1,40,5,82,10,83,104,105,101,108,100,84,97,103,49,18,30,10,10,83,104,105,101,108,100,84,97,103,50,24,8,32,1,40,5,82,10,83,104,105,101,108,100,84,97,103,50,18,30,10,10,83,104,105,101,108,100,84,97,103,51,24,9,32,1,40,5,82,10,83,104,105,101,108,100,84,97,103,51,18,44,10,17,84,105,109,101,83,117,112,101,114,112,111,115,105,116,105,111,110,24,10,32,1,40,5,82,17,84,105,109,101,83,117,112,101,114,112,111,115,105,116,105,111,110,18,28,10,9,78,111,116,82,101,109,111,118,101,24,11,32,1,40,8,82,9,78,111,116,82,101,109,111,118,101,34,55,10,12,116,97,98,108,101,95,83,104,105,101,108,100,18,39,10,4,108,105,115,116,24,1,32,3,40,11,50,19,46,110,111,118,97,46,99,108,105,101,110,116,46,83,104,105,101,108,100,82,4,108,105,115,116,34,229,2,10,11,83,104,105,101,108,100,86,97,108,117,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,38,10,14,65,98,115,111,114,112,116,105,111,110,66,97,115,101,24,3,32,1,40,5,82,14,65,98,115,111,114,112,116,105,111,110,66,97,115,101,18,40,10,15,82,101,102,101,114,101,110,99,101,84,97,114,103,101,116,24,4,32,1,40,5,82,15,82,101,102,101,114,101,110,99,101,84,97,114,103,101,116,18,40,10,15,82,101,102,101,114,101,110,99,101,65,116,116,114,105,98,24,5,32,1,40,5,82,15,82,101,102,101,114,101,110,99,101,65,116,116,114,105,98,18,38,10,14,82,101,102,101,114,101,110,99,101,83,99,97,108,101,24,6,32,1,40,5,82,14,82,101,102,101,114,101,110,99,101,83,99,97,108,101,18,18,10,4,84,105,109,101,24,7,32,1,40,5,82,4,84,105,109,101,18,46,10,18,83,104,105,101,108,100,76,97,109,105,110,97,116,101,100,78,117,109,24,8,32,1,40,5,82,18,83,104,105,101,108,100,76,97,109,105,110,97,116,101,100,78,117,109,18,44,10,17,84,105,109,101,83,117,112,101,114,112,111,115,105,116,105,111,110,24,9,32,1,40,5,82,17,84,105,109,101,83,117,112,101,114,112,111,115,105,116,105,111,110,18,28,10,9,78,111,116,82,101,109,111,118,101,24,10,32,1,40,8,82,9,78,111,116,82,101,109,111,118,101,34,65,10,17,116,97,98,108,101,95,83,104,105,101,108,100,86,97,108,117,101,18,44,10,4,108,105,115,116,24,1,32,3,40,11,50,24,46,110,111,118,97,46,99,108,105,101,110,116,46,83,104,105,101,108,100,86,97,108,117,101,82,4,108,105,115,116,34,114,10,6,83,105,103,110,73,110,18,14,10,2,73,68,24,1,32,1,40,5,82,2,73,68,18,20,10,5,71,114,111,117,112,24,2,32,1,40,5,82,5,71,114,111,117,112,18,16,10,3,68,97,121,24,3,32,1,40,5,82,3,68,97,121,18,22,10,6,73,116,101,109,73,100,24,4,32,1,40,5,82,6,73,116,101,109,73,100,18,24,10,7,73,116,101,109,81,116,121,24,5,32,1,40,5,82,7,73,116,101,109,81,116,121,34,55,10,12,116,97,98,108,101,95,83,105,103,110,73,110,18,39,10,4,108,105,115,116,24,1,32,3,40,11,50,19,46,110,111,118,97,46,99,108,105,101,110,116,46,83,105,103,110,73,110,82,4,108,105,115,116,34,249,5,10,5,83,107,105,108,108,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,20,10,5,84,105,116,108,101,24,2,32,1,40,9,82,5,84,105,116,108,101,18,22,10,6,70,67,80,97,116,104,24,3,32,1,40,9,82,6,70,67,80,97,116,104,18,18,10,4,84,121,112,101,24,4,32,1,40,5,82,4,84,121,112,101,18,18,10,4,68,101,115,99,24,5,32,1,40,9,82,4,68,101,115,99,18,18,10,4,73,99,111,110,24,6,32,1,40,9,82,4,73,99,111,110,18,24,10,7,83,107,105,108,108,67,68,24,7,32,1,40,5,82,7,83,107,105,108,108,67,68,18,26,10,8,77,97,120,76,101,118,101,108,24,8,32,1,40,5,82,8,77,97,120,76,101,118,101,108,18,34,10,12,82,101,108,97,116,101,100,83,107,105,108,108,24,9,32,1,40,9,82,12,82,101,108,97,116,101,100,83,107,105,108,108,18,36,10,13,83,101,99,116,105,111,110,65,109,111,117,110,116,24,10,32,1,40,5,82,13,83,101,99,116,105,111,110,65,109,111,117,110,116,18,32,10,11,85,115,101,73,110,116,101,114,118,97,108,24,11,32,1,40,5,82,11,85,115,101,73,110,116,101,114,118,97,108,18,32,10,11,85,115,101,84,105,109,101,72,105,110,116,24,12,32,1,40,5,82,11,85,115,101,84,105,109,101,72,105,110,116,18,32,10,11,85,108,116,114,97,69,110,101,114,103,121,24,13,32,1,40,5,82,11,85,108,116,114,97,69,110,101,114,103,121,18,38,10,14,67,104,101,99,107,67,68,82,101,115,116,111,114,101,24,14,32,1,40,8,82,14,67,104,101,99,107,67,68,82,101,115,116,111,114,101,18,38,10,14,70,111,114,99,101,82,117,110,70,105,110,105,115,104,24,15,32,1,40,8,82,14,70,111,114,99,101,82,117,110,70,105,110,105,115,104,18,38,10,14,71,101,116,69,110,101,114,103,121,76,105,109,105,116,24,16,32,1,40,5,82,14,71,101,116,69,110,101,114,103,121,76,105,109,105,116,18,22,10,6,80,97,114,97,109,49,24,17,32,1,40,9,82,6,80,97,114,97,109,49,18,22,10,6,80,97,114,97,109,50,24,18,32,1,40,9,82,6,80,97,114,97,109,50,18,22,10,6,80,97,114,97,109,51,24,19,32,1,40,9,82,6,80,97,114,97,109,51,18,22,10,6,80,97,114,97,109,52,24,20,32,1,40,9,82,6,80,97,114,97,109,52,18,22,10,6,80,97,114,97,109,53,24,21,32,1,40,9,82,6,80,97,114,97,109,53,18,22,10,6,80,97,114,97,109,54,24,22,32,1,40,9,82,6,80,97,114,97,109,54,18,22,10,6,80,97,114,97,109,55,24,23,32,1,40,9,82,6,80,97,114,97,109,55,18,22,10,6,80,97,114,97,109,56,24,24,32,1,40,9,82,6,80,97,114,97,109,56,18,22,10,6,80,97,114,97,109,57,24,25,32,1,40,9,82,6,80,97,114,97,109,57,18,24,10,7,80,97,114,97,109,49,48,24,26,32,1,40,9,82,7,80,97,114,97,109,49,48,18,38,10,14,73,115,67,108,101,97,110,83,107,105,108,108,67,68,24,27,32,1,40,8,82,14,73,115,67,108,101,97,110,83,107,105,108,108,67,68,34,53,10,11,116,97,98,108,101,95,83,107,105,108,108,18,38,10,4,108,105,115,116,24,1,32,3,40,11,50,18,46,110,111,118,97,46,99,108,105,101,110,116,46,83,107,105,108,108,82,4,108,105,115,116,34,57,10,11,83,107,105,108,108,68,97,109,97,103,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,26,10,8,76,86,68,97,109,97,103,101,24,2,32,3,40,5,82,8,76,86,68,97,109,97,103,101,34,65,10,17,116,97,98,108,101,95,83,107,105,108,108,68,97,109,97,103,101,18,44,10,4,108,105,115,116,24,1,32,3,40,11,50,24,46,110,111,118,97,46,99,108,105,101,110,116,46,83,107,105,108,108,68,97,109,97,103,101,82,4,108,105,115,116,34,129,7,10,9,83,116,97,114,84,111,119,101,114,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,18,10,4,68,101,115,99,24,3,32,1,40,9,82,4,68,101,115,99,18,24,10,7,71,114,111,117,112,73,100,24,4,32,1,40,5,82,7,71,114,111,117,112,73,100,18,36,10,13,80,114,101,67,111,110,100,105,116,105,111,110,115,24,5,32,1,40,9,82,13,80,114,101,67,111,110,100,105,116,105,111,110,115,18,52,10,21,80,114,101,118,105,101,119,77,111,110,115,116,101,114,71,114,111,117,112,73,100,24,6,32,1,40,5,82,21,80,114,101,118,105,101,119,77,111,110,115,116,101,114,71,114,111,117,112,73,100,18,30,10,10,68,105,102,102,105,99,117,108,116,121,24,7,32,1,40,5,82,10,68,105,102,102,105,99,117,108,116,121,18,40,10,15,86,97,108,117,101,68,105,102,102,105,99,117,108,116,121,24,8,32,1,40,5,82,15,86,97,108,117,101,68,105,102,102,105,99,117,108,116,121,18,28,10,9,82,101,99,111,109,109,101,110,100,24,9,32,1,40,5,82,9,82,101,99,111,109,109,101,110,100,18,30,10,10,67,117,114,114,101,110,99,121,73,100,24,10,32,1,40,5,82,10,67,117,114,114,101,110,99,121,73,100,18,36,10,13,83,116,97,103,101,71,114,111,117,112,73,100,115,24,11,32,3,40,5,82,13,83,116,97,103,101,71,114,111,117,112,73,100,115,18,26,10,8,70,108,111,111,114,78,117,109,24,12,32,3,40,5,82,8,70,108,111,111,114,78,117,109,18,38,10,14,84,101,97,109,69,120,112,71,114,111,117,112,73,100,24,13,32,1,40,5,82,14,84,101,97,109,69,120,112,71,114,111,117,112,73,100,18,16,10,3,69,69,84,24,14,32,3,40,5,82,3,69,69,84,18,22,10,6,78,111,116,69,69,84,24,15,32,3,40,5,82,6,78,111,116,69,69,84,18,24,10,7,69,112,105,115,111,100,101,24,16,32,1,40,9,82,7,69,112,105,115,111,100,101,18,20,10,5,73,109,97,103,101,24,17,32,1,40,9,82,5,73,109,97,103,101,18,20,10,5,78,80,67,73,100,24,18,32,1,40,5,82,5,78,80,67,73,100,18,36,10,13,82,101,119,97,114,100,80,114,101,118,105,101,119,24,19,32,1,40,9,82,13,82,101,119,97,114,100,80,114,101,118,105,101,119,18,24,10,7,83,104,111,112,78,112,99,24,20,32,1,40,5,82,7,83,104,111,112,78,112,99,18,34,10,12,83,116,97,110,100,83,104,111,112,78,112,99,24,21,32,1,40,5,82,12,83,116,97,110,100,83,104,111,112,78,112,99,18,30,10,10,85,112,103,114,97,100,101,78,112,99,24,22,32,1,40,5,82,10,85,112,103,114,97,100,101,78,112,99,18,28,10,9,82,101,115,113,117,101,78,112,99,24,23,32,1,40,5,82,9,82,101,115,113,117,101,78,112,99,18,28,10,9,68,97,110,103,101,114,78,112,99,24,24,32,1,40,5,82,9,68,97,110,103,101,114,78,112,99,18,28,10,9,72,111,114,114,111,114,78,112,99,24,25,32,1,40,5,82,9,72,111,114,114,111,114,78,112,99,18,38,10,14,68,97,110,103,101,114,69,110,100,69,118,101,110,116,24,26,32,1,40,5,82,14,68,97,110,103,101,114,69,110,100,69,118,101,110,116,18,38,10,14,72,111,114,114,111,114,69,110,100,69,118,101,110,116,24,27,32,1,40,5,82,14,72,111,114,114,111,114,69,110,100,69,118,101,110,116,18,54,10,22,68,101,115,116,114,117,99,116,105,98,108,101,79,98,106,101,99,116,84,121,112,101,24,28,32,1,40,5,82,22,68,101,115,116,114,117,99,116,105,98,108,101,79,98,106,101,99,116,84,121,112,101,34,61,10,15,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,18,42,10,4,108,105,115,116,24,1,32,3,40,11,50,22,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,82,4,108,105,115,116,34,206,5,10,24,83,116,97,114,84,111,119,101,114,66,97,116,116,108,101,84,104,114,101,115,104,111,108,100,18,28,10,9,77,105,115,115,105,111,110,73,100,24,1,32,1,40,5,82,9,77,105,115,115,105,111,110,73,100,18,24,10,7,86,101,114,115,105,111,110,24,2,32,1,40,5,82,7,86,101,114,115,105,111,110,18,30,10,10,102,114,111,109,83,114,99,65,116,107,24,3,32,1,40,5,82,10,102,114,111,109,83,114,99,65,116,107,18,54,10,22,102,114,111,109,80,101,114,107,73,110,116,101,110,115,105,116,121,82,97,116,105,111,24,4,32,1,40,5,82,22,102,114,111,109,80,101,114,107,73,110,116,101,110,115,105,116,121,82,97,116,105,111,18,42,10,16,102,114,111,109,83,108,111,116,68,109,103,82,97,116,105,111,24,5,32,1,40,5,82,16,102,114,111,109,83,108,111,116,68,109,103,82,97,116,105,111,18,22,10,6,102,114,111,109,69,69,24,6,32,1,40,5,82,6,102,114,111,109,69,69,18,40,10,15,102,114,111,109,71,101,110,68,109,103,82,97,116,105,111,24,7,32,1,40,5,82,15,102,114,111,109,71,101,110,68,109,103,82,97,116,105,111,18,32,10,11,102,114,111,109,68,109,103,80,108,117,115,24,8,32,1,40,5,82,11,102,114,111,109,68,109,103,80,108,117,115,18,36,10,13,102,114,111,109,67,114,105,116,82,97,116,105,111,24,9,32,1,40,5,82,13,102,114,111,109,67,114,105,116,82,97,116,105,111,18,44,10,17,102,114,111,109,70,105,110,97,108,68,109,103,82,97,116,105,111,24,10,32,1,40,5,82,17,102,114,111,109,70,105,110,97,108,68,109,103,82,97,116,105,111,18,42,10,16,102,114,111,109,70,105,110,97,108,68,109,103,80,108,117,115,24,11,32,1,40,5,82,16,102,114,111,109,70,105,110,97,108,68,109,103,80,108,117,115,18,28,10,9,116,111,69,114,65,109,101,110,100,24,12,32,1,40,5,82,9,116,111,69,114,65,109,101,110,100,18,30,10,10,116,111,68,101,102,65,109,101,110,100,24,13,32,1,40,5,82,10,116,111,68,101,102,65,109,101,110,100,18,44,10,17,116,111,82,99,100,83,108,111,116,68,109,103,82,97,116,105,111,24,14,32,1,40,5,82,17,116,111,82,99,100,83,108,111,116,68,109,103,82,97,116,105,111,18,24,10,7,116,111,69,69,82,67,68,24,15,32,1,40,5,82,7,116,111,69,69,82,67,68,18,42,10,16,116,111,71,101,110,68,109,103,82,99,100,82,97,116,105,111,24,16,32,1,40,5,82,16,116,111,71,101,110,68,109,103,82,99,100,82,97,116,105,111,18,34,10,12,116,111,68,109,103,80,108,117,115,82,99,100,24,17,32,1,40,5,82,12,116,111,68,109,103,80,108,117,115,82,99,100,18,16,10,3,68,109,103,24,18,32,1,40,5,82,3,68,109,103,18,26,10,8,67,114,105,116,82,97,116,101,24,19,32,1,40,5,82,8,67,114,105,116,82,97,116,101,18,14,10,2,72,112,24,20,32,1,40,5,82,2,72,112,34,91,10,30,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,66,97,116,116,108,101,84,104,114,101,115,104,111,108,100,18,57,10,4,108,105,115,116,24,1,32,3,40,11,50,37,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,66,97,116,116,108,101,84,104,114,101,115,104,111,108,100,82,4,108,105,115,116,34,107,10,21,83,116,97,114,84,111,119,101,114,66,111,111,107,69,110,116,114,97,110,99,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,73,99,111,110,24,2,32,1,40,9,82,4,73,99,111,110,18,26,10,8,80,111,115,105,116,105,111,110,24,3,32,1,40,9,82,8,80,111,115,105,116,105,111,110,18,18,10,4,68,101,115,99,24,4,32,1,40,9,82,4,68,101,115,99,34,85,10,27,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,66,111,111,107,69,110,116,114,97,110,99,101,18,54,10,4,108,105,115,116,24,1,32,3,40,11,50,34,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,66,111,111,107,69,110,116,114,97,110,99,101,82,4,108,105,115,116,34,228,1,10,24,83,116,97,114,84,111,119,101,114,66,111,111,107,69,118,101,110,116,82,101,119,97,114,100,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,20,10,5,83,116,111,114,121,24,3,32,1,40,9,82,5,83,116,111,114,121,18,20,10,5,78,80,67,73,100,24,4,32,1,40,5,82,5,78,80,67,73,100,18,18,10,4,83,111,114,116,24,5,32,1,40,5,82,4,83,111,114,116,18,22,10,6,83,111,117,114,99,101,24,6,32,1,40,9,82,6,83,111,117,114,99,101,18,22,10,6,73,116,101,109,73,100,24,7,32,1,40,5,82,6,73,116,101,109,73,100,18,24,10,7,73,116,101,109,81,116,121,24,8,32,1,40,5,82,7,73,116,101,109,81,116,121,18,26,10,8,73,115,66,97,110,110,101,100,24,9,32,1,40,8,82,8,73,115,66,97,110,110,101,100,34,91,10,30,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,66,111,111,107,69,118,101,110,116,82,101,119,97,114,100,18,57,10,4,108,105,115,116,24,1,32,3,40,11,50,37,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,66,111,111,107,69,118,101,110,116,82,101,119,97,114,100,82,4,108,105,115,116,34,201,2,10,21,83,116,97,114,84,111,119,101,114,66,111,111,107,70,97,116,101,67,97,114,100,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,26,10,8,66,117,110,100,108,101,73,100,24,2,32,1,40,5,82,8,66,117,110,100,108,101,73,100,18,18,10,4,73,99,111,110,24,3,32,1,40,9,82,4,73,99,111,110,18,22,10,6,83,111,114,116,73,100,24,4,32,1,40,5,82,6,83,111,114,116,73,100,18,22,10,6,83,111,117,114,99,101,24,5,32,1,40,9,82,6,83,111,117,114,99,101,18,28,10,9,85,110,108,111,99,107,84,105,112,24,6,32,1,40,9,82,9,85,110,108,111,99,107,84,105,112,18,30,10,10,87,111,114,108,100,67,108,97,115,115,24,7,32,1,40,5,82,10,87,111,114,108,100,67,108,97,115,115,18,32,10,11,83,116,97,114,84,111,119,101,114,73,100,24,8,32,1,40,5,82,11,83,116,97,114,84,111,119,101,114,73,100,18,34,10,12,67,111,108,108,101,99,116,67,97,114,100,115,24,9,32,3,40,5,82,12,67,111,108,108,101,99,116,67,97,114,100,115,18,32,10,11,85,110,108,111,99,107,67,97,114,100,115,24,10,32,3,40,5,82,11,85,110,108,111,99,107,67,97,114,100,115,18,26,10,8,73,115,66,97,110,110,101,100,24,11,32,1,40,8,82,8,73,115,66,97,110,110,101,100,34,85,10,27,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,66,111,111,107,70,97,116,101,67,97,114,100,18,54,10,4,108,105,115,116,24,1,32,3,40,11,50,34,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,66,111,111,107,70,97,116,101,67,97,114,100,82,4,108,105,115,116,34,227,2,10,27,83,116,97,114,84,111,119,101,114,66,111,111,107,70,97,116,101,67,97,114,100,66,117,110,100,108,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,28,10,9,83,104,111,114,116,78,97,109,101,24,3,32,1,40,9,82,9,83,104,111,114,116,78,97,109,101,18,22,10,6,83,111,114,116,73,100,24,4,32,1,40,5,82,6,83,111,114,116,73,100,18,16,10,3,84,97,103,24,5,32,1,40,9,82,3,84,97,103,18,28,10,9,83,109,97,108,108,73,99,111,110,24,6,32,1,40,9,82,9,83,109,97,108,108,73,99,111,110,18,30,10,10,66,117,110,100,108,101,73,99,111,110,24,7,32,1,40,9,82,10,66,117,110,100,108,101,73,99,111,110,18,18,10,4,73,99,111,110,24,8,32,1,40,9,82,4,73,99,111,110,18,30,10,10,87,111,114,108,100,67,108,97,115,115,24,9,32,1,40,5,82,10,87,111,114,108,100,67,108,97,115,115,18,32,10,11,83,116,97,114,84,111,119,101,114,73,100,24,10,32,1,40,5,82,11,83,116,97,114,84,111,119,101,114,73,100,18,34,10,12,67,111,108,108,101,99,116,67,97,114,100,115,24,11,32,3,40,5,82,12,67,111,108,108,101,99,116,67,97,114,100,115,18,32,10,11,85,110,108,111,99,107,67,97,114,100,115,24,12,32,3,40,5,82,11,85,110,108,111,99,107,67,97,114,100,115,34,97,10,33,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,66,111,111,107,70,97,116,101,67,97,114,100,66,117,110,100,108,101,18,60,10,4,108,105,115,116,24,1,32,3,40,11,50,40,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,66,111,111,107,70,97,116,101,67,97,114,100,66,117,110,100,108,101,82,4,108,105,115,116,34,152,2,10,26,83,116,97,114,84,111,119,101,114,66,111,111,107,70,97,116,101,67,97,114,100,81,117,101,115,116,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,26,10,8,66,117,110,100,108,101,73,100,24,2,32,1,40,5,82,8,66,117,110,100,108,101,73,100,18,18,10,4,68,101,115,99,24,3,32,1,40,9,82,4,68,101,115,99,18,30,10,10,70,105,110,105,115,104,84,121,112,101,24,4,32,1,40,5,82,10,70,105,110,105,115,104,84,121,112,101,18,34,10,12,70,105,110,105,115,104,80,97,114,97,109,115,24,5,32,1,40,9,82,12,70,105,110,105,115,104,80,97,114,97,109,115,18,18,10,4,84,105,100,49,24,6,32,1,40,5,82,4,84,105,100,49,18,18,10,4,81,116,121,49,24,7,32,1,40,5,82,4,81,116,121,49,18,18,10,4,84,105,100,50,24,8,32,1,40,5,82,4,84,105,100,50,18,18,10,4,81,116,121,50,24,9,32,1,40,5,82,4,81,116,121,50,18,18,10,4,84,105,100,51,24,10,32,1,40,5,82,4,84,105,100,51,18,18,10,4,81,116,121,51,24,11,32,1,40,5,82,4,81,116,121,51,34,95,10,32,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,66,111,111,107,70,97,116,101,67,97,114,100,81,117,101,115,116,18,59,10,4,108,105,115,116,24,1,32,3,40,11,50,39,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,66,111,111,107,70,97,116,101,67,97,114,100,81,117,101,115,116,82,4,108,105,115,116,34,204,1,10,28,83,116,97,114,84,111,119,101,114,66,111,111,107,80,111,116,101,110,116,105,97,108,82,101,119,97,114,100,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,22,10,6,67,104,97,114,73,100,24,2,32,1,40,5,82,6,67,104,97,114,73,100,18,18,10,4,68,101,115,99,24,3,32,1,40,9,82,4,68,101,115,99,18,18,10,4,83,111,114,116,24,4,32,1,40,5,82,4,83,111,114,116,18,18,10,4,67,111,110,100,24,5,32,1,40,5,82,4,67,111,110,100,18,22,10,6,80,97,114,97,109,115,24,6,32,1,40,9,82,6,80,97,114,97,109,115,18,22,10,6,73,116,101,109,73,100,24,7,32,1,40,5,82,6,73,116,101,109,73,100,18,24,10,7,73,116,101,109,81,116,121,24,8,32,1,40,5,82,7,73,116,101,109,81,116,121,34,99,10,34,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,66,111,111,107,80,111,116,101,110,116,105,97,108,82,101,119,97,114,100,18,61,10,4,108,105,115,116,24,1,32,3,40,11,50,41,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,66,111,111,107,80,111,116,101,110,116,105,97,108,82,101,119,97,114,100,82,4,108,105,115,116,34,88,10,18,83,116,97,114,84,111,119,101,114,66,117,105,108,100,82,97,110,107,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,26,10,8,77,105,110,71,114,97,100,101,24,2,32,1,40,5,82,8,77,105,110,71,114,97,100,101,18,22,10,6,82,97,114,105,116,121,24,3,32,1,40,5,82,6,82,97,114,105,116,121,34,79,10,24,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,66,117,105,108,100,82,97,110,107,18,51,10,4,108,105,115,116,24,1,32,3,40,11,50,31,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,66,117,105,108,100,82,97,110,107,82,4,108,105,115,116,34,176,1,10,20,83,116,97,114,84,111,119,101,114,67,111,109,98,97,116,69,118,101,110,116,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,18,10,4,84,121,112,101,24,3,32,1,40,5,82,4,84,121,112,101,18,22,10,6,80,97,114,97,109,115,24,4,32,1,40,9,82,6,80,97,114,97,109,115,18,22,10,6,65,99,116,105,118,101,24,5,32,1,40,5,82,6,65,99,116,105,118,101,18,20,10,5,83,116,97,114,116,24,6,32,1,40,5,82,5,83,116,97,114,116,18,26,10,8,73,110,116,101,114,97,99,116,24,7,32,1,40,5,82,8,73,110,116,101,114,97,99,116,34,83,10,26,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,67,111,109,98,97,116,69,118,101,110,116,18,53,10,4,108,105,115,116,24,1,32,3,40,11,50,33,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,67,111,109,98,97,116,69,118,101,110,116,82,4,108,105,115,116,34,62,10,14,83,116,97,114,84,111,119,101,114,67,111,109,98,111,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,28,10,9,66,97,116,116,108,101,76,118,115,24,2,32,3,40,5,82,9,66,97,116,116,108,101,76,118,115,34,71,10,20,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,67,111,109,98,111,18,47,10,4,108,105,115,116,24,1,32,3,40,11,50,27,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,67,111,109,98,111,82,4,108,105,115,116,34,137,1,10,17,83,116,97,114,84,111,119,101,114,68,114,111,112,73,116,101,109,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,84,121,112,101,24,2,32,1,40,5,82,4,84,121,112,101,18,38,10,14,68,114,111,112,83,112,108,105,116,82,97,110,103,101,24,3,32,3,40,5,82,14,68,114,111,112,83,112,108,105,116,82,97,110,103,101,18,18,10,4,82,97,116,101,24,4,32,3,40,5,82,4,82,97,116,101,18,20,10,5,77,111,100,101,108,24,5,32,1,40,9,82,5,77,111,100,101,108,34,77,10,23,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,68,114,111,112,73,116,101,109,18,50,10,4,108,105,115,116,24,1,32,3,40,11,50,30,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,68,114,111,112,73,116,101,109,82,4,108,105,115,116,34,193,1,10,17,83,116,97,114,84,111,119,101,114,69,110,101,109,121,83,101,116,18,20,10,5,83,101,116,73,100,24,1,32,1,40,5,82,5,83,101,116,73,100,18,24,10,7,87,97,118,101,78,117,109,24,2,32,1,40,5,82,7,87,97,118,101,78,117,109,18,22,10,6,77,97,120,78,117,109,24,3,32,1,40,5,82,6,77,97,120,78,117,109,18,36,10,13,77,97,120,78,117,109,80,101,114,87,97,118,101,24,4,32,1,40,5,82,13,77,97,120,78,117,109,80,101,114,87,97,118,101,18,28,10,9,77,111,110,115,116,101,114,73,100,24,5,32,1,40,5,82,9,77,111,110,115,116,101,114,73,100,18,32,10,11,82,101,102,73,110,116,101,114,118,97,108,24,6,32,1,40,2,82,11,82,101,102,73,110,116,101,114,118,97,108,34,77,10,23,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,69,110,101,109,121,83,101,116,18,50,10,4,108,105,115,116,24,1,32,3,40,11,50,30,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,69,110,101,109,121,83,101,116,82,4,108,105,115,116,34,252,1,10,14,83,116,97,114,84,111,119,101,114,69,118,101,110,116,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,24,10,7,71,114,111,117,112,73,100,24,2,32,1,40,5,82,7,71,114,111,117,112,73,100,18,38,10,14,79,112,116,105,111,110,115,82,117,108,101,115,73,100,24,3,32,1,40,5,82,14,79,112,116,105,111,110,115,82,117,108,101,115,73,100,18,18,10,4,68,101,115,99,24,4,32,1,40,9,82,4,68,101,115,99,18,28,10,9,69,118,101,110,116,84,121,112,101,24,5,32,1,40,5,82,9,69,118,101,110,116,84,121,112,101,18,40,10,15,71,117,97,114,97,110,116,101,101,100,77,97,112,73,100,24,6,32,1,40,5,82,15,71,117,97,114,97,110,116,101,101,100,77,97,112,73,100,18,16,10,3,78,112,99,24,7,32,3,40,5,82,3,78,112,99,18,42,10,16,82,101,108,97,116,101,100,67,104,97,114,97,99,116,101,114,24,8,32,1,40,5,82,16,82,101,108,97,116,101,100,67,104,97,114,97,99,116,101,114,34,71,10,20,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,69,118,101,110,116,18,47,10,4,108,105,115,116,24,1,32,3,40,11,50,27,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,69,118,101,110,116,82,4,108,105,115,116,34,136,1,10,20,83,116,97,114,84,111,119,101,114,69,118,101,110,116,65,99,116,105,111,110,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,24,10,7,69,118,101,110,116,73,100,24,2,32,1,40,5,82,7,69,118,101,110,116,73,100,18,28,10,9,84,114,105,103,86,111,105,99,101,24,3,32,1,40,9,82,9,84,114,105,103,86,111,105,99,101,18,18,10,4,68,101,115,99,24,4,32,1,40,9,82,4,68,101,115,99,18,20,10,5,71,114,111,117,112,24,5,32,1,40,5,82,5,71,114,111,117,112,34,83,10,26,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,69,118,101,110,116,65,99,116,105,111,110,18,53,10,4,108,105,115,116,24,1,32,3,40,11,50,33,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,69,118,101,110,116,65,99,116,105,111,110,82,4,108,105,115,116,34,114,10,26,83,116,97,114,84,111,119,101,114,69,118,101,110,116,79,112,116,105,111,110,65,99,116,105,111,110,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,26,10,8,79,112,116,105,111,110,73,100,24,2,32,1,40,5,82,8,79,112,116,105,111,110,73,100,18,18,10,4,68,101,115,99,24,3,32,1,40,9,82,4,68,101,115,99,18,20,10,5,71,114,111,117,112,24,4,32,1,40,5,82,5,71,114,111,117,112,34,95,10,32,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,69,118,101,110,116,79,112,116,105,111,110,65,99,116,105,111,110,18,59,10,4,108,105,115,116,24,1,32,3,40,11,50,39,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,69,118,101,110,116,79,112,116,105,111,110,65,99,116,105,111,110,82,4,108,105,115,116,34,190,2,10,14,83,116,97,114,84,111,119,101,114,70,108,111,111,114,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,46,10,18,67,111,109,109,111,110,71,97,109,101,112,108,97,121,84,121,112,101,24,2,32,1,40,5,82,18,67,111,109,109,111,110,71,97,109,101,112,108,97,121,84,121,112,101,18,42,10,16,67,111,109,109,111,110,77,111,110,115,116,101,114,83,101,116,24,3,32,1,40,9,82,16,67,111,109,109,111,110,77,111,110,115,116,101,114,83,101,116,18,28,10,9,76,105,109,105,116,84,105,109,101,24,4,32,1,40,5,82,9,76,105,109,105,116,84,105,109,101,18,44,10,17,68,114,111,112,79,98,106,101,99,116,71,114,111,117,112,73,100,24,5,32,1,40,5,82,17,68,114,111,112,79,98,106,101,99,116,71,114,111,117,112,73,100,18,38,10,14,68,114,111,112,79,98,106,101,99,116,82,97,116,101,24,6,32,1,40,5,82,14,68,114,111,112,79,98,106,101,99,116,82,97,116,101,18,30,10,10,68,114,111,112,77,97,120,78,117,109,24,7,32,1,40,5,82,10,68,114,111,112,77,97,120,78,117,109,18,44,10,17,77,111,110,115,116,101,114,83,117,114,112,108,117,115,78,117,109,24,8,32,1,40,5,82,17,77,111,110,115,116,101,114,83,117,114,112,108,117,115,78,117,109,34,71,10,20,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,70,108,111,111,114,18,47,10,4,108,105,115,116,24,1,32,3,40,11,50,27,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,70,108,111,111,114,82,4,108,105,115,116,34,225,1,10,19,83,116,97,114,84,111,119,101,114,70,108,111,111,114,65,119,97,114,100,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,32,10,11,82,111,103,117,101,108,105,107,101,73,100,24,2,32,1,40,5,82,11,82,111,103,117,101,108,105,107,101,73,100,18,32,10,11,67,111,109,98,97,116,70,108,111,111,114,24,3,32,1,40,5,82,11,67,111,109,98,97,116,70,108,111,111,114,18,58,10,24,73,110,116,101,114,105,111,114,67,117,114,114,101,110,99,121,81,117,97,110,116,105,116,121,24,4,32,1,40,5,82,24,73,110,116,101,114,105,111,114,67,117,114,114,101,110,99,121,81,117,97,110,116,105,116,121,18,30,10,10,78,101,101,100,69,110,101,114,103,121,24,5,32,1,40,5,82,10,78,101,101,100,69,110,101,114,103,121,18,26,10,8,65,102,102,105,110,105,116,121,24,6,32,1,40,5,82,8,65,102,102,105,110,105,116,121,34,81,10,25,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,70,108,111,111,114,65,119,97,114,100,18,52,10,4,108,105,115,116,24,1,32,3,40,11,50,32,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,70,108,111,111,114,65,119,97,114,100,82,4,108,105,115,116,34,143,2,10,17,83,116,97,114,84,111,119,101,114,70,108,111,111,114,69,120,112,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,32,10,11,83,116,97,114,84,111,119,101,114,73,100,24,2,32,1,40,5,82,11,83,116,97,114,84,111,119,101,114,73,100,18,20,10,5,83,116,97,103,101,24,3,32,1,40,5,82,5,83,116,97,103,101,18,28,10,9,78,111,114,109,97,108,69,120,112,24,4,32,1,40,5,82,9,78,111,114,109,97,108,69,120,112,18,26,10,8,69,108,105,116,101,69,120,112,24,5,32,1,40,5,82,8,69,108,105,116,101,69,120,112,18,24,10,7,66,111,115,115,69,120,112,24,6,32,1,40,5,82,7,66,111,115,115,69,120,112,18,34,10,12,70,105,110,97,108,66,111,115,115,69,120,112,24,7,32,1,40,5,82,12,70,105,110,97,108,66,111,115,115,69,120,112,18,28,10,9,68,97,110,103,101,114,69,120,112,24,8,32,1,40,5,82,9,68,97,110,103,101,114,69,120,112,18,28,10,9,72,111,114,114,111,114,69,120,112,24,9,32,1,40,5,82,9,72,111,114,114,111,114,69,120,112,34,77,10,23,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,70,108,111,111,114,69,120,112,18,50,10,4,108,105,115,116,24,1,32,3,40,11,50,30,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,70,108,111,111,114,69,120,112,82,4,108,105,115,116,34,249,2,10,17,83,116,97,114,84,111,119,101,114,70,108,111,111,114,83,101,116,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,28,10,9,66,97,116,116,108,101,76,118,115,24,2,32,1,40,5,82,9,66,97,116,116,108,101,76,118,115,18,20,10,5,83,116,97,103,101,24,3,32,3,40,5,82,5,83,116,97,103,101,18,26,10,8,82,111,111,109,84,121,112,101,24,4,32,1,40,5,82,8,82,111,111,109,84,121,112,101,18,20,10,5,77,97,112,73,68,24,5,32,3,40,5,82,5,77,97,112,73,68,18,24,10,7,70,108,111,111,114,73,68,24,6,32,3,40,5,82,7,70,108,111,111,114,73,68,18,28,10,9,77,111,110,115,116,101,114,76,118,24,7,32,1,40,5,82,9,77,111,110,115,116,101,114,76,118,18,34,10,12,84,104,101,109,101,83,107,105,108,108,76,118,24,8,32,1,40,5,82,12,84,104,101,109,101,83,107,105,108,108,76,118,18,22,10,6,87,101,105,103,104,116,24,9,32,1,40,5,82,6,87,101,105,103,104,116,18,30,10,10,77,117,116,101,120,71,114,111,117,112,24,10,32,3,40,5,82,10,77,117,116,101,120,71,114,111,117,112,18,36,10,13,83,112,101,99,105,97,108,77,111,100,101,73,100,24,11,32,1,40,5,82,13,83,112,101,99,105,97,108,77,111,100,101,73,100,18,52,10,21,77,111,110,115,116,101,114,71,114,111,117,112,66,108,97,99,107,108,105,115,116,24,12,32,3,40,5,82,21,77,111,110,115,116,101,114,71,114,111,117,112,66,108,97,99,107,108,105,115,116,34,77,10,23,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,70,108,111,111,114,83,101,116,18,50,10,4,108,105,115,116,24,1,32,3,40,11,50,30,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,70,108,111,111,114,83,101,116,82,4,108,105,115,116,34,178,1,10,14,83,116,97,114,84,111,119,101,114,71,114,111,117,112,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,16,10,3,69,69,84,24,3,32,3,40,5,82,3,69,69,84,18,24,10,7,69,112,105,115,111,100,101,24,4,32,1,40,9,82,7,69,112,105,115,111,100,101,18,18,10,4,83,111,114,116,24,5,32,1,40,5,82,4,83,111,114,116,18,28,10,9,71,114,111,117,112,84,121,112,101,24,6,32,1,40,5,82,9,71,114,111,117,112,84,121,112,101,18,30,10,10,71,114,111,117,112,84,104,101,109,101,24,7,32,1,40,5,82,10,71,114,111,117,112,84,104,101,109,101,34,71,10,20,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,71,114,111,117,112,18,47,10,4,108,105,115,116,24,1,32,3,40,11,50,27,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,71,114,111,117,112,82,4,108,105,115,116,34,118,10,20,83,116,97,114,84,111,119,101,114,71,114,111,119,116,104,71,114,111,117,112,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,26,10,8,80,114,101,71,114,111,117,112,24,2,32,1,40,5,82,8,80,114,101,71,114,111,117,112,18,30,10,10,87,111,114,108,100,67,108,97,115,115,24,3,32,1,40,5,82,10,87,111,114,108,100,67,108,97,115,115,18,18,10,4,78,97,109,101,24,4,32,1,40,9,82,4,78,97,109,101,34,83,10,26,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,71,114,111,119,116,104,71,114,111,117,112,18,53,10,4,108,105,115,116,24,1,32,3,40,11,50,33,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,71,114,111,119,116,104,71,114,111,117,112,82,4,108,105,115,116,34,175,4,10,19,83,116,97,114,84,111,119,101,114,71,114,111,119,116,104,78,111,100,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,22,10,6,78,111,100,101,73,100,24,2,32,1,40,5,82,6,78,111,100,101,73,100,18,20,10,5,71,114,111,117,112,24,3,32,1,40,5,82,5,71,114,111,117,112,18,18,10,4,78,97,109,101,24,4,32,1,40,9,82,4,78,97,109,101,18,26,10,8,73,115,83,101,114,118,101,114,24,5,32,1,40,8,82,8,73,115,83,101,114,118,101,114,18,26,10,8,73,115,67,108,105,101,110,116,24,6,32,1,40,8,82,8,73,115,67,108,105,101,110,116,18,18,10,4,84,121,112,101,24,7,32,1,40,5,82,4,84,121,112,101,18,20,10,5,67,111,108,111,114,24,8,32,1,40,5,82,5,67,111,108,111,114,18,26,10,8,80,114,101,78,111,100,101,115,24,9,32,3,40,5,82,8,80,114,101,78,111,100,101,115,18,34,10,12,69,102,102,101,99,116,67,108,105,101,110,116,24,10,32,1,40,5,82,12,69,102,102,101,99,116,67,108,105,101,110,116,18,34,10,12,67,108,105,101,110,116,80,97,114,97,109,115,24,11,32,1,40,9,82,12,67,108,105,101,110,116,80,97,114,97,109,115,18,26,10,8,80,114,105,111,114,105,116,121,24,12,32,1,40,5,82,8,80,114,105,111,114,105,116,121,18,18,10,4,73,99,111,110,24,13,32,1,40,9,82,4,73,99,111,110,18,26,10,8,80,111,115,105,116,105,111,110,24,14,32,3,40,5,82,8,80,111,115,105,116,105,111,110,18,18,10,4,68,101,115,99,24,15,32,1,40,9,82,4,68,101,115,99,18,24,10,7,73,116,101,109,73,100,49,24,16,32,1,40,5,82,7,73,116,101,109,73,100,49,18,26,10,8,73,116,101,109,81,116,121,49,24,17,32,1,40,5,82,8,73,116,101,109,81,116,121,49,18,24,10,7,73,116,101,109,73,100,50,24,18,32,1,40,5,82,7,73,116,101,109,73,100,50,18,26,10,8,73,116,101,109,81,116,121,50,24,19,32,1,40,5,82,8,73,116,101,109,81,116,121,50,18,24,10,7,73,116,101,109,73,100,51,24,20,32,1,40,5,82,7,73,116,101,109,73,100,51,18,26,10,8,73,116,101,109,81,116,121,51,24,21,32,1,40,5,82,8,73,116,101,109,81,116,121,51,34,81,10,25,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,71,114,111,119,116,104,78,111,100,101,18,52,10,4,108,105,115,116,24,1,32,3,40,11,50,32,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,71,114,111,119,116,104,78,111,100,101,82,4,108,105,115,116,34,247,1,10,21,83,116,97,114,84,111,119,101,114,72,97,114,109,111,110,121,83,107,105,108,108,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,22,10,6,82,97,114,105,116,121,24,2,32,1,40,5,82,6,82,97,114,105,116,121,18,18,10,4,78,97,109,101,24,3,32,1,40,9,82,4,78,97,109,101,18,16,10,3,84,97,103,24,4,32,1,40,5,82,3,84,97,103,18,20,10,5,83,99,111,114,101,24,5,32,1,40,5,82,5,83,99,111,114,101,18,26,10,8,69,102,102,101,99,116,73,100,24,6,32,3,40,5,82,8,69,102,102,101,99,116,73,100,18,18,10,4,68,101,115,99,24,7,32,1,40,9,82,4,68,101,115,99,18,18,10,4,73,99,111,110,24,8,32,1,40,9,82,4,73,99,111,110,18,22,10,6,73,99,111,110,66,103,24,9,32,1,40,9,82,6,73,99,111,110,66,103,18,30,10,10,73,99,111,110,67,111,114,110,101,114,24,10,32,1,40,9,82,10,73,99,111,110,67,111,114,110,101,114,34,85,10,27,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,72,97,114,109,111,110,121,83,107,105,108,108,18,54,10,4,108,105,115,116,24,1,32,3,40,11,50,34,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,72,97,114,109,111,110,121,83,107,105,108,108,82,4,108,105,115,116,34,152,1,10,20,83,116,97,114,84,111,119,101,114,76,105,109,105,116,82,101,119,97,114,100,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,20,10,5,83,116,97,103,101,24,2,32,1,40,5,82,5,83,116,97,103,101,18,32,10,11,83,116,97,114,84,111,119,101,114,73,100,24,3,32,1,40,5,82,11,83,116,97,114,84,111,119,101,114,73,100,18,26,10,8,82,111,111,109,84,121,112,101,24,4,32,1,40,5,82,8,82,111,111,109,84,121,112,101,18,28,10,9,84,105,109,101,76,105,109,105,116,24,5,32,3,40,5,82,9,84,105,109,101,76,105,109,105,116,34,83,10,26,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,76,105,109,105,116,82,101,119,97,114,100,18,53,10,4,108,105,115,116,24,1,32,3,40,11,50,33,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,76,105,109,105,116,82,101,119,97,114,100,82,4,108,105,115,116,34,178,2,10,12,83,116,97,114,84,111,119,101,114,77,97,112,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,26,10,8,83,99,101,110,101,82,101,115,24,2,32,1,40,9,82,8,83,99,101,110,101,82,101,115,18,30,10,10,66,71,83,99,101,110,101,82,101,115,24,3,32,1,40,9,82,10,66,71,83,99,101,110,101,82,101,115,18,20,10,5,84,104,101,109,101,24,4,32,1,40,5,82,5,84,104,101,109,101,18,28,10,9,80,114,101,102,97,98,78,117,109,24,5,32,3,40,5,82,9,80,114,101,102,97,98,78,117,109,18,16,10,3,77,105,114,24,6,32,1,40,8,82,3,77,105,114,18,30,10,10,79,117,116,80,111,114,116,78,117,109,24,7,32,1,40,5,82,10,79,117,116,80,111,114,116,78,117,109,18,32,10,11,79,117,116,80,111,114,116,72,105,110,116,24,8,32,1,40,8,82,11,79,117,116,80,111,114,116,72,105,110,116,18,22,10,6,66,71,77,82,101,115,24,9,32,1,40,9,82,6,66,71,77,82,101,115,18,54,10,22,67,111,109,112,108,101,116,101,83,111,117,110,100,69,102,102,101,99,116,82,101,115,24,10,32,1,40,9,82,22,67,111,109,112,108,101,116,101,83,111,117,110,100,69,102,102,101,99,116,82,101,115,34,67,10,18,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,77,97,112,18,45,10,4,108,105,115,116,24,1,32,3,40,11,50,25,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,77,97,112,82,4,108,105,115,116,34,84,10,26,83,116,97,114,84,111,119,101,114,77,97,112,77,97,120,78,117,109,80,101,114,83,116,97,103,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,38,10,14,77,97,120,78,117,109,80,101,114,83,116,97,103,101,24,2,32,1,40,5,82,14,77,97,120,78,117,109,80,101,114,83,116,97,103,101,34,95,10,32,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,77,97,112,77,97,120,78,117,109,80,101,114,83,116,97,103,101,18,59,10,4,108,105,115,116,24,1,32,3,40,11,50,39,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,77,97,112,77,97,120,78,117,109,80,101,114,83,116,97,103,101,82,4,108,105,115,116,34,171,1,10,25,83,116,97,114,84,111,119,101,114,77,111,110,115,116,101,114,66,111,114,110,71,114,111,117,112,18,24,10,7,71,114,111,117,112,73,100,24,1,32,1,40,5,82,7,71,114,111,117,112,73,100,18,28,10,9,77,111,110,115,116,101,114,73,100,24,2,32,1,40,5,82,9,77,111,110,115,116,101,114,73,100,18,30,10,10,68,105,102,102,105,99,117,108,116,121,24,3,32,1,40,5,82,10,68,105,102,102,105,99,117,108,116,121,18,26,10,8,77,105,110,70,108,111,111,114,24,4,32,1,40,5,82,8,77,105,110,70,108,111,111,114,18,26,10,8,77,97,120,70,108,111,111,114,24,5,32,1,40,5,82,8,77,97,120,70,108,111,111,114,34,93,10,31,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,77,111,110,115,116,101,114,66,111,114,110,71,114,111,117,112,18,58,10,4,108,105,115,116,24,1,32,3,40,11,50,38,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,77,111,110,115,116,101,114,66,111,114,110,71,114,111,117,112,82,4,108,105,115,116,34,206,2,10,22,83,116,97,114,84,111,119,101,114,77,111,110,115,116,101,114,83,112,65,116,116,114,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,40,10,15,77,111,110,115,116,101,114,80,111,115,105,116,105,111,110,24,2,32,1,40,5,82,15,77,111,110,115,116,101,114,80,111,115,105,116,105,111,110,18,32,10,11,84,104,101,109,101,83,107,105,108,108,115,24,3,32,1,40,9,82,11,84,104,101,109,101,83,107,105,108,108,115,18,52,10,21,67,111,110,116,105,110,117,111,117,115,75,105,108,108,105,110,103,84,105,109,101,24,4,32,1,40,5,82,21,67,111,110,116,105,110,117,111,117,115,75,105,108,108,105,110,103,84,105,109,101,18,48,10,19,82,111,117,103,101,77,111,110,101,121,68,114,111,112,82,97,110,103,101,24,5,32,3,40,5,82,19,82,111,117,103,101,77,111,110,101,121,68,114,111,112,82,97,110,103,101,18,44,10,17,82,111,117,103,101,69,120,112,68,114,111,112,82,97,110,103,101,24,6,32,3,40,5,82,17,82,111,117,103,101,69,120,112,68,114,111,112,82,97,110,103,101,18,32,10,11,82,101,102,68,105,115,116,97,110,99,101,24,7,32,3,40,5,82,11,82,101,102,68,105,115,116,97,110,99,101,18,32,10,11,82,101,102,73,110,116,101,114,118,97,108,24,8,32,1,40,5,82,11,82,101,102,73,110,116,101,114,118,97,108,34,87,10,28,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,77,111,110,115,116,101,114,83,112,65,116,116,114,18,55,10,4,108,105,115,116,24,1,32,3,40,11,50,35,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,77,111,110,115,116,101,114,83,112,65,116,116,114,82,4,108,105,115,116,34,208,2,10,14,83,116,97,114,84,111,119,101,114,81,117,101,115,116,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,20,10,5,84,105,116,108,101,24,2,32,1,40,9,82,5,84,105,116,108,101,18,22,10,6,74,117,109,112,84,111,24,3,32,1,40,5,82,6,74,117,109,112,84,111,18,38,10,14,84,111,119,101,114,81,117,101,115,116,84,121,112,101,24,4,32,1,40,5,82,14,84,111,119,101,114,81,117,101,115,116,84,121,112,101,18,42,10,16,80,114,101,84,111,119,101,114,81,117,101,115,116,73,100,115,24,5,32,3,40,5,82,16,80,114,101,84,111,119,101,114,81,117,101,115,116,73,100,115,18,24,10,7,82,101,119,97,114,100,49,24,6,32,1,40,5,82,7,82,101,119,97,114,100,49,18,30,10,10,82,101,119,97,114,100,81,116,121,49,24,7,32,1,40,5,82,10,82,101,119,97,114,100,81,116,121,49,18,24,10,7,82,101,119,97,114,100,50,24,8,32,1,40,5,82,7,82,101,119,97,114,100,50,18,30,10,10,82,101,119,97,114,100,81,116,121,50,24,9,32,1,40,5,82,10,82,101,119,97,114,100,81,116,121,50,18,24,10,7,82,101,119,97,114,100,51,24,10,32,1,40,5,82,7,82,101,119,97,114,100,51,18,30,10,10,82,101,119,97,114,100,81,116,121,51,24,11,32,1,40,5,82,10,82,101,119,97,114,100,81,116,121,51,34,71,10,20,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,81,117,101,115,116,18,47,10,4,108,105,115,116,24,1,32,3,40,11,50,27,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,81,117,101,115,116,82,4,108,105,115,116,34,124,10,18,83,116,97,114,84,111,119,101,114,82,97,110,107,65,102,102,105,120,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,18,10,4,68,101,115,99,24,3,32,1,40,9,82,4,68,101,115,99,18,22,10,6,82,97,114,105,116,121,24,4,32,1,40,5,82,6,82,97,114,105,116,121,18,22,10,6,69,102,102,101,99,116,24,5,32,3,40,5,82,6,69,102,102,101,99,116,34,79,10,24,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,82,97,110,107,65,102,102,105,120,18,51,10,4,108,105,115,116,24,1,32,3,40,11,50,31,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,82,97,110,107,65,102,102,105,120,82,4,108,105,115,116,34,219,1,10,19,83,116,97,114,84,111,119,101,114,82,97,110,107,82,101,119,97,114,100,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,28,10,9,82,97,110,107,76,111,119,101,114,24,2,32,1,40,5,82,9,82,97,110,107,76,111,119,101,114,18,36,10,13,65,119,97,114,100,73,116,101,109,84,105,100,49,24,3,32,1,40,5,82,13,65,119,97,114,100,73,116,101,109,84,105,100,49,18,36,10,13,65,119,97,114,100,73,116,101,109,78,117,109,49,24,4,32,1,40,5,82,13,65,119,97,114,100,73,116,101,109,78,117,109,49,18,36,10,13,65,119,97,114,100,73,116,101,109,84,105,100,50,24,5,32,1,40,5,82,13,65,119,97,114,100,73,116,101,109,84,105,100,50,18,36,10,13,65,119,97,114,100,73,116,101,109,78,117,109,50,24,6,32,1,40,5,82,13,65,119,97,114,100,73,116,101,109,78,117,109,50,34,81,10,25,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,82,97,110,107,82,101,119,97,114,100,18,52,10,4,108,105,115,116,24,1,32,3,40,11,50,32,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,82,97,110,107,82,101,119,97,114,100,82,4,108,105,115,116,34,118,10,18,83,116,97,114,84,111,119,101,114,82,97,110,107,83,99,111,114,101,18,30,10,10,68,105,102,102,105,99,117,108,116,121,24,1,32,1,40,5,82,10,68,105,102,102,105,99,117,108,116,121,18,28,10,9,66,97,115,101,83,99,111,114,101,24,2,32,1,40,5,82,9,66,97,115,101,83,99,111,114,101,18,34,10,12,77,97,120,105,109,117,109,83,99,111,114,101,24,3,32,1,40,5,82,12,77,97,120,105,109,117,109,83,99,111,114,101,34,79,10,24,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,82,97,110,107,83,99,111,114,101,18,51,10,4,108,105,115,116,24,1,32,3,40,11,50,31,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,82,97,110,107,83,99,111,114,101,82,4,108,105,115,116,34,205,2,10,19,83,116,97,114,84,111,119,101,114,82,97,110,107,83,101,97,115,111,110,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,24,10,7,71,114,111,117,112,73,100,24,2,32,1,40,5,82,7,71,114,111,117,112,73,100,18,26,10,8,79,112,101,110,84,105,109,101,24,3,32,1,40,9,82,8,79,112,101,110,84,105,109,101,18,24,10,7,69,110,100,84,105,109,101,24,4,32,1,40,9,82,7,69,110,100,84,105,109,101,18,22,10,6,65,102,102,105,120,49,24,5,32,1,40,5,82,6,65,102,102,105,120,49,18,28,10,9,65,102,102,105,120,65,100,100,49,24,6,32,3,40,5,82,9,65,102,102,105,120,65,100,100,49,18,22,10,6,65,102,102,105,120,50,24,7,32,1,40,5,82,6,65,102,102,105,120,50,18,28,10,9,65,102,102,105,120,65,100,100,50,24,8,32,3,40,5,82,9,65,102,102,105,120,65,100,100,50,18,22,10,6,65,102,102,105,120,51,24,9,32,1,40,5,82,6,65,102,102,105,120,51,18,28,10,9,65,102,102,105,120,65,100,100,51,24,10,32,3,40,5,82,9,65,102,102,105,120,65,100,100,51,18,22,10,6,65,102,102,105,120,52,24,11,32,1,40,5,82,6,65,102,102,105,120,52,18,28,10,9,65,102,102,105,120,65,100,100,52,24,12,32,3,40,5,82,9,65,102,102,105,120,65,100,100,52,34,81,10,25,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,82,97,110,107,83,101,97,115,111,110,18,52,10,4,108,105,115,116,24,1,32,3,40,11,50,32,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,82,97,110,107,83,101,97,115,111,110,82,4,108,105,115,116,34,134,1,10,20,83,116,97,114,84,111,119,101,114,83,99,101,110,101,80,114,101,102,97,98,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,28,10,9,67,111,110,102,105,103,82,101,115,24,2,32,1,40,9,82,9,67,111,110,102,105,103,82,101,115,18,26,10,8,66,105,97,110,81,117,97,110,24,3,32,1,40,9,82,8,66,105,97,110,81,117,97,110,18,36,10,13,71,97,109,101,112,108,97,121,84,121,112,101,115,24,4,32,3,40,5,82,13,71,97,109,101,112,108,97,121,84,121,112,101,115,34,83,10,26,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,83,99,101,110,101,80,114,101,102,97,98,18,53,10,4,108,105,115,116,24,1,32,3,40,11,50,33,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,83,99,101,110,101,80,114,101,102,97,98,82,4,108,105,115,116,34,69,10,23,83,116,97,114,84,111,119,101,114,83,104,111,112,71,111,111,100,115,71,114,111,117,112,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,26,10,8,83,104,111,119,73,116,101,109,24,2,32,1,40,5,82,8,83,104,111,119,73,116,101,109,34,89,10,29,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,83,104,111,112,71,111,111,100,115,71,114,111,117,112,18,56,10,4,108,105,115,116,24,1,32,3,40,11,50,36,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,83,104,111,112,71,111,111,100,115,71,114,111,117,112,82,4,108,105,115,116,34,127,10,23,83,116,97,114,84,111,119,101,114,83,112,101,99,105,102,105,99,67,111,109,98,97,116,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,18,10,4,68,101,115,99,24,3,32,1,40,9,82,4,68,101,115,99,18,18,10,4,84,121,112,101,24,4,32,1,40,5,82,4,84,121,112,101,18,24,10,7,69,118,101,110,116,73,100,24,5,32,1,40,5,82,7,69,118,101,110,116,73,100,34,89,10,29,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,83,112,101,99,105,102,105,99,67,111,109,98,97,116,18,56,10,4,108,105,115,116,24,1,32,3,40,11,50,36,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,83,112,101,99,105,102,105,99,67,111,109,98,97,116,82,4,108,105,115,116,34,215,1,10,15,83,116,97,114,84,111,119,101,114,83,112,77,111,100,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,40,10,15,76,105,109,105,116,84,105,109,101,87,101,105,103,104,116,24,2,32,1,40,8,82,15,76,105,109,105,116,84,105,109,101,87,101,105,103,104,116,18,44,10,17,76,105,109,105,116,75,105,108,108,101,100,87,101,105,103,104,116,24,3,32,1,40,8,82,17,76,105,109,105,116,75,105,108,108,101,100,87,101,105,103,104,116,18,34,10,12,71,111,98,108,105,110,87,101,105,103,104,116,24,4,32,1,40,8,82,12,71,111,98,108,105,110,87,101,105,103,104,116,18,56,10,23,67,111,110,116,105,110,117,111,117,115,75,105,108,108,105,110,103,87,101,105,103,104,116,24,5,32,1,40,8,82,23,67,111,110,116,105,110,117,111,117,115,75,105,108,108,105,110,103,87,101,105,103,104,116,34,73,10,21,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,83,112,77,111,100,101,18,48,10,4,108,105,115,116,24,1,32,3,40,11,50,28,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,83,112,77,111,100,101,82,4,108,105,115,116,34,162,2,10,14,83,116,97,114,84,111,119,101,114,83,116,97,103,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,20,10,5,83,116,97,103,101,24,2,32,1,40,5,82,5,83,116,97,103,101,18,24,10,7,71,114,111,117,112,73,100,24,3,32,1,40,5,82,7,71,114,111,117,112,73,100,18,20,10,5,70,108,111,111,114,24,4,32,1,40,5,82,5,70,108,111,111,114,18,26,10,8,82,111,111,109,84,121,112,101,24,5,32,1,40,5,82,8,82,111,111,109,84,121,112,101,18,58,10,24,73,110,116,101,114,105,111,114,67,117,114,114,101,110,99,121,81,117,97,110,116,105,116,121,24,6,32,1,40,5,82,24,73,110,116,101,114,105,111,114,67,117,114,114,101,110,99,121,81,117,97,110,116,105,116,121,18,40,10,15,71,117,97,114,97,110,116,101,101,100,77,97,112,73,100,24,7,32,1,40,5,82,15,71,117,97,114,97,110,116,101,101,100,77,97,112,73,100,18,56,10,23,71,117,97,114,97,110,116,101,101,100,77,111,110,115,116,101,114,80,108,97,110,73,100,24,8,32,1,40,5,82,23,71,117,97,114,97,110,116,101,101,100,77,111,110,115,116,101,114,80,108,97,110,73,100,34,71,10,20,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,83,116,97,103,101,18,47,10,4,108,105,115,116,24,1,32,3,40,11,50,27,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,83,116,97,103,101,82,4,108,105,115,116,34,141,1,10,13,83,116,97,114,84,111,119,101,114,84,97,108,107,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,24,10,7,67,111,110,116,101,110,116,24,3,32,1,40,9,82,7,67,111,110,116,101,110,116,18,20,10,5,67,111,108,111,114,24,4,32,1,40,9,82,5,67,111,108,111,114,18,18,10,4,70,97,99,101,24,5,32,1,40,9,82,4,70,97,99,101,18,20,10,5,86,111,105,99,101,24,6,32,1,40,9,82,5,86,111,105,99,101,34,69,10,19,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,84,97,108,107,18,46,10,4,108,105,115,116,24,1,32,3,40,11,50,26,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,84,97,108,107,82,4,108,105,115,116,34,108,10,16,83,116,97,114,84,111,119,101,114,84,101,97,109,69,120,112,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,24,10,7,71,114,111,117,112,73,100,24,2,32,1,40,5,82,7,71,114,111,117,112,73,100,18,20,10,5,76,101,118,101,108,24,3,32,1,40,5,82,5,76,101,118,101,108,18,24,10,7,78,101,101,100,69,120,112,24,4,32,1,40,5,82,7,78,101,101,100,69,120,112,34,75,10,22,116,97,98,108,101,95,83,116,97,114,84,111,119,101,114,84,101,97,109,69,120,112,18,49,10,4,108,105,115,116,24,1,32,3,40,11,50,29,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,97,114,84,111,119,101,114,84,101,97,109,69,120,112,82,4,108,105,115,116,34,197,4,10,5,83,116,111,114,121,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,24,10,7,83,116,111,114,121,73,100,24,2,32,1,40,9,82,7,83,116,111,114,121,73,100,18,24,10,7,67,111,109,109,101,110,116,24,3,32,1,40,9,82,7,67,111,109,109,101,110,116,18,24,10,7,67,104,97,112,116,101,114,24,4,32,1,40,5,82,7,67,104,97,112,116,101,114,18,20,10,5,73,110,100,101,120,24,5,32,1,40,9,82,5,73,110,100,101,120,18,20,10,5,84,105,116,108,101,24,6,32,1,40,9,82,5,84,105,116,108,101,18,18,10,4,68,101,115,99,24,7,32,1,40,9,82,4,68,101,115,99,18,30,10,10,84,114,105,97,108,66,117,105,108,100,24,8,32,1,40,5,82,10,84,114,105,97,108,66,117,105,108,100,18,32,10,11,67,111,110,100,105,116,105,111,110,73,100,24,9,32,1,40,9,82,11,67,111,110,100,105,116,105,111,110,73,100,18,26,10,8,73,115,66,114,97,110,99,104,24,10,32,1,40,8,82,8,73,115,66,114,97,110,99,104,18,26,10,8,73,115,66,97,116,116,108,101,24,11,32,1,40,8,82,8,73,115,66,97,116,116,108,101,18,22,10,6,82,101,119,97,114,100,24,12,32,1,40,5,82,6,82,101,119,97,114,100,18,36,10,13,82,101,119,97,114,100,68,105,115,112,108,97,121,24,13,32,1,40,9,82,13,82,101,119,97,114,100,68,105,115,112,108,97,121,18,36,10,13,80,97,114,101,110,116,83,116,111,114,121,73,100,24,14,32,3,40,9,82,13,80,97,114,101,110,116,83,116,111,114,121,73,100,18,32,10,11,72,97,115,69,118,105,100,101,110,99,101,24,15,32,1,40,8,82,11,72,97,115,69,118,105,100,101,110,99,101,18,30,10,10,65,118,103,76,117,97,78,97,109,101,24,16,32,1,40,9,82,10,65,118,103,76,117,97,78,97,109,101,18,24,10,7,70,108,111,111,114,73,100,24,17,32,3,40,5,82,7,70,108,111,111,114,73,100,18,52,10,21,80,114,101,118,105,101,119,77,111,110,115,116,101,114,71,114,111,117,112,73,100,24,18,32,1,40,5,82,21,80,114,101,118,105,101,119,77,111,110,115,116,101,114,71,114,111,117,112,73,100,18,28,10,9,82,101,99,111,109,109,101,110,100,24,19,32,1,40,9,82,9,82,101,99,111,109,109,101,110,100,18,16,10,3,65,105,109,24,20,32,1,40,9,82,3,65,105,109,34,53,10,11,116,97,98,108,101,95,83,116,111,114,121,18,38,10,4,108,105,115,116,24,1,32,3,40,11,50,18,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,111,114,121,82,4,108,105,115,116,34,194,2,10,12,83,116,111,114,121,67,104,97,112,116,101,114,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,84,121,112,101,24,2,32,1,40,5,82,4,84,121,112,101,18,30,10,10,87,111,114,108,100,67,108,97,115,115,24,3,32,1,40,5,82,10,87,111,114,108,100,67,108,97,115,115,18,32,10,11,80,114,101,118,83,116,111,114,105,101,115,24,4,32,3,40,9,82,11,80,114,101,118,83,116,111,114,105,101,115,18,20,10,5,73,110,100,101,120,24,5,32,1,40,9,82,5,73,110,100,101,120,18,18,10,4,78,97,109,101,24,6,32,1,40,9,82,4,78,97,109,101,18,18,10,4,68,101,115,99,24,7,32,1,40,9,82,4,68,101,115,99,18,32,10,11,67,104,97,112,116,101,114,73,99,111,110,24,8,32,1,40,9,82,11,67,104,97,112,116,101,114,73,99,111,110,18,28,10,9,84,105,109,101,83,116,97,109,112,24,9,32,3,40,9,82,9,84,105,109,101,83,116,97,109,112,18,32,10,11,67,104,97,112,116,101,114,89,101,97,114,24,10,32,1,40,9,82,11,67,104,97,112,116,101,114,89,101,97,114,18,44,10,17,85,110,108,111,99,107,83,104,111,119,83,116,111,114,121,73,100,24,11,32,1,40,5,82,17,85,110,108,111,99,107,83,104,111,119,83,116,111,114,121,73,100,34,67,10,18,116,97,98,108,101,95,83,116,111,114,121,67,104,97,112,116,101,114,18,45,10,4,108,105,115,116,24,1,32,3,40,11,50,25,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,111,114,121,67,104,97,112,116,101,114,82,4,108,105,115,116,34,244,1,10,14,83,116,111,114,121,67,111,110,100,105,116,105,111,110,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,32,10,11,67,111,110,100,105,116,105,111,110,73,100,24,2,32,1,40,9,82,11,67,111,110,100,105,116,105,111,110,73,100,18,24,10,7,67,111,109,109,101,110,116,24,3,32,1,40,9,82,7,67,111,109,109,101,110,116,18,23,10,7,69,118,73,100,115,95,97,24,4,32,3,40,9,82,6,69,118,73,100,115,65,18,23,10,7,69,118,73,100,115,95,98,24,5,32,3,40,9,82,6,69,118,73,100,115,66,18,27,10,9,83,116,111,114,121,73,100,95,97,24,6,32,3,40,9,82,8,83,116,111,114,121,73,100,65,18,27,10,9,83,116,111,114,121,73,100,95,98,24,7,32,3,40,9,82,8,83,116,111,114,121,73,100,66,18,42,10,16,80,108,97,121,101,114,87,111,114,108,100,76,101,118,101,108,24,8,32,1,40,5,82,16,80,108,97,121,101,114,87,111,114,108,100,76,101,118,101,108,34,71,10,20,116,97,98,108,101,95,83,116,111,114,121,67,111,110,100,105,116,105,111,110,18,47,10,4,108,105,115,116,24,1,32,3,40,11,50,27,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,111,114,121,67,111,110,100,105,116,105,111,110,82,4,108,105,115,116,34,161,1,10,13,83,116,111,114,121,69,118,105,100,101,110,99,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,69,118,73,100,24,2,32,1,40,9,82,4,69,118,73,100,18,24,10,7,67,111,109,109,101,110,116,24,3,32,1,40,9,82,7,67,111,109,109,101,110,116,18,18,10,4,78,97,109,101,24,4,32,1,40,9,82,4,78,97,109,101,18,18,10,4,68,101,115,99,24,5,32,1,40,9,82,4,68,101,115,99,18,18,10,4,73,99,111,110,24,6,32,1,40,9,82,4,73,99,111,110,18,22,10,6,73,99,111,110,66,103,24,7,32,1,40,9,82,6,73,99,111,110,66,103,34,69,10,19,116,97,98,108,101,95,83,116,111,114,121,69,118,105,100,101,110,99,101,18,46,10,4,108,105,115,116,24,1,32,3,40,11,50,26,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,111,114,121,69,118,105,100,101,110,99,101,82,4,108,105,115,116,34,112,10,16,83,116,111,114,121,80,101,114,115,111,110,97,108,105,116,121,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,14,10,2,68,98,24,3,32,1,40,9,82,2,68,98,18,18,10,4,73,99,111,110,24,4,32,1,40,9,82,4,73,99,111,110,18,20,10,5,67,111,108,111,114,24,5,32,1,40,9,82,5,67,111,108,111,114,34,75,10,22,116,97,98,108,101,95,83,116,111,114,121,80,101,114,115,111,110,97,108,105,116,121,18,49,10,4,108,105,115,116,24,1,32,3,40,11,50,29,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,111,114,121,80,101,114,115,111,110,97,108,105,116,121,82,4,108,105,115,116,34,226,4,10,20,83,116,111,114,121,82,111,108,101,80,101,114,115,111,110,97,108,105,116,121,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,28,10,9,65,118,103,67,104,97,114,73,100,24,2,32,1,40,9,82,9,65,118,103,67,104,97,114,73,100,18,34,10,12,80,101,114,115,111,110,97,108,105,116,121,115,24,3,32,3,40,5,82,12,80,101,114,115,111,110,97,108,105,116,121,115,18,28,10,9,66,97,115,101,86,97,108,117,101,24,4,32,3,40,5,82,9,66,97,115,101,86,97,108,117,101,18,18,10,4,65,109,97,120,24,5,32,1,40,9,82,4,65,109,97,120,18,26,10,8,65,109,97,120,70,97,99,101,24,6,32,1,40,9,82,8,65,109,97,120,70,97,99,101,18,18,10,4,66,109,97,120,24,7,32,1,40,9,82,4,66,109,97,120,18,26,10,8,66,109,97,120,70,97,99,101,24,8,32,1,40,9,82,8,66,109,97,120,70,97,99,101,18,18,10,4,67,109,97,120,24,9,32,1,40,9,82,4,67,109,97,120,18,26,10,8,67,109,97,120,70,97,99,101,24,10,32,1,40,9,82,8,67,109,97,120,70,97,99,101,18,20,10,5,65,112,108,117,115,24,11,32,1,40,9,82,5,65,112,108,117,115,18,28,10,9,65,112,108,117,115,70,97,99,101,24,12,32,1,40,9,82,9,65,112,108,117,115,70,97,99,101,18,20,10,5,66,112,108,117,115,24,13,32,1,40,9,82,5,66,112,108,117,115,18,28,10,9,66,112,108,117,115,70,97,99,101,24,14,32,1,40,9,82,9,66,112,108,117,115,70,97,99,101,18,20,10,5,67,112,108,117,115,24,15,32,1,40,9,82,5,67,112,108,117,115,18,28,10,9,67,112,108,117,115,70,97,99,101,24,16,32,1,40,9,82,9,67,112,108,117,115,70,97,99,101,18,14,10,2,65,98,24,17,32,1,40,9,82,2,65,98,18,22,10,6,65,98,70,97,99,101,24,18,32,1,40,9,82,6,65,98,70,97,99,101,18,14,10,2,65,99,24,19,32,1,40,9,82,2,65,99,18,22,10,6,65,99,70,97,99,101,24,20,32,1,40,9,82,6,65,99,70,97,99,101,18,14,10,2,66,99,24,21,32,1,40,9,82,2,66,99,18,22,10,6,66,99,70,97,99,101,24,22,32,1,40,9,82,6,66,99,70,97,99,101,18,22,10,6,78,111,114,109,97,108,24,23,32,1,40,9,82,6,78,111,114,109,97,108,18,30,10,10,78,111,114,109,97,108,70,97,99,101,24,24,32,1,40,9,82,10,78,111,114,109,97,108,70,97,99,101,34,83,10,26,116,97,98,108,101,95,83,116,111,114,121,82,111,108,101,80,101,114,115,111,110,97,108,105,116,121,18,53,10,4,108,105,115,116,24,1,32,3,40,11,50,33,46,110,111,118,97,46,99,108,105,101,110,116,46,83,116,111,114,121,82,111,108,101,80,101,114,115,111,110,97,108,105,116,121,82,4,108,105,115,116,34,168,5,10,6,84,97,108,101,110,116,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,20,10,5,73,110,100,101,120,24,2,32,1,40,5,82,5,73,110,100,101,120,18,20,10,5,84,105,116,108,101,24,3,32,1,40,9,82,5,84,105,116,108,101,18,24,10,7,71,114,111,117,112,73,100,24,4,32,1,40,5,82,7,71,114,111,117,112,73,100,18,18,10,4,84,121,112,101,24,5,32,1,40,5,82,4,84,121,112,101,18,24,10,7,83,117,98,84,121,112,101,24,6,32,1,40,5,82,7,83,117,98,84,121,112,101,18,18,10,4,83,111,114,116,24,7,32,1,40,5,82,4,83,111,114,116,18,20,10,5,78,111,100,101,115,24,8,32,1,40,5,82,5,78,111,100,101,115,18,26,10,8,69,102,102,101,99,116,73,100,24,9,32,3,40,5,82,8,69,102,102,101,99,116,73,100,18,38,10,14,69,110,104,97,110,99,101,83,107,105,108,108,73,100,24,10,32,1,40,5,82,14,69,110,104,97,110,99,101,83,107,105,108,108,73,100,18,44,10,17,69,110,104,97,110,99,101,83,107,105,108,108,76,101,118,101,108,24,11,32,1,40,5,82,17,69,110,104,97,110,99,101,83,107,105,108,108,76,101,118,101,108,18,46,10,18,69,110,104,97,110,99,101,80,111,116,101,110,116,105,97,108,73,100,24,12,32,1,40,5,82,18,69,110,104,97,110,99,101,80,111,116,101,110,116,105,97,108,73,100,18,52,10,21,69,110,104,97,110,99,101,80,111,116,101,110,116,105,97,108,76,101,118,101,108,24,13,32,1,40,5,82,21,69,110,104,97,110,99,101,80,111,116,101,110,116,105,97,108,76,101,118,101,108,18,18,10,4,68,101,115,99,24,14,32,1,40,9,82,4,68,101,115,99,18,18,10,4,73,99,111,110,24,15,32,1,40,9,82,4,73,99,111,110,18,22,10,6,80,97,114,97,109,49,24,16,32,1,40,9,82,6,80,97,114,97,109,49,18,22,10,6,80,97,114,97,109,50,24,17,32,1,40,9,82,6,80,97,114,97,109,50,18,22,10,6,80,97,114,97,109,51,24,18,32,1,40,9,82,6,80,97,114,97,109,51,18,22,10,6,80,97,114,97,109,52,24,19,32,1,40,9,82,6,80,97,114,97,109,52,18,22,10,6,80,97,114,97,109,53,24,20,32,1,40,9,82,6,80,97,114,97,109,53,18,22,10,6,80,97,114,97,109,54,24,21,32,1,40,9,82,6,80,97,114,97,109,54,18,22,10,6,80,97,114,97,109,55,24,22,32,1,40,9,82,6,80,97,114,97,109,55,18,22,10,6,80,97,114,97,109,56,24,23,32,1,40,9,82,6,80,97,114,97,109,56,18,22,10,6,80,97,114,97,109,57,24,24,32,1,40,9,82,6,80,97,114,97,109,57,18,24,10,7,80,97,114,97,109,49,48,24,25,32,1,40,9,82,7,80,97,114,97,109,49,48,34,55,10,12,116,97,98,108,101,95,84,97,108,101,110,116,18,39,10,4,108,105,115,116,24,1,32,3,40,11,50,19,46,110,111,118,97,46,99,108,105,101,110,116,46,84,97,108,101,110,116,82,4,108,105,115,116,34,133,1,10,11,84,97,108,101,110,116,71,114,111,117,112,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,22,10,6,67,104,97,114,73,100,24,2,32,1,40,5,82,6,67,104,97,114,73,100,18,26,10,8,80,114,101,71,114,111,117,112,24,3,32,1,40,5,82,8,80,114,101,71,114,111,117,112,18,28,10,9,78,111,100,101,76,105,109,105,116,24,4,32,1,40,5,82,9,78,111,100,101,76,105,109,105,116,18,20,10,5,84,105,116,108,101,24,5,32,1,40,9,82,5,84,105,116,108,101,34,65,10,17,116,97,98,108,101,95,84,97,108,101,110,116,71,114,111,117,112,18,44,10,4,108,105,115,116,24,1,32,3,40,11,50,24,46,110,111,118,97,46,99,108,105,101,110,116,46,84,97,108,101,110,116,71,114,111,117,112,82,4,108,105,115,116,34,117,10,5,84,105,116,108,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,22,10,6,73,116,101,109,73,100,24,2,32,1,40,5,82,6,73,116,101,109,73,100,18,28,10,9,84,105,116,108,101,84,121,112,101,24,3,32,1,40,5,82,9,84,105,116,108,101,84,121,112,101,18,18,10,4,68,101,115,99,24,4,32,1,40,9,82,4,68,101,115,99,18,18,10,4,83,111,114,116,24,5,32,1,40,5,82,4,83,111,114,116,34,53,10,11,116,97,98,108,101,95,84,105,116,108,101,18,38,10,4,108,105,115,116,24,1,32,3,40,11,50,18,46,110,111,118,97,46,99,108,105,101,110,116,46,84,105,116,108,101,82,4,108,105,115,116,34,204,1,10,6,84,111,112,66,97,114,18,14,10,2,73,100,24,1,32,1,40,9,82,2,73,100,18,20,10,5,84,105,116,108,101,24,2,32,1,40,9,82,5,84,105,116,108,101,18,24,10,7,69,110,116,114,121,73,100,24,3,32,1,40,5,82,7,69,110,116,114,121,73,100,18,26,10,8,72,105,100,101,66,97,99,107,24,4,32,1,40,8,82,8,72,105,100,101,66,97,99,107,18,22,10,6,69,110,101,114,103,121,24,5,32,1,40,8,82,6,69,110,101,114,103,121,18,18,10,4,67,111,105,110,24,6,32,1,40,8,82,4,67,111,105,110,18,24,10,7,67,111,105,110,73,100,115,24,7,32,3,40,5,82,7,67,111,105,110,73,100,115,18,32,10,11,72,105,100,101,67,111,105,110,65,100,100,24,8,32,1,40,8,82,11,72,105,100,101,67,111,105,110,65,100,100,34,55,10,12,116,97,98,108,101,95,84,111,112,66,97,114,18,39,10,4,108,105,115,116,24,1,32,3,40,11,50,19,46,110,111,118,97,46,99,108,105,101,110,116,46,84,111,112,66,97,114,82,4,108,105,115,116,34,146,2,10,14,84,111,117,114,71,117,105,100,101,81,117,101,115,116,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,20,10,5,79,114,100,101,114,24,2,32,1,40,5,82,5,79,114,100,101,114,18,20,10,5,84,105,116,108,101,24,3,32,1,40,9,82,5,84,105,116,108,101,18,22,10,6,74,117,109,112,84,111,24,4,32,1,40,5,82,6,74,117,109,112,84,111,18,24,10,7,82,101,119,97,114,100,49,24,5,32,1,40,5,82,7,82,101,119,97,114,100,49,18,30,10,10,82,101,119,97,114,100,81,116,121,49,24,6,32,1,40,5,82,10,82,101,119,97,114,100,81,116,121,49,18,24,10,7,82,101,119,97,114,100,50,24,7,32,1,40,5,82,7,82,101,119,97,114,100,50,18,30,10,10,82,101,119,97,114,100,81,116,121,50,24,8,32,1,40,5,82,10,82,101,119,97,114,100,81,116,121,50,18,24,10,7,82,101,119,97,114,100,51,24,9,32,1,40,5,82,7,82,101,119,97,114,100,51,18,30,10,10,82,101,119,97,114,100,81,116,121,51,24,10,32,1,40,5,82,10,82,101,119,97,114,100,81,116,121,51,34,71,10,20,116,97,98,108,101,95,84,111,117,114,71,117,105,100,101,81,117,101,115,116,18,47,10,4,108,105,115,116,24,1,32,3,40,11,50,27,46,110,111,118,97,46,99,108,105,101,110,116,46,84,111,117,114,71,117,105,100,101,81,117,101,115,116,82,4,108,105,115,116,34,151,3,10,19,84,111,117,114,71,117,105,100,101,81,117,101,115,116,71,114,111,117,112,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,20,10,5,79,114,100,101,114,24,2,32,1,40,5,82,5,79,114,100,101,114,18,24,10,7,82,101,119,97,114,100,49,24,3,32,1,40,5,82,7,82,101,119,97,114,100,49,18,30,10,10,82,101,119,97,114,100,81,116,121,49,24,4,32,1,40,5,82,10,82,101,119,97,114,100,81,116,121,49,18,24,10,7,82,101,119,97,114,100,50,24,5,32,1,40,5,82,7,82,101,119,97,114,100,50,18,30,10,10,82,101,119,97,114,100,81,116,121,50,24,6,32,1,40,5,82,10,82,101,119,97,114,100,81,116,121,50,18,24,10,7,82,101,119,97,114,100,51,24,7,32,1,40,5,82,7,82,101,119,97,114,100,51,18,30,10,10,82,101,119,97,114,100,81,116,121,51,24,8,32,1,40,5,82,10,82,101,119,97,114,100,81,116,121,51,18,24,10,7,82,101,119,97,114,100,52,24,9,32,1,40,5,82,7,82,101,119,97,114,100,52,18,30,10,10,82,101,119,97,114,100,81,116,121,52,24,10,32,1,40,5,82,10,82,101,119,97,114,100,81,116,121,52,18,24,10,7,82,101,119,97,114,100,53,24,11,32,1,40,5,82,7,82,101,119,97,114,100,53,18,30,10,10,82,101,119,97,114,100,81,116,121,53,24,12,32,1,40,5,82,10,82,101,119,97,114,100,81,116,121,53,18,24,10,7,82,101,119,97,114,100,54,24,13,32,1,40,5,82,7,82,101,119,97,114,100,54,18,30,10,10,82,101,119,97,114,100,81,116,121,54,24,14,32,1,40,5,82,10,82,101,119,97,114,100,81,116,121,54,34,81,10,25,116,97,98,108,101,95,84,111,117,114,71,117,105,100,101,81,117,101,115,116,71,114,111,117,112,18,52,10,4,108,105,115,116,24,1,32,3,40,11,50,32,46,110,111,118,97,46,99,108,105,101,110,116,46,84,111,117,114,71,117,105,100,101,81,117,101,115,116,71,114,111,117,112,82,4,108,105,115,116,34,234,6,10,4,84,114,97,112,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,18,10,4,70,67,73,100,24,3,32,1,40,5,82,4,70,67,73,100,18,20,10,5,77,111,100,101,108,24,4,32,1,40,9,82,5,77,111,100,101,108,18,30,10,10,77,111,100,101,108,83,99,97,108,101,24,5,32,1,40,5,82,10,77,111,100,101,108,83,99,97,108,101,18,32,10,11,66,117,102,102,70,88,83,99,97,108,101,24,6,32,1,40,5,82,11,66,117,102,102,70,88,83,99,97,108,101,18,36,10,13,67,111,108,108,105,100,101,114,83,99,97,108,101,24,7,32,1,40,5,82,13,67,111,108,108,105,100,101,114,83,99,97,108,101,18,32,10,11,65,116,116,114,105,98,117,116,101,73,100,24,8,32,1,40,9,82,11,65,116,116,114,105,98,117,116,101,73,100,18,26,10,8,84,101,109,112,108,101,116,101,24,9,32,1,40,5,82,8,84,101,109,112,108,101,116,101,18,24,10,7,66,117,102,102,73,100,115,24,10,32,3,40,5,82,7,66,117,102,102,73,100,115,18,38,10,14,84,117,114,110,79,102,102,66,117,102,102,73,100,115,24,11,32,3,40,5,82,14,84,117,114,110,79,102,102,66,117,102,102,73,100,115,18,36,10,13,84,117,114,110,79,110,66,117,102,102,73,100,115,24,12,32,3,40,5,82,13,84,117,114,110,79,110,66,117,102,102,73,100,115,18,38,10,14,73,110,116,101,114,114,117,112,116,83,107,105,108,108,24,13,32,1,40,8,82,14,73,110,116,101,114,114,117,112,116,83,107,105,108,108,18,24,10,7,83,117,98,84,121,112,101,24,14,32,1,40,5,82,7,83,117,98,84,121,112,101,18,24,10,7,70,97,99,116,105,111,110,24,15,32,1,40,5,82,7,70,97,99,116,105,111,110,18,22,10,6,70,105,108,116,101,114,24,16,32,3,40,5,82,6,70,105,108,116,101,114,18,40,10,15,73,103,110,111,114,101,67,111,108,108,105,115,105,111,110,24,17,32,1,40,8,82,15,73,103,110,111,114,101,67,111,108,108,105,115,105,111,110,18,28,10,9,65,99,116,105,118,101,69,102,102,24,18,32,1,40,9,82,9,65,99,116,105,118,101,69,102,102,18,28,10,9,83,104,97,112,101,84,121,112,101,24,19,32,1,40,5,82,9,83,104,97,112,101,84,121,112,101,18,20,10,5,119,105,100,116,104,24,20,32,1,40,2,82,5,119,105,100,116,104,18,22,10,6,108,101,110,103,116,104,24,21,32,1,40,2,82,6,108,101,110,103,116,104,18,22,10,6,114,97,100,105,117,115,24,22,32,1,40,2,82,6,114,97,100,105,117,115,18,32,10,11,105,110,110,101,114,82,97,100,105,117,115,24,23,32,1,40,2,82,11,105,110,110,101,114,82,97,100,105,117,115,18,20,10,5,97,110,103,108,101,24,24,32,1,40,2,82,5,97,110,103,108,101,18,22,10,6,111,102,102,115,101,116,24,25,32,3,40,2,82,6,111,102,102,115,101,116,18,26,10,8,114,111,116,97,116,105,111,110,24,26,32,1,40,2,82,8,114,111,116,97,116,105,111,110,18,22,10,6,105,115,77,111,118,101,24,27,32,1,40,8,82,6,105,115,77,111,118,101,18,24,10,7,105,115,66,108,111,99,107,24,28,32,1,40,8,82,7,105,115,66,108,111,99,107,18,22,10,6,77,111,118,65,99,99,24,29,32,1,40,5,82,6,77,111,118,65,99,99,18,22,10,6,82,111,116,83,112,100,24,30,32,1,40,5,82,6,82,111,116,83,112,100,18,24,10,7,77,111,118,101,83,112,100,24,31,32,1,40,5,82,7,77,111,118,101,83,112,100,34,51,10,10,116,97,98,108,101,95,84,114,97,112,18,37,10,4,108,105,115,116,24,1,32,3,40,11,50,17,46,110,111,118,97,46,99,108,105,101,110,116,46,84,114,97,112,82,4,108,105,115,116,34,113,10,13,84,114,97,112,65,116,116,114,105,98,117,116,101,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,24,10,7,84,114,105,103,103,101,114,24,2,32,1,40,8,82,7,84,114,105,103,103,101,114,18,30,10,10,84,114,105,103,103,101,114,73,68,115,24,3,32,3,40,5,82,10,84,114,105,103,103,101,114,73,68,115,18,22,10,6,70,105,108,116,101,114,24,4,32,3,40,5,82,6,70,105,108,116,101,114,34,69,10,19,116,97,98,108,101,95,84,114,97,112,65,116,116,114,105,98,117,116,101,18,46,10,4,108,105,115,116,24,1,32,3,40,11,50,26,46,110,111,118,97,46,99,108,105,101,110,116,46,84,114,97,112,65,116,116,114,105,98,117,116,101,82,4,108,105,115,116,34,208,1,10,16,84,114,97,118,101,108,101,114,68,117,101,108,66,111,115,115,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,50,10,20,84,114,97,118,101,108,101,114,68,117,101,108,66,111,115,115,84,121,112,101,24,3,32,1,40,5,82,20,84,114,97,118,101,108,101,114,68,117,101,108,66,111,115,115,84,121,112,101,18,24,10,7,69,112,105,115,111,100,101,24,4,32,1,40,9,82,7,69,112,105,115,111,100,101,18,20,10,5,73,109,97,103,101,24,5,32,1,40,9,82,5,73,109,97,103,101,18,20,10,5,67,111,118,101,114,24,6,32,1,40,9,82,5,67,111,118,101,114,18,30,10,10,83,104,111,119,82,101,119,97,114,100,24,7,32,3,40,5,82,10,83,104,111,119,82,101,119,97,114,100,34,75,10,22,116,97,98,108,101,95,84,114,97,118,101,108,101,114,68,117,101,108,66,111,115,115,18,49,10,4,108,105,115,116,24,1,32,3,40,11,50,29,46,110,111,118,97,46,99,108,105,101,110,116,46,84,114,97,118,101,108,101,114,68,117,101,108,66,111,115,115,82,4,108,105,115,116,34,231,5,10,21,84,114,97,118,101,108,101,114,68,117,101,108,66,111,115,115,76,101,118,101,108,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,22,10,6,66,111,115,115,73,100,24,2,32,1,40,5,82,6,66,111,115,115,73,100,18,30,10,10,68,105,102,102,105,99,117,108,116,121,24,3,32,1,40,5,82,10,68,105,102,102,105,99,117,108,116,121,18,18,10,4,78,97,109,101,24,4,32,1,40,9,82,4,78,97,109,101,18,18,10,4,68,101,115,99,24,5,32,1,40,9,82,4,68,101,115,99,18,38,10,14,83,117,103,103,101,115,116,101,100,80,111,119,101,114,24,6,32,1,40,5,82,14,83,117,103,103,101,115,116,101,100,80,111,119,101,114,18,46,10,18,82,101,99,111,109,109,101,110,100,66,117,105,108,100,82,97,110,107,24,7,32,1,40,5,82,18,82,101,99,111,109,109,101,110,100,66,117,105,108,100,82,97,110,107,18,16,10,3,69,69,84,24,8,32,3,40,5,82,3,69,69,84,18,28,10,9,84,105,109,101,108,105,109,105,116,24,9,32,1,40,5,82,9,84,105,109,101,108,105,109,105,116,18,52,10,21,80,114,101,118,105,101,119,77,111,110,115,116,101,114,71,114,111,117,112,73,100,24,10,32,1,40,5,82,21,80,114,101,118,105,101,119,77,111,110,115,116,101,114,71,114,111,117,112,73,100,18,24,10,7,70,108,111,111,114,73,100,24,11,32,1,40,5,82,7,70,108,111,111,114,73,100,18,30,10,10,80,114,101,76,101,118,101,108,73,100,24,12,32,1,40,5,82,10,80,114,101,76,101,118,101,108,73,100,18,34,10,12,80,114,101,76,101,118,101,108,83,116,97,114,24,13,32,1,40,5,82,12,80,114,101,76,101,118,101,108,83,116,97,114,18,42,10,16,85,110,108,111,99,107,87,111,114,108,100,67,108,97,115,115,24,14,32,1,40,5,82,16,85,110,108,111,99,107,87,111,114,108,100,67,108,97,115,115,18,40,10,15,85,110,108,111,99,107,68,117,101,108,76,101,118,101,108,24,15,32,1,40,5,82,15,85,110,108,111,99,107,68,117,101,108,76,101,118,101,108,18,24,10,7,68,117,101,108,69,120,112,24,16,32,1,40,5,82,7,68,117,101,108,69,120,112,18,42,10,16,66,97,115,101,65,119,97,114,100,80,114,101,118,105,101,119,24,17,32,1,40,9,82,16,66,97,115,101,65,119,97,114,100,80,114,101,118,105,101,119,18,26,10,8,65,102,102,105,110,105,116,121,24,18,32,1,40,5,82,8,65,102,102,105,110,105,116,121,18,18,10,4,73,99,111,110,24,19,32,1,40,9,82,4,73,99,111,110,18,28,10,9,83,107,105,108,108,83,104,111,119,24,20,32,3,40,5,82,9,83,107,105,108,108,83,104,111,119,18,20,10,5,67,111,118,101,114,24,21,32,1,40,9,82,5,67,111,118,101,114,18,22,10,6,83,107,105,110,73,100,24,22,32,1,40,5,82,6,83,107,105,110,73,100,18,42,10,16,69,120,116,114,97,68,114,111,112,80,114,101,118,105,101,119,24,23,32,3,40,5,82,16,69,120,116,114,97,68,114,111,112,80,114,101,118,105,101,119,34,85,10,27,116,97,98,108,101,95,84,114,97,118,101,108,101,114,68,117,101,108,66,111,115,115,76,101,118,101,108,18,54,10,4,108,105,115,116,24,1,32,3,40,11,50,34,46,110,111,118,97,46,99,108,105,101,110,116,46,84,114,97,118,101,108,101,114,68,117,101,108,66,111,115,115,76,101,118,101,108,82,4,108,105,115,116,34,170,3,10,26,84,114,97,118,101,108,101,114,68,117,101,108,67,104,97,108,108,101,110,103,101,65,102,102,105,120,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,24,10,7,71,114,111,117,112,73,100,24,2,32,1,40,5,82,7,71,114,111,117,112,73,100,18,30,10,10,68,105,102,102,105,99,117,108,116,121,24,3,32,1,40,5,82,10,68,105,102,102,105,99,117,108,116,121,18,42,10,16,85,110,108,111,99,107,87,111,114,108,100,67,108,97,115,115,24,4,32,1,40,5,82,16,85,110,108,111,99,107,87,111,114,108,100,67,108,97,115,115,18,40,10,15,85,110,108,111,99,107,68,117,101,108,76,101,118,101,108,24,5,32,1,40,5,82,15,85,110,108,111,99,107,68,117,101,108,76,101,118,101,108,18,42,10,16,85,110,108,111,99,107,68,105,102,102,105,99,117,108,116,121,24,6,32,1,40,5,82,16,85,110,108,111,99,107,68,105,102,102,105,99,117,108,116,121,18,18,10,4,78,97,109,101,24,7,32,1,40,9,82,4,78,97,109,101,18,18,10,4,68,101,115,99,24,8,32,1,40,9,82,4,68,101,115,99,18,18,10,4,73,99,111,110,24,9,32,1,40,9,82,4,73,99,111,110,18,24,10,7,69,108,101,109,101,110,116,24,10,32,1,40,5,82,7,69,108,101,109,101,110,116,18,24,10,7,65,100,100,67,97,109,112,24,11,32,3,40,5,82,7,65,100,100,67,97,109,112,18,26,10,8,65,100,100,67,108,97,115,115,24,12,32,3,40,5,82,8,65,100,100,67,108,97,115,115,18,24,10,7,83,107,105,108,108,73,100,24,13,32,1,40,5,82,7,83,107,105,108,108,73,100,18,26,10,8,66,114,97,110,99,104,73,100,24,14,32,1,40,5,82,8,66,114,97,110,99,104,73,100,34,95,10,32,116,97,98,108,101,95,84,114,97,118,101,108,101,114,68,117,101,108,67,104,97,108,108,101,110,103,101,65,102,102,105,120,18,59,10,4,108,105,115,116,24,1,32,3,40,11,50,39,46,110,111,118,97,46,99,108,105,101,110,116,46,84,114,97,118,101,108,101,114,68,117,101,108,67,104,97,108,108,101,110,103,101,65,102,102,105,120,82,4,108,105,115,116,34,185,1,10,31,84,114,97,118,101,108,101,114,68,117,101,108,67,104,97,108,108,101,110,103,101,68,105,102,102,105,99,117,108,116,121,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,65,116,116,114,24,2,32,1,40,5,82,4,65,116,116,114,18,26,10,8,69,102,102,101,99,116,73,100,24,3,32,3,40,5,82,8,69,102,102,101,99,116,73,100,18,38,10,14,82,101,99,111,109,109,101,110,100,83,99,111,114,101,24,4,32,1,40,5,82,14,82,101,99,111,109,109,101,110,100,83,99,111,114,101,18,46,10,18,82,101,99,111,109,109,101,110,100,66,117,105,108,100,82,97,110,107,24,5,32,1,40,5,82,18,82,101,99,111,109,109,101,110,100,66,117,105,108,100,82,97,110,107,34,105,10,37,116,97,98,108,101,95,84,114,97,118,101,108,101,114,68,117,101,108,67,104,97,108,108,101,110,103,101,68,105,102,102,105,99,117,108,116,121,18,64,10,4,108,105,115,116,24,1,32,3,40,11,50,44,46,110,111,118,97,46,99,108,105,101,110,116,46,84,114,97,118,101,108,101,114,68,117,101,108,67,104,97,108,108,101,110,103,101,68,105,102,102,105,99,117,108,116,121,82,4,108,105,115,116,34,252,3,10,26,84,114,97,118,101,108,101,114,68,117,101,108,67,104,97,108,108,101,110,103,101,81,117,101,115,116,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,24,10,7,71,114,111,117,112,73,100,24,2,32,1,40,5,82,7,71,114,111,117,112,73,100,18,20,10,5,84,105,116,108,101,24,3,32,1,40,9,82,5,84,105,116,108,101,18,18,10,4,68,101,115,99,24,4,32,1,40,9,82,4,68,101,115,99,18,22,10,6,74,117,109,112,84,111,24,5,32,1,40,5,82,6,74,117,109,112,84,111,18,20,10,5,79,114,100,101,114,24,6,32,1,40,5,82,5,79,114,100,101,114,18,36,10,13,65,99,99,101,112,116,80,97,114,97,109,115,50,24,7,32,1,40,9,82,13,65,99,99,101,112,116,80,97,114,97,109,115,50,18,34,10,12,67,111,109,112,108,101,116,101,67,111,110,100,24,8,32,1,40,5,82,12,67,111,109,112,108,101,116,101,67,111,110,100,18,46,10,18,67,111,109,112,108,101,116,101,67,111,110,100,80,97,114,97,109,115,24,9,32,1,40,9,82,18,67,111,109,112,108,101,116,101,67,111,110,100,80,97,114,97,109,115,18,36,10,13,65,119,97,114,100,73,116,101,109,84,105,100,49,24,10,32,1,40,5,82,13,65,119,97,114,100,73,116,101,109,84,105,100,49,18,36,10,13,65,119,97,114,100,73,116,101,109,78,117,109,49,24,11,32,1,40,5,82,13,65,119,97,114,100,73,116,101,109,78,117,109,49,18,36,10,13,65,119,97,114,100,73,116,101,109,84,105,100,50,24,12,32,1,40,5,82,13,65,119,97,114,100,73,116,101,109,84,105,100,50,18,36,10,13,65,119,97,114,100,73,116,101,109,78,117,109,50,24,13,32,1,40,5,82,13,65,119,97,114,100,73,116,101,109,78,117,109,50,18,36,10,13,65,119,97,114,100,73,116,101,109,84,105,100,51,24,14,32,1,40,5,82,13,65,119,97,114,100,73,116,101,109,84,105,100,51,18,36,10,13,65,119,97,114,100,73,116,101,109,78,117,109,51,24,15,32,1,40,5,82,13,65,119,97,114,100,73,116,101,109,78,117,109,51,34,95,10,32,116,97,98,108,101,95,84,114,97,118,101,108,101,114,68,117,101,108,67,104,97,108,108,101,110,103,101,81,117,101,115,116,18,59,10,4,108,105,115,116,24,1,32,3,40,11,50,39,46,110,111,118,97,46,99,108,105,101,110,116,46,84,114,97,118,101,108,101,114,68,117,101,108,67,104,97,108,108,101,110,103,101,81,117,101,115,116,82,4,108,105,115,116,34,231,1,10,31,84,114,97,118,101,108,101,114,68,117,101,108,67,104,97,108,108,101,110,103,101,82,97,110,107,82,101,119,97,114,100,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,28,10,9,82,97,110,107,76,111,119,101,114,24,2,32,1,40,5,82,9,82,97,110,107,76,111,119,101,114,18,36,10,13,65,119,97,114,100,73,116,101,109,84,105,100,49,24,3,32,1,40,5,82,13,65,119,97,114,100,73,116,101,109,84,105,100,49,18,36,10,13,65,119,97,114,100,73,116,101,109,78,117,109,49,24,4,32,1,40,5,82,13,65,119,97,114,100,73,116,101,109,78,117,109,49,18,36,10,13,65,119,97,114,100,73,116,101,109,84,105,100,50,24,5,32,1,40,5,82,13,65,119,97,114,100,73,116,101,109,84,105,100,50,18,36,10,13,65,119,97,114,100,73,116,101,109,78,117,109,50,24,6,32,1,40,5,82,13,65,119,97,114,100,73,116,101,109,78,117,109,50,34,105,10,37,116,97,98,108,101,95,84,114,97,118,101,108,101,114,68,117,101,108,67,104,97,108,108,101,110,103,101,82,97,110,107,82,101,119,97,114,100,18,64,10,4,108,105,115,116,24,1,32,3,40,11,50,44,46,110,111,118,97,46,99,108,105,101,110,116,46,84,114,97,118,101,108,101,114,68,117,101,108,67,104,97,108,108,101,110,103,101,82,97,110,107,82,101,119,97,114,100,82,4,108,105,115,116,34,241,1,10,27,84,114,97,118,101,108,101,114,68,117,101,108,67,104,97,108,108,101,110,103,101,83,101,97,115,111,110,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,22,10,6,66,111,115,115,73,100,24,2,32,1,40,5,82,6,66,111,115,115,73,100,18,36,10,13,65,102,102,105,120,71,114,111,117,112,73,100,115,24,3,32,1,40,9,82,13,65,102,102,105,120,71,114,111,117,112,73,100,115,18,34,10,12,81,117,101,115,116,71,114,111,117,112,73,100,24,4,32,1,40,5,82,12,81,117,101,115,116,71,114,111,117,112,73,100,18,42,10,16,66,97,99,107,71,114,111,117,110,100,83,111,117,114,99,101,24,5,32,1,40,9,82,16,66,97,99,107,71,114,111,117,110,100,83,111,117,114,99,101,18,26,10,8,79,112,101,110,84,105,109,101,24,6,32,1,40,9,82,8,79,112,101,110,84,105,109,101,18,24,10,7,69,110,100,84,105,109,101,24,7,32,1,40,9,82,7,69,110,100,84,105,109,101,34,97,10,33,116,97,98,108,101,95,84,114,97,118,101,108,101,114,68,117,101,108,67,104,97,108,108,101,110,103,101,83,101,97,115,111,110,18,60,10,4,108,105,115,116,24,1,32,3,40,11,50,40,46,110,111,118,97,46,99,108,105,101,110,116,46,84,114,97,118,101,108,101,114,68,117,101,108,67,104,97,108,108,101,110,103,101,83,101,97,115,111,110,82,4,108,105,115,116,34,135,2,10,17,84,114,97,118,101,108,101,114,68,117,101,108,70,108,111,111,114,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,28,10,9,83,99,101,110,101,78,97,109,101,24,2,32,1,40,9,82,9,83,99,101,110,101,78,97,109,101,18,42,10,16,67,111,110,102,105,103,80,114,101,102,97,98,78,97,109,101,24,3,32,1,40,9,82,16,67,111,110,102,105,103,80,114,101,102,97,98,78,97,109,101,18,20,10,5,84,104,101,109,101,24,4,32,1,40,5,82,5,84,104,101,109,101,18,16,10,3,66,71,77,24,5,32,1,40,9,82,3,66,71,77,18,44,10,17,76,101,97,118,101,84,114,105,103,103,101,114,69,118,101,110,116,24,6,32,1,40,9,82,17,76,101,97,118,101,84,114,105,103,103,101,114,69,118,101,110,116,18,28,10,9,77,111,110,115,116,101,114,76,118,24,7,32,1,40,5,82,9,77,111,110,115,116,101,114,76,118,18,36,10,13,73,110,116,114,111,67,117,116,115,99,101,110,101,24,8,32,1,40,9,82,13,73,110,116,114,111,67,117,116,115,99,101,110,101,34,77,10,23,116,97,98,108,101,95,84,114,97,118,101,108,101,114,68,117,101,108,70,108,111,111,114,18,50,10,4,108,105,115,116,24,1,32,3,40,11,50,30,46,110,111,118,97,46,99,108,105,101,110,116,46,84,114,97,118,101,108,101,114,68,117,101,108,70,108,111,111,114,82,4,108,105,115,116,34,111,10,17,84,114,97,118,101,108,101,114,68,117,101,108,76,101,118,101,108,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,30,10,10,76,101,118,101,108,85,112,69,120,112,24,2,32,1,40,5,82,10,76,101,118,101,108,85,112,69,120,112,18,42,10,16,67,111,105,110,65,100,100,105,116,105,111,110,80,114,111,98,24,3,32,1,40,5,82,16,67,111,105,110,65,100,100,105,116,105,111,110,80,114,111,98,34,77,10,23,116,97,98,108,101,95,84,114,97,118,101,108,101,114,68,117,101,108,76,101,118,101,108,18,50,10,4,108,105,115,116,24,1,32,3,40,11,50,30,46,110,111,118,97,46,99,108,105,101,110,116,46,84,114,97,118,101,108,101,114,68,117,101,108,76,101,118,101,108,82,4,108,105,115,116,34,217,3,10,17,84,114,97,118,101,108,101,114,68,117,101,108,81,117,101,115,116,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,20,10,5,84,105,116,108,101,24,2,32,1,40,9,82,5,84,105,116,108,101,18,18,10,4,68,101,115,99,24,3,32,1,40,9,82,4,68,101,115,99,18,22,10,6,74,117,109,112,84,111,24,4,32,1,40,5,82,6,74,117,109,112,84,111,18,20,10,5,79,114,100,101,114,24,5,32,1,40,5,82,5,79,114,100,101,114,18,36,10,13,65,99,99,101,112,116,80,97,114,97,109,115,50,24,6,32,1,40,9,82,13,65,99,99,101,112,116,80,97,114,97,109,115,50,18,34,10,12,67,111,109,112,108,101,116,101,67,111,110,100,24,7,32,1,40,5,82,12,67,111,109,112,108,101,116,101,67,111,110,100,18,46,10,18,67,111,109,112,108,101,116,101,67,111,110,100,80,97,114,97,109,115,24,8,32,1,40,9,82,18,67,111,109,112,108,101,116,101,67,111,110,100,80,97,114,97,109,115,18,36,10,13,65,119,97,114,100,73,116,101,109,84,105,100,49,24,9,32,1,40,5,82,13,65,119,97,114,100,73,116,101,109,84,105,100,49,18,36,10,13,65,119,97,114,100,73,116,101,109,78,117,109,49,24,10,32,1,40,5,82,13,65,119,97,114,100,73,116,101,109,78,117,109,49,18,36,10,13,65,119,97,114,100,73,116,101,109,84,105,100,50,24,11,32,1,40,5,82,13,65,119,97,114,100,73,116,101,109,84,105,100,50,18,36,10,13,65,119,97,114,100,73,116,101,109,78,117,109,50,24,12,32,1,40,5,82,13,65,119,97,114,100,73,116,101,109,78,117,109,50,18,36,10,13,65,119,97,114,100,73,116,101,109,84,105,100,51,24,13,32,1,40,5,82,13,65,119,97,114,100,73,116,101,109,84,105,100,51,18,36,10,13,65,119,97,114,100,73,116,101,109,78,117,109,51,24,14,32,1,40,5,82,13,65,119,97,114,100,73,116,101,109,78,117,109,51,34,77,10,23,116,97,98,108,101,95,84,114,97,118,101,108,101,114,68,117,101,108,81,117,101,115,116,18,50,10,4,108,105,115,116,24,1,32,3,40,11,50,30,46,110,111,118,97,46,99,108,105,101,110,116,46,84,114,97,118,101,108,101,114,68,117,101,108,81,117,101,115,116,82,4,108,105,115,116,34,210,3,10,10,84,114,105,97,108,66,117,105,108,100,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,20,10,5,83,99,111,114,101,24,3,32,1,40,5,82,5,83,99,111,114,101,18,18,10,4,67,104,97,114,24,4,32,3,40,5,82,4,67,104,97,114,18,18,10,4,68,105,115,99,24,5,32,3,40,5,82,4,68,105,115,99,18,28,10,9,80,111,116,101,110,116,105,97,108,24,6,32,1,40,9,82,9,80,111,116,101,110,116,105,97,108,18,42,10,16,68,105,115,99,67,111,109,109,111,110,83,107,105,108,108,49,24,7,32,1,40,9,82,16,68,105,115,99,67,111,109,109,111,110,83,107,105,108,108,49,18,42,10,16,68,105,115,99,67,111,109,109,111,110,83,107,105,108,108,50,24,8,32,1,40,9,82,16,68,105,115,99,67,111,109,109,111,110,83,107,105,108,108,50,18,42,10,16,68,105,115,99,67,111,109,109,111,110,83,107,105,108,108,51,24,9,32,1,40,9,82,16,68,105,115,99,67,111,109,109,111,110,83,107,105,108,108,51,18,44,10,17,68,105,115,99,80,97,115,115,105,118,101,83,107,105,108,108,49,24,10,32,1,40,9,82,17,68,105,115,99,80,97,115,115,105,118,101,83,107,105,108,108,49,18,44,10,17,68,105,115,99,80,97,115,115,105,118,101,83,107,105,108,108,50,24,11,32,1,40,9,82,17,68,105,115,99,80,97,115,115,105,118,101,83,107,105,108,108,50,18,44,10,17,68,105,115,99,80,97,115,115,105,118,101,83,107,105,108,108,51,24,12,32,1,40,9,82,17,68,105,115,99,80,97,115,115,105,118,101,83,107,105,108,108,51,18,34,10,12,72,97,114,109,111,110,121,83,107,105,108,108,24,13,32,1,40,9,82,12,72,97,114,109,111,110,121,83,107,105,108,108,18,18,10,4,78,111,116,101,24,14,32,1,40,9,82,4,78,111,116,101,34,63,10,16,116,97,98,108,101,95,84,114,105,97,108,66,117,105,108,100,18,43,10,4,108,105,115,116,24,1,32,3,40,11,50,23,46,110,111,118,97,46,99,108,105,101,110,116,46,84,114,105,97,108,66,117,105,108,100,82,4,108,105,115,116,34,214,1,10,14,84,114,105,97,108,67,104,97,114,97,99,116,101,114,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,22,10,6,67,104,97,114,73,100,24,3,32,1,40,5,82,6,67,104,97,114,73,100,18,36,10,13,67,104,97,114,97,99,116,101,114,83,107,105,110,24,4,32,1,40,5,82,13,67,104,97,114,97,99,116,101,114,83,107,105,110,18,20,10,5,66,114,101,97,107,24,5,32,1,40,5,82,5,66,114,101,97,107,18,20,10,5,76,101,118,101,108,24,6,32,1,40,5,82,5,76,101,118,101,108,18,30,10,10,83,107,105,108,108,76,101,118,101,108,24,7,32,3,40,5,82,10,83,107,105,108,108,76,101,118,101,108,18,22,10,6,84,97,108,101,110,116,24,8,32,3,40,5,82,6,84,97,108,101,110,116,34,71,10,20,116,97,98,108,101,95,84,114,105,97,108,67,104,97,114,97,99,116,101,114,18,47,10,4,108,105,115,116,24,1,32,3,40,11,50,27,46,110,111,118,97,46,99,108,105,101,110,116,46,84,114,105,97,108,67,104,97,114,97,99,116,101,114,82,4,108,105,115,116,34,115,10,9,84,114,105,97,108,68,105,115,99,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,22,10,6,68,105,115,99,73,100,24,2,32,1,40,5,82,6,68,105,115,99,73,100,18,20,10,5,80,104,97,115,101,24,3,32,1,40,5,82,5,80,104,97,115,101,18,20,10,5,76,101,118,101,108,24,4,32,1,40,5,82,5,76,101,118,101,108,18,18,10,4,83,116,97,114,24,5,32,1,40,5,82,4,83,116,97,114,34,61,10,15,116,97,98,108,101,95,84,114,105,97,108,68,105,115,99,18,42,10,4,108,105,115,116,24,1,32,3,40,11,50,22,46,110,111,118,97,46,99,108,105,101,110,116,46,84,114,105,97,108,68,105,115,99,82,4,108,105,115,116,34,44,10,6,85,73,84,101,120,116,18,14,10,2,73,100,24,1,32,1,40,9,82,2,73,100,18,18,10,4,84,101,120,116,24,2,32,1,40,9,82,4,84,101,120,116,34,55,10,12,116,97,98,108,101,95,85,73,84,101,120,116,18,39,10,4,108,105,115,116,24,1,32,3,40,11,50,19,46,110,111,118,97,46,99,108,105,101,110,116,46,85,73,84,101,120,116,82,4,108,105,115,116,34,204,5,10,22,86,97,109,112,105,114,101,66,97,116,116,108,101,84,104,114,101,115,104,111,108,100,18,28,10,9,77,105,115,115,105,111,110,73,100,24,1,32,1,40,5,82,9,77,105,115,115,105,111,110,73,100,18,24,10,7,86,101,114,115,105,111,110,24,2,32,1,40,5,82,7,86,101,114,115,105,111,110,18,30,10,10,102,114,111,109,83,114,99,65,116,107,24,3,32,1,40,5,82,10,102,114,111,109,83,114,99,65,116,107,18,54,10,22,102,114,111,109,80,101,114,107,73,110,116,101,110,115,105,116,121,82,97,116,105,111,24,4,32,1,40,5,82,22,102,114,111,109,80,101,114,107,73,110,116,101,110,115,105,116,121,82,97,116,105,111,18,42,10,16,102,114,111,109,83,108,111,116,68,109,103,82,97,116,105,111,24,5,32,1,40,5,82,16,102,114,111,109,83,108,111,116,68,109,103,82,97,116,105,111,18,22,10,6,102,114,111,109,69,69,24,6,32,1,40,5,82,6,102,114,111,109,69,69,18,40,10,15,102,114,111,109,71,101,110,68,109,103,82,97,116,105,111,24,7,32,1,40,5,82,15,102,114,111,109,71,101,110,68,109,103,82,97,116,105,111,18,32,10,11,102,114,111,109,68,109,103,80,108,117,115,24,8,32,1,40,5,82,11,102,114,111,109,68,109,103,80,108,117,115,18,36,10,13,102,114,111,109,67,114,105,116,82,97,116,105,111,24,9,32,1,40,5,82,13,102,114,111,109,67,114,105,116,82,97,116,105,111,18,44,10,17,102,114,111,109,70,105,110,97,108,68,109,103,82,97,116,105,111,24,10,32,1,40,5,82,17,102,114,111,109,70,105,110,97,108,68,109,103,82,97,116,105,111,18,42,10,16,102,114,111,109,70,105,110,97,108,68,109,103,80,108,117,115,24,11,32,1,40,5,82,16,102,114,111,109,70,105,110,97,108,68,109,103,80,108,117,115,18,28,10,9,116,111,69,114,65,109,101,110,100,24,12,32,1,40,5,82,9,116,111,69,114,65,109,101,110,100,18,30,10,10,116,111,68,101,102,65,109,101,110,100,24,13,32,1,40,5,82,10,116,111,68,101,102,65,109,101,110,100,18,44,10,17,116,111,82,99,100,83,108,111,116,68,109,103,82,97,116,105,111,24,14,32,1,40,5,82,17,116,111,82,99,100,83,108,111,116,68,109,103,82,97,116,105,111,18,24,10,7,116,111,69,69,82,67,68,24,15,32,1,40,5,82,7,116,111,69,69,82,67,68,18,42,10,16,116,111,71,101,110,68,109,103,82,99,100,82,97,116,105,111,24,16,32,1,40,5,82,16,116,111,71,101,110,68,109,103,82,99,100,82,97,116,105,111,18,34,10,12,116,111,68,109,103,80,108,117,115,82,99,100,24,17,32,1,40,5,82,12,116,111,68,109,103,80,108,117,115,82,99,100,18,16,10,3,68,109,103,24,18,32,1,40,5,82,3,68,109,103,18,26,10,8,67,114,105,116,82,97,116,101,24,19,32,1,40,5,82,8,67,114,105,116,82,97,116,101,18,14,10,2,72,112,24,20,32,1,40,5,82,2,72,112,34,87,10,28,116,97,98,108,101,95,86,97,109,112,105,114,101,66,97,116,116,108,101,84,104,114,101,115,104,111,108,100,18,55,10,4,108,105,115,116,24,1,32,3,40,11,50,35,46,110,111,118,97,46,99,108,105,101,110,116,46,86,97,109,112,105,114,101,66,97,116,116,108,101,84,104,114,101,115,104,111,108,100,82,4,108,105,115,116,34,200,1,10,16,86,97,109,112,105,114,101,69,110,101,109,121,80,111,111,108,18,22,10,6,80,111,111,108,73,100,24,1,32,1,40,5,82,6,80,111,111,108,73,100,18,24,10,7,87,97,118,101,78,117,109,24,2,32,1,40,5,82,7,87,97,118,101,78,117,109,18,34,10,12,77,111,110,115,116,101,114,76,101,118,101,108,24,3,32,1,40,5,82,12,77,111,110,115,116,101,114,76,101,118,101,108,18,30,10,10,69,110,101,109,121,83,101,116,73,68,24,4,32,1,40,5,82,10,69,110,101,109,121,83,101,116,73,68,18,34,10,12,87,97,118,101,75,101,101,112,84,105,109,101,24,5,32,1,40,5,82,12,87,97,118,101,75,101,101,112,84,105,109,101,18,26,10,8,80,111,111,108,84,121,112,101,24,6,32,1,40,5,82,8,80,111,111,108,84,121,112,101,34,75,10,22,116,97,98,108,101,95,86,97,109,112,105,114,101,69,110,101,109,121,80,111,111,108,18,49,10,4,108,105,115,116,24,1,32,3,40,11,50,29,46,110,111,118,97,46,99,108,105,101,110,116,46,86,97,109,112,105,114,101,69,110,101,109,121,80,111,111,108,82,4,108,105,115,116,34,177,3,10,15,86,97,109,112,105,114,101,69,110,101,109,121,83,101,116,18,20,10,5,83,101,116,73,100,24,1,32,1,40,5,82,5,83,101,116,73,100,18,26,10,8,71,114,111,117,112,78,117,109,24,2,32,1,40,5,82,8,71,114,111,117,112,78,117,109,18,28,10,9,77,111,110,115,116,101,114,73,100,24,3,32,1,40,5,82,9,77,111,110,115,116,101,114,73,100,18,32,10,11,76,101,118,101,108,67,104,97,110,103,101,24,4,32,1,40,5,82,11,76,101,118,101,108,67,104,97,110,103,101,18,28,10,9,68,101,108,97,121,84,105,109,101,24,5,32,1,40,5,82,9,68,101,108,97,121,84,105,109,101,18,22,10,6,77,97,120,78,117,109,24,6,32,1,40,5,82,6,77,97,120,78,117,109,18,24,10,7,65,100,100,68,97,116,97,24,7,32,3,40,5,82,7,65,100,100,68,97,116,97,18,44,10,17,77,97,120,78,117,109,73,109,112,114,111,118,101,68,97,116,97,24,8,32,3,40,5,82,17,77,97,120,78,117,109,73,109,112,114,111,118,101,68,97,116,97,18,42,10,16,77,111,110,115,116,101,114,83,112,97,119,110,84,121,112,101,24,9,32,1,40,5,82,16,77,111,110,115,116,101,114,83,112,97,119,110,84,121,112,101,18,34,10,12,77,111,110,115,116,101,114,80,111,105,110,116,24,10,32,1,40,5,82,12,77,111,110,115,116,101,114,80,111,105,110,116,18,24,10,7,68,114,111,112,69,120,112,24,11,32,3,40,5,82,7,68,114,111,112,69,120,112,18,28,10,9,68,114,111,112,67,104,101,115,116,24,12,32,3,40,5,82,9,68,114,111,112,67,104,101,115,116,18,38,10,14,77,111,110,115,116,101,114,87,97,114,110,105,110,103,24,13,32,1,40,5,82,14,77,111,110,115,116,101,114,87,97,114,110,105,110,103,34,73,10,21,116,97,98,108,101,95,86,97,109,112,105,114,101,69,110,101,109,121,83,101,116,18,48,10,4,108,105,115,116,24,1,32,3,40,11,50,28,46,110,111,118,97,46,99,108,105,101,110,116,46,86,97,109,112,105,114,101,69,110,101,109,121,83,101,116,82,4,108,105,115,116,34,104,10,18,86,97,109,112,105,114,101,69,110,101,109,121,83,112,65,116,116,114,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,32,10,11,82,101,102,68,105,115,116,97,110,99,101,24,2,32,3,40,5,82,11,82,101,102,68,105,115,116,97,110,99,101,18,32,10,11,82,101,102,73,110,116,101,114,118,97,108,24,3,32,3,40,5,82,11,82,101,102,73,110,116,101,114,118,97,108,34,79,10,24,116,97,98,108,101,95,86,97,109,112,105,114,101,69,110,101,109,121,83,112,65,116,116,114,18,51,10,4,108,105,115,116,24,1,32,3,40,11,50,31,46,110,111,118,97,46,99,108,105,101,110,116,46,86,97,109,112,105,114,101,69,110,101,109,121,83,112,65,116,116,114,82,4,108,105,115,116,34,240,2,10,12,86,97,109,112,105,114,101,70,108,111,111,114,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,20,10,5,77,97,112,73,100,24,2,32,1,40,5,82,5,77,97,112,73,100,18,28,10,9,87,97,118,101,67,111,117,110,116,24,3,32,3,40,5,82,9,87,97,118,101,67,111,117,110,116,18,40,10,15,70,105,114,115,116,72,97,108,102,80,111,111,108,73,100,24,4,32,1,40,5,82,15,70,105,114,115,116,72,97,108,102,80,111,111,108,73,100,18,28,10,9,70,72,65,102,102,105,120,73,100,24,5,32,3,40,5,82,9,70,72,65,102,102,105,120,73,100,18,26,10,8,70,72,66,111,115,115,73,100,24,6,32,1,40,5,82,8,70,72,66,111,115,115,73,100,18,42,10,16,83,101,99,111,110,100,72,97,108,102,80,111,111,108,73,100,24,7,32,1,40,5,82,16,83,101,99,111,110,100,72,97,108,102,80,111,111,108,73,100,18,28,10,9,83,72,65,102,102,105,120,73,100,24,8,32,3,40,5,82,9,83,72,65,102,102,105,120,73,100,18,26,10,8,83,72,66,111,115,115,73,100,24,9,32,1,40,5,82,8,83,72,66,111,115,115,73,100,18,44,10,17,83,112,101,99,105,97,108,69,110,101,109,121,83,101,116,73,100,24,10,32,1,40,9,82,17,83,112,101,99,105,97,108,69,110,101,109,121,83,101,116,73,100,18,36,10,13,84,114,101,97,115,117,114,101,83,101,116,73,100,24,11,32,1,40,9,82,13,84,114,101,97,115,117,114,101,83,101,116,73,100,34,67,10,18,116,97,98,108,101,95,86,97,109,112,105,114,101,70,108,111,111,114,18,45,10,4,108,105,115,116,24,1,32,3,40,11,50,25,46,110,111,118,97,46,99,108,105,101,110,116,46,86,97,109,112,105,114,101,70,108,111,111,114,82,4,108,105,115,116,34,188,1,10,10,86,97,109,112,105,114,101,77,97,112,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,28,10,9,83,99,101,110,101,78,97,109,101,24,2,32,1,40,9,82,9,83,99,101,110,101,78,97,109,101,18,42,10,16,67,111,110,102,105,103,80,114,101,102,97,98,78,97,109,101,24,3,32,1,40,9,82,16,67,111,110,102,105,103,80,114,101,102,97,98,78,97,109,101,18,20,10,5,84,104,101,109,101,24,4,32,1,40,5,82,5,84,104,101,109,101,18,16,10,3,66,71,77,24,5,32,1,40,9,82,3,66,71,77,18,44,10,17,76,101,97,118,101,84,114,105,103,103,101,114,69,118,101,110,116,24,6,32,1,40,9,82,17,76,101,97,118,101,84,114,105,103,103,101,114,69,118,101,110,116,34,63,10,16,116,97,98,108,101,95,86,97,109,112,105,114,101,77,97,112,18,43,10,4,108,105,115,116,24,1,32,3,40,11,50,23,46,110,111,118,97,46,99,108,105,101,110,116,46,86,97,109,112,105,114,101,77,97,112,82,4,108,105,115,116,34,217,1,10,17,86,97,109,112,105,114,101,82,97,110,107,82,101,119,97,114,100,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,28,10,9,82,97,110,107,76,111,119,101,114,24,2,32,1,40,5,82,9,82,97,110,107,76,111,119,101,114,18,36,10,13,65,119,97,114,100,73,116,101,109,84,105,100,49,24,3,32,1,40,5,82,13,65,119,97,114,100,73,116,101,109,84,105,100,49,18,36,10,13,65,119,97,114,100,73,116,101,109,78,117,109,49,24,4,32,1,40,5,82,13,65,119,97,114,100,73,116,101,109,78,117,109,49,18,36,10,13,65,119,97,114,100,73,116,101,109,84,105,100,50,24,5,32,1,40,5,82,13,65,119,97,114,100,73,116,101,109,84,105,100,50,18,36,10,13,65,119,97,114,100,73,116,101,109,78,117,109,50,24,6,32,1,40,5,82,13,65,119,97,114,100,73,116,101,109,78,117,109,50,34,77,10,23,116,97,98,108,101,95,86,97,109,112,105,114,101,82,97,110,107,82,101,119,97,114,100,18,50,10,4,108,105,115,116,24,1,32,3,40,11,50,30,46,110,111,118,97,46,99,108,105,101,110,116,46,86,97,109,112,105,114,101,82,97,110,107,82,101,119,97,114,100,82,4,108,105,115,116,34,151,1,10,17,86,97,109,112,105,114,101,82,97,110,107,83,101,97,115,111,110,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,28,10,9,77,105,115,115,105,111,110,73,100,24,2,32,1,40,5,82,9,77,105,115,115,105,111,110,73,100,18,26,10,8,79,112,101,110,84,105,109,101,24,3,32,1,40,9,82,8,79,112,101,110,84,105,109,101,18,24,10,7,69,110,100,84,105,109,101,24,4,32,1,40,9,82,7,69,110,100,84,105,109,101,18,30,10,10,81,117,101,115,116,71,114,111,117,112,24,5,32,1,40,5,82,10,81,117,101,115,116,71,114,111,117,112,34,77,10,23,116,97,98,108,101,95,86,97,109,112,105,114,101,82,97,110,107,83,101,97,115,111,110,18,50,10,4,108,105,115,116,24,1,32,3,40,11,50,30,46,110,111,118,97,46,99,108,105,101,110,116,46,86,97,109,112,105,114,101,82,97,110,107,83,101,97,115,111,110,82,4,108,105,115,116,34,235,8,10,15,86,97,109,112,105,114,101,83,117,114,118,105,118,111,114,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,18,10,4,68,101,115,99,24,3,32,1,40,9,82,4,68,101,115,99,18,16,10,3,69,69,84,24,4,32,3,40,5,82,3,69,69,84,18,22,10,6,78,111,116,69,69,84,24,5,32,3,40,5,82,6,78,111,116,69,69,84,18,38,10,14,83,117,103,103,101,115,116,101,100,80,111,119,101,114,24,6,32,1,40,5,82,14,83,117,103,103,101,115,116,101,100,80,111,119,101,114,18,46,10,18,82,101,99,111,109,109,101,110,100,66,117,105,108,100,82,97,110,107,24,7,32,1,40,5,82,18,82,101,99,111,109,109,101,110,100,66,117,105,108,100,82,97,110,107,18,18,10,4,84,121,112,101,24,8,32,1,40,5,82,4,84,121,112,101,18,30,10,10,80,114,101,76,101,118,101,108,73,100,24,9,32,1,40,5,82,10,80,114,101,76,101,118,101,108,73,100,18,38,10,14,78,101,101,100,87,111,114,108,100,67,108,97,115,115,24,10,32,1,40,5,82,14,78,101,101,100,87,111,114,108,100,67,108,97,115,115,18,44,10,17,70,105,114,115,116,81,117,101,115,116,71,114,111,117,112,73,100,24,11,32,1,40,5,82,17,70,105,114,115,116,81,117,101,115,116,71,114,111,117,112,73,100,18,34,10,12,76,101,118,101,108,71,114,111,117,112,73,100,24,12,32,1,40,5,82,12,76,101,118,101,108,71,114,111,117,112,73,100,18,24,10,7,70,108,111,111,114,73,100,24,13,32,1,40,5,82,7,70,108,111,111,114,73,100,18,34,10,12,78,111,114,109,97,108,83,99,111,114,101,49,24,14,32,1,40,5,82,12,78,111,114,109,97,108,83,99,111,114,101,49,18,32,10,11,69,108,105,116,101,83,99,111,114,101,49,24,15,32,1,40,5,82,11,69,108,105,116,101,83,99,111,114,101,49,18,30,10,10,66,111,115,115,83,99,111,114,101,49,24,16,32,1,40,5,82,10,66,111,115,115,83,99,111,114,101,49,18,30,10,10,84,105,109,101,83,99,111,114,101,49,24,17,32,1,40,5,82,10,84,105,109,101,83,99,111,114,101,49,18,30,10,10,84,105,109,101,76,105,109,105,116,49,24,18,32,1,40,5,82,10,84,105,109,101,76,105,109,105,116,49,18,34,10,12,78,111,114,109,97,108,83,99,111,114,101,50,24,19,32,1,40,5,82,12,78,111,114,109,97,108,83,99,111,114,101,50,18,32,10,11,69,108,105,116,101,83,99,111,114,101,50,24,20,32,1,40,5,82,11,69,108,105,116,101,83,99,111,114,101,50,18,30,10,10,66,111,115,115,83,99,111,114,101,50,24,21,32,1,40,5,82,10,66,111,115,115,83,99,111,114,101,50,18,30,10,10,84,105,109,101,83,99,111,114,101,50,24,22,32,1,40,5,82,10,84,105,109,101,83,99,111,114,101,50,18,30,10,10,84,105,109,101,76,105,109,105,116,50,24,23,32,1,40,5,82,10,84,105,109,101,76,105,109,105,116,50,18,28,10,9,69,69,84,83,99,111,114,101,49,24,24,32,3,40,5,82,9,69,69,84,83,99,111,114,101,49,18,28,10,9,69,69,84,83,99,111,114,101,50,24,25,32,3,40,5,82,9,69,69,84,83,99,111,114,101,50,18,56,10,23,70,72,80,114,101,118,105,101,119,77,111,110,115,116,101,114,71,114,111,117,112,73,100,24,26,32,1,40,5,82,23,70,72,80,114,101,118,105,101,119,77,111,110,115,116,101,114,71,114,111,117,112,73,100,18,56,10,23,83,72,80,114,101,118,105,101,119,77,111,110,115,116,101,114,71,114,111,117,112,73,100,24,27,32,1,40,5,82,23,83,72,80,114,101,118,105,101,119,77,111,110,115,116,101,114,71,114,111,117,112,73,100,18,34,10,12,67,111,118,101,114,69,112,105,115,111,100,101,24,28,32,1,40,9,82,12,67,111,118,101,114,69,112,105,115,111,100,101,18,24,10,7,69,112,105,115,111,100,101,24,29,32,1,40,9,82,7,69,112,105,115,111,100,101,18,26,10,8,69,112,105,115,111,100,101,50,24,30,32,1,40,9,82,8,69,112,105,115,111,100,101,50,18,38,10,14,70,97,116,101,67,97,114,100,66,117,110,100,108,101,24,31,32,3,40,5,82,14,70,97,116,101,67,97,114,100,66,117,110,100,108,101,18,38,10,14,83,112,101,99,105,97,70,97,116,101,67,97,114,100,24,32,32,1,40,9,82,14,83,112,101,99,105,97,70,97,116,101,67,97,114,100,18,48,10,19,83,112,101,99,105,97,70,97,116,101,67,97,114,100,80,97,114,97,109,24,33,32,1,40,9,82,19,83,112,101,99,105,97,70,97,116,101,67,97,114,100,80,97,114,97,109,34,73,10,21,116,97,98,108,101,95,86,97,109,112,105,114,101,83,117,114,118,105,118,111,114,18,48,10,4,108,105,115,116,24,1,32,3,40,11,50,28,46,110,111,118,97,46,99,108,105,101,110,116,46,86,97,109,112,105,114,101,83,117,114,118,105,118,111,114,82,4,108,105,115,116,34,88,10,20,86,97,109,112,105,114,101,83,117,114,118,105,118,111,114,76,101,118,101,108,18,24,10,7,71,114,111,117,112,73,68,24,1,32,1,40,5,82,7,71,114,111,117,112,73,68,18,20,10,5,76,101,118,101,108,24,2,32,1,40,5,82,5,76,101,118,101,108,18,16,10,3,69,120,112,24,3,32,1,40,5,82,3,69,120,112,34,83,10,26,116,97,98,108,101,95,86,97,109,112,105,114,101,83,117,114,118,105,118,111,114,76,101,118,101,108,18,53,10,4,108,105,115,116,24,1,32,3,40,11,50,33,46,110,111,118,97,46,99,108,105,101,110,116,46,86,97,109,112,105,114,101,83,117,114,118,105,118,111,114,76,101,118,101,108,82,4,108,105,115,116,34,228,3,10,20,86,97,109,112,105,114,101,83,117,114,118,105,118,111,114,81,117,101,115,116,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,24,10,7,71,114,111,117,112,73,100,24,2,32,1,40,5,82,7,71,114,111,117,112,73,100,18,20,10,5,84,105,116,108,101,24,3,32,1,40,9,82,5,84,105,116,108,101,18,18,10,4,68,101,115,99,24,4,32,1,40,9,82,4,68,101,115,99,18,22,10,6,74,117,109,112,84,111,24,5,32,1,40,5,82,6,74,117,109,112,84,111,18,20,10,5,79,114,100,101,114,24,6,32,1,40,5,82,5,79,114,100,101,114,18,18,10,4,84,121,112,101,24,7,32,1,40,5,82,4,84,121,112,101,18,34,10,12,67,111,109,112,108,101,116,101,67,111,110,100,24,8,32,1,40,5,82,12,67,111,109,112,108,101,116,101,67,111,110,100,18,46,10,18,67,111,109,112,108,101,116,101,67,111,110,100,80,97,114,97,109,115,24,9,32,1,40,9,82,18,67,111,109,112,108,101,116,101,67,111,110,100,80,97,114,97,109,115,18,36,10,13,65,119,97,114,100,73,116,101,109,84,105,100,49,24,10,32,1,40,5,82,13,65,119,97,114,100,73,116,101,109,84,105,100,49,18,36,10,13,65,119,97,114,100,73,116,101,109,78,117,109,49,24,11,32,1,40,5,82,13,65,119,97,114,100,73,116,101,109,78,117,109,49,18,36,10,13,65,119,97,114,100,73,116,101,109,84,105,100,50,24,12,32,1,40,5,82,13,65,119,97,114,100,73,116,101,109,84,105,100,50,18,36,10,13,65,119,97,114,100,73,116,101,109,78,117,109,50,24,13,32,1,40,5,82,13,65,119,97,114,100,73,116,101,109,78,117,109,50,18,36,10,13,65,119,97,114,100,73,116,101,109,84,105,100,51,24,14,32,1,40,5,82,13,65,119,97,114,100,73,116,101,109,84,105,100,51,18,36,10,13,65,119,97,114,100,73,116,101,109,78,117,109,51,24,15,32,1,40,5,82,13,65,119,97,114,100,73,116,101,109,78,117,109,51,34,83,10,26,116,97,98,108,101,95,86,97,109,112,105,114,101,83,117,114,118,105,118,111,114,81,117,101,115,116,18,53,10,4,108,105,115,116,24,1,32,3,40,11,50,33,46,110,111,118,97,46,99,108,105,101,110,116,46,86,97,109,112,105,114,101,83,117,114,118,105,118,111,114,81,117,101,115,116,82,4,108,105,115,116,34,165,2,10,13,86,97,109,112,105,114,101,84,97,108,101,110,116,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,18,10,4,78,97,109,101,24,2,32,1,40,9,82,4,78,97,109,101,18,24,10,7,68,101,115,99,84,97,103,24,3,32,1,40,5,82,7,68,101,115,99,84,97,103,18,20,10,5,80,97,114,97,109,24,4,32,1,40,5,82,5,80,97,114,97,109,18,18,10,4,80,114,101,118,24,5,32,3,40,5,82,4,80,114,101,118,18,26,10,8,73,115,83,101,114,118,101,114,24,6,32,1,40,8,82,8,73,115,83,101,114,118,101,114,18,26,10,8,73,115,67,108,105,101,110,116,24,7,32,1,40,8,82,8,73,115,67,108,105,101,110,116,18,22,10,6,69,102,102,101,99,116,24,8,32,1,40,5,82,6,69,102,102,101,99,116,18,22,10,6,80,97,114,97,109,115,24,9,32,1,40,9,82,6,80,97,114,97,109,115,18,20,10,5,80,111,105,110,116,24,10,32,1,40,5,82,5,80,111,105,110,116,18,18,10,4,73,99,111,110,24,11,32,1,40,9,82,4,73,99,111,110,18,26,10,8,69,102,102,101,99,116,73,100,24,12,32,1,40,5,82,8,69,102,102,101,99,116,73,100,34,69,10,19,116,97,98,108,101,95,86,97,109,112,105,114,101,84,97,108,101,110,116,18,46,10,4,108,105,115,116,24,1,32,3,40,11,50,26,46,110,111,118,97,46,99,108,105,101,110,116,46,86,97,109,112,105,114,101,84,97,108,101,110,116,82,4,108,105,115,116,34,53,10,17,86,97,109,112,105,114,101,84,97,108,101,110,116,68,101,115,99,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,16,10,3,78,117,109,24,2,32,1,40,9,82,3,78,117,109,34,77,10,23,116,97,98,108,101,95,86,97,109,112,105,114,101,84,97,108,101,110,116,68,101,115,99,18,50,10,4,108,105,115,116,24,1,32,3,40,11,50,30,46,110,111,118,97,46,99,108,105,101,110,116,46,86,97,109,112,105,114,101,84,97,108,101,110,116,68,101,115,99,82,4,108,105,115,116,34,82,10,18,86,97,109,112,105,114,101,84,97,108,101,110,116,70,108,111,111,114,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,16,10,3,78,117,109,24,2,32,1,40,5,82,3,78,117,109,18,26,10,8,84,97,108,101,110,116,73,100,24,3,32,3,40,5,82,8,84,97,108,101,110,116,73,100,34,79,10,24,116,97,98,108,101,95,86,97,109,112,105,114,101,84,97,108,101,110,116,70,108,111,111,114,18,51,10,4,108,105,115,116,24,1,32,3,40,11,50,31,46,110,111,118,97,46,99,108,105,101,110,116,46,86,97,109,112,105,114,101,84,97,108,101,110,116,70,108,111,111,114,82,4,108,105,115,116,34,165,1,10,11,86,111,68,105,114,101,99,116,111,114,121,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,30,10,10,118,111,82,101,115,111,117,114,99,101,24,2,32,1,40,9,82,10,118,111,82,101,115,111,117,114,99,101,18,32,10,11,99,104,97,114,97,99,116,101,114,73,100,24,3,32,1,40,5,82,11,99,104,97,114,97,99,116,101,114,73,100,18,22,10,6,118,111,116,121,112,101,24,4,32,1,40,9,82,6,118,111,116,121,112,101,18,20,10,5,108,105,110,101,115,24,5,32,1,40,9,82,5,108,105,110,101,115,18,22,10,6,109,111,116,105,111,110,24,6,32,1,40,9,82,6,109,111,116,105,111,110,34,65,10,17,116,97,98,108,101,95,86,111,68,105,114,101,99,116,111,114,121,18,44,10,4,108,105,115,116,24,1,32,3,40,11,50,24,46,110,111,118,97,46,99,108,105,101,110,116,46,86,111,68,105,114,101,99,116,111,114,121,82,4,108,105,115,116,34,89,10,15,87,101,105,103,104,116,80,97,114,97,109,101,116,101,114,18,14,10,2,105,100,24,1,32,1,40,5,82,2,105,100,18,30,10,10,80,114,111,112,111,114,116,105,111,110,24,2,32,1,40,5,82,10,80,114,111,112,111,114,116,105,111,110,18,22,10,6,101,102,102,101,99,116,24,3,32,1,40,5,82,6,101,102,102,101,99,116,34,73,10,21,116,97,98,108,101,95,87,101,105,103,104,116,80,97,114,97,109,101,116,101,114,18,48,10,4,108,105,115,116,24,1,32,3,40,11,50,28,46,110,111,118,97,46,99,108,105,101,110,116,46,87,101,105,103,104,116,80,97,114,97,109,101,116,101,114,82,4,108,105,115,116,34,220,2,10,4,87,111,114,100,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,20,10,5,84,105,116,108,101,24,2,32,1,40,9,82,5,84,105,116,108,101,18,18,10,4,68,101,115,99,24,3,32,1,40,9,82,4,68,101,115,99,18,20,10,5,67,111,108,111,114,24,4,32,1,40,9,82,5,67,111,108,111,114,18,18,10,4,73,99,111,110,24,5,32,1,40,9,82,4,73,99,111,110,18,22,10,6,80,97,114,97,109,49,24,6,32,1,40,9,82,6,80,97,114,97,109,49,18,22,10,6,80,97,114,97,109,50,24,7,32,1,40,9,82,6,80,97,114,97,109,50,18,22,10,6,80,97,114,97,109,51,24,8,32,1,40,9,82,6,80,97,114,97,109,51,18,22,10,6,80,97,114,97,109,52,24,9,32,1,40,9,82,6,80,97,114,97,109,52,18,22,10,6,80,97,114,97,109,53,24,10,32,1,40,9,82,6,80,97,114,97,109,53,18,22,10,6,80,97,114,97,109,54,24,11,32,1,40,9,82,6,80,97,114,97,109,54,18,22,10,6,80,97,114,97,109,55,24,12,32,1,40,9,82,6,80,97,114,97,109,55,18,22,10,6,80,97,114,97,109,56,24,13,32,1,40,9,82,6,80,97,114,97,109,56,18,22,10,6,80,97,114,97,109,57,24,14,32,1,40,9,82,6,80,97,114,97,109,57,18,24,10,7,80,97,114,97,109,49,48,24,15,32,1,40,9,82,7,80,97,114,97,109,49,48,34,51,10,10,116,97,98,108,101,95,87,111,114,100,18,37,10,4,108,105,115,116,24,1,32,3,40,11,50,17,46,110,111,118,97,46,99,108,105,101,110,116,46,87,111,114,100,82,4,108,105,115,116,34,225,2,10,9,87,111,114,100,83,117,112,101,114,18,14,10,2,73,100,24,1,32,1,40,5,82,2,73,100,18,20,10,5,84,105,116,108,101,24,2,32,1,40,9,82,5,84,105,116,108,101,18,20,10,5,67,111,108,111,114,24,3,32,1,40,9,82,5,67,111,108,111,114,18,18,10,4,73,99,111,110,24,4,32,1,40,9,82,4,73,99,111,110,18,18,10,4,68,101,115,99,24,5,32,1,40,9,82,4,68,101,115,99,18,22,10,6,80,97,114,97,109,49,24,6,32,1,40,9,82,6,80,97,114,97,109,49,18,22,10,6,80,97,114,97,109,50,24,7,32,1,40,9,82,6,80,97,114,97,109,50,18,22,10,6,80,97,114,97,109,51,24,8,32,1,40,9,82,6,80,97,114,97,109,51,18,22,10,6,80,97,114,97,109,52,24,9,32,1,40,9,82,6,80,97,114,97,109,52,18,22,10,6,80,97,114,97,109,53,24,10,32,1,40,9,82,6,80,97,114,97,109,53,18,22,10,6,80,97,114,97,109,54,24,11,32,1,40,9,82,6,80,97,114,97,109,54,18,22,10,6,80,97,114,97,109,55,24,12,32,1,40,9,82,6,80,97,114,97,109,55,18,22,10,6,80,97,114,97,109,56,24,13,32,1,40,9,82,6,80,97,114,97,109,56,18,22,10,6,80,97,114,97,109,57,24,14,32,1,40,9,82,6,80,97,114,97,109,57,18,24,10,7,80,97,114,97,109,49,48,24,15,32,1,40,9,82,7,80,97,114,97,109,49,48,34,61,10,15,116,97,98,108,101,95,87,111,114,100,83,117,112,101,114,18,42,10,4,108,105,115,116,24,1,32,3,40,11,50,22,46,110,111,118,97,46,99,108,105,101,110,116,46,87,111,114,100,83,117,112,101,114,82,4,108,105,115,116,34,186,1,10,10,87,111,114,108,100,67,108,97,115,115,18,18,10,4,82,97,110,107,24,1,32,1,40,5,82,4,82,97,110,107,18,16,10,3,69,120,112,24,2,32,1,40,5,82,3,69,120,112,18,20,10,5,76,105,109,105,116,24,3,32,1,40,5,82,5,76,105,109,105,116,18,20,10,5,65,100,100,101,100,24,4,32,1,40,5,82,5,65,100,100,101,100,18,32,10,11,68,111,117,98,108,101,67,111,117,110,116,24,5,32,1,40,5,82,11,68,111,117,98,108,101,67,111,117,110,116,18,22,10,6,82,101,119,97,114,100,24,6,32,1,40,9,82,6,82,101,119,97,114,100,18,32,10,11,82,101,119,97,114,100,76,105,109,105,116,24,7,32,1,40,5,82,11,82,101,119,97,114,100,76,105,109,105,116,34,63,10,16,116,97,98,108,101,95,87,111,114,108,100,67,108,97,115,115,18,43,10,4,108,105,115,116,24,1,32,3,40,11,50,23,46,110,111,118,97,46,99,108,105,101,110,116,46,87,111,114,108,100,67,108,97,115,115,82,4,108,105,115,116,98,6,112,114,111,116,111,51 }; + public static byte[] RogueLikeTempDataPB = new byte[] { 10,166,8,10,24,114,111,103,117,101,108,105,107,101,95,116,101,109,112,68,97,116,97,46,112,114,111,116,111,18,21,110,111,118,97,46,99,108,105,101,110,116,46,114,111,103,117,101,108,105,107,101,34,229,1,10,5,83,107,105,108,108,18,24,10,7,110,67,104,97,114,73,100,24,1,32,1,40,3,82,7,110,67,104,97,114,73,100,18,26,10,8,110,83,107,105,108,108,73,100,24,2,32,1,40,3,82,8,110,83,107,105,108,108,73,100,18,16,10,3,110,67,100,24,3,32,1,40,3,82,3,110,67,100,18,38,10,14,110,83,101,99,116,105,111,110,65,109,111,117,110,116,24,4,32,1,40,3,82,14,110,83,101,99,116,105,111,110,65,109,111,117,110,116,18,46,10,18,110,83,101,99,116,105,111,110,82,101,115,117,109,101,84,105,109,101,24,5,32,1,40,3,82,18,110,83,101,99,116,105,111,110,82,101,115,117,109,101,84,105,109,101,18,34,10,12,110,85,115,101,84,105,109,101,72,105,110,116,24,6,32,1,40,3,82,12,110,85,115,101,84,105,109,101,72,105,110,116,18,24,10,7,110,69,110,101,114,103,121,24,7,32,1,40,3,82,7,110,69,110,101,114,103,121,34,68,10,6,69,102,102,101,99,116,18,16,10,3,110,73,100,24,1,32,1,40,3,82,3,110,73,100,18,22,10,6,110,67,111,117,110,116,24,2,32,1,40,3,82,6,110,67,111,117,110,116,18,16,10,3,110,67,100,24,3,32,1,40,3,82,3,110,67,100,34,62,10,8,66,117,102,102,73,110,102,111,18,14,10,2,73,100,24,1,32,1,40,3,82,2,73,100,18,14,10,2,67,68,24,2,32,1,40,3,82,2,67,68,18,18,10,4,110,78,117,109,24,3,32,1,40,3,82,4,110,78,117,109,34,68,10,10,83,107,105,108,108,83,116,97,116,101,18,22,10,6,110,83,116,97,116,101,24,1,32,1,40,3,82,6,110,83,116,97,116,101,18,30,10,10,110,83,116,97,116,101,84,105,109,101,24,2,32,1,40,3,82,10,110,83,116,97,116,101,84,105,109,101,34,110,10,8,65,109,109,111,73,110,102,111,18,26,10,8,110,67,117,114,65,109,109,111,24,1,32,1,40,3,82,8,110,67,117,114,65,109,109,111,18,22,10,6,110,65,109,109,111,49,24,2,32,1,40,3,82,6,110,65,109,109,111,49,18,22,10,6,110,65,109,109,111,50,24,3,32,1,40,3,82,6,110,65,109,109,111,50,18,22,10,6,110,65,109,109,111,51,24,4,32,1,40,3,82,6,110,65,109,109,111,51,34,151,2,10,9,67,104,97,114,97,99,116,101,114,18,24,10,7,110,67,104,97,114,73,100,24,1,32,1,40,3,82,7,110,67,104,97,114,73,100,18,57,10,8,116,98,69,102,102,101,99,116,24,2,32,3,40,11,50,29,46,110,111,118,97,46,99,108,105,101,110,116,46,114,111,103,117,101,108,105,107,101,46,69,102,102,101,99,116,82,8,116,98,69,102,102,101,99,116,18,55,10,6,116,98,66,117,102,102,24,3,32,3,40,11,50,31,46,110,111,118,97,46,99,108,105,101,110,116,46,114,111,103,117,101,108,105,107,101,46,66,117,102,102,73,110,102,111,82,6,116,98,66,117,102,102,18,63,10,9,115,116,97,116,101,73,110,102,111,24,4,32,1,40,11,50,33,46,110,111,118,97,46,99,108,105,101,110,116,46,114,111,103,117,101,108,105,107,101,46,83,107,105,108,108,83,116,97,116,101,82,9,115,116,97,116,101,73,110,102,111,18,59,10,8,97,109,109,111,73,110,102,111,24,5,32,1,40,11,50,31,46,110,111,118,97,46,99,108,105,101,110,116,46,114,111,103,117,101,108,105,107,101,46,65,109,109,111,73,110,102,111,82,8,97,109,109,111,73,110,102,111,34,172,1,10,8,116,101,109,112,68,97,116,97,18,28,10,9,99,117,114,67,104,97,114,73,100,24,1,32,1,40,3,82,9,99,117,114,67,104,97,114,73,100,18,58,10,9,115,107,105,108,108,73,110,102,111,24,2,32,3,40,11,50,28,46,110,111,118,97,46,99,108,105,101,110,116,46,114,111,103,117,101,108,105,107,101,46,83,107,105,108,108,82,9,115,107,105,108,108,73,110,102,111,18,70,10,13,99,104,97,114,97,99,116,101,114,73,110,102,111,24,3,32,3,40,11,50,32,46,110,111,118,97,46,99,108,105,101,110,116,46,114,111,103,117,101,108,105,107,101,46,67,104,97,114,97,99,116,101,114,82,13,99,104,97,114,97,99,116,101,114,73,110,102,111,98,6,112,114,111,116,111,51 }; + } +} diff --git a/Novaria.Common/Utils/Utils.cs b/Novaria.Common/Utils/Utils.cs index bc5e15e..75a686f 100644 --- a/Novaria.Common/Utils/Utils.cs +++ b/Novaria.Common/Utils/Utils.cs @@ -1,4 +1,5 @@ -using System; +using Google.Protobuf.Reflection; +using System; using System.Collections.Generic; using System.Linq; using System.Text; @@ -8,6 +9,31 @@ namespace Novaria.Common.Utils { public static class Utils { + + public static void SaveFileDescriptorProtoToFile(FileDescriptorProto fileDescriptorProto, string outputDirectory) + { + if (fileDescriptorProto == null) + { + throw new ArgumentNullException(nameof(fileDescriptorProto)); + } + + if (string.IsNullOrEmpty(outputDirectory)) + { + throw new ArgumentException("Output directory cannot be null or empty", nameof(outputDirectory)); + } + + string protoName = fileDescriptorProto.Name ?? "unknown.proto"; + string protoContent = fileDescriptorProto.ToString(); + + string outputPath = Path.Combine(outputDirectory, protoName); + + Directory.CreateDirectory(Path.GetDirectoryName(outputPath)); + + File.WriteAllText(outputPath, protoContent); + + Console.WriteLine($"Saved {protoName} to {outputPath}"); + } + public static void PrintByteArray(byte[] byteArray) { if (byteArray == null || byteArray.Length == 0) diff --git a/Novaria.SDKServer/Controllers/Api/GatewayController.cs b/Novaria.SDKServer/Controllers/Api/GatewayController.cs new file mode 100644 index 0000000..5f0a611 --- /dev/null +++ b/Novaria.SDKServer/Controllers/Api/GatewayController.cs @@ -0,0 +1,104 @@ +using Microsoft.AspNetCore.Mvc; +using Novaria.Common.Crypto; +using System.Text.Json.Nodes; +using System.Text.Json.Serialization; +using System.Text.Json; +using System.Text; +using Serilog; +using Novaria.Common.Utils; +using System.IO; +using System.Numerics; +using System.Security.Cryptography; + +namespace Novaria.SDKServer.Controllers.Api +{ + [Route("/agent-zone-1")] + public class GatewayController : ControllerBase + { + public int req_count; + + [HttpPost] + public IActionResult PostRequest() + { + //var memoryStream = new MemoryStream(); + + //Request.Body.CopyTo(memoryStream); + //byte[] requestBodyBytes = memoryStream.ToArray(); + //Log.Information("Received Gateway Post Request, Payload: "); + //Utils.PrintByteArray(requestBodyBytes); + + Response.Headers.Add("Date", DateTime.UtcNow.ToString("R")); + Response.Headers.Add("Content-Length", "171"); + Response.Headers.Add("Connection", "keep-alive"); + + Response.Headers.Append("Set-Cookie", "SERVERID=eef797ff9d3671d413582d7dc2f39f29|1736422941|1736422941;Path=/"); + Response.Headers.Append("Set-Cookie", "SERVERCORSID=eef797ff9d3671d413582d7dc2f39f29|1736422941|1736422941;Path=/;SameSite=None;Secure"); + + string filePath = "E:\\documents\\Decompiling\\Extracted\\NOVA\\Novaria\\Novaria.SDKServer\\response1"; // Replace with the actual file path + + if (req_count == 1) + { + filePath = "E:\\documents\\Decompiling\\Extracted\\NOVA\\Novaria\\Novaria.SDKServer\\response2"; // Replace with the actual file path + } + + byte[] fileBytes = System.IO.File.ReadAllBytes(filePath); + + Response.Body.WriteAsync(fileBytes, 0, fileBytes.Length); + + req_count++; + + return new EmptyResult(); + } + + [HttpOptions] // Ike + public IActionResult OptionsRequest() + { + // store key which is used in AeadTool + + // Set response headers + Response.Headers.Add("Date", DateTime.UtcNow.ToString("R")); + Response.Headers.Add("Content-Length", "251"); + Response.Headers.Add("Connection", "keep-alive"); + + // Set cookies + Response.Headers.Append("Set-Cookie", "acw_tc=cb6df452e3196d1ec00d2fcdf7726b25ed2accbaa45e1066701a61d2da90b384;path=/;HttpOnly;Max-Age=1800"); + Response.Headers.Append("Set-Cookie", "SERVERID=eef797ff9d3671d413582d7dc2f39f29|1736422941|1736422941;Path=/"); + Response.Headers.Append("Set-Cookie", "SERVERCORSID=eef797ff9d3671d413582d7dc2f39f29|1736422941|1736422941;Path=/;SameSite=None;Secure"); + + // Set binary content as the response body + string filePath = "E:\\documents\\Decompiling\\Extracted\\NOVA\\Novaria\\Novaria.SDKServer\\options_response"; // Replace with the actual file path + byte[] fileBytes = System.IO.File.ReadAllBytes(filePath); + + // Write bytes directly to response body + Response.Body.WriteAsync(fileBytes, 0, fileBytes.Length); + + // Return no content since the body is written manually + return new EmptyResult(); + } + + //private DiffieHellmanManaged SendKey; + + //// put in connection prob + //public static void SetAeadKey(byte[] pubKey) // original lead to HttpNetworkManager + //{ + // byte[] array = this.SendKey.DecryptKeyExchange(pubKey); + // int num = array.Length; + // if (num > 32) + // { + // num = 32; + // } + // this.key3 = new byte[32]; + // Buffer.BlockCopy(array, 0, this.key3, 0, num); + // this.HasKey3 = true; + // this.seq = 1; + //} + + //public byte[] DecryptKeyExchange(byte[] keyEx) + //{ + // BigInteger bigInteger = new BigInteger(keyEx).ModPow(this.m_X, this.m_P); + // byte[] bytes = bigInteger.GetBytes(); + // bigInteger.Clear(); + // return bytes; + //} + } +} diff --git a/Novaria.SDKServer/Controllers/HealthGameController.cs b/Novaria.SDKServer/Controllers/HealthGameController.cs new file mode 100644 index 0000000..712a2e6 --- /dev/null +++ b/Novaria.SDKServer/Controllers/HealthGameController.cs @@ -0,0 +1,35 @@ +using Microsoft.AspNetCore.Mvc; +using Serilog; + +namespace Novaria.SDKServer.CoNovariaollers +{ + [ApiController] + [Route("/health-game")] + public class HealthGameController : ControllerBase + { + [Route("identity-auth")] + public IResult PostIdentityAuth() + { + Log.Information("post login received!"); + + string jsonResponse = @" +{ + ""Code"": 200, + ""Data"": { + ""Identity"": { + ""BirthDate"": """", + ""IDCard"": ""500*********11861*"", + ""PI"": """", + ""RealName"": ""*æ€"", + ""State"": 1, + ""Type"": 0, + ""Underage"": false + } + }, + ""Msg"": ""OK"" +} +"; + return Results.Text(jsonResponse, "application/json"); + } + } +} diff --git a/Novaria.SDKServer/Controllers/MetaController.cs b/Novaria.SDKServer/Controllers/MetaController.cs index b31a6af..07b0b96 100644 --- a/Novaria.SDKServer/Controllers/MetaController.cs +++ b/Novaria.SDKServer/Controllers/MetaController.cs @@ -39,20 +39,6 @@ namespace Novaria.SDKServer.CoNovariaollers Log.Information("Response bytes:"); return File(response, "text/html"); } - - [HttpGet("{*catchAll}")] - public IResult CatchAllGet(string catchAll) - { - Log.Information($"HttpGet: {catchAll}"); - return Results.Empty; - } - - [HttpPost("{*catchAll}")] - public IResult CatchAllPost(string catchAll) - { - Log.Information($"HttpGet: {catchAll}"); - return Results.Empty; - } } } diff --git a/Novaria.SDKServer/Controllers/SDKController.cs b/Novaria.SDKServer/Controllers/SDKController.cs deleted file mode 100644 index 045151b..0000000 --- a/Novaria.SDKServer/Controllers/SDKController.cs +++ /dev/null @@ -1,23 +0,0 @@ -using Microsoft.AspNetCore.Mvc; -using Serilog; - -namespace Novaria.SDKServer.CoNovariaollers -{ - [ApiController] - [Route("/user")] - public class SDKController : ControllerBase - { - [Route("login")] - public IResult PostLogin() - { - Log.Information("post login received!"); - return Results.Text(@" -{ - ""Code"": 200, - ""Data"": {}, - ""Msg"": ""å¤èèŽ‰æ˜¯å°æ¥ æ¢"" -} -"); - } - } -} diff --git a/Novaria.SDKServer/Controllers/UserController.cs b/Novaria.SDKServer/Controllers/UserController.cs new file mode 100644 index 0000000..899f7d6 --- /dev/null +++ b/Novaria.SDKServer/Controllers/UserController.cs @@ -0,0 +1,129 @@ +using Microsoft.AspNetCore.Mvc; +using Serilog; + +namespace Novaria.SDKServer.CoNovariaollers +{ + [ApiController] + [Route("/user")] + public class UserController : ControllerBase + { + [Route("login")] + public IResult PostLogin() + { + Log.Information("post login received!"); + + string jsonResponse = @" +{ + ""Code"": 200, + ""Data"": { + ""IsNew"": true, + ""IsTestAccount"": false, + ""User"": { + ""DestroyState"": 0, + ""ID"": 1, + ""PID"": ""CN-NOVA"", + ""State"": 1, + ""Token"": ""f94d936f7235f84493564ee0282e845cccd44828"" + } + }, + ""Msg"": ""OK"" +} +"; + return Results.Text(jsonResponse, "application/json"); + } + + [Route("quick-login")] + public IResult PostQuickLogin() + { + Log.Information("post login received!"); + + string jsonResponse = @" +{ + ""Code"": 200, + ""Data"": { + ""Destroy"": { + ""DestroyAt"": 0 + }, + ""Identity"": { + ""BirthDate"": """", + ""IDCard"": ""500*********11861*"", + ""PI"": """", + ""RealName"": ""*æ€"", + ""State"": 1, + ""Type"": 0, + ""Underage"": false + }, + ""IsTestAccount"": false, + ""Keys"": [ + { + ""NickName"": ""123****4567"", + ""Type"": ""mobile"" + } + ], + ""User"": { + ""DestroyState"": 0, + ""ID"": 1, + ""PID"": ""CN-NOVA"", + ""State"": 1, + ""Token"": ""f94d936f7235f84493564ee0282e845cccd44828"" + }, + ""Yostar"": { + ""CreatedAt"": 1735902342, + ""DefaultNickName"": """", + ""ID"": 1, + ""NickName"": ""å¤èèŽ‰æ˜¯å°æ¥ æ¢"", + ""Picture"": """", + ""State"": 1 + } + }, + ""Msg"": ""OK"" +} +"; + return Results.Text(jsonResponse, "application/json"); + + } + + [Route("detail")] + public IResult PostDetail() + { + string jsonResponse = @" +{ + ""Code"": 200, + ""Data"": { + ""Destroy"": { + ""DestroyAt"": 0 + }, + ""Identity"": null, + ""IsTestAccount"": false, + ""Keys"": [ + { + ""NickName"": ""123****4567"", + ""Type"": ""mobile"" + } + ], + ""User"": { + ""DestroyState"": 0, + ""ID"": 1, + ""PID"": ""CN-NOVA"", + ""State"": 1, + ""Token"": ""f94d936f7235f84493564ee0282e845cccd44828"" + }, + ""Yostar"": { + ""CreatedAt"": 1, + ""DefaultNickName"": """", + ""ID"": 1, + ""NickName"": ""å¤èèŽ‰æ˜¯å°æ¥ æ¢"", + ""Picture"": """", + ""State"": 1 + } + }, + ""Msg"": ""OK"" +} +"; + + return Results.Text(jsonResponse, "application/json"); + } + + + } +} diff --git a/Novaria.SDKServer/Novaria.SDKServer.csproj b/Novaria.SDKServer/Novaria.SDKServer.csproj index 63325fb..c2453ba 100644 --- a/Novaria.SDKServer/Novaria.SDKServer.csproj +++ b/Novaria.SDKServer/Novaria.SDKServer.csproj @@ -14,9 +14,12 @@ + + + diff --git a/Novaria.SDKServer/SDKServer.cs b/Novaria.SDKServer/SDKServer.cs index b93d4f4..059e1a7 100644 --- a/Novaria.SDKServer/SDKServer.cs +++ b/Novaria.SDKServer/SDKServer.cs @@ -1,7 +1,11 @@ -using System.Reflection; -using System.Security.Cryptography; +using System.Collections; +using System.Reflection; using Google.Protobuf; +using Google.Protobuf.Reflection; using Microsoft.AspNetCore.Server.Kestrel.Core; +using Newtonsoft.Json; +using Novaria.Common.Crypto; +using Novaria.Common.Utils; using Pb; using Serilog; @@ -11,6 +15,106 @@ namespace Novaria.SDKServer { public static void Main(string[] args) { + var protos = FileDescriptorSet.Parser.ParseFrom(PB.ProtoPB); + var tables = FileDescriptorSet.Parser.ParseFrom(PB.TablePB); + var tempDatas = FileDescriptorSet.Parser.ParseFrom(PB.RogueLikeTempDataPB); + + foreach (var fileDescriptorProto in protos.File) + { + + Console.WriteLine(fileDescriptorProto.ToString()); + //Utils.SaveFileDescriptorProtoToFile(fileDescriptorProto, "protos"); + } + + foreach (var fileDescriptorProto in tables.File) + { + //Utils.SaveFileDescriptorProtoToFile(fileDescriptorProto, "tables"); + } + + foreach (var fileDescriptorProto in tempDatas.File) + { + //Utils.SaveFileDescriptorProtoToFile(fileDescriptorProto, "temp_datas"); + } + + Span ss = new byte[] +{ + 0, 5, 10, 134, 1, 68, 109, 47, 77, 102, 110, 116, 78, 49, 107, 78, + 97, 83, 47, 49, 79, 110, 121, 51, 86, 82, 76, 100, 90, 67, 69, 113, + 47, 71, 47, 70, 81, 112, 83, 86, 65, 114, 48, 81, 112, 101, 107, 104, + 104, 106, 83, 69, 48, 51, 73, 121, 107, 108, 65, 102, 65, 84, 112, 83, + 56, 85, 80, 76, 107, 76, 103, 48, 80, 119, 116, 80, 48, 67, 78, 86, + 43, 76, 85, 103, 98, 51, 75, 97, 79, 111, 56, 89, 115, 106, 68, 66, + 86, 77, 51, 47, 65, 83, 108, 80, 77, 109, 56, 68, 50, 111, 119, 108, + 71, 119, 106, 81, 83, 71, 105, 54, 106, 79, 97, 102, 99, 49, 122, 84, + 98, 107, 89, 81, 121, 76, 43, 56, 121, 90, 103 +}; + + Span result = new byte[ss.Length]; + + ReadOnlySpan key = new byte[] + { + 21, 218, 151, 4, 236, 175, 191, 183, 193, 244, 248, 163, 11, 144, 99, 164, + 138, 121, 155, 96, 50, 149, 206, 111, 180, 143, 229, 65, 219, 192, 118, 47 + }; + + ReadOnlySpan nonce = new byte[] + { + 231, 71, 160, 150, 98, 120, 185, 234, 18, 80, 239, 227 + }; + + ReadOnlySpan data = new byte[] + { + 18, 191, 220, 69, 194, 61, 223, 106, 190, 177, 23, 221, 204, 255, 80, 97, + 197, 131, 41, 185, 42, 139, 225, 133, 223, 140, 11, 43, 152, 78, 4, 163, + 87, 50, 33, 61, 168, 219, 213, 188, 78, 115, 60, 143, 185, 165, 3, 62, + 154, 34, 156, 61, 175, 105, 25, 129, 254, 143, 225, 107, 211, 9, 201, 7, + 10, 85, 115, 115, 131, 209, 20, 48, 124, 149, 33, 52, 204, 166, 154, 207, + 206, 28, 76, 249, 48, 191, 249, 11, 236, 193, 49, 216, 226, 101, 52, 234, + 73, 79, 154, 226, 141, 9, 70, 194, 252, 202, 65, 168, 247, 161, 228, 84, + 246, 133, 84, 64, 64, 252, 55, 44, 5, 164, 143, 110, 140, 232, 125, 91, + 244, 62, 170, 18, 0, 212, 72, 235, 250, 85, 143, 89, 26, 162, 186, 243, + 4, 222, 193, 249, 215, 243, 155, 204, 88, 131, 145 + }; + + AeadTool.Dencrypt_ChaCha20(result, key, nonce, data); + + Utils.PrintByteArray(result.ToArray()); + + return; + //byte[] bytes = File.ReadAllBytes("E:\\documents\\Decompiling\\Extracted\\NOVA\\Novaria\\Novaria.SDKServer\\req1"); + + // byte[] data = new byte[] { + // 88, 2, 120, 1, 106, 8, 79, 102, 102, 105, 99, 105, 97, 108, + // 98, 5, 122, 104, 95, 67, 78, 114, 16, 100, 99, 49, 56, 101, + // 49, 50, 98, 57, 54, 50, 57, 101, 57, 52, 101, 26, 48, 18, + // 40, 50, 50, 97, 99, 56, 56, 54, 101, 53, 102, 98, 101, 101, + // 102, 52, 100, 98, 98, 56, 100, 56, 51, 54, 100, 56, 98, 99, + // 98, 49, 54, 54, 54, 56, 100, 98, 55, 99, 97, 55, 100, 8, + // 240, 186, 151, 225, 3 + //}; + + //var a = UserRequest.Parser.ParseFrom(data); + + //Console.WriteLine(JsonConvert.SerializeObject(a)); + + //ServerListMeta message; + + //using (var input = File.OpenRead("E:\\documents\\Decompiling\\Extracted\\NOVA\\Novaria\\Novaria.SDKServer\\test_protos.pb")) + //{ + // message = ServerListMeta.Parser.ParseFrom(input); + //} + + //Console.WriteLine(message.Announcement); + + //return; + + //byte[] bytes = File.ReadAllBytes("E:\\documents\\Decompiling\\Extracted\\NOVA\\Novaria\\Novaria.SDKServer\\req1"); + + //byte[] result = AeadTool.DecryptAesCBCInfo(AeadTool.DEFAULT_SERVERLIST_KEY, bytes[..16], bytes[16..(((int)(bytes.Length / 16)) * 16)]); + + ////Utils.PrintByteArray(result); + //string resstr = System.Text.Encoding.UTF8.GetString(result); + //Console.WriteLine(resstr); // Output: "Hello" Log.Information("Starting SDK Server..."); try { diff --git a/Novaria.SDKServer/options_response b/Novaria.SDKServer/options_response new file mode 100644 index 0000000..68710b8 --- /dev/null +++ b/Novaria.SDKServer/options_response @@ -0,0 +1,3 @@ +åÏdì +'£‰!Ä15L®Mûm—P}n1˜’b ãý&–•‰Ãuô8‹ÏH¬v’ÀÑëîÄjZÿ•’Uõµ:º&1:`‘eDö~§¾©C9NØŒr¥ðoø`03‡ö \ No newline at end of file diff --git a/Novaria.SDKServer/req1 b/Novaria.SDKServer/req1 new file mode 100644 index 0000000..19a3733 --- /dev/null +++ b/Novaria.SDKServer/req1 @@ -0,0 +1,2 @@ +ûÅGsQ¼xK!P]­«klú»·œóžÁ¼b6&JŒÀŸq-¦H€ßº8êQiœ¥„š—B4à_¨–UH×H÷®/z*QÑXuýË/È[HؽÖY˜@ËìJQc&HsV¾õ‘·& âH÷ ô +ž$P»ÕeÖÀv™y¤Ã¥VŸ |,|ÔnÆä”÷v‘æ/i˜aSqžS.ø4·÷ßéü*d! \ No newline at end of file diff --git a/Novaria.SDKServer/resData b/Novaria.SDKServer/resData new file mode 100644 index 0000000..e79c43e Binary files /dev/null and b/Novaria.SDKServer/resData differ diff --git a/Novaria.SDKServer/response1 b/Novaria.SDKServer/response1 new file mode 100644 index 0000000..de6daa8 Binary files /dev/null and b/Novaria.SDKServer/response1 differ diff --git a/Novaria.SDKServer/response2 b/Novaria.SDKServer/response2 new file mode 100644 index 0000000..8010f62 --- /dev/null +++ b/Novaria.SDKServer/response2 @@ -0,0 +1 @@ +úbJ¼6|„>êOdõ.ñæADWŠQ–i[ \ No newline at end of file diff --git a/Novaria.SDKServer/test_protos.pb b/Novaria.SDKServer/test_protos.pb new file mode 100644 index 0000000..4415cff --- /dev/null +++ b/Novaria.SDKServer/test_protos.pb @@ -0,0 +1,5637 @@ + +… +ServerAgent.proto"a + ServerAgent +name ( Rname +addr ( Raddr +status (Rstatus +zone (RzoneBªPbbproto3 +ˆ +ServerListMeta.protoServerAgent.proto"Í +ServerListMeta +version (Rversion" +agent ( 2 .ServerAgentRagent +status (Rstatus +message ( Rmessage" + announcement ( R announcement' +report_endpoint ( RreportEndpointBªPbbproto3 +v +FileDiff.proto"U +FileDiff + file_name ( RfileName +hash ( Rhash +version (RversionBªPbbproto3 +^ +ClientDiff.protoFileDiff.proto"+ + +ClientDiff +diff ( 2 .FileDiffRdiffBªPbbproto3 +“ +Achievement.proto"å + Achievement +id (Rid + +achieve_id (R achieveId +title ( Rtitle +desc ( Rdesc +rarity (Rrarity +type (Rtype +hide (Rhide +jump_to (RjumpTo# + complete_cond (R completeCond0 +complete_cond_client + (RcompleteCondClient + aim_num_show (R +aimNumShow$ + prerequisites (R prerequisites + +level_type (R levelType6 +client_complete_params1 (RclientCompleteParams16 +client_complete_params2 (RclientCompleteParams2 +tid1 (Rtid1 +qty1 (Rqty1 +tid2 (Rtid2 +qty2 (Rqty2 +tid3 (Rtid3 +qty3 (Rqty3Bª Nova.Clientbproto3 +{ +table_Achievement.protoAchievement.proto"5 +table_Achievement +list ( 2 .AchievementRlistBª Nova.Clientbproto3 +› +Activity.proto"ð +Activity +id (Rid +sort_id (RsortId# + activity_type (R activityType +name ( Rname + pre_limit (RpreLimit + limit_param ( R +limitParam + +start_type (R startType + +start_time ( R startTime& +start_cond_type (R startCondType* +start_cond_params + (RstartCondParams +end_type (RendType +end_time ( RendTime! + end_duration (R endDuration + +banner_res ( R bannerRes + +pop_up_res ( RpopUpRes + +tab_bg_res ( RtabBgResBª Nova.Clientbproto3 +o +table_Activity.protoActivity.proto"/ +table_Activity +list ( 2 .ActivityRlistBª Nova.Clientbproto3 +£ +AddBuffAction.proto"t + AddBuffAction +id (Rid +group_id (RgroupId + target_type (R +targetType +buff_id (RbuffIdBª Nova.Clientbproto3 +ƒ +table_AddBuffAction.protoAddBuffAction.proto"9 +table_AddBuffAction" +list ( 2.AddBuffActionRlistBª Nova.Clientbproto3 +… +AffinityGift.proto"W + AffinityGift +id (Rid# + base_affinity (R baseAffinity +tags (RtagsBª Nova.Clientbproto3 + +table_AffinityGift.protoAffinityGift.proto"7 +table_AffinityGift! +list ( 2 .AffinityGiftRlistBª Nova.Clientbproto3 +à +AffinityLevel.proto"° + AffinityLevel +id (Rid& +affinity_level_ (R affinityLevel +need_exp (RneedExp + template_id (R +templateId. +affinity_level_name ( RaffinityLevelName. +affinity_level_icon ( RaffinityLevelIcon; +affinity_level_reward_icon ( RaffinityLevelRewardIconD +affinity_level_reward_lock_icon ( RaffinityLevelRewardLockIcon +effect (Reffect0 +affinity_level_stage + (RaffinityLevelStageBª Nova.Clientbproto3 +ƒ +table_AffinityLevel.protoAffinityLevel.proto"9 +table_AffinityLevel" +list ( 2.AffinityLevelRlistBª Nova.Clientbproto3 +§ +AffinityQuest.proto"÷ + AffinityQuest +id (Rid +desc ( Rdesc +sort_id (RsortId +char_id (RcharId# + complete_cond (R completeCond0 +complete_cond_params ( RcompleteCondParams +reward (Rreward! + affinity_exp (R affinityExpBª Nova.Clientbproto3 +ƒ +table_AffinityQuest.protoAffinityQuest.proto"9 +table_AffinityQuest" +list ( 2.AffinityQuestRlistBª Nova.Clientbproto3 +¥ +AffinityUpReward.proto"ò +AffinityUpReward +id (Rid +char_id (RcharId! + reward_level (R rewardLevel +reward1 (Rreward1 +reward2 (Rreward2 +reward3 (Rreward3 + desc_front1 ( R +descFront1 + desc_front2 ( R +descFront2 + desc_front3 ( R +descFront3 + desc_after1 + ( R +descAfter1 + desc_after2 ( R +descAfter2 + desc_after3 ( R +descAfter3Bª Nova.Clientbproto3 + +table_AffinityUpReward.protoAffinityUpReward.proto"? +table_AffinityUpReward% +list ( 2.AffinityUpRewardRlistBª Nova.Clientbproto3 +Õ + Agent.proto"­ +Agent +id (Rid +tab (Rtab +note ( Rnote +name ( Rname +desc ( Rdesc + consignor ( R consignor! + refresh_type (R refreshType + member_type (R +memberType +level (Rlevel + build_score + (R +buildScore! + member_limit (R memberLimit +tags (Rtags + +extra_tags (R extraTags+ +unlock_conditions ( RunlockConditions +sort (Rsort +time1 (Rtime1' +reward_preview1 ( RrewardPreview1% +bonus_preview1 ( R bonusPreview1 +time2 (Rtime2' +reward_preview2 ( RrewardPreview2% +bonus_preview2 ( R bonusPreview2 +time3 (Rtime3' +reward_preview3 ( RrewardPreview3% +bonus_preview3 ( R bonusPreview3 +time4 (Rtime4' +reward_preview4 ( RrewardPreview4% +bonus_preview4 ( R bonusPreview4Bª Nova.Clientbproto3 +c +table_Agent.proto Agent.proto") + table_Agent +list ( 2.AgentRlistBª Nova.Clientbproto3 +Ê +AgentSpecialPerformance.proto" +AgentSpecialPerformance +id (Rid +char_id (RcharId +weight (Rweight +avg ( Ravg" +a_v_g_group_id ( R +aVGGroupIdBª Nova.Clientbproto3 +« +#table_AgentSpecialPerformance.protoAgentSpecialPerformance.proto"M +table_AgentSpecialPerformance, +list ( 2.AgentSpecialPerformanceRlistBª Nova.Clientbproto3 + +AgentTab.proto"U +AgentTab +id (Rid +name ( Rname +bg ( Rbg +sp_tag (RspTagBª Nova.Clientbproto3 +o +table_AgentTab.protoAgentTab.proto"/ +table_AgentTab +list ( 2 .AgentTabRlistBª Nova.Clientbproto3 +— +AI.proto"ò +AI +id (Rid + f_c_spawn ( RfCSpawn +f_c_idle ( RfCIdle + +f_c_action ( RfCAction' +f_c_lost_control ( R fCLostControl + f_c_death ( RfCDeath + +f_c_global ( RfCGlobal% +f_c_combo_group ( R fCComboGroupBª Nova.Clientbproto3 +W +table_AI.protoAI.proto"# +table_AI +list ( 2.AIRlistBª Nova.Clientbproto3 +˜ +AreaEffect.proto"l + +AreaEffect +area_tag (RareaTag + max_count (RmaxCount& +over_limit_type (R overLimitTypeBª Nova.Clientbproto3 +w +table_AreaEffect.protoAreaEffect.proto"3 +table_AreaEffect +list ( 2 .AreaEffectRlistBª Nova.Clientbproto3 +ñ +Attribute.proto"Å + Attribute +id ( Rid +group_id (RgroupId +break (Rbreak +lvl (Rlvl +atk (Ratk +hp (Rhp +def (Rdef + crit_rate (RcritRate( +normal_crit_rate (RnormalCritRate& +skill_crit_rate + (R skillCritRate& +ultra_crit_rate (R ultraCritRate$ +mark_crit_rate (R markCritRate( +summon_crit_rate (RsummonCritRate0 +projectile_crit_rate (RprojectileCritRate& +other_crit_rate (R otherCritRate' +crit_resistance (RcritResistance + +crit_power (R critPower* +normal_crit_power (RnormalCritPower( +skill_crit_power (RskillCritPower( +ultra_crit_power (RultraCritPower& +mark_crit_power (R markCritPower* +summon_crit_power (RsummonCritPower2 +projectile_crit_power (RprojectileCritPower( +other_crit_power (RotherCritPower +hit_rate (RhitRate +evd (Revd + +def_pierce (R defPierce + +def_ignore (R defIgnore +w_e_p (RwEP +f_e_p (RfEP +s_e_p (RsEP +a_e_p (RaEP +l_e_p! (RlEP +d_e_p" (RdEP +w_e_i# (RwEI +f_e_i$ (RfEI +s_e_i% (RsEI +a_e_i& (RaEI +l_e_i' (RlEI +d_e_i( (RdEI +w_e_e) (RwEE +f_e_e* (RfEE +s_e_e+ (RsEE +a_e_e, (RaEE +l_e_e- (RlEE +d_e_e. (RdEE +w_e_r/ (RwER +f_e_r0 (RfER +s_e_r1 (RsER +a_e_r2 (RaER +l_e_r3 (RlER +d_e_r4 (RdER6 +toughness_damage_adjust5 (RtoughnessDamageAdjust + toughness6 (R toughness +suppress7 (Rsuppress$ +n_o_r_m_a_l_d_m_g8 (R nORMALDMG! +s_k_i_l_l_d_m_g9 (RsKILLDMG! +u_l_t_r_a_d_m_g: (RuLTRADMG! +o_t_h_e_r_d_m_g; (RoTHERDMG- +r_c_d_n_o_r_m_a_l_d_m_g< (R rCDNORMALDMG + RCDSKILLDMG= (R RCDSKILLDMG + RCDULTRADMG> (R RCDULTRADMG + RCDOTHERDMG? (R RCDOTHERDMG + m_a_r_k_d_m_g@ (RmARKDMG' +r_c_d_m_a_r_k_d_m_gA (R +rCDMARKDMG$ +s_u_m_m_o_n_d_m_gB (R sUMMONDMG- +r_c_d_s_u_m_m_o_n_d_m_gC (R rCDSUMMONDMG0 +p_r_o_j_e_c_t_i_l_e_d_m_gD (R pROJECTILEDMG9 +r_c_d_p_r_o_j_e_c_t_i_l_e_d_m_gE (RrCDPROJECTILEDMG + g_e_n_d_m_gF (RgENDMG + d_m_g_p_l_u_sG (RdMGPLUS! +f_i_n_a_l_d_m_gH (RfINALDMG- +f_i_n_a_l_d_m_g_p_l_u_sI (R fINALDMGPLUS + w_e_e_r_c_dJ (RwEERCD + f_e_e_r_c_dK (RfEERCD + s_e_e_r_c_dL (RsEERCD + a_e_e_r_c_dM (RaEERCD + l_e_e_r_c_dN (RlEERCD + d_e_e_r_c_dO (RdEERCD$ +g_e_n_d_m_g_r_c_dP (R gENDMGRCD' +d_m_g_p_l_u_s_r_c_dQ (R +dMGPLUSRCDBª Nova.Clientbproto3 +s +table_Attribute.protoAttribute.proto"1 +table_Attribute +list ( 2 +.AttributeRlistBª Nova.Clientbproto3 +› +AttributeLimit.proto"k +AttributeLimit +id (Rid +lower (Rlower +upper (Rupper + +is_limited (R isLimitedBª Nova.Clientbproto3 +‡ +table_AttributeLimit.protoAttributeLimit.proto"; +table_AttributeLimit# +list ( 2.AttributeLimitRlistBª Nova.Clientbproto3 +Ö +BattlePass.proto"© + +BattlePass +i_d (RiD +name ( Rname + +start_time ( R startTime +end_time ( RendTime* +luxury_product_id ( RluxuryProductId! + luxury_price (R luxuryPrice, +luxury_bonus_level (RluxuryBonusLevel + +luxury_tid (R luxuryTid + +luxury_qty (R luxuryQty, +premium_product_id + ( RpremiumProductId# + premium_price (R premiumPrice + premium_tid (R +premiumTid + premium_qty (R +premiumQty8 +complementary_product_id ( RcomplementaryProductId/ +complementary_price (RcomplementaryPrice+ +complementary_tid (RcomplementaryTid+ +complementary_qty (RcomplementaryQty +cover ( Rcover, +premium_show_items (RpremiumShowItems* +luxury_show_items (RluxuryShowItems7 +outfit_package_show_item (RoutfitPackageShowItemBª Nova.Clientbproto3 +w +table_BattlePass.protoBattlePass.proto"3 +table_BattlePass +list ( 2 .BattlePassRlistBª Nova.Clientbproto3 +‰ +BattlePassLevel.proto"X +BattlePassLevel +i_d (RiD +exp (Rexp +tid (Rtid +qty (RqtyBª Nova.Clientbproto3 +‹ +table_BattlePassLevel.protoBattlePassLevel.proto"= +table_BattlePassLevel$ +list ( 2.BattlePassLevelRlistBª Nova.Clientbproto3 +§ +BattlePassQuest.proto"v +BattlePassQuest +id (Rid +type (Rtype +title ( Rtitle +jump_to (RjumpTo +exp (RexpBª Nova.Clientbproto3 +‹ +table_BattlePassQuest.protoBattlePassQuest.proto"= +table_BattlePassQuest$ +list ( 2.BattlePassQuestRlistBª Nova.Clientbproto3 +ú +BattlePassReward.proto"Ç +BattlePassReward +i_d (RiD +level (Rlevel +tid1 (Rtid1 +qty1 (Rqty1 +tid2 (Rtid2 +qty2 (Rqty2 +tid3 (Rtid3 +qty3 (Rqty3 +focus (RfocusBª Nova.Clientbproto3 + +table_BattlePassReward.protoBattlePassReward.proto"? +table_BattlePassReward% +list ( 2.BattlePassRewardRlistBª Nova.Clientbproto3 +¤ +BattleThreshold.proto"ò +BattleThreshold + +mission_id (R missionId +version (Rversion + from_src_atk (R +fromSrcAtk9 +from_perk_intensity_ratio (RfromPerkIntensityRatio- +from_slot_dmg_ratio (RfromSlotDmgRatio +from_e_e (RfromEE+ +from_gen_dmg_ratio (RfromGenDmgRatio" + from_dmg_plus (R fromDmgPlus& +from_crit_ratio (R fromCritRatio/ +from_final_dmg_ratio + (RfromFinalDmgRatio- +from_final_dmg_plus (RfromFinalDmgPlus + to_er_amend (R toErAmend + to_def_amend (R +toDefAmend0 +to_rcd_slot_dmg_ratio (RtoRcdSlotDmgRatio + to_e_e_r_c_d (RtoEERCD. +to_gen_dmg_rcd_ratio (RtoGenDmgRcdRatio% +to_dmg_plus_rcd (R toDmgPlusRcd +dmg (Rdmg + crit_rate (RcritRate +hp (RhpBª Nova.Clientbproto3 +‹ +table_BattleThreshold.protoBattleThreshold.proto"= +table_BattleThreshold$ +list ( 2.BattleThresholdRlistBª Nova.Clientbproto3 +– +BoardNPC.proto"l +BoardNPC +id (Rid +name ( Rname +alias ( Ralias& +default_skin_id (R defaultSkinIdBª Nova.Clientbproto3 +o +table_BoardNPC.protoBoardNPC.proto"/ +table_BoardNPC +list ( 2 .BoardNPCRlistBª Nova.Clientbproto3 +Ù + +Buff.proto"² +Buff +id (Rid +name ( Rname& +level_type_data (R levelTypeData + +level_data (R levelData& +main_or_support (R mainOrSupport +group_id (RgroupId + reduce_time (R +reduceTime + buff_tag1 (RbuffTag1 + buff_tag2 (RbuffTag2 + buff_tag3 + (RbuffTag3 + buff_tag4 (RbuffTag4 + buff_tag5 (RbuffTag5 + bind_effect ( R +bindEffect +icon ( Ricon +is_show (RisShow* +topof_head_effect ( RtopofHeadEffect1 +buff_num_effect_level (RbuffNumEffectLevel + +not_remove (R notRemoveBª Nova.Clientbproto3 +_ +table_Buff.proto +Buff.proto"' + +table_Buff +list ( 2.BuffRlistBª Nova.Clientbproto3 +Ì +BuffValue.proto"  + BuffValue +id (Rid +name ( Rname +sort (Rsort! + buff_effects (R buffEffects +time (Rtime# + laminated_num (R laminatedNum +num (Rnum- +time_superposition (RtimeSuperposition +timing (Rtiming! + replace_type + (R replaceType! + attack_clear (R attackClear + hit_clear (RhitClear + +is_inherit (R isInherit$ +is_exit_delete (R isExitDeleteBª Nova.Clientbproto3 +s +table_BuffValue.protoBuffValue.proto"1 +table_BuffValue +list ( 2 +.BuffValueRlistBª Nova.Clientbproto3 +Å + Chapter.proto"› +Chapter +id (Rid +name ( Rname +desc ( Rdesc! + chapter_type (R chapterType + world_class (R +worldClass% +prev_mainlines (R prevMainlines) +complete_rewards ( RcompleteRewards + chapter_img ( R +chapterImg! + chapter_icon ( R chapterIconBª Nova.Clientbproto3 +k +table_Chapter.proto Chapter.proto"- + table_Chapter +list ( 2.ChapterRlistBª Nova.Clientbproto3 +¸ +Character.proto"Œ + Character +id (Rid +name ( Rname +visible (Rvisible + available (R available +grade (Rgrade& +default_skin_id (R defaultSkinId& +advance_skin_id (R advanceSkinId# + advance_group (R advanceGroup9 +advance_skin_unlock_level (RadvanceSkinUnlockLevel +faction + (Rfaction +weight (Rweight +e_e_t (ReET +class (Rclass2 +character_attack_type (RcharacterAttackType, +search_target_type (RsearchTargetType +atk_spd (RatkSpd +mov_type (RmovType +walk_spd (RwalkSpd +run_spd (RrunSpd + +sp_run_spd (RspRunSpd + trans_spd (RtransSpd/ +walk_to_run_duration (RwalkToRunDurationE + dodge_to_run_acceleration_or_not (RdodgeToRunAccelerationOrNot +mov_acc (RmovAcc +rot_spd (RrotSpd +rot_acc (RrotAcc + +vision_deg (R visionDeg + +vision_rng (R visionRng* +vision_attack_rng (RvisionAttackRng +hear_rng (RhearRng& +hear_attack_rng (R hearAttackRng" + raise_gun_rng (R raiseGunRng + bullet_type! (R +bulletType +ammo" (Rammo +a_i_id# (RaIId" + normal_atk_id$ (R normalAtkId +dodge_id% (RdodgeId +skill_id& (RskillId( +special_skill_id' (RspecialSkillId + ultimate_id( (R +ultimateId! + assist_a_i_id) (R +assistAIId/ +assist_normal_atk_id* (RassistNormalAtkId& +assist_dodge_id+ (R assistDodgeId& +assist_skill_id, (R assistSkillId5 +assist_special_skill_id- (RassistSpecialSkillId, +assist_ultimate_id. (RassistUltimateId& +talent_skill_id/ (R talentSkillId: +assist_skill_on_stage_type0 (RassistSkillOnStageType, +assist_skill_angle1 (RassistSkillAngle. +assist_skill_radius2 (RassistSkillRadiusH +!assist_skill_on_stage_orientation3 (RassistSkillOnStageOrientation@ +assist_ultimate_on_stage_type4 (RassistUltimateOnStageType2 +assist_ultimate_angle5 (RassistUltimateAngle4 +assist_ultimate_radius6 (RassistUltimateRadiusN +$assist_ultimate_on_stage_orientation7 (R assistUltimateOnStageOrientation + +switch_c_d8 (RswitchCD* +energy_conv_ratio9 (RenergyConvRatio+ +energy_efficiency: (RenergyEfficiency! + fragments_id; (R fragmentsId# + transform_qty< (R transformQty' +recruitment_qty= (RrecruitmentQty! + attribute_id> ( R attributeId* +presents_trait_id? (RpresentsTraitId0 +skills_upgrade_group@ (RskillsUpgradeGroupBª Nova.Clientbproto3 +s +table_Character.protoCharacter.proto"1 +table_Character +list ( 2 +.CharacterRlistBª Nova.Clientbproto3 +¡ +CharacterAdvance.proto"î +CharacterAdvance +id (Rid +group (Rgroup + advance_lvl (R +advanceLvl +tid1 (Rtid1 +qty1 (Rqty1 +tid2 (Rtid2 +qty2 (Rqty2 +tid3 (Rtid3 +qty3 (Rqty3 +tid4 + (Rtid4 +qty4 (Rqty4 +gold_qty (RgoldQty + +award_tid1 (R awardTid1 + +award_qty1 (R awardQty1 + +award_tid2 (R awardTid2 + +award_qty2 (R awardQty2 + +award_tid3 (R awardTid3 + +award_qty3 (R awardQty3. +advance_desc_front1 ( RadvanceDescFront1. +advance_desc_after1 ( RadvanceDescAfter1. +advance_desc_front2 ( RadvanceDescFront2. +advance_desc_after2 ( RadvanceDescAfter2. +advance_desc_front3 ( RadvanceDescFront3. +advance_desc_after3 ( RadvanceDescAfter3Bª Nova.Clientbproto3 + +table_CharacterAdvance.protoCharacterAdvance.proto"? +table_CharacterAdvance% +list ( 2.CharacterAdvanceRlistBª Nova.Clientbproto3 +ú +CharacterArchive.proto"Ç +CharacterArchive +id (Rid + arch_type (RarchType! + character_id (R characterId2 +unlock_affinity_level (RunlockAffinityLevel + record_id (RrecordId +sort (RsortBª Nova.Clientbproto3 + +table_CharacterArchive.protoCharacterArchive.proto"? +table_CharacterArchive% +list ( 2.CharacterArchiveRlistBª Nova.Clientbproto3 +Ì +CharacterArchiveBaseInfo.proto"‘ +CharacterArchiveBaseInfo +id (Rid! + character_id (R characterId +title ( Rtitle +content ( Rcontent +sort (RsortBª Nova.Clientbproto3 +¯ +$table_CharacterArchiveBaseInfo.protoCharacterArchiveBaseInfo.proto"O +table_CharacterArchiveBaseInfo- +list ( 2.CharacterArchiveBaseInfoRlistBª Nova.Clientbproto3 +’ +CharacterArchiveContent.proto"Y +CharacterArchiveContent +id (Rid +title ( Rtitle +content ( RcontentBª Nova.Clientbproto3 +« +#table_CharacterArchiveContent.protoCharacterArchiveContent.proto"M +table_CharacterArchiveContent, +list ( 2.CharacterArchiveContentRlistBª Nova.Clientbproto3 +Á +CharacterArchiveVoice.proto"‰ +CharacterArchiveVoice +id (Rid! + character_id (R characterId2 +unlock_affinity_level (RunlockAffinityLevel + unlock_plot (R +unlockPlot +title ( Rtitle +source ( Rsource& +arch_voice_type (R archVoiceType +sort (RsortBª Nova.Clientbproto3 +£ +!table_CharacterArchiveVoice.protoCharacterArchiveVoice.proto"I +table_CharacterArchiveVoice* +list ( 2.CharacterArchiveVoiceRlistBª Nova.Clientbproto3 +Û +CharacterCG.proto"­ + CharacterCG +id (Rid0 +full_screen_portrait ( RfullScreenPortrait' +full_screen_l2_d ( R fullScreenL2D + unlock_plot (R +unlockPlot +name ( RnameBª Nova.Clientbproto3 +{ +table_CharacterCG.protoCharacterCG.proto"5 +table_CharacterCG +list ( 2 .CharacterCGRlistBª Nova.Clientbproto3 +× +CharacterDes.proto"¨ + CharacterDes +id (Rid +alias ( Ralias +cn_cv ( RcnCv +jp_cv ( RjpCv + +char_color ( R charColor( +char_skill_color ( RcharSkillColor +char_des ( RcharDes +tag (Rtag +force (Rforce + prefer_tags + (R +preferTags + hate_tags (RhateTagsBª Nova.Clientbproto3 + +table_CharacterDes.protoCharacterDes.proto"7 +table_CharacterDes! +list ( 2 .CharacterDesRlistBª Nova.Clientbproto3 +Ñ +CharacterSkillUpgrade.proto"™ +CharacterSkillUpgrade +id (Rid +group (Rgroup + advance_num (R +advanceNum +tid1 (Rtid1 +qty1 (Rqty1 +tid2 (Rtid2 +qty2 (Rqty2 +tid3 (Rtid3 +qty3 (Rqty3 +tid4 + (Rtid4 +qty4 (Rqty4 +gold_qty (RgoldQtyBª Nova.Clientbproto3 +£ +!table_CharacterSkillUpgrade.protoCharacterSkillUpgrade.proto"I +table_CharacterSkillUpgrade* +list ( 2.CharacterSkillUpgradeRlistBª Nova.Clientbproto3 +Ò +CharacterSkin.proto"¢ + CharacterSkin +id (Rid +name ( Rname +desc ( Rdesc +is_show (RisShow +char_id (RcharId +type (Rtype + source_desc (R +sourceDesc + transform ( R transform, +walk_animation_spd (RwalkAnimationSpd* +run_animation_spd + (RrunAnimationSpd/ +sp_run_animation_spd (RspRunAnimationSpd + model_scale (R +modelScale% +collider_scale (R colliderScale( +model_show_scale (RmodelShowScale& +model_end_scale (R modelEndScale. +forbidden_behit_rot (RforbiddenBehitRot +icon ( Ricon +portrait ( Rportrait +bg ( Rbg +offset ( Roffset +l2_d ( Rl2D" + character_c_g (R characterCG +model ( Rmodel + +model_show ( R modelShow + model_end ( RmodelEnd + +gacha_l2_d ( RgachaL2D + +skin_theme (R skinTheme, +effect_scale_value (ReffectScaleValue3 +tag_effect_scale_value (RtagEffectScaleValueBª Nova.Clientbproto3 +ƒ +table_CharacterSkin.protoCharacterSkin.proto"9 +table_CharacterSkin" +list ( 2.CharacterSkinRlistBª Nova.Clientbproto3 +Û +CharacterSkinPanelFace.proto"¢ +CharacterSkinPanelFace +id (Rid + main_view ( RmainView + char_info ( RcharInfo + +battel_win ( R battelWin + battle_lose ( R +battleLoseBª Nova.Clientbproto3 +§ +"table_CharacterSkinPanelFace.protoCharacterSkinPanelFace.proto"K +table_CharacterSkinPanelFace+ +list ( 2.CharacterSkinPanelFaceRlistBª Nova.Clientbproto3 +” +CharacterSkinTheme.proto"` +CharacterSkinTheme +id (Rid +name ( Rname +desc ( Rdesc +icon ( RiconBª Nova.Clientbproto3 +— +table_CharacterSkinTheme.protoCharacterSkinTheme.proto"C +table_CharacterSkinTheme' +list ( 2.CharacterSkinThemeRlistBª Nova.Clientbproto3 +} +CharacterTag.proto"O + CharacterTag +id (Rid +title ( Rtitle +tag_type (RtagTypeBª Nova.Clientbproto3 + +table_CharacterTag.protoCharacterTag.proto"7 +table_CharacterTag! +list ( 2 .CharacterTagRlistBª Nova.Clientbproto3 +” +CharacterUpgrade.proto"b +CharacterUpgrade +id (Rid +rarity (Rrarity +level (Rlevel +exp (RexpBª Nova.Clientbproto3 + +table_CharacterUpgrade.protoCharacterUpgrade.proto"? +table_CharacterUpgrade% +list ( 2.CharacterUpgradeRlistBª Nova.Clientbproto3 +Ê +CharacterVoiceControl.proto"’ +CharacterVoiceControl +id ( Rid + probability (R probability +res_type (RresType + combat_only (R +combatOnly* +world_level_types (RworldLevelTypes +bubble (Rbubble +cd (Rcd + vo_player (RvoPlayer +priority (RpriorityBª Nova.Clientbproto3 +£ +!table_CharacterVoiceControl.protoCharacterVoiceControl.proto"I +table_CharacterVoiceControl* +list ( 2.CharacterVoiceControlRlistBª Nova.Clientbproto3 +} +CharAffinityTemplate.proto"G +CharAffinityTemplate +id (Rid + template_id (R +templateIdBª Nova.Clientbproto3 +Ÿ + table_CharAffinityTemplate.protoCharAffinityTemplate.proto"G +table_CharAffinityTemplate) +list ( 2.CharAffinityTemplateRlistBª Nova.Clientbproto3 +€ +CharGrade.proto"Ô + CharGrade +grade (Rgrade# + fragments_qty (R fragmentsQty. +general_fragment_id (RgeneralFragmentId, +substitute_item_id (RsubstituteItemId. +substitute_item_qty (RsubstituteItemQtyBª Nova.Clientbproto3 +s +table_CharGrade.protoCharGrade.proto"1 +table_CharGrade +list ( 2 +.CharGradeRlistBª Nova.Clientbproto3 +€ +CharItemExp.proto"S + CharItemExp +id (Rid +item_id (RitemId + exp_value (RexpValueBª Nova.Clientbproto3 +{ +table_CharItemExp.protoCharItemExp.proto"5 +table_CharItemExp +list ( 2 .CharItemExpRlistBª Nova.Clientbproto3 +… +CharPotential.proto"Õ + CharPotential +id (RidA +master_specific_potential_ids (RmasterSpecificPotentialIdsA +assist_specific_potential_ids (RassistSpecificPotentialIds0 +common_potential_ids (RcommonPotentialIds= +master_normal_potential_ids (RmasterNormalPotentialIds= +assist_normal_potential_ids (RassistNormalPotentialIdsBª Nova.Clientbproto3 +ƒ +table_CharPotential.protoCharPotential.proto"9 +table_CharPotential" +list ( 2.CharPotentialRlistBª Nova.Clientbproto3 +× +CharRaritySequence.proto"¢ +CharRaritySequence +id (Rid +grade (Rgrade + advance_lvl (R +advanceLvl +lv_limit (RlvLimit* +world_class_limit (RworldClassLimitBª Nova.Clientbproto3 +— +table_CharRaritySequence.protoCharRaritySequence.proto"C +table_CharRaritySequence' +list ( 2.CharRaritySequenceRlistBª Nova.Clientbproto3 +£ + +Chat.proto"ü +Chat +id (Rid& +address_book_id (R addressBookId +a_v_g_id ( RaVGId" +a_v_g_group_id ( R +aVGGroupId + pre_chat_id (R preChatId +priority (Rpriority! + trigger_type (R triggerType + auto_pop_up (R autoPopUp! + trigger_cond (R triggerCond, +trigger_cond_param + ( RtriggerCondParam +reward1 (Rreward1 + reward_qty1 (R +rewardQty1 +reward2 (Rreward2 + reward_qty2 (R +rewardQty2 +reward3 (Rreward3 + reward_qty3 (R +rewardQty3Bª Nova.Clientbproto3 +_ +table_Chat.proto +Chat.proto"' + +table_Chat +list ( 2.ChatRlistBª Nova.Clientbproto3 +Î + Chest.proto"¦ +Chest +id (Rid +group (Rgroup +label (Rlabel + low_floor (RlowFloor + +high_floor (R highFloor) +tnteraction_type (RtnteractionType + auto_open (RautoOpen + +model_path ( R modelPath +item1 (Ritem1 +number1 + (Rnumber1 +item2 (Ritem2 +number2 (Rnumber2 +item3 (Ritem3 +number3 (Rnumber3 +item4 (Ritem4 +number4 (Rnumber4Bª Nova.Clientbproto3 +c +table_Chest.proto Chest.proto") + table_Chest +list ( 2.ChestRlistBª Nova.Clientbproto3 +V + Config.proto". +Config +id ( Rid +value ( RvalueBª Nova.Clientbproto3 +g +table_Config.proto Config.proto"+ + table_Config +list ( 2.ConfigRlistBª Nova.Clientbproto3 + +ContentWord.proto"T + ContentWord +id (Rid! + preset_color ( R presetColor +word ( RwordBª Nova.Clientbproto3 +{ +table_ContentWord.protoContentWord.proto"5 +table_ContentWord +list ( 2 .ContentWordRlistBª Nova.Clientbproto3 +¨ +DailyInstance.proto"ø + DailyInstance +id (Rid + +daily_type (R dailyType + +difficulty (R +difficulty +name ( Rname +desc ( Rdesc' +suggested_power (RsuggestedPower + pre_level_id (R +preLevelId$ +pre_level_star (R preLevelStar( +need_world_class (RneedWorldClass +floor_id + (RfloorId" + one_star_desc ( R oneStarDesc" + two_star_desc ( R twoStarDesc& +three_star_desc ( R threeStarDesc5 +one_star_energy_consume (RoneStarEnergyConsume5 +two_star_energy_consume (RtwoStarEnergyConsume9 +three_star_energy_consume (RthreeStarEnergyConsume" + award_drop_id (R awardDropId7 +preview_monster_group_id (RpreviewMonsterGroupId +icon ( Ricon0 +first_reward_preview (RfirstRewardPreviewBª Nova.Clientbproto3 +ƒ +table_DailyInstance.protoDailyInstance.proto"9 +table_DailyInstance" +list ( 2.DailyInstanceRlistBª Nova.Clientbproto3 +Ó +DailyInstanceFloor.proto"ž +DailyInstanceFloor +id (Rid + +scene_name ( R sceneName, +config_prefab_name ( RconfigPrefabName +theme (Rtheme +b_g_m ( RbGM. +leave_trigger_event ( RleaveTriggerEvent + +monster_id (R monsterId, +one_star_condition (RoneStarCondition, +two_star_condition (RtwoStarCondition0 +three_star_condition + (RthreeStarCondition( +level_total_time (RlevelTotalTime. +time_end_settlement (RtimeEndSettlement. +star_condition_type (RstarConditionType + +monster_lv (R monsterLv/ +drop_entity_group_id (RdropEntityGroupId( +drop_entity_rate (RdropEntityRate + drop_max_num (R +dropMaxNumBª Nova.Clientbproto3 +— +table_DailyInstanceFloor.protoDailyInstanceFloor.proto"C +table_DailyInstanceFloor' +list ( 2.DailyInstanceFloorRlistBª Nova.Clientbproto3 +Ô +DailyInstanceRewardGroup.proto"™ +DailyInstanceRewardGroup +id (Rid +group_id (RgroupId* +daily_reward_type (RdailyRewardType + reward_name ( R +rewardName + +reward_des ( R rewardDes + reward_icon ( R +rewardIcon +drop_id (RdropId, +base_award_preview ( RbaseAwardPreviewBª Nova.Clientbproto3 +¯ +$table_DailyInstanceRewardGroup.protoDailyInstanceRewardGroup.proto"O +table_DailyInstanceRewardGroup- +list ( 2.DailyInstanceRewardGroupRlistBª Nova.Clientbproto3 +œ +DailyInstanceType.proto"è +DailyInstanceType +id (Rid +name ( Rname + main_line_id (R +mainLineId* +world_class_level (RworldClassLevel +episode ( Repisode +image ( Rimage +sort (Rsort + +how_reward (R howRewardBª Nova.Clientbproto3 +“ +table_DailyInstanceType.protoDailyInstanceType.proto"A +table_DailyInstanceType& +list ( 2.DailyInstanceTypeRlistBª Nova.Clientbproto3 +¦ +DailyQuest.proto"ù + +DailyQuest +id (Rid +title ( Rtitle +desc ( Rdesc +jump_to (RjumpTo +order (Rorder +active (Ractive +apear (Rapear% +accept_params2 ( R acceptParams2# + complete_cond (R completeCond0 +complete_cond_params + ( RcompleteCondParams0 +complete_cond_client (RcompleteCondClient6 +client_complete_params1 (RclientCompleteParams16 +client_complete_params2 (RclientCompleteParams2 +item_tid (RitemTid +item_qty (RitemQtyBª Nova.Clientbproto3 +w +table_DailyQuest.protoDailyQuest.proto"3 +table_DailyQuest +list ( 2 .DailyQuestRlistBª Nova.Clientbproto3 +Û +DailyQuestActive.proto"¨ +DailyQuestActive +id (Rid +active (Ractive + item_tid1 (RitemTid1 +number1 (Rnumber1 + item_tid2 (RitemTid2 +number2 (Rnumber2Bª Nova.Clientbproto3 + +table_DailyQuestActive.protoDailyQuestActive.proto"? +table_DailyQuestActive% +list ( 2.DailyQuestActiveRlistBª Nova.Clientbproto3 +‘ +DailyQuestAward.proto"ß +DailyQuestAward +id (Rid +title ( Rtitle + +need_point (R needPoint +num_show (RnumShow + item_tid1 (RitemTid1 +number1 (Rnumber1 + item_tid2 (RitemTid2 +number2 (Rnumber2Bª Nova.Clientbproto3 +‹ +table_DailyQuestAward.protoDailyQuestAward.proto"= +table_DailyQuestAward$ +list ( 2.DailyQuestAwardRlistBª Nova.Clientbproto3 +ô +DatingCharResponse.proto"¿ +DatingCharResponse +id (Rid +char_id (RcharId +type ( Rtype + voice_key ( RvoiceKey +action ( Raction +words ( Rwords! + bubble_emoji ( R bubbleEmojiBª Nova.Clientbproto3 +— +table_DatingCharResponse.protoDatingCharResponse.proto"C +table_DatingCharResponse' +list ( 2.DatingCharResponseRlistBª Nova.Clientbproto3 +± +DatingEvent.proto"ƒ + DatingEvent +id (Rid* +dating_event_type (RdatingEventType. +dating_event_params (RdatingEventParams + mutex_tag (RmutexTag +sort_tag (RsortTag +affinity (Raffinity +reward (Rreward +desc1 ( Rdesc1 +desc2 ( Rdesc2 +desc3 + ( Rdesc3 +response ( Rresponse +name ( Rname +clue ( Rclue +memory ( RmemoryBª Nova.Clientbproto3 +{ +table_DatingEvent.protoDatingEvent.proto"5 +table_DatingEvent +list ( 2 .DatingEventRlistBª Nova.Clientbproto3 +œ +DatingLandmark.proto"l +DatingLandmark +id (Rid +name ( Rname +desc ( Rdesc +icon ( Ricon +bg ( RbgBª Nova.Clientbproto3 +‡ +table_DatingLandmark.protoDatingLandmark.proto"; +table_DatingLandmark# +list ( 2.DatingLandmarkRlistBª Nova.Clientbproto3 +Ì +DestroyObject.proto"œ + DestroyObject +id (Rid +name ( Rname +lv (Rlv! + attribute_id ( R attributeId +templete (Rtemplete +faction (RfactionBª Nova.Clientbproto3 +ƒ +table_DestroyObject.protoDestroyObject.proto"9 +table_DestroyObject" +list ( 2.DestroyObjectRlistBª Nova.Clientbproto3 +” +DictionaryDiagram.proto"a +DictionaryDiagram +id (Rid +title ( Rtitle +desc ( Rdesc +icon ( RiconBª Nova.Clientbproto3 +“ +table_DictionaryDiagram.protoDictionaryDiagram.proto"A +table_DictionaryDiagram& +list ( 2.DictionaryDiagramRlistBª Nova.Clientbproto3 +‰ +DictionaryEntry.proto"× +DictionaryEntry +id (Rid +index (Rindex +title ( Rtitle +tab (Rtab +item_id (RitemId +qty (Rqty! + diagram_list (R diagramList +sort (Rsort +popup (RpopupBª Nova.Clientbproto3 +‹ +table_DictionaryEntry.protoDictionaryEntry.proto"= +table_DictionaryEntry$ +list ( 2.DictionaryEntryRlistBª Nova.Clientbproto3 +¼ +DictionaryTab.proto"Œ + DictionaryTab +tab_id (RtabId +icon ( Ricon +icon2 ( Ricon2 +title ( Rtitle$ +hide_in_battle (R hideInBattleBª Nova.Clientbproto3 +ƒ +table_DictionaryTab.protoDictionaryTab.proto"9 +table_DictionaryTab" +list ( 2.DictionaryTabRlistBª Nova.Clientbproto3 +— +DictionaryTopBarEntry.proto"` +DictionaryTopBarEntry +id (Rid +title ( Rtitle! + diagram_list (R diagramListBª Nova.Clientbproto3 +£ +!table_DictionaryTopBarEntry.protoDictionaryTopBarEntry.proto"I +table_DictionaryTopBarEntry* +list ( 2.DictionaryTopBarEntryRlistBª Nova.Clientbproto3 +÷ + +Disc.proto"Ð +Disc +id (Rid +e_e_t (ReET +tags (Rtags +visible (Rvisible + available (R available +image ( Rimage +note (Rnote +disc_bg ( RdiscBg +card ( Rcard +gacha_bg + ( RgachaBg. +strengthen_group_id (RstrengthenGroupId+ +attr_base_group_id (RattrBaseGroupId( +promote_group_id (RpromoteGroupId* +transform_item_id (RtransformItemId5 +max_star_transform_item (RmaxStarTransformItem3 +passive_skill_group_id (RpassiveSkillGroupId( +common_skill_id1 (RcommonSkillId1( +common_skill_id2 (RcommonSkillId2 + read_reward (R +readReward +vo_file ( RvoFile + vo_begin1 (RvoBegin1 +vo_loop1 (RvoLoop1 +vo_name1 ( RvoName1 + vo_begin2 (RvoBegin2 +vo_loop2 (RvoLoop2 +vo_name2 ( RvoName2 +vo_story ( RvoStory + +story_name ( R storyName + +story_desc ( R storyDesc +char_id (RcharId! + skill_script ( R skillScriptBª Nova.Clientbproto3 +_ +table_Disc.proto +Disc.proto"' + +table_Disc +list ( 2.DiscRlistBª Nova.Clientbproto3 +ã +DiscCommonSkill.proto"± +DiscCommonSkill +id (Rid( +active_note_type (RactiveNoteType& +active_note_num (R activeNoteNum + +effect_id1 (R effectId1 + +effect_id2 (R effectId2 + +effect_id3 (R effectId3 + +effect_id4 (R effectId4 + +effect_id5 (R effectId5 + +effect_id6 (R effectId6 + +effect_id7 + (R effectId7 + +effect_id8 (R effectId8 + +effect_id9 (R effectId9 + effect_id10 (R +effectId10 + layer_score (R +layerScore +name ( Rname +icon ( Ricon +icon_bg ( RiconBg +desc ( Rdesc +param1 ( Rparam1 +param2 ( Rparam2 +param3 ( Rparam3 +param4 ( Rparam4 +param5 ( Rparam5 +param6 ( Rparam6Bª Nova.Clientbproto3 +‹ +table_DiscCommonSkill.protoDiscCommonSkill.proto"= +table_DiscCommonSkill$ +list ( 2.DiscCommonSkillRlistBª Nova.Clientbproto3 +u +DiscItemExp.proto"H + DiscItemExp +id (Rid +item_id (RitemId +exp (RexpBª Nova.Clientbproto3 +{ +table_DiscItemExp.protoDiscItemExp.proto"5 +table_DiscItemExp +list ( 2 .DiscItemExpRlistBª Nova.Clientbproto3 +í +DiscPassiveSkill.proto"º +DiscPassiveSkill +id (Rid +group_id (RgroupId +level (Rlevel +break (Rbreak + main_note (RmainNote# + active_param1 ( R activeParam1 + +effect_id1 (R effectId1# + active_param2 ( R activeParam2 + +effect_id2 (R effectId2# + active_param3 + ( R activeParam3 + +effect_id3 (R effectId3# + active_param4 ( R activeParam4 + +effect_id4 (R effectId4# + active_param5 ( R activeParam5 + +effect_id5 (R effectId5 + layer_score (R +layerScore +name ( Rname +icon ( Ricon +icon_bg ( RiconBg +desc1 ( Rdesc1 +desc2 ( Rdesc2 +desc3 ( Rdesc3 +desc4 ( Rdesc4 +desc5 ( Rdesc5 +param1 ( Rparam1 +param2 ( Rparam2 +param3 ( Rparam3 +param4 ( Rparam4 +param5 ( Rparam5 +param6 ( Rparam6Bª Nova.Clientbproto3 + +table_DiscPassiveSkill.protoDiscPassiveSkill.proto"? +table_DiscPassiveSkill% +list ( 2.DiscPassiveSkillRlistBª Nova.Clientbproto3 +ª +DiscPromote.proto"ü + DiscPromote +id (Rid +item_id1 (RitemId1 +num1 (Rnum1 +item_id2 (RitemId2 +num2 (Rnum2 +item_id3 (RitemId3 +num3 (Rnum3 +item_id4 (RitemId4 +num4 (Rnum4! + expense_gold + (R expenseGoldBª Nova.Clientbproto3 +{ +table_DiscPromote.protoDiscPromote.proto"5 +table_DiscPromote +list ( 2 .DiscPromoteRlistBª Nova.Clientbproto3 +Ÿ +DiscPromoteLimit.proto"m +DiscPromoteLimit +id (Rid +rarity (Rrarity +phase ( Rphase + max_level ( RmaxLevelBª Nova.Clientbproto3 + +table_DiscPromoteLimit.protoDiscPromoteLimit.proto"? +table_DiscPromoteLimit% +list ( 2.DiscPromoteLimitRlistBª Nova.Clientbproto3 +b +DiscStrengthen.proto"2 +DiscStrengthen +id (Rid +exp (RexpBª Nova.Clientbproto3 +‡ +table_DiscStrengthen.protoDiscStrengthen.proto"; +table_DiscStrengthen# +list ( 2.DiscStrengthenRlistBª Nova.Clientbproto3 +X + DiscTag.proto"/ +DiscTag +id (Rid +title ( RtitleBª Nova.Clientbproto3 +k +table_DiscTag.proto DiscTag.proto"- + table_DiscTag +list ( 2.DiscTagRlistBª Nova.Clientbproto3 +\ + +Drop.proto"6 +Drop +drop_id (RdropId +pkg_id (RpkgIdBª Nova.Clientbproto3 +_ +table_Drop.proto +Drop.proto"' + +table_Drop +list ( 2.DropRlistBª Nova.Clientbproto3 +‰ +DropItemShow.proto"[ + DropItemShow +drop_id (RdropId +item_id (RitemId +item_qty (RitemQtyBª Nova.Clientbproto3 + +table_DropItemShow.protoDropItemShow.proto"7 +table_DropItemShow! +list ( 2 .DropItemShowRlistBª Nova.Clientbproto3 +p +DropObject.proto"D + +DropObject +id (Rid& +drop_object_res ( R dropObjectResBª Nova.Clientbproto3 +w +table_DropObject.protoDropObject.proto"3 +table_DropObject +list ( 2 .DropObjectRlistBª Nova.Clientbproto3 +² +DropObjectGroup.proto"€ +DropObjectGroup/ +drop_object_group_id (RdropObjectGroupId$ +drop_object_id (R dropObjectId +weight (RweightBª Nova.Clientbproto3 +‹ +table_DropObjectGroup.protoDropObjectGroup.proto"= +table_DropObjectGroup$ +list ( 2.DropObjectGroupRlistBª Nova.Clientbproto3 +b + DropPkg.proto"9 +DropPkg +pkg_id (RpkgId +item_id (RitemIdBª Nova.Clientbproto3 +k +table_DropPkg.proto DropPkg.proto"- + table_DropPkg +list ( 2.DropPkgRlistBª Nova.Clientbproto3 +à + Effect.proto"š +Effect +id (Rid +name ( Rname& +level_type_data (R levelTypeData + +level_data (R levelData& +main_or_support (R mainOrSupport +trigger (Rtrigger% +trigger_target (R triggerTarget- +trigger_condition1 (RtriggerCondition1% +trigger_param1 ( R triggerParam1% +trigger_param2 + ( R triggerParam2% +trigger_param3 ( R triggerParam3% +trigger_param4 ( R triggerParam4' +trigger_target2 (RtriggerTarget2- +trigger_condition2 (RtriggerCondition2' +trigger2_param1 ( Rtrigger2Param1' +trigger2_param2 ( Rtrigger2Param2' +trigger2_param3 ( Rtrigger2Param3' +trigger2_param4 ( Rtrigger2Param4, +trigger_logic_type (RtriggerLogicType. +take_effect_target1 (RtakeEffectTarget14 +take_effect_condition1 (RtakeEffectCondition1, +take_effect_param1 ( RtakeEffectParam1, +take_effect_param2 ( RtakeEffectParam2, +take_effect_param3 ( RtakeEffectParam3, +take_effect_param4 ( RtakeEffectParam4. +take_effect_target2 (RtakeEffectTarget24 +take_effect_condition2 (RtakeEffectCondition2. +take_effect2_param1 ( RtakeEffect2Param1. +take_effect2_param2 ( RtakeEffect2Param2. +take_effect2_param3 ( RtakeEffect2Param3. +take_effect2_param4 ( RtakeEffect2Param43 +take_effect_logic_type (RtakeEffectLogicType +target1! (Rtarget1+ +target_condition1" (RtargetCondition1# + target_param1# ( R targetParam1# + target_param2$ ( R targetParam2# + target_param3% ( R targetParam3# + target_param4& ( R targetParam4+ +target_condition2' (RtargetCondition2% +target2_param1( ( R target2Param1% +target2_param2) ( R target2Param2% +target2_param3* ( R target2Param3% +target2_param4+ ( R target2Param4* +filter_logic_type, (RfilterLogicTypeBª Nova.Clientbproto3 +g +table_Effect.proto Effect.proto"+ + table_Effect +list ( 2.EffectRlistBª Nova.Clientbproto3 +À +EffectDesc.proto"“ + +EffectDesc +id (Rid +type_i_d (RtypeID + type2_i_d (Rtype2ID +desc ( Rdesc( +random_attr_desc ( RrandomAttrDesc + attribute ( R attribute +word_i_d (RwordID + +is_percent (R isPercent +icon ( Ricon +format + (RformatBª Nova.Clientbproto3 +w +table_EffectDesc.protoEffectDesc.proto"3 +table_EffectDesc +list ( 2 .EffectDescRlistBª Nova.Clientbproto3 + +EffectValue.proto"” + EffectValue +id (Rid +name ( Rname +tag ( Rtag* +take_effect_limit (RtakeEffectLimit +remove (Rremove +c_d (RcD + effect_rate (R +effectRate + effect_type (R +effectType9 +effect_type_first_subtype (ReffectTypeFirstSubtype; +effect_type_second_subtype + (ReffectTypeSecondSubtype, +effect_type_param1 ( ReffectTypeParam1, +effect_type_param2 ( ReffectTypeParam2, +effect_type_param3 ( ReffectTypeParam3, +effect_type_param4 ( ReffectTypeParam4, +effect_type_param5 ( ReffectTypeParam5, +effect_type_param6 ( ReffectTypeParam6, +effect_type_param7 ( ReffectTypeParam7Bª Nova.Clientbproto3 +{ +table_EffectValue.protoEffectValue.proto"5 +table_EffectValue +list ( 2 .EffectValueRlistBª Nova.Clientbproto3 +œ +EndSceneType.proto"n + EndSceneType +id (Rid +theme (Rtheme$ +end_scene_name ( R endSceneName +b_g_m ( RbGMBª Nova.Clientbproto3 + +table_EndSceneType.protoEndSceneType.proto"7 +table_EndSceneType! +list ( 2 .EndSceneTypeRlistBª Nova.Clientbproto3 +À +EnergyBuy.proto"” + EnergyBuy +id (Rid( +currency_item_id (RcurrencyItemId* +currency_item_qty (RcurrencyItemQty! + energy_value (R energyValueBª Nova.Clientbproto3 +s +table_EnergyBuy.protoEnergyBuy.proto"1 +table_EnergyBuy +list ( 2 +.EnergyBuyRlistBª Nova.Clientbproto3 +y +EnumDesc.proto"O +EnumDesc + enum_name ( RenumName +value (Rvalue +key ( RkeyBª Nova.Clientbproto3 +o +table_EnumDesc.protoEnumDesc.proto"/ +table_EnumDesc +list ( 2 .EnumDescRlistBª Nova.Clientbproto3 +þ +Equipment.proto"Ò + Equipment +id (Rid +name ( Rname% +equipment_type (R equipmentType" + attr_group_id (R attrGroupId + exp_group_id (R +expGroupId + max_level (RmaxLevel* +random_attr_count (RrandomAttrCount, +attr1_unlock_level (Rattr1UnlockLevel, +attr2_unlock_level (Rattr2UnlockLevel, +attr3_unlock_level + (Rattr3UnlockLevel, +attr4_unlock_level (Rattr4UnlockLevel + provide_exp (R +provideExp +icon ( RiconBª Nova.Clientbproto3 +s +table_Equipment.protoEquipment.proto"1 +table_Equipment +list ( 2 +.EquipmentRlistBª Nova.Clientbproto3 +À +EquipmentGroupExp.proto"Œ +EquipmentGroupExp +id (Rid +group_id (RgroupId +level (Rlevel +need_exp (RneedExp + total_exp (RtotalExpBª Nova.Clientbproto3 +“ +table_EquipmentGroupExp.protoEquipmentGroupExp.proto"A +table_EquipmentGroupExp& +list ( 2.EquipmentGroupExpRlistBª Nova.Clientbproto3 + +EquipmentInstance.proto"Ü +EquipmentInstance +id (Rid% +equipment_type (R equipmentType + +difficulty (R +difficulty +name ( Rname +desc ( Rdesc' +suggested_power (RsuggestedPower + pre_level_id (R +preLevelId$ +pre_level_star (R preLevelStar( +need_world_class (RneedWorldClass +floor_id + (RfloorId" + one_star_desc ( R oneStarDesc" + two_star_desc ( R twoStarDesc& +three_star_desc ( R threeStarDesc5 +one_star_energy_consume (RoneStarEnergyConsume5 +two_star_energy_consume (RtwoStarEnergyConsume9 +three_star_energy_consume (RthreeStarEnergyConsume, +base_award_preview ( RbaseAwardPreview7 +preview_monster_group_id (RpreviewMonsterGroupId +icon ( RiconBª Nova.Clientbproto3 +“ +table_EquipmentInstance.protoEquipmentInstance.proto"A +table_EquipmentInstance& +list ( 2.EquipmentInstanceRlistBª Nova.Clientbproto3 +Û +EquipmentInstanceFloor.proto"¢ +EquipmentInstanceFloor +id (Rid + +scene_name ( R sceneName, +config_prefab_name ( RconfigPrefabName +theme (Rtheme +b_g_m ( RbGM. +leave_trigger_event ( RleaveTriggerEvent + +monster_id (R monsterId, +one_star_condition (RoneStarCondition, +two_star_condition (RtwoStarCondition0 +three_star_condition + (RthreeStarCondition( +level_total_time (RlevelTotalTime. +time_end_settlement (RtimeEndSettlement. +star_condition_type (RstarConditionType + +monster_lv (R monsterLv/ +drop_object_group_id (RdropObjectGroupId( +drop_object_rate (RdropObjectRate + drop_max_num (R +dropMaxNumBª Nova.Clientbproto3 +§ +"table_EquipmentInstanceFloor.protoEquipmentInstanceFloor.proto"K +table_EquipmentInstanceFloor+ +list ( 2.EquipmentInstanceFloorRlistBª Nova.Clientbproto3 +÷ +EquipmentInstanceType.proto"¿ +EquipmentInstanceType +id (Rid +name ( Rname + main_line_id (R +mainLineId* +world_class_level (RworldClassLevel +open_day (RopenDay" + open_day_desc ( R openDayDesc +episode ( Repisode +image ( Rimage +sort (Rsort + +how_reward + (R howReward +e_e_t (ReETBª Nova.Clientbproto3 +£ +!table_EquipmentInstanceType.protoEquipmentInstanceType.proto"I +table_EquipmentInstanceType* +list ( 2.EquipmentInstanceTypeRlistBª Nova.Clientbproto3 + +EquipmentItemExp.proto"M +EquipmentItemExp +id (Rid +item_id (RitemId +exp (RexpBª Nova.Clientbproto3 + +table_EquipmentItemExp.protoEquipmentItemExp.proto"? +table_EquipmentItemExp% +list ( 2.EquipmentItemExpRlistBª Nova.Clientbproto3 +á +EquipmentRandomAttribute.proto"¦ +EquipmentRandomAttribute +id (Rid! + element_type (R elementType& +attr_group_type (R attrGroupType" + attr_value_id (R attrValueId + attr_type (RattrType5 +attr_type_first_subtype (RattrTypeFirstSubtype7 +attr_type_second_subtype (RattrTypeSecondSubtypeBª Nova.Clientbproto3 +¯ +$table_EquipmentRandomAttribute.protoEquipmentRandomAttribute.proto"O +table_EquipmentRandomAttribute- +list ( 2.EquipmentRandomAttributeRlistBª Nova.Clientbproto3 +• +ErrorCode.proto"j + ErrorCode +id (Rid +title ( Rtitle +template ( Rtemplate + show_type (RshowTypeBª Nova.Clientbproto3 +s +table_ErrorCode.protoErrorCode.proto"1 +table_ErrorCode +list ( 2 +.ErrorCodeRlistBª Nova.Clientbproto3 + +EventOptions.proto"b + EventOptions +id (Rid +desc ( Rdesc. +ignore_inter_active (RignoreInterActiveBª Nova.Clientbproto3 + +table_EventOptions.protoEventOptions.proto"7 +table_EventOptions! +list ( 2 .EventOptionsRlistBª Nova.Clientbproto3 +~ +EventOptionsRules.proto"K +EventOptionsRules +id (Rid +name ( Rname +desc ( RdescBª Nova.Clientbproto3 +“ +table_EventOptionsRules.protoEventOptionsRules.proto"A +table_EventOptionsRules& +list ( 2.EventOptionsRulesRlistBª Nova.Clientbproto3 +ù +EventResult.proto"Ë + EventResult +id (Rid +effect1 (Reffect1 + +parameter1 (R +parameter1 +effect2 (Reffect2 + +parameter2 (R +parameter2 +effect3 (Reffect3 + +parameter3 (R +parameter3Bª Nova.Clientbproto3 +{ +table_EventResult.protoEventResult.proto"5 +table_EventResult +list ( 2 .EventResultRlistBª Nova.Clientbproto3 +† +FactionRelation.proto"U +FactionRelation +id (Rid2 +faction_relation_ship (RfactionRelationShipBª Nova.Clientbproto3 +‹ +table_FactionRelation.protoFactionRelation.proto"= +table_FactionRelation$ +list ( 2.FactionRelationRlistBª Nova.Clientbproto3 +š +FateCard.proto"ï +FateCard +id (Rid +name ( Rname +desc ( Rdesc +desc2 ( Rdesc2 +is_tower (RisTower + +is_vampire (R isVampire, +is_vampire_special (RisVampireSpecial# + active_number (R activeNumber +duration (Rduration* +active_room_types + (RactiveRoomTypes# + active_action (R activeAction + method_mode (R +methodMode# + client_effect (R clientEffect +count (Rcount + +theme_type (R themeType + theme_value (R +themeValue, +theme_trigger_type (RthemeTriggerType3 +effective_immediately (ReffectiveImmediately + removable (R removableBª Nova.Clientbproto3 +o +table_FateCard.protoFateCard.proto"/ +table_FateCard +list ( 2 .FateCardRlistBª Nova.Clientbproto3 +µ +FloorBuff.proto"‰ + FloorBuff +id (Rid +add_camp (RaddCamp + add_class (RaddClass + effect_id (ReffectId +buff_id (RbuffIdBª Nova.Clientbproto3 +s +table_FloorBuff.protoFloorBuff.proto"1 +table_FloorBuff +list ( 2 +.FloorBuffRlistBª Nova.Clientbproto3 +Ÿ + Force.proto"x +Force +id (Rid +title ( Rtitle +icon1 ( Ricon1 +icon2 ( Ricon2 + +talent_pos (R talentPosBª Nova.Clientbproto3 +c +table_Force.proto Force.proto") + table_Force +list ( 2.ForceRlistBª Nova.Clientbproto3 +s +FormationScene.proto"C +FormationScene + +scene_name ( R sceneName +path ( RpathBª Nova.Clientbproto3 +‡ +table_FormationScene.protoFormationScene.proto"; +table_FormationScene# +list ( 2.FormationSceneRlistBª Nova.Clientbproto3 +¾ + Gacha.proto"– +Gacha +id (Rid + +default_id (R defaultId + default_qty (R +defaultQty +cost_id (RcostId +cost_qty (RcostQty% +once_preferred ( R oncePreferred. +ten_times_preferred ( RtenTimesPreferred + limit_times (R +limitTimes, +a_type_up_show_prob (RaTypeUpShowProb, +b_type_up_show_prob + (RbTypeUpShowProb + +storage_id (R storageId + +start_time ( R startTime +end_time ( RendTime +sort (Rsort +icon ( Ricon +image ( Rimage" + u_p_character (R uPCharacter + +u_p_outfit (RuPOutfit + character (R character +outfit (Routfit +tag ( Rtag +voice ( RvoiceBª Nova.Clientbproto3 +c +table_Gacha.proto Gacha.proto") + table_Gacha +list ( 2.GachaRlistBª Nova.Clientbproto3 +ò +GachaAcquireReward.proto"½ +GachaAcquireReward +id (Rid + +item_stype (R itemStype + item_rarity (R +itemRarity# + acquire_times (R acquireTimes +item_id (RitemId +item_num (RitemNumBª Nova.Clientbproto3 +— +table_GachaAcquireReward.protoGachaAcquireReward.proto"C +table_GachaAcquireReward' +list ( 2.GachaAcquireRewardRlistBª Nova.Clientbproto3 +  +GachaType.proto"ô + GachaType +id (Rid +name ( Rname + coin_item (RcoinItem +title1 ( Rtitle1 +desc1 ( Rdesc1 +title2 ( Rtitle2 +desc2 ( Rdesc2 +title3 ( Rtitle3 +desc3 ( Rdesc3 +title4 + ( Rtitle4 +desc4 ( Rdesc4 +desc5 ( Rdesc5 +title5 ( Rtitle5 +desc6 ( Rdesc6 +desc7 ( Rdesc7 +desc8 ( Rdesc8Bª Nova.Clientbproto3 +s +table_GachaType.protoGachaType.proto"1 +table_GachaType +list ( 2 +.GachaTypeRlistBª Nova.Clientbproto3 +— +GamepadButton.proto"h + GamepadButton +id ( Rid + xbox_icon ( RxboxIcon* +play_station_icon ( RplayStationIconBª Nova.Clientbproto3 +ƒ +table_GamepadButton.protoGamepadButton.proto"9 +table_GamepadButton" +list ( 2.GamepadButtonRlistBª Nova.Clientbproto3 +a + GMBuild.proto"8 +GMBuild +id (Rid + +build_data ( R buildDataBª Nova.Clientbproto3 +k +table_GMBuild.proto GMBuild.proto"- + table_GMBuild +list ( 2.GMBuildRlistBª Nova.Clientbproto3 +‚ + GMOrder.proto"Ø +GMOrder +order ( Rorder +desc ( Rdesc + param_count (R +paramCount + param_name1 ( R +paramName1 + param_name2 ( R +paramName2 + param_name3 ( R +paramName3 + param_name4 ( R +paramName4Bª Nova.Clientbproto3 +k +table_GMOrder.proto GMOrder.proto"- + table_GMOrder +list ( 2.GMOrderRlistBª Nova.Clientbproto3 +˜ + GMTeam.proto"p +GMTeam +id (Rid +name ( Rname% +team_character (R teamCharacter + team_disc (RteamDiscBª Nova.Clientbproto3 +g +table_GMTeam.proto GMTeam.proto"+ + table_GMTeam +list ( 2.GMTeamRlistBª Nova.Clientbproto3 +á + Guide.proto"¹ +Guide +id (Rid +group_id (RgroupId +step (Rstep +type (Rtype# + guide_prepose (R guidePrepose% +prepose_params ( R preposeParams# + guide_trigger (R guideTrigger% +trigger_params ( R triggerParams +end_type (RendType# + center_offset + (R centerOffset + bind_icon ( RbindIcon1 +bind_icon_child_count (RbindIconChildCount +size (Rsize + deviation (R deviation +delay (Rdelay +head ( Rhead +desc ( Rdesc% +desc_deviation (R descDeviation% +hand_deviation (R handDeviation# + hand_rotation (R handRotation + +dictionary (R +dictionary +avg_id ( RavgId + is_active (RisActiveBª Nova.Clientbproto3 +c +table_Guide.proto Guide.proto") + table_Guide +list ( 2.GuideRlistBª Nova.Clientbproto3 +£ +GuideGroup.proto"ö + +GuideGroup +id (Rid0 +guide_detection_type (RguideDetectionType + passive_msg ( R +passiveMsg# + guide_prepose (R guidePrepose% +prepose_params ( R preposeParams% +guide_prepose2 (R guidePrepose2' +prepose_params2 ( RpreposeParams2 + +guide_post (R guidePost + post_params ( R +postParams# + guide_trigger + (R guideTrigger% +trigger_params ( R triggerParams + tower_state (R +towerState + script_path ( R +scriptPath + is_active (RisActiveBª Nova.Clientbproto3 +w +table_GuideGroup.protoGuideGroup.proto"3 +table_GuideGroup +list ( 2 .GuideGroupRlistBª Nova.Clientbproto3 +µ +Handbook.proto"Š +Handbook +id (Rid +index (Rindex +type (Rtype +char_id (RcharId +skin_id (RskinId +cond (RcondBª Nova.Clientbproto3 +o +table_Handbook.protoHandbook.proto"/ +table_Handbook +list ( 2 .HandbookRlistBª Nova.Clientbproto3 +Ø +HitDamage.proto"¬ + HitDamage +id (Rid& +level_type_data (R levelTypeData + +level_data (R levelData& +main_or_support (R mainOrSupport% +hitdamage_info ( R hitdamageInfo# + distance_type (R distanceType + source_type (R +sourceType + damage_type (R +damageType + effect_type (R +effectType! + element_type + (R elementType + +damage_tag (R damageTag* +damage_bonus_type (RdamageBonusType. +skill_percent_amend (RskillPercentAmend& +skill_abs_amend (R skillAbsAmend+ +additional_source (RadditionalSource' +additional_type (RadditionalType- +additional_percent (RadditionalPercent# + energy_charge (R energyCharge0 +talent_percent_amend (RtalentPercentAmend( +talent_abs_amend (RtalentAbsAmend" + is_dense_type (R isDenseType% +perk_intensity (R perkIntensity +skill_id (RskillId& +skill_slot_type (R skillSlotType +perk_id (RperkIdBª Nova.Clientbproto3 +s +table_HitDamage.protoHitDamage.proto"1 +table_HitDamage +list ( 2 +.HitDamageRlistBª Nova.Clientbproto3 +µ + Honor.proto" +Honor +id (Rid +name ( Rname + is_unlock (RisUnlock +type (Rtype +tab_type (RtabType +params (Rparams +priotity (Rpriotity +main_res ( RmainRes +sub_res ( RsubRes +sort + (Rsort +b_g_type (RbGTypeBª Nova.Clientbproto3 +c +table_Honor.proto Honor.proto") + table_Honor +list ( 2.HonorRlistBª Nova.Clientbproto3 +‘ +HonorCharacter.proto"à +HonorCharacter +id (Rid +char_id (RcharId +level (Rlevel + big_bg_path ( R bigBgPath" + small_bg_path ( R smallBgPath + +star_group (R starGroup +sort (Rsort +b_g_type (RbGTypeBª Nova.Clientbproto3 +‡ +table_HonorCharacter.protoHonorCharacter.proto"; +table_HonorCharacter# +list ( 2.HonorCharacterRlistBª Nova.Clientbproto3 +´ +InfinityTower.proto"„ + InfinityTower +id (Rid +name ( Rname! + element_type (R elementType0 +formation_scene_name ( RformationSceneName +bg ( Rbg+ +pre_tower_level_id (RpreTowerLevelId +open_day (RopenDay" + open_day_desc ( R openDayDescBª Nova.Clientbproto3 +ƒ +table_InfinityTower.protoInfinityTower.proto"9 +table_InfinityTower" +list ( 2.InfinityTowerRlistBª Nova.Clientbproto3 +î +InfinityTowerAffix.proto"¹ +InfinityTowerAffix +id (Rid +name ( Rname +desc ( Rdesc +add_camp (RaddCamp+ +trigger_condition (RtriggerCondition# + trigger_param ( R triggerParamBª Nova.Clientbproto3 +— +table_InfinityTowerAffix.protoInfinityTowerAffix.proto"C +table_InfinityTowerAffix' +list ( 2.InfinityTowerAffixRlistBª Nova.Clientbproto3 +ì +InfinityTowerBountyLevel.proto"± +InfinityTowerBountyLevel +id (Rid +level (Rlevel +name ( Rname +icon ( Ricon$ +reward_drop_id (R rewardDropId + reward_show ( R +rewardShow +cond1 (Rcond1 + cond_param1 (R +condParam1 + +cond_desc1 ( R condDesc1 +cond2 + (Rcond2 + cond_param2 (R +condParam2 + +cond_desc2 ( R condDesc2 +cond3 (Rcond3 + cond_param3 (R +condParam3 + +cond_desc3 ( R condDesc3Bª Nova.Clientbproto3 +¯ +$table_InfinityTowerBountyLevel.protoInfinityTowerBountyLevel.proto"O +table_InfinityTowerBountyLevel- +list ( 2.InfinityTowerBountyLevelRlistBª Nova.Clientbproto3 +Á +InfinityTowerDifficulty.proto"‡ +InfinityTowerDifficulty +id (Rid +name ( Rname +tower_id (RtowerId, +unlock_world_class (RunlockWorldClass + unlock_tips ( R +unlockTips! + is_challenge (R isChallenge' +recommend_level (RrecommendLevel +sort (RsortBª Nova.Clientbproto3 +« +#table_InfinityTowerDifficulty.protoInfinityTowerDifficulty.proto"M +table_InfinityTowerDifficulty, +list ( 2.InfinityTowerDifficultyRlistBª Nova.Clientbproto3 +Ô +InfinityTowerEnemySet.proto"œ +InfinityTowerEnemySet +set_id (RsetId +wave_num (RwaveNum + group_num (RgroupNum +max_num (RmaxNum' +max_num_per_wave (R maxNumPerWave + +monster_id (R monsterId! + level_change (R levelChange0 +common_gameplay_type (RcommonGameplayTypeBª Nova.Clientbproto3 +£ +!table_InfinityTowerEnemySet.protoInfinityTowerEnemySet.proto"I +table_InfinityTowerEnemySet* +list ( 2.InfinityTowerEnemySetRlistBª Nova.Clientbproto3 +€ +InfinityTowerFloor.proto"Ë +InfinityTowerFloor +id (Rid +lv_id (RlvId +map_id (RmapId + battle_lv (RbattleLv + +floor_func (R floorFunc + +monster_lv (R monsterLv +stage (Rstage +set_id (RsetId + +limit_time (R limitTime7 +preview_monster_group_id + (RpreviewMonsterGroupId +affix_id (RaffixIdBª Nova.Clientbproto3 +— +table_InfinityTowerFloor.protoInfinityTowerFloor.proto"C +table_InfinityTowerFloor' +list ( 2.InfinityTowerFloorRlistBª Nova.Clientbproto3 +ô +InfinityTowerLevel.proto"¿ +InfinityTowerLevel +id (Rid +name ( Rname# + difficulty_id (R difficultyId + +level_type (R levelType +floor (Rfloor +floor_id (RfloorId + pre_level_id (R +preLevelId + +entry_cond (R entryCond( +entry_cond_param (RentryCondParam" + award_drop_id + (R awardDropId! + recommend_lv (R recommendLv0 +recommend_build_rank (RrecommendBuildRank, +base_award_preview ( RbaseAwardPreviewBª Nova.Clientbproto3 +— +table_InfinityTowerLevel.protoInfinityTowerLevel.proto"C +table_InfinityTowerLevel' +list ( 2.InfinityTowerLevelRlistBª Nova.Clientbproto3 +ü +InfinityTowerMap.proto"É +InfinityTowerMap +id (Rid + +scene_name ( R sceneName, +config_prefab_name ( RconfigPrefabName +theme (Rtheme +b_g_m ( RbGM. +leave_trigger_event ( RleaveTriggerEventBª Nova.Clientbproto3 + +table_InfinityTowerMap.protoInfinityTowerMap.proto"? +table_InfinityTowerMap% +list ( 2.InfinityTowerMapRlistBª Nova.Clientbproto3 +ï +InfinityTowerMsg.proto"¼ +InfinityTowerMsg +id (Rid +title ( Rtitle +content ( Rcontent +type (Rtype + day_of_week (R dayOfWeek + condition (R condition +params ( RparamsBª Nova.Clientbproto3 + +table_InfinityTowerMsg.protoInfinityTowerMsg.proto"? +table_InfinityTowerMsg% +list ( 2.InfinityTowerMsgRlistBª Nova.Clientbproto3 +Ø +InfinityTowerPlot.proto"¤ +InfinityTowerPlot +id (Rid +name ( Rname +desc ( Rdesc +plot_sum ( RplotSum +plot_id (RplotId +avg_id ( RavgId + unlock_cond (R +unlockCond + +cond_param (R condParam$ +reward_item_id (R rewardItemId& +reward_item_qty + (R rewardItemQtyBª Nova.Clientbproto3 +“ +table_InfinityTowerPlot.protoInfinityTowerPlot.proto"A +table_InfinityTowerPlot& +list ( 2.InfinityTowerPlotRlistBª Nova.Clientbproto3 +Ò +InteractiveAction.proto"ž +InteractiveAction +id (Rid + +player_ani (R playerAni +icon0 ( Ricon0 +title0 ( Rtitle0 +icon1 ( Ricon1 +title1 ( Rtitle1Bª Nova.Clientbproto3 +“ +table_InteractiveAction.protoInteractiveAction.proto"A +table_InteractiveAction& +list ( 2.InteractiveActionRlistBª Nova.Clientbproto3 +ö + +Item.proto"Ï +Item +id (Rid +title ( Rtitle +desc ( Rdesc +literary ( Rliterary +type (Rtype +stype (Rstype +rarity (Rrarity +stack (Rstack% +position_limit (R positionLimit + expire_type + (R +expireType +use_mode (RuseMode + +use_action (R useAction +use_args ( RuseArgs +display (Rdisplay + obtain_ways ( R +obtainWays +jump_to (RjumpTo +icon ( Ricon +icon2 ( Ricon2Bª Nova.Clientbproto3 +_ +table_Item.proto +Item.proto"' + +table_Item +list ( 2.ItemRlistBª Nova.Clientbproto3 +± +ItemPackMark.proto"‚ + ItemPackMark +id (Rid + pack_mark (RpackMark + +item_stype (R itemStype +name ( Rname +sort (RsortBª Nova.Clientbproto3 + +table_ItemPackMark.protoItemPackMark.proto"7 +table_ItemPackMark! +list ( 2 .ItemPackMarkRlistBª Nova.Clientbproto3 +’ + JumpTo.proto"j +JumpTo +id (Rid +type (Rtype +param (Rparam +desc ( Rdesc +icon ( RiconBª Nova.Clientbproto3 +g +table_JumpTo.proto JumpTo.proto"+ + table_JumpTo +list ( 2.JumpToRlistBª Nova.Clientbproto3 +á +LoginRewardControl.proto"¬ +LoginRewardControl +id (Rid# + rewards_group (R rewardsGroup +des_text ( RdesText + +u_i_assets ( RuIAssets( +pop_up_u_i_assets ( R popUpUIAssetsBª Nova.Clientbproto3 +— +table_LoginRewardControl.protoLoginRewardControl.proto"C +table_LoginRewardControl' +list ( 2.LoginRewardControlRlistBª Nova.Clientbproto3 + +LoginRewardGroup.proto"Î +LoginRewardGroup& +reward_group_id (R rewardGroupId +order (Rorder + +reward_id1 (R rewardId1 +qty1 (Rqty1 + +reward_id2 (R rewardId2 +qty2 (Rqty2 + +reward_id3 (R rewardId3 +qty3 (Rqty3 + reward_icon ( R +rewardIcon! + reward_count + (R rewardCount + reward_desc ( R +rewardDescBª Nova.Clientbproto3 + +table_LoginRewardGroup.protoLoginRewardGroup.proto"? +table_LoginRewardGroup% +list ( 2.LoginRewardGroupRlistBª Nova.Clientbproto3 +â +MailTemplate.proto"³ + MailTemplate +id (Rid + explanation ( R explanation +icon ( Ricon +author ( Rauthor! + letter_paper ( R letterPaper +subject ( Rsubject +desc ( Rdesc +type (Rtype +props1 (Rprops1! + props_count1 + (R propsCount1 +props2 (Rprops2! + props_count2 (R propsCount2 +props3 (Rprops3! + props_count3 (R propsCount3 +props4 (Rprops4! + props_count4 (R propsCount4 +props5 (Rprops5! + props_count5 (R propsCount5 +props6 (Rprops6! + props_count6 (R propsCount6Bª Nova.Clientbproto3 + +table_MailTemplate.protoMailTemplate.proto"7 +table_MailTemplate! +list ( 2 .MailTemplateRlistBª Nova.Clientbproto3 +Š +Mainline.proto"ß +Mainline +id (Rid +num ( Rnum +name ( Rname +desc ( Rdesc +type (Rtype +energy (Renergy + +chapter_id (R chapterId +prev (Rprev +form (Rform +avg_id + ( RavgId' +trial_character (RtrialCharacter" + before_avg_id ( R beforeAvgId + after_avg_id ( R +afterAvgId% +energy_consume (R energyConsume + unlock_item (R +unlockItem + +unlock_qty (R unlockQty + glob_reward (R +globReward% +reward_preview ( R rewardPreview + item_reward (R +itemReward* +first_item_reward (RfirstItemReward% +diamond_reward (R diamondReward( +min_chest_reward ( RminChestReward( +max_chest_reward ( RmaxChestReward + char_banned (R +charBanned +floor_id (RfloorId +icon ( Ricon +pos_id (RposId7 +preview_monster_group_id (RpreviewMonsterGroupId + recommend (R recommend +repeat (Rrepeat + sub_map_name (R +subMapName! + mainline_img ( R mainlineImgBª Nova.Clientbproto3 +o +table_Mainline.protoMainline.proto"/ +table_Mainline +list ( 2 .MainlineRlistBª Nova.Clientbproto3 +• +MainlineFloor.proto"å + MainlineFloor +id (Rid + +scene_name ( R sceneName, +config_prefab_name ( RconfigPrefabName +theme (Rtheme +b_g_m ( RbGM. +leave_trigger_event ( RleaveTriggerEvent + +monster_lv (R monsterLvBª Nova.Clientbproto3 +ƒ +table_MainlineFloor.protoMainlineFloor.proto"9 +table_MainlineFloor" +list ( 2.MainlineFloorRlistBª Nova.Clientbproto3 +º + MallGem.proto" +MallGem +id ( Rid +name ( Rname +order (Rorder + base_item_id (R +baseItemId" + base_item_qty (R baseItemQty9 +experienced_bonus_item_id (RexperiencedBonusItemId; +experienced_bonus_item_qty (RexperiencedBonusItemQty0 +maiden_bonus_item_i_d (RmaidenBonusItemID1 +maiden_bonus_item_qty (RmaidenBonusItemQty +price + (Rprice +icon ( RiconBª Nova.Clientbproto3 +k +table_MallGem.proto MallGem.proto"- + table_MallGem +list ( 2.MallGemRlistBª Nova.Clientbproto3 +š +MallMonthlyCard.proto"è +MallMonthlyCard +id ( Rid +name ( Rname& +monthly_card_id (R monthlyCardId +price (Rprice + base_item_id (R +baseItemId" + base_item_qty (R baseItemQty +max_days (RmaxDays +icon ( RiconBª Nova.Clientbproto3 +‹ +table_MallMonthlyCard.protoMallMonthlyCard.proto"= +table_MallMonthlyCard$ +list ( 2.MallMonthlyCardRlistBª Nova.Clientbproto3 +ò +MallPackage.proto"Ä + MallPackage +id ( Rid +name ( Rname +group_id (RgroupId +sort (Rsort# + currency_type (R currencyType( +currency_item_id (RcurrencyItemId* +currency_item_qty (RcurrencyItemQty +stock (Rstock! + refresh_type (R refreshType +items + ( Ritems$ +list_cond_type (R listCondType( +list_cond_params ( RlistCondParams& +order_cond_type (R orderCondType* +order_cond_params ( RorderCondParams + list_time ( RlistTime + de_list_time ( R +deListTime! + display_mode (R displayMode +icon ( RiconBª Nova.Clientbproto3 +{ +table_MallPackage.protoMallPackage.proto"5 +table_MallPackage +list ( 2 .MallPackageRlistBª Nova.Clientbproto3 +z +MallPackagePage.proto"I +MallPackagePage +id (Rid +name ( Rname +sort (RsortBª Nova.Clientbproto3 +‹ +table_MallPackagePage.protoMallPackagePage.proto"= +table_MallPackagePage$ +list ( 2.MallPackagePageRlistBª Nova.Clientbproto3 +å +MallShop.proto"º +MallShop +id ( Rid +name ( Rname +desc ( Rdesc +group_id (RgroupId +sort (Rsort( +exchange_item_id (RexchangeItemId* +exchange_item_qty (RexchangeItemQty +stock (Rstock! + refresh_type (R refreshType +item_id + (RitemId +item_qty (RitemQty$ +list_cond_type (R listCondType( +list_cond_params ( RlistCondParams& +order_cond_type (R orderCondType* +order_cond_params ( RorderCondParams + list_time ( RlistTime + de_list_time ( R +deListTime! + display_mode (R displayModeBª Nova.Clientbproto3 +o +table_MallShop.protoMallShop.proto"/ +table_MallShop +list ( 2 .MallShopRlistBª Nova.Clientbproto3 +ý +MallShopPage.proto"Î + MallShopPage +id (Rid +sort (Rsort +name ( Rname* +refresh_time_type (RrefreshTimeType + shop_coin (RshopCoin + list_time ( RlistTime + de_list_time ( R +deListTimeBª Nova.Clientbproto3 + +table_MallShopPage.protoMallShopPage.proto"7 +table_MallShopPage! +list ( 2 .MallShopPageRlistBª Nova.Clientbproto3 +Ü + Monster.proto"² +Monster +id (Rid +name ( Rname$ +formal_name_id (R formalNameId +epic_lv (RepicLv) +monster_position (RmonsterPosition + +blood_type (R bloodType +force ( Rforce +f_c_id (RfCId +f_a_id (RfAId +mov_type + (RmovType +run_spd (RrunSpd& +trans_spd_scale (R transSpdScale +walk_spd (RwalkSpd +mov_acc (RmovAcc + +vision_rng (R visionRng + +vision_deg (R visionDeg +hear_rng (RhearRng +ref_rng (RrefRng +act_rng (RactRng + dis_act_rng (R disActRng + +search_rng (R searchRng +rot_spd (RrotSpd' +rot_spd_in_skill (R rotSpdInSkill +templete (Rtemplete +buff_ids (RbuffIds +sub_type (RsubType +faction (Rfaction + trap_tag_ids (R +trapTagIds + +sup_charge (R supCharge + is_show_rng (R isShowRng +weight (Rweight2 +toughness_broken_time (RtoughnessBrokenTime +tag1! ( Rtag1 +tag2" ( Rtag2 +tag3# ( Rtag3 +tag4$ ( Rtag4 +tag5% ( Rtag5( +attack_hint_type& (RattackHintType% +block_priority' (R blockPriority& +way_point_shift( (R wayPointShift& +monster_team_id) (R monsterTeamIdBª Nova.Clientbproto3 +k +table_Monster.proto Monster.proto"- + table_Monster +list ( 2.MonsterRlistBª Nova.Clientbproto3 +Þ +MonsterActionBranch.proto"¨ +MonsterActionBranch +id (Rid +group_id (RgroupId +skill_id (RskillId +priority (Rpriority +weight (Rweight +rate (Rrate +c_d (RcD' +initial_c_d_pool (R initialCDPool% +min_initial_c_d (R minInitialCD% +max_initial_c_d + (R maxInitialCD# +start_c_d_time (R startCDTime + fixed_c_d (RfixedCD) +release_distance (RreleaseDistance# + release_angle (R releaseAngle% +trace_duration (R traceDuration +activate (Ractivate4 +active_condition_type1 (RactiveConditionType1# + active_param1 ( R activeParam1# + active_param2 ( R activeParam29 +de_active_condition_type1 (RdeActiveConditionType1( +de_active_param1 ( RdeActiveParam1( +de_active_param2 ( RdeActiveParam2, +follow_event_type1 (RfollowEventType1. +follow_event_param1 ( RfollowEventParam1, +follow_event_type2 (RfollowEventType2. +follow_event_param2 ( RfollowEventParam2, +follow_event_type3 (RfollowEventType3. +follow_event_param3 ( RfollowEventParam3Bª Nova.Clientbproto3 +› +table_MonsterActionBranch.protoMonsterActionBranch.proto"E +table_MonsterActionBranch( +list ( 2.MonsterActionBranchRlistBª Nova.Clientbproto3 +ö +MonsterAI.proto"Ê + MonsterAI +id (Rid( +combo_group_path ( RcomboGroupPath- +spawn_show_skill_id (RspawnShowSkillId+ +idle_show_skill_id (RidleShowSkillId + die_skill_id (R +dieSkillId% +action_a_i_path ( R actionAIPath* +action_branch_ids (RactionBranchIds% +think_interval (R thinkInterval! + idle_a_i_path ( R +idleAIPath# +spawn_a_i_path + ( R spawnAIPath) +parallel_a_i_path ( RparallelAIPath+ +check_achievement (RcheckAchievement! + wander_range (R wanderRange' +wander_interval (RwanderInterval + wander_rate (R +wanderRateBª Nova.Clientbproto3 +s +table_MonsterAI.protoMonsterAI.proto"1 +table_MonsterAI +list ( 2 +.MonsterAIRlistBª Nova.Clientbproto3 +Ù +MonsterBornGroup.proto"¦ +MonsterBornGroup +group_id (RgroupId + +monster_id (R monsterId + +difficulty (R +difficulty + min_floor (RminFloor + max_floor (RmaxFloorBª Nova.Clientbproto3 + +table_MonsterBornGroup.protoMonsterBornGroup.proto"? +table_MonsterBornGroup% +list ( 2.MonsterBornGroupRlistBª Nova.Clientbproto3 +h +MonsterGroup.proto": + MonsterGroup +id (Rid +monsters ( RmonstersBª Nova.Clientbproto3 + +table_MonsterGroup.protoMonsterGroup.proto"7 +table_MonsterGroup! +list ( 2 .MonsterGroupRlistBª Nova.Clientbproto3 +³ +MonsterSkin.proto"… + MonsterSkin +id (Rid +name ( Rname +desc ( Rdesc +icon ( Ricon + hint_icon ( RhintIcon +model ( Rmodel* +run_animation_spd (RrunAnimationSpd, +walk_animation_spd (RwalkAnimationSpd + +bar_height (R barHeight + model_scale + (R +modelScale# +buff_f_x_scale (R buffFXScale% +collider_scale (R colliderScale. +forbidden_behit_rot (RforbiddenBehitRot, +effect_scale_value (ReffectScaleValue3 +tag_effect_scale_value (RtagEffectScaleValueBª Nova.Clientbproto3 +{ +table_MonsterSkin.protoMonsterSkin.proto"5 +table_MonsterSkin +list ( 2 .MonsterSkinRlistBª Nova.Clientbproto3 +£ +MonsterTeam.proto"õ + MonsterTeam +id (Rid +mate0_id (Rmate0Id +mate1_id (Rmate1Id +mate2_id (Rmate2Id +mate3_id (Rmate3Id +mate4_id (Rmate4Id +mate5_id (Rmate5Id +mate6_id (Rmate6Id +mate7_id (Rmate7IdBª Nova.Clientbproto3 +{ +table_MonsterTeam.protoMonsterTeam.proto"5 +table_MonsterTeam +list ( 2 .MonsterTeamRlistBª Nova.Clientbproto3 +Ø +MonsterValueTemplete.proto"¡ +MonsterValueTemplete +id (Rid + template_id (R +templateId +name ( Rname +lv (Rlv +hp (Rhp +atk (Ratk +def (Rdef + crit_rate (RcritRate( +normal_crit_rate (RnormalCritRate& +skill_crit_rate + (R skillCritRate& +ultra_crit_rate (R ultraCritRate$ +mark_crit_rate (R markCritRate( +summon_crit_rate (RsummonCritRate0 +projectile_crit_rate (RprojectileCritRate& +other_crit_rate (R otherCritRate' +crit_resistance (RcritResistance + +crit_power (R critPower* +normal_crit_power (RnormalCritPower( +skill_crit_power (RskillCritPower( +ultra_crit_power (RultraCritPower& +mark_crit_power (R markCritPower* +summon_crit_power (RsummonCritPower2 +projectile_crit_power (RprojectileCritPower( +other_crit_power (RotherCritPower +hit_rate (RhitRate +evd (Revd +atk_spd (RatkSpd + +def_pierce (R defPierce + +def_ignore (R defIgnore +w_e_p (RwEP +f_e_p (RfEP +s_e_p (RsEP +a_e_p! (RaEP +l_e_p" (RlEP +d_e_p# (RdEP +w_e_i$ (RwEI +f_e_i% (RfEI +s_e_i& (RsEI +a_e_i' (RaEI +l_e_i( (RlEI +d_e_i) (RdEI +w_e_e* (RwEE +f_e_e+ (RfEE +s_e_e, (RsEE +a_e_e- (RaEE +l_e_e. (RlEE +d_e_e/ (RdEE +w_e_r0 (RwER +f_e_r1 (RfER +s_e_r2 (RsER +a_e_r3 (RaER +l_e_r4 (RlER +d_e_r5 (RdER + toughness6 (R toughness +suppress7 (Rsuppress' +r_c_d_m_a_r_k_d_m_g8 (R +rCDMARKDMGBª Nova.Clientbproto3 +Ÿ + table_MonsterValueTemplete.protoMonsterValueTemplete.proto"G +table_MonsterValueTemplete) +list ( 2.MonsterValueTempleteRlistBª Nova.Clientbproto3 +« + MonsterValueTempleteAdjust.proto"î +MonsterValueTempleteAdjust +id (Rid + template_id (R +templateId +name ( Rname +e_e_t (ReET + +weak_e_e_t (RweakEET +hp_ratio (RhpRatio +hp_fix (RhpFix + atk_ratio (RatkRatio +atk_fix (RatkFix + w_e_r_ratio + (RwERRatio + w_e_r_fix (RwERFix + f_e_r_ratio (RfERRatio + f_e_r_fix (RfERFix + s_e_r_ratio (RsERRatio + s_e_r_fix (RsERFix + a_e_r_ratio (RaERRatio + a_e_r_fix (RaERFix + l_e_r_ratio (RlERRatio + l_e_r_fix (RlERFix + d_e_r_ratio (RdERRatio + d_e_r_fix (RdERFix' +toughness_ratio (RtoughnessRatio# + toughness_fix (R toughnessFix% +suppress_ratio (R suppressRatio! + suppress_fix (R suppressFixBª Nova.Clientbproto3 +· +&table_MonsterValueTempleteAdjust.proto MonsterValueTempleteAdjust.proto"S + table_MonsterValueTempleteAdjust/ +list ( 2.MonsterValueTempleteAdjustRlistBª Nova.Clientbproto3 +ä +MonthlyCard.proto"¶ + MonthlyCard +id (Rid +card_id (RcardId + +reward_id1 (R rewardId1 + reward_num1 (R +rewardNum1 + +reward_id2 (R rewardId2 + reward_num2 (R +rewardNum2Bª Nova.Clientbproto3 +{ +table_MonthlyCard.protoMonthlyCard.proto"5 +table_MonthlyCard +list ( 2 .MonthlyCardRlistBª Nova.Clientbproto3 +Ô + +Note.proto"­ +Note +id (Rid +note_ (Rnote +style1 ( Rstyle1 +style2 ( Rstyle2 +style3 ( Rstyle3 +style4 ( Rstyle4 +style5 ( Rstyle5 +style6 ( Rstyle6 +style7 ( Rstyle7 +style8 + ( Rstyle8 +color ( Rcolor +name1 ( Rname1 +name2 ( Rname2Bª Nova.Clientbproto3 +_ +table_Note.proto +Note.proto"' + +table_Note +list ( 2.NoteRlistBª Nova.Clientbproto3 +Ú +NoteDropGroup.proto"ª + NoteDropGroup +index (Rindex +group_id (RgroupId* +random_note_range (RrandomNoteRange + a_note_range (R +aNoteRange + b_note_range (R +bNoteRange + c_note_range (R +cNoteRange + d_note_range (R +dNoteRange + e_note_range (R +eNoteRange +icon ( RiconBª Nova.Clientbproto3 +ƒ +table_NoteDropGroup.protoNoteDropGroup.proto"9 +table_NoteDropGroup" +list ( 2.NoteDropGroupRlistBª Nova.Clientbproto3 +â +NPCConfig.proto"¶ + NPCConfig +id (Rid +type (Rtype +name ( Rname +desc ( Rdesc +literary ( Rliterary# + refresh_point (R refreshPoint + first_lines (R +firstLines +lines (Rlines +chat (Rchat + chat_prop + (RchatProp + chat_time (RchatTime +n_p_c_id (RnPCIdBª Nova.Clientbproto3 +s +table_NPCConfig.protoNPCConfig.proto"1 +table_NPCConfig +list ( 2 +.NPCConfigRlistBª Nova.Clientbproto3 +Ï + NPCSkin.proto"¥ +NPCSkin +id (Rid +name ( Rname +desc ( Rdesc +is_show (RisShow +char_id (RcharId +type (Rtype + source_desc (R +sourceDesc +icon ( Ricon% +small_portrait ( R smallPortrait + model_scale + (R +modelScale +model ( Rmodel +portrait ( Rportrait +bg ( Rbg +offset ( Roffset +l2_d ( Rl2D0 +full_screen_portrait ( RfullScreenPortrait + +skin_theme (R skinTheme- +interactive_action (RinteractiveAction2 +interactive_action_id (RinteractiveActionIdBª Nova.Clientbproto3 +k +table_NPCSkin.proto NPCSkin.proto"- + table_NPCSkin +list ( 2.NPCSkinRlistBª Nova.Clientbproto3 +Ò +OnceAdditionalAttribute.proto"˜ +OnceAdditionalAttribute +id (Rid& +level_type_data (R levelTypeData + +level_data (R levelData& +main_or_support (R mainOrSupportBª Nova.Clientbproto3 +« +#table_OnceAdditionalAttribute.protoOnceAdditionalAttribute.proto"M +table_OnceAdditionalAttribute, +list ( 2.OnceAdditionalAttributeRlistBª Nova.Clientbproto3 +« +"OnceAdditionalAttributeValue.proto"ì +OnceAdditionalAttributeValue +id (Rid' +attribute_type1 (RattributeType1' +parameter_type1 (RparameterType1 +value1 (Rvalue1' +attribute_type2 (RattributeType2' +parameter_type2 (RparameterType2 +value2 (Rvalue2' +attribute_type3 (RattributeType3' +parameter_type3 (RparameterType3 +value3 + (Rvalue3Bª Nova.Clientbproto3 +¿ +(table_OnceAdditionalAttributeValue.proto"OnceAdditionalAttributeValue.proto"W +"table_OnceAdditionalAttributeValue1 +list ( 2.OnceAdditionalAttributeValueRlistBª Nova.Clientbproto3 +° +OpenFunc.proto"… +OpenFunc +id (Rid +name ( Rname( +need_world_class (RneedWorldClass' +need_conditions (RneedConditions% +need_roguelike (R needRoguelike + pop_windows (R +popWindows +desc ( Rdesc +icon ( Ricon +tips ( RtipsBª Nova.Clientbproto3 +o +table_OpenFunc.protoOpenFunc.proto"/ +table_OpenFunc +list ( 2 .OpenFuncRlistBª Nova.Clientbproto3 +ç +PeriodicQuest.proto"· + PeriodicQuest +id (Rid +belong (Rbelong +groupid (Rgroupid +title ( Rtitle +jump_to (RjumpTo +reward (Rreward + +reward_qty (R rewardQtyBª Nova.Clientbproto3 +ƒ +table_PeriodicQuest.protoPeriodicQuest.proto"9 +table_PeriodicQuest" +list ( 2.PeriodicQuestRlistBª Nova.Clientbproto3 +É +PeriodicQuestControl.proto"’ +PeriodicQuestControl +id (Rid# + final_reward1 (R finalReward1* +final_reward_qty1 (RfinalRewardQty1# + final_reward2 (R finalReward2* +final_reward_qty2 (RfinalRewardQty2# + final_reward3 (R finalReward3* +final_reward_qty3 (RfinalRewardQty3 +des_text ( RdesText + +u_i_assets ( RuIAssets + ctrl_name + ( RctrlName! + preview_type (R previewTypeBª Nova.Clientbproto3 +Ÿ + table_PeriodicQuestControl.protoPeriodicQuestControl.proto"G +table_PeriodicQuestControl) +list ( 2.PeriodicQuestControlRlistBª Nova.Clientbproto3 +œ +PeriodicQuestGroup.proto"h +PeriodicQuestGroup +belong (Rbelong +group_id (RgroupId + unlock_time (R +unlockTimeBª Nova.Clientbproto3 +— +table_PeriodicQuestGroup.protoPeriodicQuestGroup.proto"C +table_PeriodicQuestGroup' +list ( 2.PeriodicQuestGroupRlistBª Nova.Clientbproto3 +ï + +Perk.proto"È +Perk +id (Rid + max_level (RmaxLevel) +additional_level (RadditionalLevel +e_e_t (ReET$ +score_group_id (R scoreGroupId% +strength_score (R strengthScore + perk_type (RperkType +char_id (RcharId$ +char_perk_type (R charPerkType +theme + (Rtheme + game_book_id (R +gameBookId0 +operating_floor_type (RoperatingFloorType) +operating_number (RoperatingNumber +price (Rprice +slot (Rslot +tags (Rtags + pre_perk_ids (R +prePerkIds + pre_tag_pkgs ( R +preTagPkgs + +need_floor (R needFloor& +effect_group_id (R effectGroupId! + is_effective (R isEffective + perk_tag1 ( RperkTag1 + perk_tag2 ( RperkTag2 + perk_tag3 ( RperkTag3 + perk_tag4 ( RperkTag4 + logo_icon ( RlogoIcon +slot_tag ( RslotTagBª Nova.Clientbproto3 +_ +table_Perk.proto +Perk.proto"' + +table_Perk +list ( 2.PerkRlistBª Nova.Clientbproto3 +î +PerkPassiveSkill.proto"» +PerkPassiveSkill +id (Rid + share_c_d (RshareCD + share_times (R +shareTimes + +effect_id1 (R effectId1 + +effect_id2 (R effectId2 + +effect_id3 (R effectId3 + +effect_id4 (R effectId4 +name ( Rname +desc ( Rdesc +desc1 + ( Rdesc1 +param1 ( Rparam1 +desc2 ( Rdesc2 +param2 ( Rparam2 +desc3 ( Rdesc3 +param3 ( Rparam3 +desc4 ( Rdesc4 +param4 ( Rparam4Bª Nova.Clientbproto3 + +table_PerkPassiveSkill.protoPerkPassiveSkill.proto"? +table_PerkPassiveSkill% +list ( 2.PerkPassiveSkillRlistBª Nova.Clientbproto3 +\ +PlayerHead.proto"0 + +PlayerHead +id (Rid +icon ( RiconBª Nova.Clientbproto3 +w +table_PlayerHead.protoPlayerHead.proto"3 +table_PlayerHead +list ( 2 .PlayerHeadRlistBª Nova.Clientbproto3 +ï + +Plot.proto"È +Plot +id (Rid +char (Rchar +name ( Rname +desc ( Rdesc +avg_id ( RavgId + mainlines (R mainlines2 +unlock_affinity_level (RunlockAffinityLevel& +connect_chat_id (R connectChatId* +char_advance_cond ( RcharAdvanceCond +rewards + ( Rrewards + +pic_source ( R picSourceBª Nova.Clientbproto3 +_ +table_Plot.proto +Plot.proto"' + +table_Plot +list ( 2.PlotRlistBª Nova.Clientbproto3 +Õ +Potential.proto"© + Potential +id (Rid +char_id (RcharId + branch_type (R +branchType + max_level (RmaxLevel$ +score_group_id (R scoreGroupId + build_score (R +buildScore + game_book_id (R +gameBookId& +effect_group_id (R effectGroupId! + is_effective (R isEffective% +potential_tag1 + ( R potentialTag1% +potential_tag2 ( R potentialTag2% +potential_tag3 ( R potentialTag3% +potential_tag4 ( R potentialTag4 +corner (Rcorner +sp_bg ( RspBg +sp_face ( RspFace + +effect_id1 (R effectId1 + +effect_id2 (R effectId2 + +effect_id3 (R effectId3 + +effect_id4 (R effectId4 + +brief_desc ( R briefDesc +desc ( Rdesc +param1 ( Rparam1 +param2 ( Rparam2 +param3 ( Rparam3 +param4 ( Rparam4 +param5 ( Rparam5 +param6 ( Rparam6 +param7 ( Rparam7 +param8 ( Rparam8 +param9 ( Rparam9 +param10 ( Rparam10Bª Nova.Clientbproto3 +s +table_Potential.protoPotential.proto"1 +table_Potential +list ( 2 +.PotentialRlistBª Nova.Clientbproto3 +« +PotentialPassiveSkill.proto"ó +PotentialPassiveSkill +id (Rid + share_c_d (RshareCD + share_times (R +shareTimes + +effect_id1 (R effectId1 + +effect_id2 (R effectId2 + +effect_id3 (R effectId3 + +effect_id4 (R effectId4 + +brief_desc ( R briefDesc +desc ( Rdesc +param1 + ( Rparam1 +param2 ( Rparam2 +param3 ( Rparam3 +param4 ( Rparam4Bª Nova.Clientbproto3 +£ +!table_PotentialPassiveSkill.protoPotentialPassiveSkill.proto"I +table_PotentialPassiveSkill* +list ( 2.PotentialPassiveSkillRlistBª Nova.Clientbproto3 +Û +PreviewMonsterGroup.proto"¥ +PreviewMonsterGroup +id (Rid +group_id (RgroupId5 +preview_monster_list_id (RpreviewMonsterListId +min_lv ( RminLv +max_lv ( RmaxLvBª Nova.Clientbproto3 +› +table_PreviewMonsterGroup.protoPreviewMonsterGroup.proto"E +table_PreviewMonsterGroup( +list ( 2.PreviewMonsterGroupRlistBª Nova.Clientbproto3 +Å +PreviewMonsterList.proto" +PreviewMonsterList +id (Rid +icon ( Ricon +name ( Rname + resist_e_e_t (R resistEET +e_e_t (ReET +desc ( Rdesc + +skill_desc ( R skillDesc +epic_lv (RepicLv +h_p (RhP +a_t_k + (RaTK +d_e_f (RdEF$ +t_o_u_g_h_n_e_s_s (R tOUGHNESS% +ability_title1 ( R abilityTitle1# + ability_desc1 ( R abilityDesc1% +ability_title2 ( R abilityTitle2# + ability_desc2 ( R abilityDesc2% +ability_title3 ( R abilityTitle3# + ability_desc3 ( R abilityDesc3Bª Nova.Clientbproto3 +— +table_PreviewMonsterList.protoPreviewMonsterList.proto"C +table_PreviewMonsterList' +list ( 2.PreviewMonsterListRlistBª Nova.Clientbproto3 +õ +Production.proto"È + +Production +id (Rid +name ( Rname +desc ( Rdesc# + production_id (R productionId0 +production_per_batch (RproductionPerBatch, +show_production_id (RshowProductionId9 +show_production_per_batch (RshowProductionPerBatch +group (Rgroup +tag (Rtag( +raw_material_id1 + (RrawMaterialId1. +raw_material_count1 (RrawMaterialCount1( +raw_material_id2 (RrawMaterialId2. +raw_material_count2 (RrawMaterialCount2( +raw_material_id3 (RrawMaterialId3. +raw_material_count3 (RrawMaterialCount3( +raw_material_id4 (RrawMaterialId4. +raw_material_count4 (RrawMaterialCount4- +is_show_world_level (RisShowWorldLevel, +unlock_world_level (RunlockWorldLevel + +unlock_tip ( R unlockTip +sort_id (RsortId + +is_actived (R isActivedBª Nova.Clientbproto3 +w +table_Production.protoProduction.proto"3 +table_Production +list ( 2 .ProductionRlistBª Nova.Clientbproto3 +† +ProductionType.proto"V +ProductionType +id (Rid + type_name ( RtypeName +sort_id (RsortIdBª Nova.Clientbproto3 +‡ +table_ProductionType.protoProductionType.proto"; +table_ProductionType# +list ( 2.ProductionTypeRlistBª Nova.Clientbproto3 +ñ +RandomLevelMonster.proto"¼ +RandomLevelMonster +id (Rid +name ( Rname +epic_lv (RepicLv + +blood_type (R bloodType +e_e_t (ReET +f_c_id (RfCId +f_a_id (RfAId +mov_type (RmovType +run_spd (RrunSpd& +trans_spd_scale + (R transSpdScale +walk_spd (RwalkSpd +mov_acc (RmovAcc + +vision_rng (R visionRng + +vision_deg (R visionDeg +hear_rng (RhearRng +ref_rng (RrefRng +act_rng (RactRng + dis_act_rng (R disActRng +rot_spd (RrotSpd +templete (Rtemplete +w_e_p (RwEP +f_e_p (RfEP +s_e_p (RsEP +a_e_p (RaEP +l_e_p (RlEP +d_e_p (RdEP +w_e_e (RwEE +f_e_e (RfEE +s_e_e (RsEE +a_e_e (RaEE +l_e_e (RlEE +d_e_e (RdEE +w_e_r! (RwER +f_e_r" (RfER +s_e_r# (RsER +a_e_r$ (RaER +l_e_r% (RlER +d_e_r& (RdER +buff_ids' (RbuffIds +weight( (Rweight + trap_tag_ids) (R +trapTagIds +faction* (Rfaction + +sup_charge+ (R supCharge + is_show_rng, (R isShowRng + trap_attr_id- (R +trapAttrId +tag1. ( Rtag1 +tag2/ ( Rtag2 +tag30 ( Rtag3 +tag41 ( Rtag4 +tag52 ( Rtag5Bª Nova.Clientbproto3 +— +table_RandomLevelMonster.protoRandomLevelMonster.proto"C +table_RandomLevelMonster' +list ( 2.RandomLevelMonsterRlistBª Nova.Clientbproto3 +S + +Rank.proto"- +Rank +rank_ (Rrank +exp (RexpBª Nova.Clientbproto3 +_ +table_Rank.proto +Rank.proto"' + +table_Rank +list ( 2.RankRlistBª Nova.Clientbproto3 +· +RegionBoss.proto"Š + +RegionBoss +id (Rid + +monster_id (R monsterId + region_type (R +regionType +name ( Rname +icon ( Ricon) +unlock_condition ( RunlockCondition% +need_roguelike (R needRoguelike +sort (Rsort +open_day (RopenDay" + open_day_desc + ( R openDayDesc +e_e_t (ReET +episode ( Repisode +image ( Rimage + drop_item (RdropItemBª Nova.Clientbproto3 +w +table_RegionBoss.protoRegionBoss.proto"3 +table_RegionBoss +list ( 2 .RegionBossRlistBª Nova.Clientbproto3 +­ +RegionBossAffix.proto"û +RegionBossAffix +id (Rid +group_id (RgroupId +level (Rlevel +name ( Rname +desc ( Rdesc +icon ( Ricon +element (Relement +add_camp (RaddCamp + add_class (RaddClass +skill_id + (RskillIdBª Nova.Clientbproto3 +‹ +table_RegionBossAffix.protoRegionBossAffix.proto"= +table_RegionBossAffix$ +list ( 2.RegionBossAffixRlistBª Nova.Clientbproto3 +¾ +RegionBossFloor.proto"Œ +RegionBossFloor +id (Rid + +scene_name ( R sceneName, +config_prefab_name ( RconfigPrefabName +theme (Rtheme +b_g_m ( RbGM. +leave_trigger_event ( RleaveTriggerEvent + +monster_lv (R monsterLv# + dungeon_delay (R dungeonDelayBª Nova.Clientbproto3 +‹ +table_RegionBossFloor.protoRegionBossFloor.proto"= +table_RegionBossFloor$ +list ( 2.RegionBossFloorRlistBª Nova.Clientbproto3 +Ñ +RegionBossLevel.proto"Ÿ +RegionBossLevel +id (Rid$ +region_boss_id (R regionBossId + +difficulty (R +difficulty + region_type (R +regionType +name ( Rname +desc ( Rdesc +icon ( Ricon' +suggested_power (RsuggestedPower + pre_level_id (R +preLevelId$ +boss_show_time + (R bossShowTime$ +pre_level_star (R preLevelStar( +need_world_class (RneedWorldClass% +need_roguelike (R needRoguelike +floor_id (RfloorId, +one_star_condition ( RoneStarCondition, +two_star_condition ( RtwoStarCondition0 +three_star_condition ( RthreeStarCondition +drop_id (RdropId% +energy_consume (R energyConsume, +base_award_preview ( RbaseAwardPreview& +entry_group_id1 (R entryGroupId1, +entry_group_level1 (RentryGroupLevel1& +entry_group_id2 (R entryGroupId2, +entry_group_level2 (RentryGroupLevel2& +entry_group_id3 (R entryGroupId3, +entry_group_level3 (RentryGroupLevel3& +entry_group_id4 (R entryGroupId4, +entry_group_level4 (RentryGroupLevel4& +entry_group_id5 (R entryGroupId5, +entry_group_level5 (RentryGroupLevel5, +extra_drop_preview (RextraDropPreviewBª Nova.Clientbproto3 +‹ +table_RegionBossLevel.protoRegionBossLevel.proto"= +table_RegionBossLevel$ +list ( 2.RegionBossLevelRlistBª Nova.Clientbproto3 +ð +ResidentGoods.proto"À + ResidentGoods +id (Rid +name ( Rname +desc ( Rdesc +shop_id (RshopId + sale_number (R +saleNumber +item_id (RitemId# + item_quantity (R itemQuantity# + maximum_limit (R maximumLimit( +currency_item_id (RcurrencyItemId +price + (Rprice% +original_price (R originalPrice +discount (Rdiscount( +appear_cond_type (RappearCondType, +appear_cond_params ( RappearCondParams, +purchase_cond_type (RpurchaseCondType0 +purchase_cond_params ( RpurchaseCondParams" + up_shelf_time ( R upShelfTime& +down_shelf_time ( R downShelfTime0 +unlock_purchase_time ( RunlockPurchaseTime! + display_mode (R displayModeBª Nova.Clientbproto3 +ƒ +table_ResidentGoods.protoResidentGoods.proto"9 +table_ResidentGoods" +list ( 2.ResidentGoodsRlistBª Nova.Clientbproto3 +™ +ResidentShop.proto"ê + ResidentShop +id (Rid + shop_coin (RshopCoin +type (Rtype +name ( Rname +sequence (Rsequence* +refresh_time_type (RrefreshTimeType) +refresh_interval (RrefreshInterval( +unlock_cond_type (RunlockCondType, +unlock_cond_params ( RunlockCondParams + open_time + ( RopenTime + +close_time ( R closeTimeBª Nova.Clientbproto3 + +table_ResidentShop.protoResidentShop.proto"7 +table_ResidentShop! +list ( 2 .ResidentShopRlistBª Nova.Clientbproto3 + +ScriptParameter.proto" +ScriptParameter +id (Rid& +level_type_data (R levelTypeData + +level_data (R levelData& +main_or_support (R mainOrSupportBª Nova.Clientbproto3 +‹ +table_ScriptParameter.protoScriptParameter.proto"= +table_ScriptParameter$ +list ( 2.ScriptParameterRlistBª Nova.Clientbproto3 +} +ScriptParameterValue.proto"G +ScriptParameterValue +id (Rid + common_data (R +commonDataBª Nova.Clientbproto3 +Ÿ + table_ScriptParameterValue.protoScriptParameterValue.proto"G +table_ScriptParameterValue) +list ( 2.ScriptParameterValueRlistBª Nova.Clientbproto3 +– + Shield.proto"í +Shield +id (Rid +name ( Rname& +level_type_data (R levelTypeData + +level_data (R levelData& +main_or_support (R mainOrSupport + bind_effect ( R +bindEffect + shield_tag1 (R +shieldTag1 + shield_tag2 (R +shieldTag2 + shield_tag3 (R +shieldTag3- +time_superposition + (RtimeSuperposition + +not_remove (R notRemoveBª Nova.Clientbproto3 +g +table_Shield.proto Shield.proto"+ + table_Shield +list ( 2.ShieldRlistBª Nova.Clientbproto3 +› +ShieldValue.proto"í + ShieldValue +id (Rid +name ( Rname' +absorption_base (RabsorptionBase) +reference_target (RreferenceTarget) +reference_attrib (RreferenceAttrib' +reference_scale (RreferenceScale +time (Rtime0 +shield_laminated_num (RshieldLaminatedNum- +time_superposition (RtimeSuperposition + +not_remove + (R notRemoveBª Nova.Clientbproto3 +{ +table_ShieldValue.protoShieldValue.proto"5 +table_ShieldValue +list ( 2 .ShieldValueRlistBª Nova.Clientbproto3 + + SignIn.proto"u +SignIn +i_d (RiD +group (Rgroup +day (Rday +item_id (RitemId +item_qty (RitemQtyBª Nova.Clientbproto3 +g +table_SignIn.proto SignIn.proto"+ + table_SignIn +list ( 2.SignInRlistBª Nova.Clientbproto3 +· + Skill.proto" +Skill +id (Rid +title ( Rtitle +f_c_path ( RfCPath +type (Rtype +desc ( Rdesc +icon ( Ricon + skill_c_d (RskillCD + max_level (RmaxLevel# + related_skill ( R relatedSkill% +section_amount + (R sectionAmount! + use_interval (R useInterval" + use_time_hint (R useTimeHint! + ultra_energy (R ultraEnergy) +check_c_d_restore (RcheckCDRestore( +force_run_finish (RforceRunFinish( +get_energy_limit (RgetEnergyLimit +param1 ( Rparam1 +param2 ( Rparam2 +param3 ( Rparam3 +param4 ( Rparam4 +param5 ( Rparam5 +param6 ( Rparam6 +param7 ( Rparam7 +param8 ( Rparam8 +param9 ( Rparam9 +param10 ( Rparam10* +is_clean_skill_c_d (RisCleanSkillCDBª Nova.Clientbproto3 +c +table_Skill.proto Skill.proto") + table_Skill +list ( 2.SkillRlistBª Nova.Clientbproto3 +h +SkillDamage.proto"; + SkillDamage +id (Rid + +l_v_damage (RlVDamageBª Nova.Clientbproto3 +{ +table_SkillDamage.protoSkillDamage.proto"5 +table_SkillDamage +list ( 2 .SkillDamageRlistBª Nova.Clientbproto3 +Ð +StarTower.proto"¤ + StarTower +id (Rid +name ( Rname +desc ( Rdesc +group_id (RgroupId% +pre_conditions ( R preConditions7 +preview_monster_group_id (RpreviewMonsterGroupId + +difficulty (R +difficulty) +value_difficulty (RvalueDifficulty + recommend (R recommend + currency_id + (R +currencyId& +stage_group_ids (R stageGroupIds + floor_num (RfloorNum) +team_exp_group_id (RteamExpGroupId +e_e_t (ReET + not_e_e_t (RnotEET +episode ( Repisode +image ( Rimage +n_p_c_id (RnPCId% +reward_preview ( R rewardPreview +shop_npc (RshopNpc$ +stand_shop_npc (R standShopNpc + upgrade_npc (R +upgradeNpc + +resque_npc (R resqueNpc + +danger_npc (R dangerNpc + +horror_npc (R horrorNpc( +danger_end_event (RdangerEndEvent( +horror_end_event (RhorrorEndEvent8 +destructible_object_type (RdestructibleObjectTypeBª Nova.Clientbproto3 +s +table_StarTower.protoStarTower.proto"1 +table_StarTower +list ( 2 +.StarTowerRlistBª Nova.Clientbproto3 +¶ +StarTowerBattleThreshold.proto"û +StarTowerBattleThreshold + +mission_id (R missionId +version (Rversion + from_src_atk (R +fromSrcAtk9 +from_perk_intensity_ratio (RfromPerkIntensityRatio- +from_slot_dmg_ratio (RfromSlotDmgRatio +from_e_e (RfromEE+ +from_gen_dmg_ratio (RfromGenDmgRatio" + from_dmg_plus (R fromDmgPlus& +from_crit_ratio (R fromCritRatio/ +from_final_dmg_ratio + (RfromFinalDmgRatio- +from_final_dmg_plus (RfromFinalDmgPlus + to_er_amend (R toErAmend + to_def_amend (R +toDefAmend0 +to_rcd_slot_dmg_ratio (RtoRcdSlotDmgRatio + to_e_e_r_c_d (RtoEERCD. +to_gen_dmg_rcd_ratio (RtoGenDmgRcdRatio% +to_dmg_plus_rcd (R toDmgPlusRcd +dmg (Rdmg + crit_rate (RcritRate +hp (RhpBª Nova.Clientbproto3 +¯ +$table_StarTowerBattleThreshold.protoStarTowerBattleThreshold.proto"O +table_StarTowerBattleThreshold- +list ( 2.StarTowerBattleThresholdRlistBª Nova.Clientbproto3 +¢ +StarTowerBookEntrance.proto"k +StarTowerBookEntrance +id (Rid +icon ( Ricon +position ( Rposition +desc ( RdescBª Nova.Clientbproto3 +£ +!table_StarTowerBookEntrance.protoStarTowerBookEntrance.proto"I +table_StarTowerBookEntrance* +list ( 2.StarTowerBookEntranceRlistBª Nova.Clientbproto3 +¥ +StarTowerBookEventReward.proto"ê +StarTowerBookEventReward +id (Rid +name ( Rname +story ( Rstory +n_p_c_id (RnPCId +sort (Rsort +source ( Rsource +item_id (RitemId +item_qty (RitemQty + is_banned (RisBannedBª Nova.Clientbproto3 +¯ +$table_StarTowerBookEventReward.protoStarTowerBookEventReward.proto"O +table_StarTowerBookEventReward- +list ( 2.StarTowerBookEventRewardRlistBª Nova.Clientbproto3 +Š +StarTowerBookFateCard.proto"Ò +StarTowerBookFateCard +id (Rid + bundle_id (RbundleId +icon ( Ricon +sort_id (RsortId +source ( Rsource + +unlock_tip ( R unlockTip + world_class (R +worldClass" + star_tower_id (R starTowerId# + collect_cards (R collectCards! + unlock_cards + (R unlockCards + is_banned (RisBannedBª Nova.Clientbproto3 +£ +!table_StarTowerBookFateCard.protoStarTowerBookFateCard.proto"I +table_StarTowerBookFateCard* +list ( 2.StarTowerBookFateCardRlistBª Nova.Clientbproto3 +ª +!StarTowerBookFateCardBundle.proto"ì +StarTowerBookFateCardBundle +id (Rid +name ( Rname + +short_name ( R shortName +sort_id (RsortId +tag ( Rtag + +small_icon ( R smallIcon + bundle_icon ( R +bundleIcon +icon ( Ricon + world_class (R +worldClass" + star_tower_id + (R starTowerId# + collect_cards (R collectCards! + unlock_cards (R unlockCardsBª Nova.Clientbproto3 +» +'table_StarTowerBookFateCardBundle.proto!StarTowerBookFateCardBundle.proto"U +!table_StarTowerBookFateCardBundle0 +list ( 2.StarTowerBookFateCardBundleRlistBª Nova.Clientbproto3 +Ø + StarTowerBookFateCardQuest.proto"› +StarTowerBookFateCardQuest +id (Rid + bundle_id (RbundleId +desc ( Rdesc + finish_type (R +finishType# + finish_params ( R finishParams +tid1 (Rtid1 +qty1 (Rqty1 +tid2 (Rtid2 +qty2 (Rqty2 +tid3 + (Rtid3 +qty3 (Rqty3Bª Nova.Clientbproto3 +· +&table_StarTowerBookFateCardQuest.proto StarTowerBookFateCardQuest.proto"S + table_StarTowerBookFateCardQuest/ +list ( 2.StarTowerBookFateCardQuestRlistBª Nova.Clientbproto3 +Ž +"StarTowerBookPotentialReward.proto"Ï +StarTowerBookPotentialReward +id (Rid +char_id (RcharId +desc ( Rdesc +sort (Rsort +cond (Rcond +params ( Rparams +item_id (RitemId +item_qty (RitemQtyBª Nova.Clientbproto3 +¿ +(table_StarTowerBookPotentialReward.proto"StarTowerBookPotentialReward.proto"W +"table_StarTowerBookPotentialReward1 +list ( 2.StarTowerBookPotentialRewardRlistBª Nova.Clientbproto3 + +StarTowerBuildRank.proto"Y +StarTowerBuildRank +id (Rid + min_grade (RminGrade +rarity (RrarityBª Nova.Clientbproto3 +— +table_StarTowerBuildRank.protoStarTowerBuildRank.proto"C +table_StarTowerBuildRank' +list ( 2.StarTowerBuildRankRlistBª Nova.Clientbproto3 +ç +StarTowerCombatEvent.proto"° +StarTowerCombatEvent +id (Rid +name ( Rname +type (Rtype +params ( Rparams +active (Ractive +start (Rstart +interact (RinteractBª Nova.Clientbproto3 +Ÿ + table_StarTowerCombatEvent.protoStarTowerCombatEvent.proto"G +table_StarTowerCombatEvent) +list ( 2.StarTowerCombatEventRlistBª Nova.Clientbproto3 +o +StarTowerCombo.proto"? +StarTowerCombo +id (Rid + +battle_lvs (R battleLvsBª Nova.Clientbproto3 +‡ +table_StarTowerCombo.protoStarTowerCombo.proto"; +table_StarTowerCombo# +list ( 2.StarTowerComboRlistBª Nova.Clientbproto3 +¿ +StarTowerDropItem.proto"‹ +StarTowerDropItem +id (Rid +type (Rtype( +drop_split_range (RdropSplitRange +rate (Rrate +model ( RmodelBª Nova.Clientbproto3 +“ +table_StarTowerDropItem.protoStarTowerDropItem.proto"A +table_StarTowerDropItem& +list ( 2.StarTowerDropItemRlistBª Nova.Clientbproto3 +ý +StarTowerEnemySet.proto"É +StarTowerEnemySet +set_id (RsetId +wave_num (RwaveNum +max_num (RmaxNum' +max_num_per_wave (R maxNumPerWave + +monster_id (R monsterId! + ref_interval (R refIntervalBª Nova.Clientbproto3 +“ +table_StarTowerEnemySet.protoStarTowerEnemySet.proto"A +table_StarTowerEnemySet& +list ( 2.StarTowerEnemySetRlistBª Nova.Clientbproto3 +´ +StarTowerEvent.proto"ƒ +StarTowerEvent +id (Rid +group_id (RgroupId( +options_rules_id (RoptionsRulesId +desc ( Rdesc + +event_type (R eventType* +guaranteed_map_id (RguaranteedMapId +npc (Rnpc+ +related_character (RrelatedCharacterBª Nova.Clientbproto3 +‡ +table_StarTowerEvent.protoStarTowerEvent.proto"; +table_StarTowerEvent# +list ( 2.StarTowerEventRlistBª Nova.Clientbproto3 +Á +StarTowerEventAction.proto"Š +StarTowerEventAction +id (Rid +event_id (ReventId + +trig_voice ( R trigVoice +desc ( Rdesc +group (RgroupBª Nova.Clientbproto3 +Ÿ + table_StarTowerEventAction.protoStarTowerEventAction.proto"G +table_StarTowerEventAction) +list ( 2.StarTowerEventActionRlistBª Nova.Clientbproto3 +¯ + StarTowerEventOptionAction.proto"s +StarTowerEventOptionAction +id (Rid + option_id (RoptionId +desc ( Rdesc +group (RgroupBª Nova.Clientbproto3 +· +&table_StarTowerEventOptionAction.proto StarTowerEventOptionAction.proto"S + table_StarTowerEventOptionAction/ +list ( 2.StarTowerEventOptionActionRlistBª Nova.Clientbproto3 +ý +StarTowerFloor.proto"Ì +StarTowerFloor +id (Rid0 +common_gameplay_type (RcommonGameplayType, +common_monster_set ( RcommonMonsterSet + +limit_time (R limitTime/ +drop_object_group_id (RdropObjectGroupId( +drop_object_rate (RdropObjectRate + drop_max_num (R +dropMaxNum. +monster_surplus_num (RmonsterSurplusNumBª Nova.Clientbproto3 +‡ +table_StarTowerFloor.protoStarTowerFloor.proto"; +table_StarTowerFloor# +list ( 2.StarTowerFloorRlistBª Nova.Clientbproto3 +œ +StarTowerFloorAward.proto"æ +StarTowerFloorAward +id (Rid! + roguelike_id (R roguelikeId! + combat_floor (R combatFloor< +interior_currency_quantity (RinteriorCurrencyQuantity + need_energy (R +needEnergy +affinity (RaffinityBª Nova.Clientbproto3 +› +table_StarTowerFloorAward.protoStarTowerFloorAward.proto"E +table_StarTowerFloorAward( +list ( 2.StarTowerFloorAwardRlistBª Nova.Clientbproto3 +Ì +StarTowerFloorExp.proto"˜ +StarTowerFloorExp +id (Rid" + star_tower_id (R starTowerId +stage (Rstage + +normal_exp (R normalExp + elite_exp (ReliteExp +boss_exp (RbossExp$ +final_boss_exp (R finalBossExp + +danger_exp (R dangerExp + +horror_exp (R horrorExpBª Nova.Clientbproto3 +“ +table_StarTowerFloorExp.protoStarTowerFloorExp.proto"A +table_StarTowerFloorExp& +list ( 2.StarTowerFloorExpRlistBª Nova.Clientbproto3 +» +StarTowerFloorSet.proto"‡ +StarTowerFloorSet +id (Rid + +battle_lvs (R battleLvs +stage (Rstage + room_type (RroomType +map_i_d (RmapID + floor_i_d (RfloorID + +monster_lv (R monsterLv$ +theme_skill_lv (R themeSkillLv +weight (Rweight + mutex_group + (R +mutexGroup& +special_mode_id (R specialModeId6 +monster_group_blacklist (RmonsterGroupBlacklistBª Nova.Clientbproto3 +“ +table_StarTowerFloorSet.protoStarTowerFloorSet.proto"A +table_StarTowerFloorSet& +list ( 2.StarTowerFloorSetRlistBª Nova.Clientbproto3 +ç +StarTowerGroup.proto"¶ +StarTowerGroup +id (Rid +name ( Rname +e_e_t (ReET +episode ( Repisode +sort (Rsort + +group_type (R groupType + group_theme (R +groupThemeBª Nova.Clientbproto3 +‡ +table_StarTowerGroup.protoStarTowerGroup.proto"; +table_StarTowerGroup# +list ( 2.StarTowerGroupRlistBª Nova.Clientbproto3 +® +StarTowerGrowthGroup.proto"x +StarTowerGrowthGroup +id (Rid + pre_group (RpreGroup + world_class (R +worldClass +name ( RnameBª Nova.Clientbproto3 +Ÿ + table_StarTowerGrowthGroup.protoStarTowerGrowthGroup.proto"G +table_StarTowerGrowthGroup) +list ( 2.StarTowerGrowthGroupRlistBª Nova.Clientbproto3 +ñ +StarTowerGrowthNode.proto"» +StarTowerGrowthNode +id (Rid +node_id (RnodeId +group (Rgroup +name ( Rname + is_server (RisServer + is_client (RisClient +type (Rtype +color (Rcolor + pre_nodes (RpreNodes# + effect_client + (R effectClient# + client_params ( R clientParams +priority (Rpriority +icon ( Ricon +position (Rposition +desc ( Rdesc +item_id1 (RitemId1 + item_qty1 (RitemQty1 +item_id2 (RitemId2 + item_qty2 (RitemQty2 +item_id3 (RitemId3 + item_qty3 (RitemQty3Bª Nova.Clientbproto3 +› +table_StarTowerGrowthNode.protoStarTowerGrowthNode.proto"E +table_StarTowerGrowthNode( +list ( 2.StarTowerGrowthNodeRlistBª Nova.Clientbproto3 +² +StarTowerHarmonySkill.proto"ú +StarTowerHarmonySkill +id (Rid +rarity (Rrarity +name ( Rname +tag (Rtag +score (Rscore + effect_id (ReffectId +desc ( Rdesc +icon ( Ricon +icon_bg ( RiconBg + icon_corner + ( R +iconCornerBª Nova.Clientbproto3 +£ +!table_StarTowerHarmonySkill.protoStarTowerHarmonySkill.proto"I +table_StarTowerHarmonySkill* +list ( 2.StarTowerHarmonySkillRlistBª Nova.Clientbproto3 +Ó +StarTowerLimitReward.proto"œ +StarTowerLimitReward +id (Rid +stage (Rstage" + star_tower_id (R starTowerId + room_type (RroomType + +time_limit (R timeLimitBª Nova.Clientbproto3 +Ÿ + table_StarTowerLimitReward.protoStarTowerLimitReward.proto"G +table_StarTowerLimitReward) +list ( 2.StarTowerLimitRewardRlistBª Nova.Clientbproto3 +ð +StarTowerMap.proto"Á + StarTowerMap +id (Rid + scene_res ( RsceneRes! + b_g_scene_res ( R +bGSceneRes +theme (Rtheme + +prefab_num (R prefabNum +mir (Rmir + out_port_num (R +outPortNum" + out_port_hint (R outPortHint + b_g_m_res ( RbGMRes9 +complete_sound_effect_res + ( RcompleteSoundEffectResBª Nova.Clientbproto3 + +table_StarTowerMap.protoStarTowerMap.proto"7 +table_StarTowerMap! +list ( 2 .StarTowerMapRlistBª Nova.Clientbproto3 +“ + StarTowerMapMaxNumPerStage.proto"W +StarTowerMapMaxNumPerStage +id (Rid) +max_num_per_stage (RmaxNumPerStageBª Nova.Clientbproto3 +· +&table_StarTowerMapMaxNumPerStage.proto StarTowerMapMaxNumPerStage.proto"S + table_StarTowerMapMaxNumPerStage/ +list ( 2.StarTowerMapMaxNumPerStageRlistBª Nova.Clientbproto3 +ë +StarTowerMonsterBornGroup.proto"¯ +StarTowerMonsterBornGroup +group_id (RgroupId + +monster_id (R monsterId + +difficulty (R +difficulty + min_floor (RminFloor + max_floor (RmaxFloorBª Nova.Clientbproto3 +³ +%table_StarTowerMonsterBornGroup.protoStarTowerMonsterBornGroup.proto"Q +table_StarTowerMonsterBornGroup. +list ( 2.StarTowerMonsterBornGroupRlistBª Nova.Clientbproto3 +“ +StarTowerMonsterSpAttr.proto"Ú +StarTowerMonsterSpAttr +id (Rid) +monster_position (RmonsterPosition! + theme_skills ( R themeSkills6 +continuous_killing_time (RcontinuousKillingTime3 +rouge_money_drop_range (RrougeMoneyDropRange/ +rouge_exp_drop_range (RrougeExpDropRange! + ref_distance (R refDistance! + ref_interval (R refIntervalBª Nova.Clientbproto3 +§ +"table_StarTowerMonsterSpAttr.protoStarTowerMonsterSpAttr.proto"K +table_StarTowerMonsterSpAttr+ +list ( 2.StarTowerMonsterSpAttrRlistBª Nova.Clientbproto3 +Š +StarTowerQuest.proto"Ù +StarTowerQuest +id (Rid +title ( Rtitle +jump_to (RjumpTo( +tower_quest_type (RtowerQuestType- +pre_tower_quest_ids (RpreTowerQuestIds +reward1 (Rreward1 + reward_qty1 (R +rewardQty1 +reward2 (Rreward2 + reward_qty2 (R +rewardQty2 +reward3 + (Rreward3 + reward_qty3 (R +rewardQty3Bª Nova.Clientbproto3 +‡ +table_StarTowerQuest.protoStarTowerQuest.proto"; +table_StarTowerQuest# +list ( 2.StarTowerQuestRlistBª Nova.Clientbproto3 +° +StarTowerRankAffix.proto"| +StarTowerRankAffix +id (Rid +name ( Rname +desc ( Rdesc +rarity (Rrarity +effect (ReffectBª Nova.Clientbproto3 +— +table_StarTowerRankAffix.protoStarTowerRankAffix.proto"C +table_StarTowerRankAffix' +list ( 2.StarTowerRankAffixRlistBª Nova.Clientbproto3 +š +StarTowerRankReward.proto"ä +StarTowerRankReward +id (Rid + +rank_lower (R rankLower& +award_item_tid1 (R awardItemTid1& +award_item_num1 (R awardItemNum1& +award_item_tid2 (R awardItemTid2& +award_item_num2 (R awardItemNum2Bª Nova.Clientbproto3 +› +table_StarTowerRankReward.protoStarTowerRankReward.proto"E +table_StarTowerRankReward( +list ( 2.StarTowerRankRewardRlistBª Nova.Clientbproto3 +¬ +StarTowerRankScore.proto"x +StarTowerRankScore + +difficulty (R +difficulty + +base_score (R baseScore# + maximum_score (R maximumScoreBª Nova.Clientbproto3 +— +table_StarTowerRankScore.protoStarTowerRankScore.proto"C +table_StarTowerRankScore' +list ( 2.StarTowerRankScoreRlistBª Nova.Clientbproto3 +Š +StarTowerRankSeason.proto"Ô +StarTowerRankSeason +id (Rid +group_id (RgroupId + open_time ( RopenTime +end_time ( RendTime +affix1 (Raffix1 + +affix_add1 (R affixAdd1 +affix2 (Raffix2 + +affix_add2 (R affixAdd2 +affix3 (Raffix3 + +affix_add3 + (R affixAdd3 +affix4 (Raffix4 + +affix_add4 (R affixAdd4Bª Nova.Clientbproto3 +› +table_StarTowerRankSeason.protoStarTowerRankSeason.proto"E +table_StarTowerRankSeason( +list ( 2.StarTowerRankSeasonRlistBª Nova.Clientbproto3 +À +StarTowerScenePrefab.proto"‰ +StarTowerScenePrefab +id (Rid + +config_res ( R configRes + bian_quan ( RbianQuan% +gameplay_types (R gameplayTypesBª Nova.Clientbproto3 +Ÿ + table_StarTowerScenePrefab.protoStarTowerScenePrefab.proto"G +table_StarTowerScenePrefab) +list ( 2.StarTowerScenePrefabRlistBª Nova.Clientbproto3 + +StarTowerShopGoodsGroup.proto"F +StarTowerShopGoodsGroup +id (Rid + show_item (RshowItemBª Nova.Clientbproto3 +« +#table_StarTowerShopGoodsGroup.protoStarTowerShopGoodsGroup.proto"M +table_StarTowerShopGoodsGroup, +list ( 2.StarTowerShopGoodsGroupRlistBª Nova.Clientbproto3 +º +StarTowerSpecificCombat.proto"€ +StarTowerSpecificCombat +id (Rid +name ( Rname +desc ( Rdesc +type (Rtype +event_id (ReventIdBª Nova.Clientbproto3 +« +#table_StarTowerSpecificCombat.protoStarTowerSpecificCombat.proto"M +table_StarTowerSpecificCombat, +list ( 2.StarTowerSpecificCombatRlistBª Nova.Clientbproto3 + +StarTowerSpMode.proto"Þ +StarTowerSpMode +id (Rid* +limit_time_weight (RlimitTimeWeight. +limit_killed_weight (RlimitKilledWeight# + goblin_weight (R goblinWeight: +continuous_killing_weight (RcontinuousKillingWeightBª Nova.Clientbproto3 +‹ +table_StarTowerSpMode.protoStarTowerSpMode.proto"= +table_StarTowerSpMode$ +list ( 2.StarTowerSpModeRlistBª Nova.Clientbproto3 +Ü +StarTowerStage.proto"« +StarTowerStage +id (Rid +stage (Rstage +group_id (RgroupId +floor (Rfloor + room_type (RroomType< +interior_currency_quantity (RinteriorCurrencyQuantity* +guaranteed_map_id (RguaranteedMapId; +guaranteed_monster_plan_id (RguaranteedMonsterPlanIdBª Nova.Clientbproto3 +‡ +table_StarTowerStage.protoStarTowerStage.proto"; +table_StarTowerStage# +list ( 2.StarTowerStageRlistBª Nova.Clientbproto3 +½ +StarTowerTalk.proto" + StarTowerTalk +id (Rid +name ( Rname +content ( Rcontent +color ( Rcolor +face ( Rface +voice ( RvoiceBª Nova.Clientbproto3 +ƒ +table_StarTowerTalk.protoStarTowerTalk.proto"9 +table_StarTowerTalk" +list ( 2.StarTowerTalkRlistBª Nova.Clientbproto3 +  +StarTowerTeamExp.proto"n +StarTowerTeamExp +id (Rid +group_id (RgroupId +level (Rlevel +need_exp (RneedExpBª Nova.Clientbproto3 + +table_StarTowerTeamExp.protoStarTowerTeamExp.proto"? +table_StarTowerTeamExp% +list ( 2.StarTowerTeamExpRlistBª Nova.Clientbproto3 +ü + Story.proto"Ô +Story +id (Rid +story_id ( RstoryId +comment ( Rcomment +chapter (Rchapter +index ( Rindex +title ( Rtitle +desc ( Rdesc + trial_build (R +trialBuild! + condition_id ( R conditionId + is_branch + (RisBranch + is_battle (RisBattle +reward (Rreward% +reward_display ( R rewardDisplay& +parent_story_id ( R parentStoryId! + has_evidence (R hasEvidence + avg_lua_name ( R +avgLuaName +floor_id (RfloorId7 +preview_monster_group_id (RpreviewMonsterGroupId + recommend ( R recommend +aim ( RaimBª Nova.Clientbproto3 +c +table_Story.proto Story.proto") + table_Story +list ( 2.StoryRlistBª Nova.Clientbproto3 +ù +StoryChapter.proto"Ê + StoryChapter +id (Rid +type (Rtype + world_class (R +worldClass! + prev_stories ( R prevStories +index ( Rindex +name ( Rname +desc ( Rdesc! + chapter_icon ( R chapterIcon + +time_stamp ( R timeStamp! + chapter_year + ( R chapterYear/ +unlock_show_story_id (RunlockShowStoryIdBª Nova.Clientbproto3 + +table_StoryChapter.protoStoryChapter.proto"7 +table_StoryChapter! +list ( 2 .StoryChapterRlistBª Nova.Clientbproto3 +¬ +StoryCondition.proto"û +StoryCondition +id (Rid! + condition_id ( R conditionId +comment ( Rcomment +ev_ids_a ( RevIdsA +ev_ids_b ( RevIdsB + +story_id_a ( RstoryIdA + +story_id_b ( RstoryIdB, +player_world_level (RplayerWorldLevelBª Nova.Clientbproto3 +‡ +table_StoryCondition.protoStoryCondition.proto"; +table_StoryCondition# +list ( 2.StoryConditionRlistBª Nova.Clientbproto3 +Ó +StoryEvidence.proto"£ + StoryEvidence +id (Rid +ev_id ( RevId +comment ( Rcomment +name ( Rname +desc ( Rdesc +icon ( Ricon +icon_bg ( RiconBgBª Nova.Clientbproto3 +ƒ +table_StoryEvidence.protoStoryEvidence.proto"9 +table_StoryEvidence" +list ( 2.StoryEvidenceRlistBª Nova.Clientbproto3 +¢ +StoryPersonality.proto"p +StoryPersonality +id (Rid +name ( Rname +db ( Rdb +icon ( Ricon +color ( RcolorBª Nova.Clientbproto3 + +table_StoryPersonality.protoStoryPersonality.proto"? +table_StoryPersonality% +list ( 2.StoryPersonalityRlistBª Nova.Clientbproto3 +¦ +StoryRolePersonality.proto"ï +StoryRolePersonality +id (Rid + avg_char_id ( R avgCharId" + personalitys (R personalitys + +base_value (R baseValue +amax ( Ramax + amax_face ( RamaxFace +bmax ( Rbmax + bmax_face ( RbmaxFace +cmax ( Rcmax + cmax_face + ( RcmaxFace +aplus ( Raplus + +aplus_face ( R aplusFace +bplus ( Rbplus + +bplus_face ( R bplusFace +cplus ( Rcplus + +cplus_face ( R cplusFace +ab ( Rab +ab_face ( RabFace +ac ( Rac +ac_face ( RacFace +bc ( Rbc +bc_face ( RbcFace +normal ( Rnormal + normal_face ( R +normalFaceBª Nova.Clientbproto3 +Ÿ + table_StoryRolePersonality.protoStoryRolePersonality.proto"G +table_StoryRolePersonality) +list ( 2.StoryRolePersonalityRlistBª Nova.Clientbproto3 +Ü + Talent.proto"³ +Talent +id (Rid +index (Rindex +title ( Rtitle +group_id (RgroupId +type (Rtype +sub_type (RsubType +sort (Rsort +nodes (Rnodes + effect_id (ReffectId( +enhance_skill_id + (RenhanceSkillId. +enhance_skill_level (RenhanceSkillLevel0 +enhance_potential_id (RenhancePotentialId6 +enhance_potential_level (RenhancePotentialLevel +desc ( Rdesc +icon ( Ricon +param1 ( Rparam1 +param2 ( Rparam2 +param3 ( Rparam3 +param4 ( Rparam4 +param5 ( Rparam5 +param6 ( Rparam6 +param7 ( Rparam7 +param8 ( Rparam8 +param9 ( Rparam9 +param10 ( Rparam10Bª Nova.Clientbproto3 +g +table_Talent.proto Talent.proto"+ + table_Talent +list ( 2.TalentRlistBª Nova.Clientbproto3 +¶ +TalentGroup.proto"ˆ + TalentGroup +id (Rid +char_id (RcharId + pre_group (RpreGroup + +node_limit (R nodeLimit +title ( RtitleBª Nova.Clientbproto3 +{ +table_TalentGroup.protoTalentGroup.proto"5 +table_TalentGroup +list ( 2 .TalentGroupRlistBª Nova.Clientbproto3 +ž + Title.proto"w +Title +id (Rid +item_id (RitemId + +title_type (R titleType +desc ( Rdesc +sort (RsortBª Nova.Clientbproto3 +c +table_Title.proto Title.proto") + table_Title +list ( 2.TitleRlistBª Nova.Clientbproto3 +ú + TopBar.proto"Ñ +TopBar +id ( Rid +title ( Rtitle +entry_id (RentryId + hide_back (RhideBack +energy (Renergy +coin (Rcoin +coin_ids (RcoinIds" + hide_coin_add (R hideCoinAddBª Nova.Clientbproto3 +g +table_TopBar.proto TopBar.proto"+ + table_TopBar +list ( 2.TopBarRlistBª Nova.Clientbproto3 +Ç +TourGuideQuest.proto"– +TourGuideQuest +id (Rid +order (Rorder +title ( Rtitle +jump_to (RjumpTo +reward1 (Rreward1 + reward_qty1 (R +rewardQty1 +reward2 (Rreward2 + reward_qty2 (R +rewardQty2 +reward3 (Rreward3 + reward_qty3 + (R +rewardQty3Bª Nova.Clientbproto3 +‡ +table_TourGuideQuest.protoTourGuideQuest.proto"; +table_TourGuideQuest# +list ( 2.TourGuideQuestRlistBª Nova.Clientbproto3 +Ó +TourGuideQuestGroup.proto" +TourGuideQuestGroup +id (Rid +order (Rorder +reward1 (Rreward1 + reward_qty1 (R +rewardQty1 +reward2 (Rreward2 + reward_qty2 (R +rewardQty2 +reward3 (Rreward3 + reward_qty3 (R +rewardQty3 +reward4 (Rreward4 + reward_qty4 + (R +rewardQty4 +reward5 (Rreward5 + reward_qty5 (R +rewardQty5 +reward6 (Rreward6 + reward_qty6 (R +rewardQty6Bª Nova.Clientbproto3 +› +table_TourGuideQuestGroup.protoTourGuideQuestGroup.proto"E +table_TourGuideQuestGroup( +list ( 2.TourGuideQuestGroupRlistBª Nova.Clientbproto3 +« + +Trap.proto"„ +Trap +id (Rid +name ( Rname +f_c_id (RfCId +model ( Rmodel + model_scale (R +modelScale# +buff_f_x_scale (R buffFXScale% +collider_scale (R colliderScale! + attribute_id ( R attributeId +templete (Rtemplete +buff_ids + (RbuffIds) +turn_off_buff_ids (RturnOffBuffIds' +turn_on_buff_ids (R turnOnBuffIds' +interrupt_skill (RinterruptSkill +sub_type (RsubType +faction (Rfaction +filter (Rfilter) +ignore_collision (RignoreCollision + +active_eff ( R activeEff + +shape_type (R shapeType +width (Rwidth +length (Rlength +radius (Rradius! + inner_radius (R innerRadius +angle (Rangle +offset (Roffset +rotation (Rrotation +is_move (RisMove +is_block (RisBlock +mov_acc (RmovAcc +rot_spd (RrotSpd +move_spd (RmoveSpdBª Nova.Clientbproto3 +_ +table_Trap.proto +Trap.proto"' + +table_Trap +list ( 2.TrapRlistBª Nova.Clientbproto3 +¢ +TrapAttribute.proto"s + TrapAttribute +id (Rid +trigger (Rtrigger + trigger_i_ds (R +triggerIDs +filter (RfilterBª Nova.Clientbproto3 +ƒ +table_TrapAttribute.protoTrapAttribute.proto"9 +table_TrapAttribute" +list ( 2.TrapAttributeRlistBª Nova.Clientbproto3 +‡ +TravelerDuelBoss.proto"Ô +TravelerDuelBoss +id (Rid +name ( Rname5 +traveler_duel_boss_type (RtravelerDuelBossType +episode ( Repisode +image ( Rimage +cover ( Rcover + show_reward (R +showRewardBª Nova.Clientbproto3 + +table_TravelerDuelBoss.protoTravelerDuelBoss.proto"? +table_TravelerDuelBoss% +list ( 2.TravelerDuelBossRlistBª Nova.Clientbproto3 +¸ +TravelerDuelBossLevel.proto"€ +TravelerDuelBossLevel +id (Rid +boss_id (RbossId + +difficulty (R +difficulty +name ( Rname +desc ( Rdesc' +suggested_power (RsuggestedPower0 +recommend_build_rank (RrecommendBuildRank +e_e_t (ReET + timelimit (R timelimit7 +preview_monster_group_id + (RpreviewMonsterGroupId +floor_id (RfloorId + pre_level_id (R +preLevelId$ +pre_level_star (R preLevelStar, +unlock_world_class (RunlockWorldClass* +unlock_duel_level (RunlockDuelLevel +duel_exp (RduelExp, +base_award_preview ( RbaseAwardPreview +affinity (Raffinity +icon ( Ricon + +skill_show (R skillShow +cover ( Rcover +skin_id (RskinId, +extra_drop_preview (RextraDropPreviewBª Nova.Clientbproto3 +£ +!table_TravelerDuelBossLevel.protoTravelerDuelBossLevel.proto"I +table_TravelerDuelBossLevel* +list ( 2.TravelerDuelBossLevelRlistBª Nova.Clientbproto3 +ñ + TravelerDuelChallengeAffix.proto"´ +TravelerDuelChallengeAffix +id (Rid +group_id (RgroupId + +difficulty (R +difficulty, +unlock_world_class (RunlockWorldClass* +unlock_duel_level (RunlockDuelLevel+ +unlock_difficulty (RunlockDifficulty +name ( Rname +desc ( Rdesc +icon ( Ricon +element + (Relement +add_camp (RaddCamp + add_class (RaddClass +skill_id (RskillId + branch_id (RbranchIdBª Nova.Clientbproto3 +· +&table_TravelerDuelChallengeAffix.proto TravelerDuelChallengeAffix.proto"S + table_TravelerDuelChallengeAffix/ +list ( 2.TravelerDuelChallengeAffixRlistBª Nova.Clientbproto3 +ÿ +%TravelerDuelChallengeDifficulty.proto"½ +TravelerDuelChallengeDifficulty +id (Rid +attr (Rattr + effect_id (ReffectId' +recommend_score (RrecommendScore0 +recommend_build_rank (RrecommendBuildRankBª Nova.Clientbproto3 +Ë ++table_TravelerDuelChallengeDifficulty.proto%TravelerDuelChallengeDifficulty.proto"] +%table_TravelerDuelChallengeDifficulty4 +list ( 2 .TravelerDuelChallengeDifficultyRlistBª Nova.Clientbproto3 +Ë + TravelerDuelChallengeQuest.proto"Ž +TravelerDuelChallengeQuest +id (Rid +group_id (RgroupId +title ( Rtitle +desc ( Rdesc +jump_to (RjumpTo +order (Rorder% +accept_params2 ( R acceptParams2# + complete_cond (R completeCond0 +complete_cond_params ( RcompleteCondParams& +award_item_tid1 + (R awardItemTid1& +award_item_num1 (R awardItemNum1& +award_item_tid2 (R awardItemTid2& +award_item_num2 (R awardItemNum2& +award_item_tid3 (R awardItemTid3& +award_item_num3 (R awardItemNum3Bª Nova.Clientbproto3 +· +&table_TravelerDuelChallengeQuest.proto TravelerDuelChallengeQuest.proto"S + table_TravelerDuelChallengeQuest/ +list ( 2.TravelerDuelChallengeQuestRlistBª Nova.Clientbproto3 +² +%TravelerDuelChallengeRankReward.proto"ð +TravelerDuelChallengeRankReward +id (Rid + +rank_lower (R rankLower& +award_item_tid1 (R awardItemTid1& +award_item_num1 (R awardItemNum1& +award_item_tid2 (R awardItemTid2& +award_item_num2 (R awardItemNum2Bª Nova.Clientbproto3 +Ë ++table_TravelerDuelChallengeRankReward.proto%TravelerDuelChallengeRankReward.proto"] +%table_TravelerDuelChallengeRankReward4 +list ( 2 .TravelerDuelChallengeRankRewardRlistBª Nova.Clientbproto3 +¸ +!TravelerDuelChallengeSeason.proto"ú +TravelerDuelChallengeSeason +id (Rid +boss_id (RbossId& +affix_group_ids ( R affixGroupIds$ +quest_group_id (R questGroupId, +back_ground_source ( RbackGroundSource + open_time ( RopenTime +end_time ( RendTimeBª Nova.Clientbproto3 +» +'table_TravelerDuelChallengeSeason.proto!TravelerDuelChallengeSeason.proto"U +!table_TravelerDuelChallengeSeason0 +list ( 2.TravelerDuelChallengeSeasonRlistBª Nova.Clientbproto3 +Ä +TravelerDuelFloor.proto" +TravelerDuelFloor +id (Rid + +scene_name ( R sceneName, +config_prefab_name ( RconfigPrefabName +theme (Rtheme +b_g_m ( RbGM. +leave_trigger_event ( RleaveTriggerEvent + +monster_lv (R monsterLv% +intro_cutscene ( R introCutsceneBª Nova.Clientbproto3 +“ +table_TravelerDuelFloor.protoTravelerDuelFloor.proto"A +table_TravelerDuelFloor& +list ( 2.TravelerDuelFloorRlistBª Nova.Clientbproto3 +¦ +TravelerDuelLevel.proto"s +TravelerDuelLevel +id (Rid + level_up_exp (R +levelUpExp, +coin_addition_prob (RcoinAdditionProbBª Nova.Clientbproto3 +“ +table_TravelerDuelLevel.protoTravelerDuelLevel.proto"A +table_TravelerDuelLevel& +list ( 2.TravelerDuelLevelRlistBª Nova.Clientbproto3 +ž +TravelerDuelQuest.proto"ê +TravelerDuelQuest +id (Rid +title ( Rtitle +desc ( Rdesc +jump_to (RjumpTo +order (Rorder% +accept_params2 ( R acceptParams2# + complete_cond (R completeCond0 +complete_cond_params ( RcompleteCondParams& +award_item_tid1 (R awardItemTid1& +award_item_num1 + (R awardItemNum1& +award_item_tid2 (R awardItemTid2& +award_item_num2 (R awardItemNum2& +award_item_tid3 (R awardItemTid3& +award_item_num3 (R awardItemNum3Bª Nova.Clientbproto3 +“ +table_TravelerDuelQuest.protoTravelerDuelQuest.proto"A +table_TravelerDuelQuest& +list ( 2.TravelerDuelQuestRlistBª Nova.Clientbproto3 +Œ +TrialBuild.proto"ß + +TrialBuild +id (Rid +name ( Rname +score (Rscore +char (Rchar +disc (Rdisc + potential ( R potential, +disc_common_skill1 ( RdiscCommonSkill1, +disc_common_skill2 ( RdiscCommonSkill2, +disc_common_skill3 ( RdiscCommonSkill3. +disc_passive_skill1 + ( RdiscPassiveSkill1. +disc_passive_skill2 ( RdiscPassiveSkill2. +disc_passive_skill3 ( RdiscPassiveSkill3# + harmony_skill ( R harmonySkill +note ( RnoteBª Nova.Clientbproto3 +w +table_TrialBuild.protoTrialBuild.proto"3 +table_TrialBuild +list ( 2 .TrialBuildRlistBª Nova.Clientbproto3 +Š +TrialCharacter.proto"Ù +TrialCharacter +id (Rid +name ( Rname +char_id (RcharId% +character_skin (R characterSkin +break (Rbreak +level (Rlevel + skill_level (R +skillLevel +talent (RtalentBª Nova.Clientbproto3 +‡ +table_TrialCharacter.protoTrialCharacter.proto"; +table_TrialCharacter# +list ( 2.TrialCharacterRlistBª Nova.Clientbproto3 +Ÿ +TrialDisc.proto"t + TrialDisc +id (Rid +disc_id (RdiscId +phase (Rphase +level (Rlevel +star (RstarBª Nova.Clientbproto3 +s +table_TrialDisc.protoTrialDisc.proto"1 +table_TrialDisc +list ( 2 +.TrialDiscRlistBª Nova.Clientbproto3 +T + UIText.proto", +UIText +id ( Rid +text ( RtextBª Nova.Clientbproto3 +g +table_UIText.proto UIText.proto"+ + table_UIText +list ( 2.UITextRlistBª Nova.Clientbproto3 +² +VampireBattleThreshold.proto"ù +VampireBattleThreshold + +mission_id (R missionId +version (Rversion + from_src_atk (R +fromSrcAtk9 +from_perk_intensity_ratio (RfromPerkIntensityRatio- +from_slot_dmg_ratio (RfromSlotDmgRatio +from_e_e (RfromEE+ +from_gen_dmg_ratio (RfromGenDmgRatio" + from_dmg_plus (R fromDmgPlus& +from_crit_ratio (R fromCritRatio/ +from_final_dmg_ratio + (RfromFinalDmgRatio- +from_final_dmg_plus (RfromFinalDmgPlus + to_er_amend (R toErAmend + to_def_amend (R +toDefAmend0 +to_rcd_slot_dmg_ratio (RtoRcdSlotDmgRatio + to_e_e_r_c_d (RtoEERCD. +to_gen_dmg_rcd_ratio (RtoGenDmgRcdRatio% +to_dmg_plus_rcd (R toDmgPlusRcd +dmg (Rdmg + crit_rate (RcritRate +hp (RhpBª Nova.Clientbproto3 +§ +"table_VampireBattleThreshold.protoVampireBattleThreshold.proto"K +table_VampireBattleThreshold+ +list ( 2.VampireBattleThresholdRlistBª Nova.Clientbproto3 +„ +VampireEnemyPool.proto"Ñ +VampireEnemyPool +pool_id (RpoolId +wave_num (RwaveNum# + monster_level (R monsterLevel! + enemy_set_i_d (R +enemySetID$ +wave_keep_time (R waveKeepTime + pool_type (RpoolTypeBª Nova.Clientbproto3 + +table_VampireEnemyPool.protoVampireEnemyPool.proto"? +table_VampireEnemyPool% +list ( 2.VampireEnemyPoolRlistBª Nova.Clientbproto3 +ó +VampireEnemySet.proto"Á +VampireEnemySet +set_id (RsetId + group_num (RgroupNum + +monster_id (R monsterId! + level_change (R levelChange + +delay_time (R delayTime +max_num (RmaxNum +add_data (RaddData/ +max_num_improve_data (RmaxNumImproveData, +monster_spawn_type (RmonsterSpawnType# + monster_point + (R monsterPoint +drop_exp (RdropExp + +drop_chest (R dropChest' +monster_warning (RmonsterWarningBª Nova.Clientbproto3 +‹ +table_VampireEnemySet.protoVampireEnemySet.proto"= +table_VampireEnemySet$ +list ( 2.VampireEnemySetRlistBª Nova.Clientbproto3 +ž +VampireEnemySpAttr.proto"j +VampireEnemySpAttr +id (Rid! + ref_distance (R refDistance! + ref_interval (R refIntervalBª Nova.Clientbproto3 +— +table_VampireEnemySpAttr.protoVampireEnemySpAttr.proto"C +table_VampireEnemySpAttr' +list ( 2.VampireEnemySpAttrRlistBª Nova.Clientbproto3 +¸ +VampireFloor.proto"‰ + VampireFloor +id (Rid +map_id (RmapId + +wave_count (R waveCount+ +first_half_pool_id (RfirstHalfPoolId + f_h_affix_id (R fHAffixId + f_h_boss_id (RfHBossId- +second_half_pool_id (RsecondHalfPoolId + s_h_affix_id (R sHAffixId + s_h_boss_id (RsHBossId/ +special_enemy_set_id + ( RspecialEnemySetId& +treasure_set_id ( R treasureSetIdBª Nova.Clientbproto3 + +table_VampireFloor.protoVampireFloor.proto"7 +table_VampireFloor! +list ( 2 .VampireFloorRlistBª Nova.Clientbproto3 +ð +VampireMap.proto"à + +VampireMap +id (Rid + +scene_name ( R sceneName, +config_prefab_name ( RconfigPrefabName +theme (Rtheme +b_g_m ( RbGM. +leave_trigger_event ( RleaveTriggerEventBª Nova.Clientbproto3 +w +table_VampireMap.protoVampireMap.proto"3 +table_VampireMap +list ( 2 .VampireMapRlistBª Nova.Clientbproto3 +– +VampireRankReward.proto"â +VampireRankReward +id (Rid + +rank_lower (R rankLower& +award_item_tid1 (R awardItemTid1& +award_item_num1 (R awardItemNum1& +award_item_tid2 (R awardItemTid2& +award_item_num2 (R awardItemNum2Bª Nova.Clientbproto3 +“ +table_VampireRankReward.protoVampireRankReward.proto"A +table_VampireRankReward& +list ( 2.VampireRankRewardRlistBª Nova.Clientbproto3 +Ï +VampireRankSeason.proto"› +VampireRankSeason +id (Rid + +mission_id (R missionId + open_time ( RopenTime +end_time ( RendTime + quest_group (R +questGroupBª Nova.Clientbproto3 +“ +table_VampireRankSeason.protoVampireRankSeason.proto"A +table_VampireRankSeason& +list ( 2.VampireRankSeasonRlistBª Nova.Clientbproto3 +Ñ +VampireSurvivor.proto"Ÿ +VampireSurvivor +id (Rid +name ( Rname +desc ( Rdesc +e_e_t (ReET + not_e_e_t (RnotEET' +suggested_power (RsuggestedPower0 +recommend_build_rank (RrecommendBuildRank +type (Rtype + pre_level_id (R +preLevelId( +need_world_class + (RneedWorldClass/ +first_quest_group_id (RfirstQuestGroupId$ +level_group_id (R levelGroupId +floor_id (RfloorId# + normal_score1 (R normalScore1! + elite_score1 (R eliteScore1 + boss_score1 (R +bossScore1 + time_score1 (R +timeScore1 + time_limit1 (R +timeLimit1# + normal_score2 (R normalScore2! + elite_score2 (R eliteScore2 + boss_score2 (R +bossScore2 + time_score2 (R +timeScore2 + time_limit2 (R +timeLimit2 + e_e_t_score1 (R eETScore1 + e_e_t_score2 (R eETScore2= +f_h_preview_monster_group_id (RfHPreviewMonsterGroupId= +s_h_preview_monster_group_id (RsHPreviewMonsterGroupId# + cover_episode ( R coverEpisode +episode ( Repisode +episode2 ( Repisode2( +fate_card_bundle (RfateCardBundle( +specia_fate_card ( RspeciaFateCard3 +specia_fate_card_param! ( RspeciaFateCardParamBª Nova.Clientbproto3 +‹ +table_VampireSurvivor.protoVampireSurvivor.proto"= +table_VampireSurvivor$ +list ( 2.VampireSurvivorRlistBª Nova.Clientbproto3 + +VampireSurvivorLevel.proto"Z +VampireSurvivorLevel + group_i_d (RgroupID +level (Rlevel +exp (RexpBª Nova.Clientbproto3 +Ÿ + table_VampireSurvivorLevel.protoVampireSurvivorLevel.proto"G +table_VampireSurvivorLevel) +list ( 2.VampireSurvivorLevelRlistBª Nova.Clientbproto3 +¬ +VampireSurvivorQuest.proto"õ +VampireSurvivorQuest +id (Rid +group_id (RgroupId +title ( Rtitle +desc ( Rdesc +jump_to (RjumpTo +order (Rorder +type (Rtype# + complete_cond (R completeCond0 +complete_cond_params ( RcompleteCondParams& +award_item_tid1 + (R awardItemTid1& +award_item_num1 (R awardItemNum1& +award_item_tid2 (R awardItemTid2& +award_item_num2 (R awardItemNum2& +award_item_tid3 (R awardItemTid3& +award_item_num3 (R awardItemNum3Bª Nova.Clientbproto3 +Ÿ + table_VampireSurvivorQuest.protoVampireSurvivorQuest.proto"G +table_VampireSurvivorQuest) +list ( 2.VampireSurvivorQuestRlistBª Nova.Clientbproto3 +Ù +VampireTalent.proto"© + VampireTalent +id (Rid +name ( Rname +desc_tag (RdescTag +param (Rparam +prev (Rprev + is_server (RisServer + is_client (RisClient +effect (Reffect +params ( Rparams +point + (Rpoint +icon ( Ricon + effect_id (ReffectIdBª Nova.Clientbproto3 +ƒ +table_VampireTalent.protoVampireTalent.proto"9 +table_VampireTalent" +list ( 2.VampireTalentRlistBª Nova.Clientbproto3 +h +VampireTalentDesc.proto"5 +VampireTalentDesc +id (Rid +num ( RnumBª Nova.Clientbproto3 +“ +table_VampireTalentDesc.protoVampireTalentDesc.proto"A +table_VampireTalentDesc& +list ( 2.VampireTalentDescRlistBª Nova.Clientbproto3 +‡ +VampireTalentFloor.proto"S +VampireTalentFloor +id (Rid +num (Rnum + talent_id (RtalentIdBª Nova.Clientbproto3 +— +table_VampireTalentFloor.protoVampireTalentFloor.proto"C +table_VampireTalentFloor' +list ( 2.VampireTalentFloorRlistBª Nova.Clientbproto3 +Õ +VoDirectory.proto"§ + VoDirectory +id (Rid + vo_resource ( R +voResource! + character_id (R characterId +votype ( Rvotype +lines ( Rlines +motion ( RmotionBª Nova.Clientbproto3 +{ +table_VoDirectory.protoVoDirectory.proto"5 +table_VoDirectory +list ( 2 .VoDirectoryRlistBª Nova.Clientbproto3 +Š +WeightParameter.proto"Y +WeightParameter +id (Rid + +proportion (R +proportion +effect (ReffectBª Nova.Clientbproto3 +‹ +table_WeightParameter.protoWeightParameter.proto"= +table_WeightParameter$ +list ( 2.WeightParameterRlistBª Nova.Clientbproto3 +ƒ + +Word.proto"Ü +Word +id (Rid +title ( Rtitle +desc ( Rdesc +color ( Rcolor +icon ( Ricon +param1 ( Rparam1 +param2 ( Rparam2 +param3 ( Rparam3 +param4 ( Rparam4 +param5 + ( Rparam5 +param6 ( Rparam6 +param7 ( Rparam7 +param8 ( Rparam8 +param9 ( Rparam9 +param10 ( Rparam10Bª Nova.Clientbproto3 +_ +table_Word.proto +Word.proto"' + +table_Word +list ( 2.WordRlistBª Nova.Clientbproto3 + +WordSuper.proto"á + WordSuper +id (Rid +title ( Rtitle +color ( Rcolor +icon ( Ricon +desc ( Rdesc +param1 ( Rparam1 +param2 ( Rparam2 +param3 ( Rparam3 +param4 ( Rparam4 +param5 + ( Rparam5 +param6 ( Rparam6 +param7 ( Rparam7 +param8 ( Rparam8 +param9 ( Rparam9 +param10 ( Rparam10Bª Nova.Clientbproto3 +s +table_WordSuper.protoWordSuper.proto"1 +table_WordSuper +list ( 2 +.WordSuperRlistBª Nova.Clientbproto3 +é +WorldClass.proto"¼ + +WorldClass +rank (Rrank +exp (Rexp +limit (Rlimit +added (Radded! + double_count (R doubleCount +reward ( Rreward! + reward_limit (R rewardLimitBª Nova.Clientbproto3 +w +table_WorldClass.protoWorldClass.proto"3 +table_WorldClass +list ( 2 .WorldClassRlistBª Nova.Clientbproto3 +© +Recorder.proto"þ +Recorder + max_frame ( RmaxFrame +floor_id ( RfloorId+ +spawners ( 2.Recorder.SpawnRspawners* +damages ( 2.Recorder.DamageRdamages' +deaths ( 2.Recorder.DeathRdeaths +Spawn +frame_id ( RframeId/ +ent_type (2.Recorder.EntityTypeRentType +id ( Rid +proto_id ( RprotoId +h_p (RhP† +Damage +id ( Rid +frame_id ( RframeId/ +dmg_type (2.Recorder.DamageTypeRdmgType +value (Rvalue# +hit_damage_i_d (R hitDamageID +is_crite (RisCrite& +from ( 2.Recorder.AttackerRfrom" +to ( 2.Recorder.DefenderRto– +Attacker +id ( Rid +proto_id ( RprotoId2 + ent_class (2.Recorder.EntityClassRentClass +atk (Ratk. +skill_percent_amend (RskillPercentAmend; +talent_group_percent_amend (RtalentGroupPercentAmend& +skill_abs_amend (R skillAbsAmend3 +talent_group_abs_amend (RtalentGroupAbsAmend0 +perk_intensity_ratio (RperkIntensityRatio$ +slot_dmg_ratio + (R slotDmgRatio +e_e (ReE" + gen_dmg_ratio (R genDmgRatio +dmg_plus (RdmgPlus + +crit_ratio (R critRatio& +final_dmg_ratio (R finalDmgRatio$ +final_dmg_plus (R finalDmgPlus + crit_rate (RcritRate + +def_pierce (R defPierce + +def_ignore (R defIgnore +w_e_p (RwEP +f_e_p (RfEP +s_e_p (RsEP +a_e_p (RaEP +l_e_p (RlEP +d_e_p (RdEP +w_e_i (RwEI +f_e_i (RfEI +s_e_i (RsEI +a_e_i (RaEI +l_e_i (RlEI +d_e_i (RdEI + buff_i_ds (RbuffIDs + effect_i_ds" (R effectIDs3 + +attributes# ( 2.Recorder.AttributeR +attributes„ + Attribute +origin (Rorigin + +base_amend (R baseAmend# + percent_amend (R percentAmend + abs_amend (RabsAmend¥ +Defender +id ( Rid +proto_id ( RprotoId2 + ent_class (2.Recorder.EntityClassRentClass +h_p (RhP +max_h_p (RmaxHP +er_amend (RerAmend + def_amend (RdefAmend+ +rcd_slot_dmg_ratio (RrcdSlotDmgRatio + e_e_r_c_d (ReERCD) +gen_dmg_rcd_ratio + (RgenDmgRcdRatio + dmg_plus_rcd (R +dmgPlusRcd +src_def (RsrcDef' +crit_resistance (RcritResistance +w_e_r (RwER +f_e_r (RfER +s_e_r (RsER +a_e_r (RaER +l_e_r (RlER +d_e_r (RdER +suppress (Rsuppress + buff_i_ds (RbuffIDs + effect_i_ds (R effectIDs3 + +attributes ( 2.Recorder.AttributeR +attributes2 +Death +frame_id ( RframeId +id ( Rid"9 + +EntityType + +PLAYER +BOSS + +LEADER +ELITE"¿ + +DamageType + +NORMAL +HEAL +REAL + +DIRECT + DIRECT_HEAL +DOT +DOT_HEAL + HP_ABSORB + HP_REDUCE + +HP_RECOVER  + HP_REVERT + + DAMAGE_DELAY  + +HEAL_DELAY "$ + EntityClass +ROLE +MONSTERBª Nova.Clientbproto3 +× +Recorders.protoRecorder.proto"› + Recorders/ +lvl_type (2.Recorders.LevelTypeRlvlType +u_id (RuId +tower_id ( RtowerId, + role_list ( 2.Recorders.RoleRroleList, + disc_list ( 2.Recorders.DiscRdiscList. + recorder_list ( 2 .RecorderR recorderListÆ +Role +id ( Rid +level (Rlevel + break_count (R +breakCount +hp (Rhp +atk (Ratk +def (Rdef +m_def (RmDef + crit_rate (RcritRate' +crit_resistance (RcritResistance + +crit_power + (R critPower +hit_rate (RhitRate +evd (Revd + +def_pierce (R defPierce + +def_ignore (R defIgnore +w_e_p (RwEP +f_e_p (RfEP +s_e_p (RsEP +a_e_p (RaEP +l_e_p (RlEP +d_e_p (RdEP +w_e_e (RwEE +f_e_e (RfEE +s_e_e (RsEE +a_e_e (RaEE +l_e_e (RlEE +d_e_e (RdEE +w_e_r (RwER +f_e_r (RfER +s_e_r (RsER +a_e_r (RaER +l_e_r (RlER +d_e_r (RdER +w_e_i! (RwEI +f_e_i" (RfEI +s_e_i# (RsEI +a_e_i$ (RaEI +l_e_i% (RlEI +d_e_i& (RdEI! + shield_bonus' (R shieldBonus2 +incoming_shield_bonus( (RincomingShieldBonus +skin_id) (RskinId +suppress* (Rsuppress( +normal_dmg_ratio+ (RnormalDmgRatio& +skill_dmg_ratio, (R skillDmgRatio& +ultra_dmg_ratio- (R ultraDmgRatio& +other_dmg_ratio. (R otherDmgRatio/ +rcd_normal_dmg_ratio/ (RrcdNormalDmgRatio- +rcd_skill_dmg_ratio0 (RrcdSkillDmgRatio- +rcd_ultra_dmg_ratio1 (RrcdUltraDmgRatio- +rcd_other_dmg_ratio2 (RrcdOtherDmgRatio$ +mark_dmg_ratio3 (R markDmgRatio( +summon_dmg_ratio4 (RsummonDmgRatio/ +rcd_summon_dmg_ratio5 (RrcdSummonDmgRatio0 +projectile_dmg_ratio6 (RprojectileDmgRatio7 +rcd_projectile_dmg_ratio7 (RrcdProjectileDmgRatio + g_e_n_d_m_g8 (RgENDMG + d_m_g_p_l_u_s9 (RdMGPLUS! +f_i_n_a_l_d_m_g: (RfINALDMG- +f_i_n_a_l_d_m_g_p_l_u_s; (R fINALDMGPLUS + w_e_e_r_c_d< (RwEERCD + f_e_e_r_c_d= (RfEERCD + s_e_e_r_c_d> (RsEERCD + a_e_e_r_c_d? (RaEERCD + l_e_e_r_c_d@ (RlEERCD + d_e_e_r_c_dA (RdEERCD$ +g_e_n_d_m_g_r_c_dB (R gENDMGRCD' +d_m_g_p_l_u_s_r_c_dC (R +dMGPLUSRCD* +energy_conv_ratioD (RenergyConvRatio+ +energy_efficiencyE (RenergyEfficiency( +normal_crit_rateF (RnormalCritRate& +skill_crit_rateG (R skillCritRate& +ultra_crit_rateH (R ultraCritRate$ +mark_crit_rateI (R markCritRate( +summon_crit_rateJ (RsummonCritRate0 +projectile_crit_rateK (RprojectileCritRate& +other_crit_rateL (R otherCritRate* +normal_crit_powerM (RnormalCritPower( +skill_crit_powerN (RskillCritPower( +ultra_crit_powerO (RultraCritPower& +mark_crit_powerP (R markCritPower* +summon_crit_powerQ (RsummonCritPower2 +projectile_crit_powerR (RprojectileCritPower( +other_crit_powerS (RotherCritPower +attr_idT ( RattrId( +skill_level_listU (RskillLevelList( +talent_info_listV (RtalentInfoListj +Disc +id ( Rid +level ( Rlevel< +disc_skill_list ( 2.Recorders.DiscSkillR discSkillList1 + DiscSkill +id ( Rid +level ( Rlevel"; + LevelType + +STAR_TOWER + TRAVELER_DUEL +VAMPIREBª Nova.Clientbproto3 \ No newline at end of file