0% found this document useful (0 votes)
7 views

Source Code

Uploaded by

catjerry41
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views

Source Code

Uploaded by

catjerry41
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 117

// Windows Modules Installer, Version=1.0.0.

0, Culture=neutral, PublicKeyToken=null
// BRUUUH_1._5.MAIN
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Drawing.Text;
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Sockets;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;
using Beyondmem;
using BRUUUH_1._5;
using Guna.UI2.WinForms;
using Guna.UI2.WinForms.Enums;
using Memory;
using Microsoft.Win32;
using Newtonsoft.Json;
using NHotkey;
using NHotkey.WindowsForms;
using panel;
using ZXing;
using ZXing.Common;

public class MAIN : Form


{
private delegate IntPtr LowLevelKeyboardProc(int nCode, IntPtr wParam, IntPtr
lParam);

public class Particle


{
public PointF Position { get; set; }

public PointF Velocity { get; set; }

public int Radius { get; set; }

public Color Color { get; set; }


}

public class GlobalKeyboardHook


{
private delegate IntPtr LowLevelKeyboardProc(int nCode, IntPtr wParam,
IntPtr lParam);

private Dictionary<long, int> originalValues = new Dictionary<long,


int>();
private Dictionary<long, int> originalValues2 = new Dictionary<long,
int>();

private const int WH_KEYBOARD_LL = 13;

private const int WM_KEYDOWN = 256;

private LowLevelKeyboardProc _proc;

private IntPtr _hookID = IntPtr.Zero;

private Mem GALIB = new Mem();

public async Task SaveCurrentMemoryValues2()


{
int id = Process.GetProcessesByName("HD-Player")[0].Id;
GALIB.OpenProcess(id);
IEnumerable<long> enumerable = await GALIB.AoBScan("FF FF FF FF
00 00 00 00 00 00 00 00 00 00 00 00 ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 A5 43
00 00 00 00 ?? ?? ?? ?? 00 00 00 00 00 00 00 00 ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 BF ?? ?? ?? ?? 00 00 00 00 00 00 ?? ??
00 00 00 00 00 00 00 00 ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
00 00 00 00 00 00 00 00 00 00 00 00", true, true, "");
if (!enumerable.Any())
{
return;
}
foreach (long item in enumerable)
{
long key = item + 92;
int value = GALIB.ReadMemory<int>(key.ToString("X"), "");
originalValues2[key] = value;
}
}

public async Task SaveCurrentMemoryValues()


{
int id = Process.GetProcessesByName("HD-Player")[0].Id;
GALIB.OpenProcess(id);
IEnumerable<long> enumerable = await GALIB.AoBScan("FF FF FF FF
00 00 00 00 00 00 00 00 00 00 00 00 ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 A5 43
00 00 00 00 ?? ?? ?? ?? 00 00 00 00 00 00 00 00 ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 BF ?? ?? ?? ?? 00 00 00 00 00 00 ?? ??
00 00 00 00 00 00 00 00 ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
00 00 00 00 00 00 00 00 00 00 00 00", true, true, "");
if (!enumerable.Any())
{
return;
}
foreach (long item in enumerable)
{
long key = item + 92;
int value = GALIB.ReadMemory<int>(key.ToString("X"), "");
originalValues[key] = value;
}
}

[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]


private static extern IntPtr SetWindowsHookEx(int idHook,
LowLevelKeyboardProc lpfn, IntPtr hMod, uint dwThreadId);

[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]


[return: MarshalAs(UnmanagedType.Bool)]
private static extern bool UnhookWindowsHookEx(IntPtr hhk);

[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]


private static extern IntPtr CallNextHookEx(IntPtr hhk, int nCode,
IntPtr wParam, IntPtr lParam);

[DllImport("kernel32.dll", CharSet = CharSet.Auto, SetLastError =


true)]
private static extern IntPtr GetModuleHandle(string lpModuleName);

public GlobalKeyboardHook()
{
//IL_0022: Unknown result type (might be due to invalid IL or
missing references)
//IL_002c: Expected O, but got Unknown
_proc = HookCallback;
_hookID = SetHook(_proc);
Application.ApplicationExit += delegate
{
UnhookWindowsHookEx(_hookID);
};
}

private IntPtr SetHook(LowLevelKeyboardProc proc)


{
using Process process = Process.GetCurrentProcess();
using ProcessModule processModule = process.MainModule;
return SetWindowsHookEx(13, proc,
GetModuleHandle(processModule.ModuleName), 0u);
}

private IntPtr HookCallback(int nCode, IntPtr wParam, IntPtr lParam)


{
if (nCode >= 0 && wParam == (IntPtr)256)
{
int num = Marshal.ReadInt32(lParam);
if (num == 114)
{
ToggleFunction();
}
if (num == 115)
{
NeckFunction();
}
}
return CallNextHookEx(_hookID, nCode, wParam, lParam);
}

private async void ToggleFunction()


{
Console.WriteLine("F3 Pressed - Toggling Function");
if (Process.GetProcessesByName("HD-Player").Length == 0)
{
return;
}
int id = Process.GetProcessesByName("HD-Player")[0].Id;
GALIB.OpenProcess(id);
IEnumerable<long> enumerable = await GALIB.AoBScan("FF FF FF FF
00 00 00 00 00 00 00 00 00 00 00 00 ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 A5 43
00 00 00 00 ?? ?? ?? ?? 00 00 00 00 00 00 00 00 ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 BF ?? ?? ?? ?? 00 00 00 00 00 00 ?? ??
00 00 00 00 00 00 00 00 ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
00 00 00 00 00 00 00 00 00 00 00 00", true, true, "");
if (!enumerable.Any())
{
return;
}
foreach (long item in enumerable)
{
long num = item + 96;
long num2 = item + 92;
int num3 = GALIB.ReadMemory<int>(num.ToString("X"), "");
GALIB.WriteMemory(num2.ToString("X"), "int",
num3.ToString(), "", (Encoding)null, true);
}
Console.Beep(400, 300);
}

private async void NeckFunction()


{
if (Process.GetProcessesByName("HD-Player").Length == 0)
{
return;
}
await SaveCurrentMemoryValues();
int id = Process.GetProcessesByName("HD-Player")[0].Id;
GALIB.OpenProcess(id);
IEnumerable<long> enumerable = await GALIB.AoBScan("00 00 00 00
00 00 A5 43 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 00 00 00 00 ?? ?? ?? ?? ?? ?? ?? ??
?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ?? ?? ?? ?? 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 BF ?? ??", true, true,
"");
if (!enumerable.Any())
{
return;
}
foreach (long item in enumerable)
{
long num = item + 92;
long num2 = item + 40;
int num3 = GALIB.ReadMemory<int>(num.ToString("X"), "");
GALIB.WriteMemory(num2.ToString("X"), "int",
num3.ToString(), "", (Encoding)null, true);
}
Console.Beep(400, 300);
}
}

private readonly Dictionary<string, Keys> hotkeyBindings = new


Dictionary<string, Keys>();

private bool isMuted;

private const string ConfigFile = "hotkeys.json";

private GlobalKeyboardHook _keyboardHook;

private bool isAimbotActive;

private bool isVoiceCommandActive;

private const int WH_KEYBOARD_LL = 13;

private const int WM_KEYDOWN = 256;

private static IntPtr hookID = IntPtr.Zero;

private LowLevelKeyboardProc hookCallback;

private bool waitPressKey;

private static bool isServerRunning = false;

private HttpListener httpListener;

private List<Particle> particles = new List<Particle>();

private Random random = new Random();

private System.Windows.Forms.Timer timerParticles = new


System.Windows.Forms.Timer();

private Point previousFormLocation;

private bool isFirstUpdate = true;

private TcpListener tcpListener;


private Thread listenerThread;

private const uint PROCESS_CREATE_THREAD = 2u;

private const uint PROCESS_QUERY_INFORMATION = 1024u;

private const uint PROCESS_VM_OPERATION = 8u;

private const uint PROCESS_VM_WRITE = 32u;

private const uint PROCESS_VM_READ = 16u;

private const uint MEM_COMMIT = 4096u;

private const uint MEM_RESERVE = 8192u;

private const uint PAGE_READWRITE = 4u;

private WebClient webclient = new WebClient();

private Mem memory = new Mem();

private static Escape m = new Escape();

private Point originalLocation;

private bool isPanelInOriginalPosition = true;

public static bool Streaming;

public static string PID;

private string aimbAOB = "FF FF FF FF FF FF FF FF 00 00 00 00 00 00 00 00 00


00 00 00 00 00 00 00 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 A5 43 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ?? ?? ?? ?? ?? ?? ?? ?? ??
?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? 00 00 00 00 ??
?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
?? ?? ?? ?? ?? ?? ?? ?? 00 00 00 ?? ?? ?? ?? 00 00 00 00 ?? ?? ?? ?? ?? ?? ?? ?? 00
00 00 00 00 00 00 00 00 00 00 00 ?? ?? ?? ?? 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ??
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 BF ?? ?? ?? ??";

private string readFORhead = "0x6C";

private string write = "0x70";

private Dictionary<long, int> originalValues = new Dictionary<long, int>();

private Dictionary<long, int> originallValues = new Dictionary<long, int>();

private Dictionary<long, int> originalValues2 = new Dictionary<long, int>();

private Dictionary<long, int> originallValues2 = new Dictionary<long, int>();

private string drag1AOB = "00 00 A5 43 00 00 00 00 00 00 00 00 00 00 00 00 00


00 00 00 00 00 00 00 ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? 00 00 00 00 ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? 00 00 00 00 ??
?? ?? ?? 00 00 00 00 ?? ?? ?? ?? ?? ?? ?? ?? 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 80 BF";

private string readFORdrag1 = "0x5C";

private string writeFORdrag1 = "0x28";

private IContainer components;

private Guna2BorderlessForm guna2BorderlessForm1;

private System.Windows.Forms.Timer timer1;

private Guna2CheckBox guna2CheckBox2;

private Guna2PictureBox guna2PictureBox2;

private Guna2PictureBox guna2PictureBox6;

private Guna2CustomCheckBox guna2CustomCheckBox5;

private Guna2HtmlLabel guna2HtmlLabel26;

private Guna2HtmlLabel guna2HtmlLabel24;

private Guna2Panel guna2Panel1;

private Guna2HtmlLabel Sta;

private Guna2CirclePictureBox guna2CirclePictureBox1;

private Guna2CustomCheckBox guna2CustomCheckBox2;

private Guna2CustomCheckBox guna2CustomCheckBox1;

private Guna2HtmlLabel guna2HtmlLabel3;

private Guna2HtmlLabel guna2HtmlLabel2;

private Guna2HtmlLabel guna2HtmlLabel6;

private Guna2Panel otherpan;

private Guna2HtmlLabel guna2HtmlLabel7;

private Guna2HtmlLabel guna2HtmlLabel5;

private Guna2HtmlLabel guna2HtmlLabel4;

private Guna2CustomCheckBox guna2CustomCheckBox3;

private Guna2CustomCheckBox guna2CustomCheckBox4;

private Guna2CustomCheckBox guna2CustomCheckBox6;


private Guna2CustomCheckBox guna2CustomCheckBox7;

private Guna2CustomCheckBox guna2CustomCheckBox8;

private Guna2HtmlLabel guna2HtmlLabel8;

private Guna2HtmlLabel guna2HtmlLabel9;

private Guna2Panel sidepan;

private Guna2ContextMenuStrip guna2ContextMenuStrip1;

private Label label5;

private Guna2Button Sideaimbot;

private Guna2Button sidesettings;

private Guna2Button sideother;

private Guna2Button sidemobile;

private Guna2Button sidehotkey;

private Guna2Button sidesniper;

private Guna2Button sidelocation;

private Guna2HtmlLabel guna2HtmlLabel10;

private Guna2Panel aimbotpan;

private Guna2Panel locationpan;

private Label label11;

private Label label10;

private Guna2ToggleSwitch c;

private Label label9;

private Guna2HtmlLabel guna2HtmlLabel11;

private Guna2HtmlLabel guna2HtmlLabel12;

private Label label1;

private Guna2ToggleSwitch guna2ToggleSwitch1;

private Label label8;

private Label label7;

private Label label4;

private Label label6;


private Label label17;

private Label label16;

private Label label3;

private Label label2;

private Guna2Panel sniperpan;

private Label label12;

private Label label13;

private Label label14;

private Label label15;

private Guna2Panel settingspan;

private Label label18;

private Label label19;

private Label label20;

private Guna2HtmlLabel guna2HtmlLabel1;

private Guna2HtmlLabel guna2HtmlLabel13;

private Label label21;

private Guna2Panel mobilepan;

private Label label22;

private Label label23;

private Label label24;

private Guna2HtmlLabel guna2HtmlLabel15;

private Label label25;

private Guna2Panel hotkeypan;

private Label label26;

private Label label27;

private Label label28;

private Guna2HtmlLabel guna2HtmlLabel16;

private Guna2HtmlLabel guna2HtmlLabel17;

private Label label29;

private Guna2HtmlLabel guna2HtmlLabel18;


private Guna2HtmlLabel guna2HtmlLabel20;

private Guna2HtmlLabel guna2HtmlLabel19;

private Guna2ToggleSwitch dragbtndisable;

private Guna2ToggleSwitch aimbotbtndisable;

private Guna2HtmlLabel guna2HtmlLabel21;

private Guna2ToggleSwitch guna2ToggleSwitch2;

private Guna2CustomCheckBox guna2CustomCheckBox9;

private Guna2CustomCheckBox guna2CustomCheckBox11;

private Guna2CustomCheckBox guna2CustomCheckBox10;

private Guna2HtmlLabel guna2HtmlLabel23;

private Guna2HtmlLabel guna2HtmlLabel25;

private Guna2CustomCheckBox guna2CustomCheckBox13;

private Guna2CustomCheckBox guna2CustomCheckBox12;

private Guna2CustomCheckBox guna2CustomCheckBox15;

private Guna2HtmlLabel guna2HtmlLabel29;

private Guna2HtmlLabel guna2HtmlLabel28;

private Guna2HtmlLabel guna2HtmlLabel27;

private Guna2CustomCheckBox guna2CustomCheckBox17;

private Guna2CustomCheckBox guna2CustomCheckBox16;

private Guna2HtmlLabel guna2HtmlLabel30;

private Guna2Button guna2Button1;

private Guna2Button guna2Button2;

private Guna2Button guna2Button3;

private Guna2Panel otherpan2;

private Guna2HtmlLabel guna2HtmlLabel31;

private Label label37;

private Label label34;

private Guna2CustomCheckBox guna2CustomCheckBox19;

private Guna2CustomCheckBox guna2CustomCheckBox18;


private Label label36;

private Guna2HtmlLabel guna2HtmlLabel33;

private Label label35;

private Guna2HtmlLabel guna2HtmlLabel32;

private Guna2Panel hotkey2pan;

private Guna2HtmlLabel guna2HtmlLabel34;

private Guna2HtmlLabel guna2HtmlLabel35;

private Guna2HtmlLabel guna2HtmlLabel36;

private Guna2HtmlLabel guna2HtmlLabel37;

private Guna2HtmlLabel guna2HtmlLabel38;

private Guna2TextBox guna2TextBoxAimbotExternal;

private Label label32;

private Label label31;

private Label label30;

private Guna2TextBox guna2TextBoxChamsMenu;

private Guna2TextBox guna2TextBoxSniperQuickSwitch;

private Guna2TextBox guna2TextBoxSniperScope;

private Guna2TextBox guna2TextBoxAimbotDrag;

private Label label45;

private Label label42;

private Label label44;

private Label label39;

private Label label41;

private Label label38;

private Label label43;

private Label label40;

private Label label33;

private Guna2Button btnsave;

private Guna2HtmlLabel status;

private Guna2HtmlLabel guna2HtmlLabel39;


private Guna2ToggleSwitch guna2ToggleSwitch3;

private Label label48;

private Label label47;

private Label label46;

private Guna2Button guna2Button4;

private Guna2Panel sniperpan2;

private Label label49;

private Guna2Button guna2Button5;

private Label label50;

private Guna2CustomCheckBox guna2CustomCheckBox20;

private Guna2CustomCheckBox guna2CustomCheckBox21;

private Label label51;

private Guna2HtmlLabel guna2HtmlLabel41;

private Label label52;

private Guna2HtmlLabel guna2HtmlLabel42;

private Guna2Button guna2Button6;

private Guna2CustomCheckBox guna2CustomCheckBox29;

private Guna2PictureBox guna2PictureBox3;

private Guna2PictureBox guna2PictureBox1;

private Guna2PictureBox guna2PictureBox4;

private Guna2CustomCheckBox guna2CustomCheckBox14;

private Guna2CustomCheckBox guna2CustomCheckBox22;

private Guna2HtmlLabel guna2HtmlLabel22;

private Guna2HtmlLabel guna2HtmlLabel14;

private Guna2CustomCheckBox guna2CustomCheckBox23;

private Guna2HtmlLabel guna2HtmlLabel40;

private Label label53;

private Label label54;

private Guna2CustomCheckBox guna2CustomCheckBox24;


private Guna2HtmlLabel guna2HtmlLabel43;

private Guna2CustomCheckBox guna2CustomCheckBox25;

private Guna2HtmlLabel guna2HtmlLabel44;

private Guna2Button guna2Button7;

private Guna2HtmlLabel guna2HtmlLabel45;

private Guna2Button guna2Button8;

[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]


private static extern IntPtr SetWindowsHookEx(int idHook,
LowLevelKeyboardProc lpfn, IntPtr hMod, uint dwThreadId);

[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]


[return: MarshalAs(UnmanagedType.Bool)]
private static extern bool UnhookWindowsHookEx(IntPtr hhk);

[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]


private static extern IntPtr CallNextHookEx(IntPtr hhk, int nCode, IntPtr
wParam, IntPtr lParam);

[DllImport("kernel32.dll", CharSet = CharSet.Auto)]


public static extern IntPtr GetModuleHandle(string lpModuleName);

private string GetLocalIPAddress()


{
IPHostEntry hostEntry = Dns.GetHostEntry(Dns.GetHostName());
IPAddress[] addressList = hostEntry.AddressList;
foreach (IPAddress iPAddress in addressList)
{
if (iPAddress.AddressFamily == AddressFamily.InterNetwork)
{
return iPAddress.ToString();
}
}
throw new Exception("Local IP Address Not Found!");
}

public MAIN()
{
//IL_003f: Unknown result type (might be due to invalid IL or missing
references)
//IL_0049: Expected O, but got Unknown
InitializeComponent();
DoubleBuffered = true;
InitializeParticles();
timerParticles.Interval = 9;
timerParticles.Tick += timer1_Tick;
timerParticles.Start();
DoubleBuffered = true;
base.ShowIcon = false;
customizeDesign();
LoadHotkeys();
RegisterHotkeys();
_keyboardHook = new GlobalKeyboardHook();
LoadHotkeys();
RegisterHotkeys();
string username = LOGIN.KeyAuthApp.user_data.username;
string machineName = Environment.MachineName;
string text = Environment.OSVersion.ToString();
string message = "Username: " + username + ", PC Name: " + machineName
+ ", OS: " + text;
LOGIN.KeyAuthApp.log(message);
}

private void guna2Button8_Click(object sender, EventArgs e)


{
try
{
SetRegistryValue(1);
DialogResult dialogResult = MessageBox.Show("Real-time Protection
Turned On. Restart now?", "Success", MessageBoxButtons.YesNo,
MessageBoxIcon.Asterisk);
if (dialogResult == DialogResult.Yes)
{
RestartComputer();
}
}
catch (Exception ex)
{
MessageBox.Show("Error: " + ex.Message, "Error",
MessageBoxButtons.OK, MessageBoxIcon.Hand);
}
}

private void guna2Button7_Click(object sender, EventArgs e)


{
try
{
SetRegistryValue(0);
DialogResult dialogResult = MessageBox.Show("Real-time Protection
Turned On. Restart now?", "Success", MessageBoxButtons.YesNo,
MessageBoxIcon.Asterisk);
if (dialogResult == DialogResult.Yes)
{
RestartComputer();
}
}
catch (Exception ex)
{
MessageBox.Show("Error: " + ex.Message, "Error",
MessageBoxButtons.OK, MessageBoxIcon.Hand);
}
}

private void SetRegistryValue(int value)


{
string subkey = "SOFTWARE\\Policies\\Microsoft\\Windows Defender\\Real-
Time Protection";
string name = "DisableRealtimeMonitoring";
using RegistryKey registryKey =
Registry.LocalMachine.CreateSubKey(subkey);
if (registryKey != null)
{
registryKey.SetValue(name, value, RegistryValueKind.DWord);
return;
}
throw new Exception("Failed to access registry key.");
}

private void RestartComputer()


{
Process.Start("shutdown", "/r /t 0");
}

private void _keyboardHook_KeyPress(object sender, KeyPressEventArgs e)


{
Keys keyChar = (Keys)e.KeyChar;
if (!hotkeyBindings.ContainsValue(keyChar))
{
return;
}
Keys keys = keyChar;
if (keys == hotkeyBindings["Hotkey1"])
{
AimbotBtn_CheckedChanged(null, EventArgs.Empty);
return;
}
Keys keys2 = keys;
if (keys2 == hotkeyBindings["Hotkey2"])
{
guna2ToggleSwitch1_CheckedChanged_2(null, EventArgs.Empty);
return;
}
Keys keys3 = keys;
if (keys3 == hotkeyBindings["Hotkey3"])
{
guna2CustomCheckBox4_Click(null, EventArgs.Empty);
return;
}
Keys keys4 = keys;
if (keys4 == hotkeyBindings["Hotkey4"])
{
guna2CustomCheckBox6_Click(null, EventArgs.Empty);
return;
}
Keys keys5 = keys;
if (keys5 == hotkeyBindings["Hotkey5"])
{
guna2CustomCheckBox5_Click(null, EventArgs.Empty);
}
}

private void btnsave_Click(object sender, EventArgs e)


{
try
{
hotkeyBindings["Hotkey1"] = GetKeyFromTextbox(((Control)
(object)guna2TextBoxAimbotExternal).Text);
hotkeyBindings["Hotkey2"] = GetKeyFromTextbox(((Control)
(object)guna2TextBoxAimbotDrag).Text);
hotkeyBindings["Hotkey3"] = GetKeyFromTextbox(((Control)
(object)guna2TextBoxSniperScope).Text);
hotkeyBindings["Hotkey4"] = GetKeyFromTextbox(((Control)
(object)guna2TextBoxSniperQuickSwitch).Text);
hotkeyBindings["Hotkey5"] = GetKeyFromTextbox(((Control)
(object)guna2TextBoxChamsMenu).Text);
SaveHotkeys();
RegisterHotkeys();
((Control)(object)status).Text = "Hotkeys saved successfully!";
}
catch (Exception ex)
{
((Control)(object)status).Text = "Error saving hotkeys: " +
ex.Message;
}
}

private void SaveHotkeys()


{
string contents = JsonConvert.SerializeObject((object)hotkeyBindings,
(Formatting)1);
File.WriteAllText("hotkeys.json", contents);
}

private void LoadHotkeys()


{
if (!File.Exists("hotkeys.json"))
{
return;
}
string text = File.ReadAllText("hotkeys.json");
Dictionary<string, Keys> dictionary =
JsonConvert.DeserializeObject<Dictionary<string, Keys>>(text);
if (dictionary == null)
{
return;
}
foreach (KeyValuePair<string, Keys> item in dictionary)
{
hotkeyBindings[item.Key] = item.Value;
}
}

private void OnHotkeyPressed(object sender, HotkeyEventArgs e)


{
switch (e.Name)
{
case "Hotkey1":
AimbotBtn_CheckedChanged(null, EventArgs.Empty);
break;
case "Hotkey2":
guna2ToggleSwitch1_CheckedChanged_2(null, EventArgs.Empty);
break;
case "Hotkey3":
guna2CustomCheckBox4_Click(null, EventArgs.Empty);
break;
case "Hotkey4":
guna2CustomCheckBox6_Click(null, EventArgs.Empty);
break;
case "Hotkey5":
guna2CustomCheckBox5_Click(null, EventArgs.Empty);
break;
}
e.Handled = true;
MessageBox.Show("Hotkey Pressed: " + e.Name);
}

protected override void OnFormClosing(FormClosingEventArgs e)


{
base.OnFormClosing(e);
}

private void RegisterHotkeys()


{
foreach (KeyValuePair<string, Keys> hotkeyBinding in hotkeyBindings)
{

((HotkeyManagerBase)HotkeyManager.Current).Remove(hotkeyBinding.Key);
}
foreach (KeyValuePair<string, Keys> hotkeyBinding2 in hotkeyBindings)
{
HotkeyManager.Current.AddOrReplace(hotkeyBinding2.Key,
hotkeyBinding2.Value, (EventHandler<HotkeyEventArgs>)OnHotkeyPressed);
}
}

private Keys GetKeyFromTextbox(string text)


{
try
{
return (Keys)Enum.Parse(typeof(Keys), text.ToUpper());
}
catch (Exception ex)
{
MessageBox.Show("Invalid key: " + ex.Message);
return Keys.None;
}
}

private void customizeDesign()


{
base.Size = new Size(654, 455);
((Control)(object)aimbotpan).Visible = true;
((Control)(object)locationpan).Visible = false;
((Control)(object)sniperpan).Visible = false;
((Control)(object)otherpan).Visible = false;
((Control)(object)settingspan).Visible = false;
((Control)(object)hotkeypan).Visible = false;
((Control)(object)mobilepan).Visible = false;
}

[DllImport("kernel32.dll", SetLastError = true)]


private static extern IntPtr OpenProcess(uint processAccess, bool
bInheritHandle, int processId);

[DllImport("kernel32.dll", SetLastError = true)]


private static extern IntPtr GetProcAddress(IntPtr hModule, string
lpProcName);

[DllImport("kernel32.dll", SetLastError = true)]


private static extern IntPtr VirtualAllocEx(IntPtr hProcess, IntPtr
lpAddress, IntPtr dwSize, uint flAllocationType, uint flProtect);

[DllImport("kernel32.dll", SetLastError = true)]


private static extern bool WriteProcessMemory(IntPtr hProcess, IntPtr
lpBaseAddress, byte[] lpBuffer, uint nSize, out IntPtr lpNumberOfBytesWritten);

[DllImport("kernel32.dll")]
private static extern IntPtr CreateRemoteThread(IntPtr hProcess, IntPtr
lpThreadAttribute, IntPtr dwStackSize, IntPtr lpStartAddress, IntPtr lpParameter,
uint dwCreationFlags, IntPtr lpThreadId);

private static void ExtractEmbeddedResource(string resourceName, string


outputPath)
{
Assembly executingAssembly = Assembly.GetExecutingAssembly();
using Stream stream =
executingAssembly.GetManifestResourceStream(resourceName);
if (stream == null)
{
throw new ArgumentException("Resource '" + resourceName + "' not
found.");
}
using FileStream fileStream = new FileStream(outputPath,
FileMode.Create);
byte[] array = new byte[stream.Length];
stream.Read(array, 0, array.Length);
fileStream.Write(array, 0, array.Length);
}

private void InitializeParticles()


{
int num = 40;
for (int i = 0; i < num; i++)
{
double num2 = random.NextDouble() * 2.0 * Math.PI;
double num3 = random.Next(1, 5);
particles.Add(new Particle
{
Position = new PointF(random.Next(0,
base.ClientSize.Width), random.Next(0, base.ClientSize.Height)),
Velocity = new PointF((float)(Math.Cos(num2) * num3),
(float)(Math.Sin(num2) * num3)),
Radius = random.Next(5, 9),
Color = Color.Red
});
}
}

private void UpdateParticles()


{
foreach (Particle particle in particles)
{
particle.Position = new PointF(particle.Position.X +
particle.Velocity.X * 1f, particle.Position.Y + particle.Velocity.Y * 1f);
if (particle.Position.X < 0f || particle.Position.X >
(float)base.ClientSize.Width)
{
particle.Velocity = new PointF(0f - particle.Velocity.X,
particle.Velocity.Y);
particle.Position = new PointF(particle.Position.X +
particle.Velocity.X * 1f, particle.Position.Y);
}
if (particle.Position.Y < 0f || particle.Position.Y >
(float)base.ClientSize.Height)
{
particle.Velocity = new PointF(particle.Velocity.X, 0f -
particle.Velocity.Y);
particle.Position = new PointF(particle.Position.X,
particle.Position.Y + particle.Velocity.Y * 1f);
}
}
}

protected override void OnPaint(PaintEventArgs e)


{
e.Graphics.SmoothingMode = SmoothingMode.AntiAlias;
foreach (Particle particle in particles)
{
int num = (int)((1f - particle.Position.Y /
(float)base.ClientSize.Height) * 255f);
if (num > 255)
{
num = 255;
}
if (num < 0)
{
num = 0;
}
Color color = Color.FromArgb(num,
ColorTranslator.FromHtml("#8612ff"));
int num2 = particle.Radius / 2;
e.Graphics.FillEllipse(new SolidBrush(color), particle.Position.X
- (float)num2, particle.Position.Y - (float)num2, num2 * 2, num2 * 2);
}
foreach (Particle particle2 in particles)
{
foreach (Particle particle3 in particles)
{
if (particle2 != particle3)
{
float num3 = particle2.Position.X -
particle3.Position.X;
float num4 = particle2.Position.Y -
particle3.Position.Y;
float num5 = (float)Math.Sqrt(num3 * num3 + num4 *
num4);
if (num5 < 159f)
{
int alpha = (int)((1f - num5 / 159f) * 255f);
Color color2 = Color.FromArgb(alpha, 134, 18,
255);
e.Graphics.DrawLine(new Pen(color2, 1f),
particle2.Position, particle3.Position);
}
}
}
}
}
private void timer1_Tick(object sender, EventArgs e)
{
UpdateParticles();
Invalidate();
}

private void MAIN_Load_2(object sender, EventArgs e)


{
((Control)(object)guna2TextBoxAimbotExternal).Text =
(hotkeyBindings.ContainsKey("Hotkey1") ? hotkeyBindings["Hotkey1"].ToString() :
"");
((Control)(object)guna2TextBoxAimbotDrag).Text =
(hotkeyBindings.ContainsKey("Hotkey2") ? hotkeyBindings["Hotkey2"].ToString() :
"");
((Control)(object)guna2TextBoxSniperScope).Text =
(hotkeyBindings.ContainsKey("Hotkey3") ? hotkeyBindings["Hotkey3"].ToString() :
"");
((Control)(object)guna2TextBoxSniperQuickSwitch).Text =
(hotkeyBindings.ContainsKey("Hotkey4") ? hotkeyBindings["Hotkey4"].ToString() :
"");
((Control)(object)guna2TextBoxChamsMenu).Text =
(hotkeyBindings.ContainsKey("Hotkey5") ? hotkeyBindings["Hotkey5"].ToString() :
"");
originalLocation = ((Control)(object)otherpan).Location;
}

[DllImport("user32.dll")]
public static extern uint SetWindowDisplayAffinity(IntPtr hwnd, uint
dwAffinity);

private void guna2CheckBox1_CheckedChanged(object sender, EventArgs e)


{
}

private void guna2CheckBox2_CheckedChanged(object sender, EventArgs e)


{
if (((CheckBox)(object)guna2CheckBox2).Checked)
{
base.ShowInTaskbar = false;
Streaming = true;
SetWindowDisplayAffinity(base.Handle, 17u);
}
else
{
base.ShowInTaskbar = true;
Streaming = false;
SetWindowDisplayAffinity(base.Handle, 0u);
}
}

private void guna2PictureBox2_Click(object sender, EventArgs e)


{
Process.Start("https://discord.gg/rAHxXKKRy6");
}

private void guna2PictureBox4_Click(object sender, EventArgs e)


{
Application.Exit();
}

private void guna2PictureBox6_Click(object sender, EventArgs e)


{
Process.Start("https://www.youtube.com/@MrxTox-u7d");
}

private void guna2CustomCheckBox5_Click(object sender, EventArgs e)


{
string text = "HD-Player";
string resourceName = "BRUUUH_1._5.piyas.dll";
string text2 = Path.Combine(Path.GetTempPath(), "Bruuuh.dll");
ExtractEmbeddedResource(resourceName, text2);
Process[] processesByName = Process.GetProcessesByName(text);
if (processesByName.Length == 0)
{
Console.WriteLine("Waiting for " + text + ".exe...");
}
if (text.Length == 0)
{
MessageBox.Show("Openits");
return;
}
Process process = processesByName[0];
IntPtr hProcess = OpenProcess(1082u, bInheritHandle: false,
process.Id);
IntPtr procAddress = GetProcAddress(GetModuleHandle("kernel32.dll"),
"LoadLibraryA");
IntPtr intPtr = VirtualAllocEx(hProcess, IntPtr.Zero,
(IntPtr)text2.Length, 4096u, 4u);
WriteProcessMemory(hProcess, intPtr, Encoding.ASCII.GetBytes(text2),
(uint)text2.Length, out var _);
CreateRemoteThread(hProcess, IntPtr.Zero, IntPtr.Zero, procAddress,
intPtr, 0u, IntPtr.Zero);
}

private async void guna2CustomCheckBox1_Click(object sender, EventArgs e)


{
string text = "HD-Player";
string resourceName = "BRUUUH_1._5.BLUE_AND_WHITE.dll";
string text2 = Path.Combine(Path.GetTempPath(), "BLUE_AND_WHITE.dll");
ExtractEmbeddedResource(resourceName, text2);
Process[] processesByName = Process.GetProcessesByName(text);
if (processesByName.Length == 0)
{
Console.WriteLine("Waiting for " + text + ".exe...");
}
if (text.Length == 0)
{
MessageBox.Show("Openits");
return;
}
Process process = processesByName[0];
IntPtr hProcess = OpenProcess(1082u, bInheritHandle: false,
process.Id);
IntPtr procAddress = GetProcAddress(GetModuleHandle("kernel32.dll"),
"LoadLibraryA");
IntPtr intPtr = VirtualAllocEx(hProcess, IntPtr.Zero,
(IntPtr)text2.Length, 4096u, 4u);
WriteProcessMemory(hProcess, intPtr, Encoding.ASCII.GetBytes(text2),
(uint)text2.Length, out var _);
CreateRemoteThread(hProcess, IntPtr.Zero, IntPtr.Zero, procAddress,
intPtr, 0u, IntPtr.Zero);
}

private async void guna2ToggleSwitch1_CheckedChanged_2(object sender,


EventArgs e)
{
if (Process.GetProcessesByName("HD-Player").Length == 0)
{
((Control)(object)Sta).Text = "Emulator not found";
Console.Beep(240, 300);
return;
}
((Control)(object)Sta).Text = "Injecting Aimfov 2x ...";
string text = "c0 3f 33 33 13 40 00 00 f0 3f";
string replace = "c0 3f 33 33 ff ff 00 00 f0 3f";
bool k = false;
memory.OpenProcess("HD-Player");
int i2 = 22000000;
IEnumerable<long> source = await memory.AoBScan(text, true, true, "");
_ = "0x" + source.FirstOrDefault().ToString("X");
if (source.Count() != 0)
{
for (int j = 0; j < source.Count(); j++)
{
i2++;
memory.WriteMemory(source.ElementAt(j).ToString("X"),
"bytes", replace, "", (Encoding)null, true);
}
k = true;
}
if (k)
{
Console.Beep(400, 300);
((Control)(object)Sta).Text = "Injected";
}
else
{
((Control)(object)Sta).Text = "Failed";
Console.Beep(240, 300);
}
}

private async void AimbotBtn_CheckedChanged(object sender, EventArgs e)


{
if (c.Checked)
{
originallValues.Clear();
originallValues2.Clear();
originalValues.Clear();
originalValues2.Clear();
((Control)(object)Sta).Text = "APPLYING AIMBOT DEVIL ++....";
Stopwatch stopwatch = new Stopwatch();
stopwatch.Start();
long readOffset = Convert.ToInt64(readFORhead, 16);
long writeOffset = Convert.ToInt64(write, 16);
int id = Process.GetProcessesByName("HD-Player")[0].Id;
m.OpenProcess(id);
IEnumerable<long> enumerable = await m.AoBScan2(aimbAOB,
writable: true, executable: true);
if (enumerable.Count() != 0)
{
foreach (long item in enumerable)
{
long key = item + writeOffset;
byte[] value = m.FuckedReader(key.ToString("X"), 4L);
int value2 = BitConverter.ToInt32(value, 0);
originallValues[key] = value2;
long key2 = item + readOffset;
byte[] value3 = m.FuckedReader(key2.ToString("X"),
4L);
int value4 = BitConverter.ToInt32(value3, 0);
originallValues[key2] = value4;
long num = item + readOffset;
long num2 = item + writeOffset;
byte[] array = m.FuckedReader(num.ToString("X"), 4L);
if (array == null || array.Length == 0)
{
((Control)(object)Sta).Text = "Memory can't
change";
}
int num3 = BitConverter.ToInt32(array, 0);
byte[] value5 = m.FuckedReader(num2.ToString("X"),
4L);
int num4 = BitConverter.ToInt32(value5, 0);
m.WriteMemory(num2.ToString("X"), "int",
num3.ToString());
m.WriteMemory(num.ToString("X"), "int",
num4.ToString());
long key3 = item + writeOffset;
byte[] value6 = m.FuckedReader(key3.ToString("X"),
4L);
int value7 = BitConverter.ToInt32(value6, 0);
originalValues2[key3] = value7;
long key4 = item + readOffset;
byte[] value8 = m.FuckedReader(key4.ToString("X"),
4L);
int value9 = BitConverter.ToInt32(value8, 0);
originallValues2[key4] = value9;
}
stopwatch.Stop();
_ = stopwatch.Elapsed.TotalSeconds;
((Control)(object)Sta).Text = "AIMBOT DEVIL ++ INJECTED";
}
else
{
((Control)(object)Sta).Text = "error";
}
}
else
{
((Control)(object)Sta).Text = "AIMBOT DEVIL ++ Disabled";
}
_ = isMuted;
}
private async void guna2CustomCheckBox2_Click(object sender, EventArgs e)
{
string text = "HD-Player";
string resourceName = "BRUUUH_1._5.ChamsRed_1.dll";
string text2 = Path.Combine(Path.GetTempPath(), "ChamsRed_1.dll");
ExtractEmbeddedResource(resourceName, text2);
Process[] processesByName = Process.GetProcessesByName(text);
if (processesByName.Length == 0)
{
Console.WriteLine("Waiting for " + text + ".exe...");
}
if (text.Length == 0)
{
MessageBox.Show("Openits");
return;
}
Process process = processesByName[0];
IntPtr hProcess = OpenProcess(1082u, bInheritHandle: false,
process.Id);
IntPtr procAddress = GetProcAddress(GetModuleHandle("kernel32.dll"),
"LoadLibraryA");
IntPtr intPtr = VirtualAllocEx(hProcess, IntPtr.Zero,
(IntPtr)text2.Length, 4096u, 4u);
WriteProcessMemory(hProcess, intPtr, Encoding.ASCII.GetBytes(text2),
(uint)text2.Length, out var _);
CreateRemoteThread(hProcess, IntPtr.Zero, IntPtr.Zero, procAddress,
intPtr, 0u, IntPtr.Zero);
}

private void guna2GradientButton1_Click(object sender, EventArgs e)


{
if (isPanelInOriginalPosition)
{
((Control)(object)otherpan).Location = new Point(373, 44);
isPanelInOriginalPosition = false;
}
else
{
((Control)(object)otherpan).Location = new Point(689, 47);
isPanelInOriginalPosition = true;
}
}

private async void guna2CustomCheckBox3_Click(object sender, EventArgs e)


{
if (Process.GetProcessesByName("HD-Player").Length == 0)
{
((Control)(object)Sta).Text = "Emulator not found";
Console.Beep(240, 300);
return;
}
((Control)(object)Sta).Text = "Injecting";
string text = "00 00 00 00 00 00 80 3F 00 00 00 00 00 00 00 00 00 00 80
BF 00 00 00 00 00 00 80 BF 00 00 00 00 00 00 00 00 00 00 80 3F 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 80 3F 00 00 00 00 00 00 00";
string replace = "00 00 00 00 00 00 00 43 00 00 00 00 00 00 00 00 00 00
80 BF 00 00 00 00 00 00 80 BF 00 00 00 00 00 00 00 00 00 00 80 3F 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 80 3F 00 00 00 00 00 00 00";
bool k = false;
memory.OpenProcess("HD-Player");
int i2 = 22000000;
IEnumerable<long> source = await memory.AoBScan(text, true, true, "");
_ = "0x" + source.FirstOrDefault().ToString("X");
if (source.Count() != 0)
{
for (int j = 0; j < source.Count(); j++)
{
i2++;
memory.WriteMemory(source.ElementAt(j).ToString("X"),
"bytes", replace, "", (Encoding)null, true);
}
k = true;
}
if (k)
{
Console.Beep(400, 300);
((Control)(object)Sta).Text = "Injected";
}
else
{
((Control)(object)Sta).Text = "Coming Soon!";
Console.Beep(240, 300);
}
if (!isMuted)
{
Console.Beep();
}
}

private async void guna2CustomCheckBox4_Click(object sender, EventArgs e)


{
if (Process.GetProcessesByName("HD-Player").Length == 0)
{
((Control)(object)Sta).Text = "Emulator not found";
Console.Beep(240, 300);
return;
}
((Control)(object)Sta).Text = "Injecting Switch";
string text = "8C 3F 8F C2 F5 3C CD CC CC 3D 06 00 00 00 00 00 00 00 00
00 00 00 00 00 F0 41 00 00 48 42 00 00 00 3F 33 33 13 40 00 00 B0 3F 00 00 80 3F
01";
string replace = "8C 3F 8F C2 F5 3C CD CC CC 3D 06 00 00 00 00 00 FF FF
00 00 00 00 00 00 F0 41 00 00 48 42 00 00 00 3F 33 33 13 40 00 00 B0 3F 00 00 80 3F
01";
bool k = false;
memory.OpenProcess("HD-Player");
int i2 = 22000000;
IEnumerable<long> source = await memory.AoBScan(text, true, true, "");
_ = "0x" + source.FirstOrDefault().ToString("X");
if (source.Count() != 0)
{
for (int j = 0; j < source.Count(); j++)
{
i2++;
memory.WriteMemory(source.ElementAt(j).ToString("X"),
"bytes", replace, "", (Encoding)null, true);
}
k = true;
}
if (k)
{
Console.Beep(400, 300);
((Control)(object)Sta).Text = "SCOPE inject Successed";
}
else
{
((Control)(object)Sta).Text = "SCOPE inject Failed";
Console.Beep(240, 300);
}
if (!isMuted)
{
Console.Beep();
}
}

private async void guna2CustomCheckBox6_Click(object sender, EventArgs e)


{
if (Process.GetProcessesByName("HD-Player").Length == 0)
{
((Control)(object)Sta).Text = "Emulator not found";
Console.Beep(240, 300);
return;
}
((Control)(object)Sta).Text = "Injecting Switch";
string text = "00 00 3F 00 00 80 3E 00 00 00 00 04 00 00 00 00 00 80 3F
00 00 20 41 00 00 34 42 01 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3F
3D 0A 57 3F 9A 99 99 3F 00 00 80 3F 00 00 00 00 00 00 80 3F 00 00 80 3F 00 00 80 3F
00 00 00 00 00 00 00 00 00 00 00 3F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3F
00 00 80 3F 00 00 80 3F";
string replace = "00 00 3C 00 00 F5 3C 00 00 00 00 04 00 00 00 00 00 80
3F 00 00 20 41 00 00 34 42 01 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 80
3F 3D 0A 57 3F 9A 99 99 3F 00 00 80 3F 00 00 00 00 00 00 80 3F 00 00 80 3F 00 00 80
3F 00 00 00 00 00 00 00 00 00 00 00 3F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80
3F 00 00 80 3F 00 00 80 3F";
bool k = false;
memory.OpenProcess("HD-Player");
int i2 = 22000000;
IEnumerable<long> source = await memory.AoBScan(text, true, true, "");
_ = "0x" + source.FirstOrDefault().ToString("X");
if (source.Count() != 0)
{
for (int j = 0; j < source.Count(); j++)
{
i2++;
memory.WriteMemory(source.ElementAt(j).ToString("X"),
"bytes", replace, "", (Encoding)null, true);
}
k = true;
}
if (k)
{
Console.Beep(400, 300);
((Control)(object)Sta).Text = "Switch inject Successed";
}
else
{
((Control)(object)Sta).Text = "Switch inject Failed";
Console.Beep(240, 300);
}
if (!isMuted)
{
Console.Beep();
}
}

private async void guna2CustomCheckBox8_Click(object sender, EventArgs e)


{
if (Process.GetProcessesByName("HD-Player").Length == 0)
{
((Control)(object)Sta).Text = "Emulator not found";
Console.Beep(240, 300);
return;
}
((Control)(object)Sta).Text = "Injecting Switch";
string text = "";
string replace = "";
bool k = false;
memory.OpenProcess("HD-Player");
int i2 = 22000000;
IEnumerable<long> source = await memory.AoBScan(text, true, true, "");
_ = "0x" + source.FirstOrDefault().ToString("X");
if (source.Count() != 0)
{
for (int j = 0; j < source.Count(); j++)
{
i2++;
memory.WriteMemory(source.ElementAt(j).ToString("X"),
"bytes", replace, "", (Encoding)null, true);
}
k = true;
}
if (k)
{
Console.Beep(400, 300);
((Control)(object)Sta).Text = "M-Bullet inject Successed";
}
else
{
((Control)(object)Sta).Text = "Coming Soon!";
Console.Beep(240, 300);
}
if (!isMuted)
{
Console.Beep();
}
}

private void Sideaimbot_Click(object sender, EventArgs e)


{
((Control)(object)aimbotpan).Visible = true;
((Control)(object)locationpan).Visible = false;
((Control)(object)sniperpan).Visible = false;
((Control)(object)otherpan).Visible = false;
((Control)(object)settingspan).Visible = false;
((Control)(object)mobilepan).Visible = false;
((Control)(object)hotkeypan).Visible = false;
((Control)(object)aimbotpan).Location = new Point(230, 61);
((Control)(object)otherpan2).Visible = false;
}

private void sidelocation_Click(object sender, EventArgs e)


{
((Control)(object)aimbotpan).Visible = false;
((Control)(object)locationpan).Visible = true;
((Control)(object)sniperpan).Visible = false;
((Control)(object)otherpan).Visible = false;
((Control)(object)settingspan).Visible = false;
((Control)(object)mobilepan).Visible = false;
((Control)(object)hotkeypan).Visible = false;
((Control)(object)locationpan).Location = new Point(230, 61);
((Control)(object)otherpan2).Visible = false;
}

private void sidesniper_Click(object sender, EventArgs e)


{
((Control)(object)aimbotpan).Visible = false;
((Control)(object)locationpan).Visible = false;
((Control)(object)sniperpan).Visible = true;
((Control)(object)otherpan).Visible = false;
((Control)(object)settingspan).Visible = false;
((Control)(object)mobilepan).Visible = false;
((Control)(object)hotkeypan).Visible = false;
((Control)(object)sniperpan).Location = new Point(230, 61);
((Control)(object)otherpan2).Visible = false;
}

private void sidehotkey_Click(object sender, EventArgs e)


{
((Control)(object)aimbotpan).Visible = false;
((Control)(object)locationpan).Visible = false;
((Control)(object)sniperpan).Visible = false;
((Control)(object)otherpan).Visible = false;
((Control)(object)settingspan).Visible = false;
((Control)(object)mobilepan).Visible = false;
((Control)(object)hotkeypan).Visible = true;
((Control)(object)hotkeypan).Location = new Point(230, 61);
((Control)(object)otherpan2).Visible = false;
}

private void sidemobile_Click(object sender, EventArgs e)


{
((Control)(object)aimbotpan).Visible = false;
((Control)(object)locationpan).Visible = false;
((Control)(object)sniperpan).Visible = false;
((Control)(object)otherpan).Visible = false;
((Control)(object)settingspan).Visible = false;
((Control)(object)mobilepan).Visible = true;
((Control)(object)hotkeypan).Visible = false;
((Control)(object)mobilepan).Location = new Point(230, 61);
((Control)(object)otherpan2).Visible = false;
}

private void sideother_Click(object sender, EventArgs e)


{
((Control)(object)aimbotpan).Visible = false;
((Control)(object)locationpan).Visible = false;
((Control)(object)sniperpan).Visible = false;
((Control)(object)otherpan).Visible = true;
((Control)(object)settingspan).Visible = false;
((Control)(object)mobilepan).Visible = false;
((Control)(object)hotkeypan).Visible = false;
((Control)(object)otherpan).Location = new Point(230, 61);
((Control)(object)otherpan2).Visible = false;
}

private void sidesettings_Click(object sender, EventArgs e)


{
((Control)(object)aimbotpan).Visible = false;
((Control)(object)locationpan).Visible = false;
((Control)(object)sniperpan).Visible = false;
((Control)(object)otherpan).Visible = false;
((Control)(object)settingspan).Visible = true;
((Control)(object)mobilepan).Visible = false;
((Control)(object)hotkeypan).Visible = false;
((Control)(object)settingspan).Location = new Point(230, 61);
((Control)(object)otherpan2).Visible = false;
}

private async void guna2CustomCheckBox7_Click(object sender, EventArgs e)


{
if (Process.GetProcessesByName("HD-Player").Length == 0)
{
((Control)(object)Sta).Text = "Emulator not found";
Console.Beep(240, 300);
return;
}
((Control)(object)Sta).Text = "Injecting No Recoil";
string text = "00 0A 81 EE 10 0A 10 EE 10 8C BD E8 00 00 7A 44 F0 48 2D
E9 10 B0 8D E2 02 8B 2D ED 08 D0 4D E2 00 50 A0 E1 10 1A 08 EE 08 40 95 E5 00 00 54
E3";
string replace = "00 0A 81 EE 10 0A 10 EE 10 8C BD E8 00 00 00 00 F0 48
2D E9 10 B0 8D E2 02 8B 2D ED 08 D0 4D E2 00 50 A0 E1 10 1A 08 EE 08 40 95 E5 00 00
54 E3";
bool k = false;
memory.OpenProcess("HD-Player");
int i2 = 22000000;
IEnumerable<long> source = await memory.AoBScan(text, true, true, "");
_ = "0x" + source.FirstOrDefault().ToString("X");
if (source.Count() != 0)
{
for (int j = 0; j < source.Count(); j++)
{
i2++;
memory.WriteMemory(source.ElementAt(j).ToString("X"),
"bytes", replace, "", (Encoding)null, true);
}
k = true;
}
if (k)
{
Console.Beep(400, 300);
((Control)(object)Sta).Text = "No Recoil inject Successed";
}
else
{
((Control)(object)Sta).Text = "No Recoil inject Failed";
Console.Beep(240, 300);
}
if (!isMuted)
{
Console.Beep();
}
}

private void guna2Button1_Click(object sender, EventArgs e)


{
((Control)(object)hotkey2pan).Visible = true;
}

private async void guna2ToggleSwitch2_CheckedChanged(object sender, EventArgs


e)
{
((Control)(object)Sta).Text = "WAITING TO APPLY";
if (Process.GetProcessesByName("HD-Player").Length == 0)
{
((Control)(object)Sta).Text = "Emulator Not Found!!, Open
Emulator First";
return;
}
int id = Process.GetProcessesByName("HD-Player")[0].Id;
m.OpenProcess(id);
IEnumerable<long> enumerable = await m.AoBScan2("FF FF FF FF FF FF FF
FF 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ?? ?? ?? ?? ?? ?? ??
?? ?? ?? ?? ?? 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 A5 43 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
?? ?? ?? ?? ?? ?? ?? ?? ?? 00 00 00 00 00 00 00 00 00 00 00 00 ?? ?? ?? ?? 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 ?? 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 80 BF ?? ?? ?? ?? 00 00 00 00 00 00 80 BF", writable: true);
if (enumerable.Any())
{
foreach (long item in enumerable)
{
item.ToString("X");
byte[] value = m.FuckedReader((item + 160).ToString("X"),
4L);
m.WriteMemory((item + 108).ToString("X"), "int",
BitConverter.ToInt32(value, 0).ToString());
}
((Control)(object)Sta).Text = "AIMBOT DRAG SUCCESS";
}
else
{
((Control)(object)Sta).Text = "FAILED TO APPLY";
}
}

private void aimbotpan_Paint(object sender, PaintEventArgs e)


{
}

private async void guna2CustomCheckBox18_Click(object sender, EventArgs e)


{
}

private void guna2Button2_Click(object sender, EventArgs e)


{
((Control)(object)otherpan).Visible = false;
((Control)(object)otherpan2).Visible = true;
((Control)(object)otherpan2).Location = new Point(230, 61);
}

private void guna2Button4_Click(object sender, EventArgs e)


{
((Control)(object)otherpan2).Visible = false;
((Control)(object)otherpan).Visible = true;
}

private async void guna2CustomCheckBox15_Click(object sender, EventArgs e)


{
if (Process.GetProcessesByName("HD-Player").Length == 0)
{
((Control)(object)Sta).Text = "Emulator not found";
Console.Beep(240, 300);
return;
}
((Control)(object)Sta).Text = "Injecting...";
string text = "3f ae 47 81 3f 00 1a b7 ee dc 3a 9f ed 30";
string replace = "bf ae 47 81 3f 00 1a b7 ee dc 3a 9f ed 30";
bool k = false;
memory.OpenProcess("HD-Player");
int i2 = 22000000;
IEnumerable<long> source = await memory.AoBScan(text, true, true, "");
_ = "0x" + source.FirstOrDefault().ToString("X");
if (source.Count() != 0)
{
for (int j = 0; j < source.Count(); j++)
{
i2++;
memory.WriteMemory(source.ElementAt(j).ToString("X"),
"bytes", replace, "", (Encoding)null, true);
}
k = true;
}
if (k)
{
Console.Beep(400, 300);
((Control)(object)Sta).Text = "Injected";
}
else
{
((Control)(object)Sta).Text = "Failed";
Console.Beep(240, 300);
}
}

private void guna2Button5_Click(object sender, EventArgs e)


{
((Control)(object)sniperpan2).Visible = false;
((Control)(object)sniperpan).Visible = true;
}

private void guna2Button6_Click(object sender, EventArgs e)


{
((Control)(object)sniperpan).Visible = false;
((Control)(object)sniperpan2).Visible = true;
((Control)(object)sniperpan2).Location = new Point(230, 61);
}

private async void guna2CustomCheckBox21_Click(object sender, EventArgs e)


{
if (Process.GetProcessesByName("HD-Player").Length == 0)
{
((Control)(object)Sta).Text = "Emulator not found";
Console.Beep(240, 300);
return;
}
((Control)(object)Sta).Text = "Injecting AWM LOCATION";
string text = "18 00 00 00 69 00 6E 00 67 00 61 00 6D 00 65 00 2F 00 70
00 69 00 63 00 6B 00 75 00 70 00 2F 00 70 00 69 00 63 00 6B 00 75 00 70 00 5F 00 61
00 77 00 6D 00 00 00 00 00 01 01 01 01";
string replace = "1C 00 00 00 65 00 66 00 66 00 65 00 63 00 74 00 73 00
2F 00 76 00 66 00 78 00 5F 00 69 00 6E 00 67 00 61 00 6D 00 65 00 5F 00 6C 00 61 00
73 00 65 00 72 00 5F 00 72 00 65 00 64 00";
bool k = false;
memory.OpenProcess("HD-Player");
int i2 = 22000000;
IEnumerable<long> source = await memory.AoBScan(text, true, true, "");
_ = "0x" + source.FirstOrDefault().ToString("X");
if (source.Count() != 0)
{
for (int j = 0; j < source.Count(); j++)
{
i2++;
memory.WriteMemory(source.ElementAt(j).ToString("X"),
"bytes", replace, "", (Encoding)null, true);
}
k = true;
}
if (k)
{
Console.Beep(400, 300);
((Control)(object)Sta).Text = "AWM LOCATION inject Successed";
}
else
{
((Control)(object)Sta).Text = "inject Failed";
Console.Beep(240, 300);
}
if (!isMuted)
{
Console.Beep();
}
}

private async void guna2CustomCheckBox20_Click(object sender, EventArgs e)


{
if (Process.GetProcessesByName("HD-Player").Length == 0)
{
((Control)(object)Sta).Text = "Emulator not found";
Console.Beep(240, 300);
return;
}
((Control)(object)Sta).Text = "Injecting M82B LOCATION";
string text = "19 00 00 00 69 00 6E 00 67 00 61 00 6D 00 65 00 2F 00 70
00 69 00 63 00 6B 00 75 00 70 00 2F 00 70 00 69 00 63 00 6B 00 75 00 70 00 5F 00 62
00 6D 00 39";
string replace = "1D 00 00 00 65 00 66 00 66 00 65 00 63 00 74 00 73 00
2F 00 76 00 66 00 78 00 5F 00 69 00 6E 00 61 00 67 00 6D 00 65 00 5F 00 6C 00 61 00
73 00 65 00 72 00 5F 00 73 00 68 00 6F 00 70 00";
bool k = false;
memory.OpenProcess("HD-Player");
int i2 = 22000000;
IEnumerable<long> source = await memory.AoBScan(text, true, true, "");
_ = "0x" + source.FirstOrDefault().ToString("X");
if (source.Count() != 0)
{
for (int j = 0; j < source.Count(); j++)
{
i2++;
memory.WriteMemory(source.ElementAt(j).ToString("X"),
"bytes", replace, "", (Encoding)null, true);
}
k = true;
}
if (k)
{
Console.Beep(400, 300);
((Control)(object)Sta).Text = "M82B LOCATION inject Successed";
}
else
{
((Control)(object)Sta).Text = "inject Failed";
Console.Beep(240, 300);
}
if (!isMuted)
{
Console.Beep();
}
}

private async void guna2CustomCheckBox17_Click(object sender, EventArgs e)


{
if (Process.GetProcessesByName("HD-Player").Length == 0)
{
((Control)(object)Sta).Text = "Emulator not found";
Console.Beep(240, 300);
return;
}
((Control)(object)Sta).Text = "Injecting speed timer";
string text = "01 00 00 00 02 2B 07 3D";
string replace = "01 00 00 00 92 E5 83 3D";
bool k = false;
memory.OpenProcess("HD-Player");
int i2 = 22000000;
IEnumerable<long> source = await memory.AoBScan(text, true, true, "");
_ = "0x" + source.FirstOrDefault().ToString("X");
if (source.Count() != 0)
{
for (int j = 0; j < source.Count(); j++)
{
i2++;
memory.WriteMemory(source.ElementAt(j).ToString("X"),
"bytes", replace, "", (Encoding)null, true);
}
k = true;
}
if (k)
{
Console.Beep(400, 300);
((Control)(object)Sta).Text = "Injected";
}
else
{
((Control)(object)Sta).Text = "Failed";
Console.Beep(240, 300);
}
}

private async void guna2CustomCheckBox10_Click(object sender, EventArgs e)


{
if (Process.GetProcessesByName("HD-Player").Length == 0)
{
((Control)(object)Sta).Text = "Emulator not found";
Console.Beep(240, 300);
return;
}
((Control)(object)Sta).Text = "Injecting ...";
string text = "60 40 CD CC 8C 3F 8F C2 F5 3C CD CC CC 3D 06 00 00 00 00
00 00 00 00 00 00 00 00 00 F0 41 00 00 48 42 00 00 00 3F 33 33 13 40 00 00 B0 3F 00
00 80 3F 01";
string replace = "60 40 CD CC 8C 3F 8F C2 F5 3C CD CC CC 3D 06 00 00 00
00 00 FF FF 00 00 00 00 00 00 F0 41 00 00 48 42 00 00 00 3F 33 33 13 40 00 00 B0 3F
00 00 80 4F 01";
bool k = false;
memory.OpenProcess("HD-Player");
int i2 = 22000000;
IEnumerable<long> source = await memory.AoBScan(text, true, true, "");
_ = "0x" + source.FirstOrDefault().ToString("X");
if (source.Count() != 0)
{
for (int j = 0; j < source.Count(); j++)
{
i2++;
memory.WriteMemory(source.ElementAt(j).ToString("X"),
"bytes", replace, "", (Encoding)null, true);
}
k = true;
}
if (k)
{
Console.Beep(400, 300);
((Control)(object)Sta).Text = "Injected";
}
else
{
((Control)(object)Sta).Text = "Failed";
Console.Beep(240, 300);
}
}

private async void guna2CustomCheckBox11_Click(object sender, EventArgs e)


{
if (Process.GetProcessesByName("HD-Player").Length == 0)
{
((Control)(object)Sta).Text = "Emulator not found";
Console.Beep(240, 300);
return;
}
((Control)(object)Sta).Text = "Turning Off";
string text = "00 00 3C 00 00 F5 3C 00 00 00 00 04 00 00 00 00 00 80 3F
00 00 20 41 00 00 34 42 01 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3F
3D 0A 57 3F 9A 99 99 3F 00 00 80 3F 00 00 00 00 00 00 80 3F 00 00 80 3F 00 00 80 3F
00 00 00 00 00 00 00 00 00 00 00 3F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 3F
00 00 80 3F 00 00 80 3F";
string replace = "00 00 3F 00 00 80 3E 00 00 00 00 04 00 00 00 00 00 80
3F 00 00 20 41 00 00 34 42 01 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 80
3F 3D 0A 57 3F 9A 99 99 3F 00 00 80 3F 00 00 00 00 00 00 80 3F 00 00 80 3F 00 00 80
3F 00 00 00 00 00 00 00 00 00 00 00 3F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80
3F 00 00 80 3F 00 00 80 3F";
bool k = false;
memory.OpenProcess("HD-Player");
int i2 = 22000000;
IEnumerable<long> source = await memory.AoBScan(text, true, true, "");
_ = "0x" + source.FirstOrDefault().ToString("X");
if (source.Count() != 0)
{
for (int j = 0; j < source.Count(); j++)
{
i2++;
memory.WriteMemory(source.ElementAt(j).ToString("X"),
"bytes", replace, "", (Encoding)null, true);
}
k = true;
}
if (k)
{
Console.Beep(400, 300);
((Control)(object)Sta).Text = "Turned Off";
}
else
{
((Control)(object)Sta).Text = "Failed";
Console.Beep(240, 300);
}
}

private void guna2CustomCheckBox22_Click(object sender, EventArgs e)


{
aimbot aimbot2 = new aimbot();
aimbot2.Show();
}

private void guna2CustomCheckBox29_Click(object sender, EventArgs e)


{
//IL_0036: Unknown result type (might be due to invalid IL or missing
references)
//IL_003b: Unknown result type (might be due to invalid IL or missing
references)
//IL_0046: Unknown result type (might be due to invalid IL or missing
references)
//IL_0047: Unknown result type (might be due to invalid IL or missing
references)
//IL_004c: Unknown result type (might be due to invalid IL or missing
references)
//IL_0054: Unknown result type (might be due to invalid IL or missing
references)
//IL_005c: Unknown result type (might be due to invalid IL or missing
references)
//IL_0063: Unknown result type (might be due to invalid IL or missing
references)
//IL_006f: Expected O, but got Unknown
//IL_0070: Expected O, but got Unknown
try
{
if (!isServerRunning)
{
StartHttpServer();
isServerRunning = true;
}
else
{
MessageBox.Show("Server is already running.");
}
string text = "http://" + GetLocalIPAddress() + ":8081";
BarcodeWriter val = new BarcodeWriter
{
Format = (BarcodeFormat)2048,
Options = new EncodingOptions
{
Height = 100,
Width = 100,
Margin = 1,
PureBarcode = true
}
};
Bitmap image = ((BarcodeWriter<Bitmap>)(object)val).Write(text);
((PictureBox)(object)guna2PictureBox3).Image = image;
MessageBox.Show("Server started successfully. Scan the QR Code to
access the panel.");
}
catch (Exception ex)
{
MessageBox.Show("Error: " + ex.Message);
}
}

private void StartHttpServer()


{
if (isServerRunning)
{
MessageBox.Show("Server is already running.");
return;
}
try
{
httpListener = new HttpListener();
httpListener.Prefixes.Add("http://" + GetLocalIPAddress() +
":8081/");
httpListener.Start();
isServerRunning = true;
httpListener.BeginGetContext(ProcessRequest, httpListener);
MessageBox.Show("HTTP Server Started. Scan the QR Code!");
}
catch (Exception ex)
{
MessageBox.Show("Error starting HTTP server: " + ex.Message);
}
}

private void ProcessRequest(IAsyncResult result)


{
try
{
HttpListener httpListener = (HttpListener)result.AsyncState;
HttpListenerContext httpListenerContext =
httpListener.EndGetContext(result);
httpListener.BeginGetContext(ProcessRequest, httpListener);
HttpListenerResponse response = httpListenerContext.Response;
string s = " \r\n<!DOCTYPE html>\r\n<html lang=\"en\">\r\n<head>\
r\n <meta charset=\"UTF-8\">\r\n <meta name=\"viewport\"
content=\"width=device-width, initial-scale=1.0\">\r\n <title>BLACK DEVIL MOBILE
PANEL</title>\r\n <style>\r\n body {\r\n margin: 0;\r\n
background-color: #000; /* Black Background */\r\n color: #fff;\r\n
font-family: 'Bangers', sans-serif;\r\n height: 100vh;\r\n
overflow: hidden;\r\n display: flex;\r\n flex-direction:
column;\r\n align-items: center;\r\n }\r\n #particles-js
{\r\n position: absolute;\r\n top: 0;\r\n left:
0;\r\n width: 100%;\r\n height: 100%;\r\n z-index:
-1;\r\n }\r\n .title {\r\n color: #FF0000; /* RED Title
*/\r\n font-size: 2rem;\r\n text-align: center;\r\n
margin: 10px 0;\r\n font-weight: bold;\r\n text-transform:
uppercase;\r\n animation: fadeInOut 3s infinite; /* Fade In-Out
Animation */\r\n }\r\n @keyframes fadeInOut {\r\n 0%
{ opacity: 0; }\r\n 50% { opacity: 1; }\r\n 100% { opacity:
0; }\r\n }\r\n .button-container {\r\n display: flex;\r\n
flex-direction: column;\r\n align-items: center;\r\n margin:
20px auto;\r\n max-height: 60vh;\r\n overflow-y: auto;\r\n
width: 90%;\r\n }\r\n .custom-button {\r\n background-
color: #000; /* Black Button */\r\n color: #fff;\r\n border:
2px solid rgb(126, 1, 236); /* Purple Border */\r\n padding: 10px;\r\n
margin: 10px 0;\r\n font-size: 1rem;\r\n width: 100%; /* Full
Width for Mobile */\r\n cursor: pointer;\r\n text-transform:
uppercase;\r\n transition: all 0.3s ease;\r\n border-radius:
5px;\r\n text-align: center;\r\n box-sizing: border-box;\r\n
}\r\n .custom-button:hover {\r\n background-color: rgb(126, 1,
236); /* Purple */\r\n color: #000; /* Black Text */\r\n
transform: scale(1.05);\r\n }\r\n .custom-button:active {\r\n
transform: scale(0.95);\r\n }\r\n </style>\r\n</head>\r\n<body>\r\n
<div id=\"particles-js\"></div>\r\n <h1 class=\"title\">BLACK DEVIL PREMIUM
MOBILE PANEL</h1>\r\n <!-- Buttons -->\r\n<div class=\"button-container\">\r\n
<button class=\"custom-button\" onclick=\"sendCommand('AIMBOT DEVIL ++')\">AIMBOT
DEVIL ++</button>\r\n <button class=\"custom-button\"
onclick=\"sendCommand('AIMBOT DRAG LEFT')\">AIMBOT DRAG LEFT</button>\r\n
<button class=\"custom-button\" onclick=\"sendCommand('AIMBOT DRAG RIGHT')\">AIMBOT
DRAG RIGHT</button>\r\n <button class=\"custom-button\"
onclick=\"sendCommand('CHAMS MENU')\">CHAMS MENU</button>\r\n <button
class=\"custom-button\" onclick=\"sendCommand('BLUE CHAMS')\">BLUE CHAMS</button>\
r\n <button class=\"custom-button\" onclick=\"sendCommand('SNIPER
SCOPE')\">SNIPER SCOPE</button>\r\n <button class=\"custom-button\"
onclick=\"sendCommand('SNIPER QUICK SWITCH')\">SNIPER QUICK SWITCH</button>\r\n
<button class=\"custom-button\" onclick=\"sendCommand('STREAM MODE')\">STREAM
MODE</button>\r\n</div>\r\n\r\n <script
src=\"https://cdn.jsdelivr.net/npm/particles.js\"></script>\r\n<script>\r\n
var socket = new WebSocket('ws://{GetLocalIPAddress()}'); // আপন\u09be র সঠ\u09bf ক
IP এখ\u09be ন\u09c7 ব\u09cd যবহ\u09be র কর\u09c1 ন।\r\n\r\nsocket.onopen =
function(event) {\r\n console.log(\"Connection established\");\r\n};\r\n\r\
nsocket.onerror = function(error) {\r\n console.error(\"WebSocket Error: \" +
error);\r\n};\r\n\r\nfunction sendCommand(command) {\r\n if (socket.readyState
=== WebSocket.OPEN) {\r\n socket.send(command);\r\n
console.log(\"Command sent: \" + command);\r\n } else {\r\n
console.error(\"WebSocket connection is not open\");\r\n alert(\"Connection
not open! Please try again.\");\r\n }\r\n}\r\n\r\n\r\n </script>\r\n
<script>\r\n particlesJS(\"particles-js\", {\r\n \"particles\":
{\r\n \"number\": { \"value\": 70, \"density\": { \"enable\":
true, \"value_area\": 800 } },\r\n \"color\":
{ \"value\": \"#7E01EC\" },\r\n \"shape\":
{ \"type\": \"circle\" },\r\n \"opacity\": { \"value\": 0.5 },\r\n
\"size\": { \"value\": 3 },\r\n \"line_linked\": {\r\n
\"enable\": true,\r\n \"distance\": 300,\r\
n \"color\": \"#7E01EC\",\r\n \"opacity\":
0.4,\r\n \"width\": 1.5\r\n },\r\n
\"move\": {\r\n \"enable\": true,\r\
n \"speed\": 2,\r\n \"direction\": \"none\",\
r\n \"random\": false,\r\n \"straight\":
false\r\n }\r\n },\r\n \"interactivity\": {\r\
n \"events\": { \"onhover\": { \"enable\":
true, \"mode\": \"repulse\" } }\r\n },\r\n \"retina_detect\":
true\r\n });\r\n </script>\r\n</body>\r\n</html>";
byte[] bytes = Encoding.UTF8.GetBytes(s);
response.ContentLength64 = bytes.Length;
using Stream stream = response.OutputStream;
stream.Write(bytes, 0, bytes.Length);
}
catch (Exception ex)
{
MessageBox.Show("Error processing request: " + ex.Message);
}
}

private void guna2CustomCheckBox16_Click(object sender, EventArgs e)


{
((Control)(object)Sta).Text = "Coming Soon...";
}

private void guna2CustomCheckBox12_Click(object sender, EventArgs e)


{
isMuted = !isMuted;
((Control)(object)Sta).Text = (isMuted ? "Unmute" : "Mute");
}
private async void guna2CustomCheckBox14_Click(object sender, EventArgs e)
{
if (Process.GetProcessesByName("HD-Player").Length == 0)
{
((Control)(object)Sta).Text = "Emulator not found";
Console.Beep(240, 300);
return;
}
((Control)(object)Sta).Text = "Injecting AWM-Y LOCATION";
string text = "20 00 00 00 69 00 6E 00 67 00 61 00 6D 00 65 00 2F 00 70
00 69 00 63 00 6B 00 75 00 70 00 2F 00 70 00 69 00 63 00 6B 00 75 00 70 00 5F 00 61
00 77 00 6D 00 5F 00 67 00 6F 00 6C 00 64 00";
string replace = "1D 00 00 00 65 00 66 00 66 00 65 00 63 00 74 00 73 00
2F 00 76 00 66 00 78 00 5F 00 69 00 6E 00 61 00 67 00 6D 00 65 00 5F 00 6C 00 61 00
73 00 65 00 72 00 5F 00 73 00 68 00 6F 00 70 00";
bool k = false;
memory.OpenProcess("HD-Player");
int i2 = 22000000;
IEnumerable<long> source = await memory.AoBScan(text, true, true, "");
_ = "0x" + source.FirstOrDefault().ToString("X");
if (source.Count() != 0)
{
for (int j = 0; j < source.Count(); j++)
{
i2++;
memory.WriteMemory(source.ElementAt(j).ToString("X"),
"bytes", replace, "", (Encoding)null, true);
}
k = true;
}
if (k)
{
Console.Beep(400, 300);
((Control)(object)Sta).Text = "Injected";
}
else
{
((Control)(object)Sta).Text = "Failed";
Console.Beep(240, 300);
}
}

private async void guna2CustomCheckBox22_Click_1(object sender, EventArgs e)


{
if (Process.GetProcessesByName("HD-Player").Length == 0)
{
((Control)(object)Sta).Text = "Emulator not found";
Console.Beep(240, 300);
return;
}
((Control)(object)Sta).Text = "Injecting MP40 LOCATION";
string text = "19 00 00 00 69 00 6E 00 67 00 61 00 6D 00 65 00 2F 00 70
00 69 00 63 00 6B 00 75 00 70 00 2F 00 70 00 69 00 63 00 6B 00 75 00 70 00 5F 00 6D
00 70 00 34 00 30 00 00 00 50 00 00";
string replace = "1D 00 00 00 65 00 66 00 66 00 65 00 63 00 74 00 73 00
2F 00 76 00 66 00 78 00 5F 00 69 00 6E 00 67 00 61 00 6D 00 65 00 5F 00 6C 00 61 00
73 00 65 00 72 00 5F 00 72 00 65 00 64";
bool k = false;
memory.OpenProcess("HD-Player");
int i2 = 22000000;
IEnumerable<long> source = await memory.AoBScan(text, true, true, "");
_ = "0x" + source.FirstOrDefault().ToString("X");
if (source.Count() != 0)
{
for (int j = 0; j < source.Count(); j++)
{
i2++;
memory.WriteMemory(source.ElementAt(j).ToString("X"),
"bytes", replace, "", (Encoding)null, true);
}
k = true;
}
if (k)
{
Console.Beep(400, 300);
((Control)(object)Sta).Text = "Injected";
}
else
{
((Control)(object)Sta).Text = "Failed";
Console.Beep(240, 300);
}
}

private async void guna2CustomCheckBox23_Click(object sender, EventArgs e)


{
if (Process.GetProcessesByName("HD-Player").Length == 0)
{
((Control)(object)Sta).Text = "Emulator not found";
Console.Beep(240, 300);
return;
}
((Control)(object)Sta).Text = "Injecting Ammo Location...";
string text = "22 00 00 00 69 00 6E 00 67 00 61 00 6D 00 65 00 2F 00 70
00 69 00 63 00 6B 00 75 00 70 00 2F 00 61 00 6D 00 6D 00 6F 00 2F 00 70 00 69 00 63
00 6B 00 75 00 70 00 5F 00 61 00 6D 00";
string replace = "1C 00 00 00 65 00 66 00 66 00 65 00 63 00 74 00 73 00
2F 00 76 00 66 00 78 00 5F 00 69 00 6E 00 67 00 61 00 6D 00 65 00 5F 00 6C 00 61 00
73 00 65 00 72 00 5F 00 72 00 65 00 64 00";
bool k = false;
memory.OpenProcess("HD-Player");
int i2 = 22000000;
IEnumerable<long> source = await memory.AoBScan(text, true, true, "");
_ = "0x" + source.FirstOrDefault().ToString("X");
if (source.Count() != 0)
{
for (int j = 0; j < source.Count(); j++)
{
i2++;
memory.WriteMemory(source.ElementAt(j).ToString("X"),
"bytes", replace, "", (Encoding)null, true);
}
k = true;
}
if (k)
{
Console.Beep(400, 300);
((Control)(object)Sta).Text = "Injected";
}
else
{
((Control)(object)Sta).Text = "Failed";
Console.Beep(240, 300);
}
}

private async void guna2CustomCheckBox24_Click(object sender, EventArgs e)


{
int id = Process.GetProcessesByName("HD-Player")[0].Id;
memory.OpenProcess(id);
((Control)(object)Sta).Text = "Applying Aimbot Drag Left";
IEnumerable<long> enumerable = await memory.AoBScan(0L,
140737488355327L, "00 00 A5 43 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
?? ?? ?? ?? ?? ?? ?? 00 00 00 00 ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? 00 00 00 00 ?? ?? ?? ?? 00
00 00 00 ?? ?? ?? ?? ?? ?? ?? ?? 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 80 BF", true, true, false, "");
if (enumerable.Any())
{
foreach (long item in enumerable)
{
long num = item + 92;
long num2 = item + 40;
int num3 = memory.ReadMemory<int>(num.ToString("X"), "");
memory.WriteMemory(num2.ToString("X"), "int",
num3.ToString(), "", (Encoding)null, true);
}
((Control)(object)Sta).Text = "Aimbot Drag Left - Applied";
Console.Beep(400, 300);
}
else
{
((Control)(object)Sta).Text = "Failed to apply - Try Again";
}
}

private async void guna2CustomCheckBox19_Click(object sender, EventArgs e)


{
if (Process.GetProcessesByName("HD-Player").Length == 0)
{
((Control)(object)Sta).Text = "Emulator not found";
Console.Beep(240, 300);
return;
}
((Control)(object)Sta).Text = "Injecting...";
string text = "01 00 00 00 02 2B 07 3D ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
?? 00 00 00 00 ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? 00 ?? 00 ?? ?? ?? 00 ?? 00 ??
00 ?? 00 ?? 00 ??";
string replace = "01 00 00 00 02 2B 70 3D ?? ?? ?? ?? ?? ?? ?? ?? ?? ??
?? ?? 00 00 00 00 ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? ?? 00 ?? 00 ?? ?? ?? 00 ?? 00
?? 00 ?? 00 ?? 00 ??";
bool k = false;
memory.OpenProcess("HD-Player");
int i2 = 22000000;
IEnumerable<long> source = await memory.AoBScan(text, true, true, "");
_ = "0x" + source.FirstOrDefault().ToString("X");
if (source.Count() != 0)
{
for (int j = 0; j < source.Count(); j++)
{
i2++;
memory.WriteMemory(source.ElementAt(j).ToString("X"),
"bytes", replace, "", (Encoding)null, true);
}
k = true;
}
if (k)
{
Console.Beep(400, 300);
((Control)(object)Sta).Text = "Injected";
}
else
{
((Control)(object)Sta).Text = "Failed";
Console.Beep(240, 300);
}
}

private async void guna2CustomCheckBox24_Click_1(object sender, EventArgs e)


{
if (Process.GetProcessesByName("HD-Player").Length == 0)
{
((Control)(object)Sta).Text = "Emulator not found";
Console.Beep(240, 300);
return;
}
((Control)(object)Sta).Text = "Injecting...";
string text = "9A 99 19 3F 00 00 80 3E 00 00 00 00 04 00 00 00 00 00 80
3F 00 00 20 41 00 00 34 42 01 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 80
3F CD CC 4C 3F CD CC 8C 3F 00 00 80 3F 00 00 00 00 66 66 66 3F 00 00 80 3F 00 00 80
3F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80
3F 00 00 80 3F 00 00 80 3F 00 00 00 00 01 00 00 00 0A D7 23 3C CD CC CC 3D 9A 99 19
3F 1F 85 6B 3F 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 3F 00 00 00 3F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00";
string replace = "9A 99 19 3F 00 00 80 3E 00 00 00 3C 04 00 00 00 00 00
80 3F 00 00 20 41 00 00 34 42 01 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00
80 3F CD CC 4C 3F CD CC 8C 3F 00 00 80 3F 00 00 00 00 66 66 66 3F 00 00 80 3F 00 00
80 3F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
80 3F 00 00 80 3F 00 00 80 3F 00 00 00 00 01 00 00 00 0A D7 23 3C CD CC CC 3D 9A 99
19 3F 1F 85 6B 3F 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 3F 00 00 00 3F 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00";
bool k = false;
memory.OpenProcess("HD-Player");
int i2 = 22000000;
IEnumerable<long> source = await memory.AoBScan(text, true, true, "");
_ = "0x" + source.FirstOrDefault().ToString("X");
if (source.Count() != 0)
{
for (int j = 0; j < source.Count(); j++)
{
i2++;
memory.WriteMemory(source.ElementAt(j).ToString("X"),
"bytes", replace, "", (Encoding)null, true);
}
k = true;
}
if (k)
{
Console.Beep(400, 300);
((Control)(object)Sta).Text = "Injected";
}
else
{
((Control)(object)Sta).Text = "Failed";
Console.Beep(240, 300);
}
}

private void guna2CustomCheckBox25_Click(object sender, EventArgs e)


{
string username = LOGIN.KeyAuthApp.user_data.username;
if (username.ToLower() == "free")
{
((Control)(object)Sta).Text = "Sorry, Buy Premium to turn OFF!";
return;
}
RPC.DisableDiscordActivity();
((Control)(object)Sta).Text = "Discord Activity Turned Off!";
}

protected override void Dispose(bool disposing)


{
if (disposing && components != null)
{
components.Dispose();
}
base.Dispose(disposing);
}

private void InitializeComponent()


{
//IL_0022: Unknown result type (might be due to invalid IL or missing
references)
//IL_002c: Expected O, but got Unknown
//IL_003e: Unknown result type (might be due to invalid IL or missing
references)
//IL_0048: Expected O, but got Unknown
//IL_0049: Unknown result type (might be due to invalid IL or missing
references)
//IL_0053: Expected O, but got Unknown
//IL_0054: Unknown result type (might be due to invalid IL or missing
references)
//IL_005e: Expected O, but got Unknown
//IL_005f: Unknown result type (might be due to invalid IL or missing
references)
//IL_0069: Expected O, but got Unknown
//IL_006a: Unknown result type (might be due to invalid IL or missing
references)
//IL_0074: Expected O, but got Unknown
//IL_0075: Unknown result type (might be due to invalid IL or missing
references)
//IL_007f: Expected O, but got Unknown
//IL_0080: Unknown result type (might be due to invalid IL or missing
references)
//IL_008a: Expected O, but got Unknown
//IL_008b: Unknown result type (might be due to invalid IL or missing
references)
//IL_0095: Expected O, but got Unknown
//IL_0096: Unknown result type (might be due to invalid IL or missing
references)
//IL_00a0: Expected O, but got Unknown
//IL_00a1: Unknown result type (might be due to invalid IL or missing
references)
//IL_00ab: Expected O, but got Unknown
//IL_00ac: Unknown result type (might be due to invalid IL or missing
references)
//IL_00b6: Expected O, but got Unknown
//IL_00b7: Unknown result type (might be due to invalid IL or missing
references)
//IL_00c1: Expected O, but got Unknown
//IL_00c2: Unknown result type (might be due to invalid IL or missing
references)
//IL_00cc: Expected O, but got Unknown
//IL_00cd: Unknown result type (might be due to invalid IL or missing
references)
//IL_00d7: Expected O, but got Unknown
//IL_00d8: Unknown result type (might be due to invalid IL or missing
references)
//IL_00e2: Expected O, but got Unknown
//IL_00e3: Unknown result type (might be due to invalid IL or missing
references)
//IL_00ed: Expected O, but got Unknown
//IL_00f9: Unknown result type (might be due to invalid IL or missing
references)
//IL_0103: Expected O, but got Unknown
//IL_0104: Unknown result type (might be due to invalid IL or missing
references)
//IL_010e: Expected O, but got Unknown
//IL_011a: Unknown result type (might be due to invalid IL or missing
references)
//IL_0124: Expected O, but got Unknown
//IL_0125: Unknown result type (might be due to invalid IL or missing
references)
//IL_012f: Expected O, but got Unknown
//IL_0130: Unknown result type (might be due to invalid IL or missing
references)
//IL_013a: Expected O, but got Unknown
//IL_0146: Unknown result type (might be due to invalid IL or missing
references)
//IL_0150: Expected O, but got Unknown
//IL_015c: Unknown result type (might be due to invalid IL or missing
references)
//IL_0166: Expected O, but got Unknown
//IL_0167: Unknown result type (might be due to invalid IL or missing
references)
//IL_0171: Expected O, but got Unknown
//IL_0172: Unknown result type (might be due to invalid IL or missing
references)
//IL_017c: Expected O, but got Unknown
//IL_017d: Unknown result type (might be due to invalid IL or missing
references)
//IL_0187: Expected O, but got Unknown
//IL_0188: Unknown result type (might be due to invalid IL or missing
references)
//IL_0192: Expected O, but got Unknown
//IL_0193: Unknown result type (might be due to invalid IL or missing
references)
//IL_019d: Expected O, but got Unknown
//IL_01a9: Unknown result type (might be due to invalid IL or missing
references)
//IL_01b3: Expected O, but got Unknown
//IL_01b4: Unknown result type (might be due to invalid IL or missing
references)
//IL_01be: Expected O, but got Unknown
//IL_01bf: Unknown result type (might be due to invalid IL or missing
references)
//IL_01c9: Expected O, but got Unknown
//IL_01ca: Unknown result type (might be due to invalid IL or missing
references)
//IL_01d4: Expected O, but got Unknown
//IL_01d5: Unknown result type (might be due to invalid IL or missing
references)
//IL_01df: Expected O, but got Unknown
//IL_01e0: Unknown result type (might be due to invalid IL or missing
references)
//IL_01ea: Expected O, but got Unknown
//IL_01eb: Unknown result type (might be due to invalid IL or missing
references)
//IL_01f5: Expected O, but got Unknown
//IL_01f6: Unknown result type (might be due to invalid IL or missing
references)
//IL_0200: Expected O, but got Unknown
//IL_0201: Unknown result type (might be due to invalid IL or missing
references)
//IL_020b: Expected O, but got Unknown
//IL_020c: Unknown result type (might be due to invalid IL or missing
references)
//IL_0216: Expected O, but got Unknown
//IL_0217: Unknown result type (might be due to invalid IL or missing
references)
//IL_0221: Expected O, but got Unknown
//IL_0222: Unknown result type (might be due to invalid IL or missing
references)
//IL_022c: Expected O, but got Unknown
//IL_022d: Unknown result type (might be due to invalid IL or missing
references)
//IL_0237: Expected O, but got Unknown
//IL_0238: Unknown result type (might be due to invalid IL or missing
references)
//IL_0242: Expected O, but got Unknown
//IL_0243: Unknown result type (might be due to invalid IL or missing
references)
//IL_024d: Expected O, but got Unknown
//IL_0259: Unknown result type (might be due to invalid IL or missing
references)
//IL_0263: Expected O, but got Unknown
//IL_0264: Unknown result type (might be due to invalid IL or missing
references)
//IL_026e: Expected O, but got Unknown
//IL_029b: Unknown result type (might be due to invalid IL or missing
references)
//IL_02a5: Expected O, but got Unknown
//IL_02bc: Unknown result type (might be due to invalid IL or missing
references)
//IL_02c6: Expected O, but got Unknown
//IL_02c7: Unknown result type (might be due to invalid IL or missing
references)
//IL_02d1: Expected O, but got Unknown
//IL_02d2: Unknown result type (might be due to invalid IL or missing
references)
//IL_02dc: Expected O, but got Unknown
//IL_02dd: Unknown result type (might be due to invalid IL or missing
references)
//IL_02e7: Expected O, but got Unknown
//IL_02e8: Unknown result type (might be due to invalid IL or missing
references)
//IL_02f2: Expected O, but got Unknown
//IL_02fe: Unknown result type (might be due to invalid IL or missing
references)
//IL_0308: Expected O, but got Unknown
//IL_0314: Unknown result type (might be due to invalid IL or missing
references)
//IL_031e: Expected O, but got Unknown
//IL_031f: Unknown result type (might be due to invalid IL or missing
references)
//IL_0329: Expected O, but got Unknown
//IL_032a: Unknown result type (might be due to invalid IL or missing
references)
//IL_0334: Expected O, but got Unknown
//IL_0335: Unknown result type (might be due to invalid IL or missing
references)
//IL_033f: Expected O, but got Unknown
//IL_0340: Unknown result type (might be due to invalid IL or missing
references)
//IL_034a: Expected O, but got Unknown
//IL_034b: Unknown result type (might be due to invalid IL or missing
references)
//IL_0355: Expected O, but got Unknown
//IL_0356: Unknown result type (might be due to invalid IL or missing
references)
//IL_0360: Expected O, but got Unknown
//IL_0377: Unknown result type (might be due to invalid IL or missing
references)
//IL_0381: Expected O, but got Unknown
//IL_0398: Unknown result type (might be due to invalid IL or missing
references)
//IL_03a2: Expected O, but got Unknown
//IL_03ae: Unknown result type (might be due to invalid IL or missing
references)
//IL_03b8: Expected O, but got Unknown
//IL_03b9: Unknown result type (might be due to invalid IL or missing
references)
//IL_03c3: Expected O, but got Unknown
//IL_03da: Unknown result type (might be due to invalid IL or missing
references)
//IL_03e4: Expected O, but got Unknown
//IL_03f0: Unknown result type (might be due to invalid IL or missing
references)
//IL_03fa: Expected O, but got Unknown
//IL_03fb: Unknown result type (might be due to invalid IL or missing
references)
//IL_0405: Expected O, but got Unknown
//IL_0406: Unknown result type (might be due to invalid IL or missing
references)
//IL_0410: Expected O, but got Unknown
//IL_0411: Unknown result type (might be due to invalid IL or missing
references)
//IL_041b: Expected O, but got Unknown
//IL_041c: Unknown result type (might be due to invalid IL or missing
references)
//IL_0426: Expected O, but got Unknown
//IL_0427: Unknown result type (might be due to invalid IL or missing
references)
//IL_0431: Expected O, but got Unknown
//IL_0453: Unknown result type (might be due to invalid IL or missing
references)
//IL_045d: Expected O, but got Unknown
//IL_045e: Unknown result type (might be due to invalid IL or missing
references)
//IL_0468: Expected O, but got Unknown
//IL_0469: Unknown result type (might be due to invalid IL or missing
references)
//IL_0473: Expected O, but got Unknown
//IL_0474: Unknown result type (might be due to invalid IL or missing
references)
//IL_047e: Expected O, but got Unknown
//IL_048a: Unknown result type (might be due to invalid IL or missing
references)
//IL_0494: Expected O, but got Unknown
//IL_0495: Unknown result type (might be due to invalid IL or missing
references)
//IL_049f: Expected O, but got Unknown
//IL_04cc: Unknown result type (might be due to invalid IL or missing
references)
//IL_04d6: Expected O, but got Unknown
//IL_04d7: Unknown result type (might be due to invalid IL or missing
references)
//IL_04e1: Expected O, but got Unknown
//IL_04e2: Unknown result type (might be due to invalid IL or missing
references)
//IL_04ec: Expected O, but got Unknown
//IL_04ed: Unknown result type (might be due to invalid IL or missing
references)
//IL_04f7: Expected O, but got Unknown
//IL_0519: Unknown result type (might be due to invalid IL or missing
references)
//IL_0523: Expected O, but got Unknown
//IL_0524: Unknown result type (might be due to invalid IL or missing
references)
//IL_052e: Expected O, but got Unknown
//IL_053a: Unknown result type (might be due to invalid IL or missing
references)
//IL_0544: Expected O, but got Unknown
//IL_0545: Unknown result type (might be due to invalid IL or missing
references)
//IL_054f: Expected O, but got Unknown
//IL_0550: Unknown result type (might be due to invalid IL or missing
references)
//IL_055a: Expected O, but got Unknown
//IL_05a8: Unknown result type (might be due to invalid IL or missing
references)
//IL_05b2: Expected O, but got Unknown
//IL_05c9: Unknown result type (might be due to invalid IL or missing
references)
//IL_05d3: Expected O, but got Unknown
//IL_05df: Unknown result type (might be due to invalid IL or missing
references)
//IL_05e9: Expected O, but got Unknown
//IL_05f5: Unknown result type (might be due to invalid IL or missing
references)
//IL_05ff: Expected O, but got Unknown
//IL_060b: Unknown result type (might be due to invalid IL or missing
references)
//IL_0615: Expected O, but got Unknown
//IL_0616: Unknown result type (might be due to invalid IL or missing
references)
//IL_0620: Expected O, but got Unknown
//IL_0621: Unknown result type (might be due to invalid IL or missing
references)
//IL_062b: Expected O, but got Unknown
//IL_062c: Unknown result type (might be due to invalid IL or missing
references)
//IL_0636: Expected O, but got Unknown
//IL_0637: Unknown result type (might be due to invalid IL or missing
references)
//IL_0641: Expected O, but got Unknown
//IL_0642: Unknown result type (might be due to invalid IL or missing
references)
//IL_064c: Expected O, but got Unknown
//IL_064d: Unknown result type (might be due to invalid IL or missing
references)
//IL_0657: Expected O, but got Unknown
//IL_0658: Unknown result type (might be due to invalid IL or missing
references)
//IL_0662: Expected O, but got Unknown
//IL_0663: Unknown result type (might be due to invalid IL or missing
references)
//IL_066d: Expected O, but got Unknown
//IL_0679: Unknown result type (might be due to invalid IL or missing
references)
//IL_0683: Expected O, but got Unknown
//IL_068f: Unknown result type (might be due to invalid IL or missing
references)
//IL_0699: Expected O, but got Unknown
//IL_069a: Unknown result type (might be due to invalid IL or missing
references)
//IL_06a4: Expected O, but got Unknown
//IL_06b0: Unknown result type (might be due to invalid IL or missing
references)
//IL_06ba: Expected O, but got Unknown
//IL_06c6: Unknown result type (might be due to invalid IL or missing
references)
//IL_06d0: Expected O, but got Unknown
//IL_06d1: Unknown result type (might be due to invalid IL or missing
references)
//IL_06db: Expected O, but got Unknown
//IL_06e7: Unknown result type (might be due to invalid IL or missing
references)
//IL_06f1: Expected O, but got Unknown
//IL_06fd: Unknown result type (might be due to invalid IL or missing
references)
//IL_0707: Expected O, but got Unknown
//IL_0708: Unknown result type (might be due to invalid IL or missing
references)
//IL_0712: Expected O, but got Unknown
//IL_071e: Unknown result type (might be due to invalid IL or missing
references)
//IL_0728: Expected O, but got Unknown
//IL_0729: Unknown result type (might be due to invalid IL or missing
references)
//IL_0733: Expected O, but got Unknown
//IL_0734: Unknown result type (might be due to invalid IL or missing
references)
//IL_073e: Expected O, but got Unknown
//IL_073f: Unknown result type (might be due to invalid IL or missing
references)
//IL_0749: Expected O, but got Unknown
//IL_074a: Unknown result type (might be due to invalid IL or missing
references)
//IL_0754: Expected O, but got Unknown
//IL_0755: Unknown result type (might be due to invalid IL or missing
references)
//IL_075f: Expected O, but got Unknown
//IL_0760: Unknown result type (might be due to invalid IL or missing
references)
//IL_076a: Expected O, but got Unknown
//IL_0776: Unknown result type (might be due to invalid IL or missing
references)
//IL_0780: Expected O, but got Unknown
//IL_0781: Unknown result type (might be due to invalid IL or missing
references)
//IL_078b: Expected O, but got Unknown
//IL_078c: Unknown result type (might be due to invalid IL or missing
references)
//IL_0796: Expected O, but got Unknown
//IL_0797: Unknown result type (might be due to invalid IL or missing
references)
//IL_07a1: Expected O, but got Unknown
//IL_07a2: Unknown result type (might be due to invalid IL or missing
references)
//IL_07ac: Expected O, but got Unknown
//IL_07ad: Unknown result type (might be due to invalid IL or missing
references)
//IL_07b7: Expected O, but got Unknown
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new
System.ComponentModel.ComponentResourceManager(typeof(BRUUUH_1._5.MAIN));
this.guna2BorderlessForm1 = new Guna2BorderlessForm(this.components);
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.guna2CheckBox2 = new Guna2CheckBox();
this.guna2CustomCheckBox5 = new Guna2CustomCheckBox();
this.guna2HtmlLabel26 = new Guna2HtmlLabel();
this.guna2HtmlLabel24 = new Guna2HtmlLabel();
this.guna2CustomCheckBox2 = new Guna2CustomCheckBox();
this.guna2CustomCheckBox1 = new Guna2CustomCheckBox();
this.guna2HtmlLabel3 = new Guna2HtmlLabel();
this.guna2HtmlLabel6 = new Guna2HtmlLabel();
this.guna2HtmlLabel2 = new Guna2HtmlLabel();
this.guna2Panel1 = new Guna2Panel();
this.guna2HtmlLabel9 = new Guna2HtmlLabel();
this.Sta = new Guna2HtmlLabel();
this.guna2CirclePictureBox1 = new Guna2CirclePictureBox();
this.guna2PictureBox6 = new Guna2PictureBox();
this.guna2PictureBox2 = new Guna2PictureBox();
this.otherpan = new Guna2Panel();
this.label53 = new System.Windows.Forms.Label();
this.guna2Button2 = new Guna2Button();
this.guna2HtmlLabel30 = new Guna2HtmlLabel();
this.label17 = new System.Windows.Forms.Label();
this.guna2CustomCheckBox17 = new Guna2CustomCheckBox();
this.guna2CustomCheckBox16 = new Guna2CustomCheckBox();
this.guna2CustomCheckBox15 = new Guna2CustomCheckBox();
this.label16 = new System.Windows.Forms.Label();
this.guna2CustomCheckBox8 = new Guna2CustomCheckBox();
this.label3 = new System.Windows.Forms.Label();
this.guna2CustomCheckBox3 = new Guna2CustomCheckBox();
this.guna2HtmlLabel29 = new Guna2HtmlLabel();
this.guna2HtmlLabel28 = new Guna2HtmlLabel();
this.guna2HtmlLabel27 = new Guna2HtmlLabel();
this.guna2HtmlLabel18 = new Guna2HtmlLabel();
this.guna2HtmlLabel8 = new Guna2HtmlLabel();
this.label2 = new System.Windows.Forms.Label();
this.guna2CustomCheckBox7 = new Guna2CustomCheckBox();
this.guna2HtmlLabel4 = new Guna2HtmlLabel();
this.guna2CustomCheckBox6 = new Guna2CustomCheckBox();
this.guna2CustomCheckBox4 = new Guna2CustomCheckBox();
this.guna2HtmlLabel7 = new Guna2HtmlLabel();
this.guna2HtmlLabel5 = new Guna2HtmlLabel();
this.sidepan = new Guna2Panel();
this.guna2HtmlLabel10 = new Guna2HtmlLabel();
this.sidesettings = new Guna2Button();
this.sideother = new Guna2Button();
this.sidemobile = new Guna2Button();
this.sidehotkey = new Guna2Button();
this.sidesniper = new Guna2Button();
this.sidelocation = new Guna2Button();
this.Sideaimbot = new Guna2Button();
this.label5 = new System.Windows.Forms.Label();
this.guna2ContextMenuStrip1 = new Guna2ContextMenuStrip();
this.aimbotpan = new Guna2Panel();
this.label54 = new System.Windows.Forms.Label();
this.label11 = new System.Windows.Forms.Label();
this.label48 = new System.Windows.Forms.Label();
this.label10 = new System.Windows.Forms.Label();
this.c = new Guna2ToggleSwitch();
this.label47 = new System.Windows.Forms.Label();
this.label9 = new System.Windows.Forms.Label();
this.guna2HtmlLabel11 = new Guna2HtmlLabel();
this.guna2HtmlLabel20 = new Guna2HtmlLabel();
this.guna2HtmlLabel21 = new Guna2HtmlLabel();
this.guna2HtmlLabel39 = new Guna2HtmlLabel();
this.guna2HtmlLabel19 = new Guna2HtmlLabel();
this.label46 = new System.Windows.Forms.Label();
this.guna2HtmlLabel12 = new Guna2HtmlLabel();
this.label1 = new System.Windows.Forms.Label();
this.guna2ToggleSwitch2 = new Guna2ToggleSwitch();
this.dragbtndisable = new Guna2ToggleSwitch();
this.guna2ToggleSwitch3 = new Guna2ToggleSwitch();
this.aimbotbtndisable = new Guna2ToggleSwitch();
this.guna2ToggleSwitch1 = new Guna2ToggleSwitch();
this.guna2CustomCheckBox29 = new Guna2CustomCheckBox();
this.locationpan = new Guna2Panel();
this.label8 = new System.Windows.Forms.Label();
this.label7 = new System.Windows.Forms.Label();
this.guna2Button6 = new Guna2Button();
this.label4 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.sniperpan = new Guna2Panel();
this.label12 = new System.Windows.Forms.Label();
this.guna2CustomCheckBox11 = new Guna2CustomCheckBox();
this.guna2CustomCheckBox10 = new Guna2CustomCheckBox();
this.label13 = new System.Windows.Forms.Label();
this.label14 = new System.Windows.Forms.Label();
this.guna2CustomCheckBox24 = new Guna2CustomCheckBox();
this.label15 = new System.Windows.Forms.Label();
this.guna2HtmlLabel23 = new Guna2HtmlLabel();
this.guna2HtmlLabel25 = new Guna2HtmlLabel();
this.guna2HtmlLabel43 = new Guna2HtmlLabel();
this.settingspan = new Guna2Panel();
this.guna2CustomCheckBox13 = new Guna2CustomCheckBox();
this.guna2CustomCheckBox12 = new Guna2CustomCheckBox();
this.label18 = new System.Windows.Forms.Label();
this.label19 = new System.Windows.Forms.Label();
this.label20 = new System.Windows.Forms.Label();
this.guna2HtmlLabel1 = new Guna2HtmlLabel();
this.guna2CustomCheckBox25 = new Guna2CustomCheckBox();
this.guna2HtmlLabel44 = new Guna2HtmlLabel();
this.guna2HtmlLabel13 = new Guna2HtmlLabel();
this.label21 = new System.Windows.Forms.Label();
this.mobilepan = new Guna2Panel();
this.guna2PictureBox3 = new Guna2PictureBox();
this.label22 = new System.Windows.Forms.Label();
this.label23 = new System.Windows.Forms.Label();
this.label24 = new System.Windows.Forms.Label();
this.label25 = new System.Windows.Forms.Label();
this.guna2HtmlLabel15 = new Guna2HtmlLabel();
this.hotkeypan = new Guna2Panel();
this.btnsave = new Guna2Button();
this.guna2Button1 = new Guna2Button();
this.label26 = new System.Windows.Forms.Label();
this.label27 = new System.Windows.Forms.Label();
this.label28 = new System.Windows.Forms.Label();
this.status = new Guna2HtmlLabel();
this.guna2HtmlLabel17 = new Guna2HtmlLabel();
this.label29 = new System.Windows.Forms.Label();
this.hotkey2pan = new Guna2Panel();
this.guna2TextBoxChamsMenu = new Guna2TextBox();
this.guna2TextBoxSniperQuickSwitch = new Guna2TextBox();
this.label45 = new System.Windows.Forms.Label();
this.label42 = new System.Windows.Forms.Label();
this.label44 = new System.Windows.Forms.Label();
this.label39 = new System.Windows.Forms.Label();
this.label41 = new System.Windows.Forms.Label();
this.label32 = new System.Windows.Forms.Label();
this.label38 = new System.Windows.Forms.Label();
this.guna2TextBoxSniperScope = new Guna2TextBox();
this.label31 = new System.Windows.Forms.Label();
this.label43 = new System.Windows.Forms.Label();
this.guna2TextBoxAimbotDrag = new Guna2TextBox();
this.label40 = new System.Windows.Forms.Label();
this.guna2TextBoxAimbotExternal = new Guna2TextBox();
this.label33 = new System.Windows.Forms.Label();
this.guna2HtmlLabel34 = new Guna2HtmlLabel();
this.label30 = new System.Windows.Forms.Label();
this.guna2HtmlLabel35 = new Guna2HtmlLabel();
this.guna2HtmlLabel36 = new Guna2HtmlLabel();
this.guna2HtmlLabel37 = new Guna2HtmlLabel();
this.guna2HtmlLabel38 = new Guna2HtmlLabel();
this.guna2HtmlLabel16 = new Guna2HtmlLabel();
this.guna2CustomCheckBox9 = new Guna2CustomCheckBox();
this.guna2Button3 = new Guna2Button();
this.otherpan2 = new Guna2Panel();
this.guna2HtmlLabel31 = new Guna2HtmlLabel();
this.label37 = new System.Windows.Forms.Label();
this.guna2Button4 = new Guna2Button();
this.label34 = new System.Windows.Forms.Label();
this.guna2CustomCheckBox19 = new Guna2CustomCheckBox();
this.guna2CustomCheckBox18 = new Guna2CustomCheckBox();
this.label36 = new System.Windows.Forms.Label();
this.guna2HtmlLabel33 = new Guna2HtmlLabel();
this.label35 = new System.Windows.Forms.Label();
this.guna2HtmlLabel32 = new Guna2HtmlLabel();
this.sniperpan2 = new Guna2Panel();
this.label49 = new System.Windows.Forms.Label();
this.guna2Button5 = new Guna2Button();
this.label50 = new System.Windows.Forms.Label();
this.guna2CustomCheckBox20 = new Guna2CustomCheckBox();
this.guna2CustomCheckBox21 = new Guna2CustomCheckBox();
this.label51 = new System.Windows.Forms.Label();
this.guna2CustomCheckBox23 = new Guna2CustomCheckBox();
this.guna2CustomCheckBox22 = new Guna2CustomCheckBox();
this.guna2CustomCheckBox14 = new Guna2CustomCheckBox();
this.guna2HtmlLabel40 = new Guna2HtmlLabel();
this.guna2HtmlLabel22 = new Guna2HtmlLabel();
this.guna2HtmlLabel14 = new Guna2HtmlLabel();
this.guna2HtmlLabel41 = new Guna2HtmlLabel();
this.label52 = new System.Windows.Forms.Label();
this.guna2HtmlLabel42 = new Guna2HtmlLabel();
this.guna2PictureBox4 = new Guna2PictureBox();
this.guna2PictureBox1 = new Guna2PictureBox();
this.guna2HtmlLabel45 = new Guna2HtmlLabel();
this.guna2Button7 = new Guna2Button();
this.guna2Button8 = new Guna2Button();
((System.Windows.Forms.Control)
(object)this.guna2Panel1).SuspendLayout();

((System.ComponentModel.ISupportInitialize)this.guna2CirclePictureBox1).BeginInit()
;

((System.ComponentModel.ISupportInitialize)this.guna2PictureBox6).BeginInit();

((System.ComponentModel.ISupportInitialize)this.guna2PictureBox2).BeginInit();
((System.Windows.Forms.Control)(object)this.otherpan).SuspendLayout();
((System.Windows.Forms.Control)(object)this.sidepan).SuspendLayout();
((System.Windows.Forms.Control)(object)this.aimbotpan).SuspendLayout();
((System.Windows.Forms.Control)
(object)this.locationpan).SuspendLayout();
((System.Windows.Forms.Control)(object)this.sniperpan).SuspendLayout();
((System.Windows.Forms.Control)
(object)this.settingspan).SuspendLayout();
((System.Windows.Forms.Control)(object)this.mobilepan).SuspendLayout();

((System.ComponentModel.ISupportInitialize)this.guna2PictureBox3).BeginInit();
((System.Windows.Forms.Control)(object)this.hotkeypan).SuspendLayout();
((System.Windows.Forms.Control)
(object)this.hotkey2pan).SuspendLayout();
((System.Windows.Forms.Control)(object)this.otherpan2).SuspendLayout();
((System.Windows.Forms.Control)
(object)this.sniperpan2).SuspendLayout();

((System.ComponentModel.ISupportInitialize)this.guna2PictureBox4).BeginInit();

((System.ComponentModel.ISupportInitialize)this.guna2PictureBox1).BeginInit();
base.SuspendLayout();
this.guna2BorderlessForm1.AnimateWindow = true;
this.guna2BorderlessForm1.BorderRadius = 15;
this.guna2BorderlessForm1.ContainerControl = this;
this.guna2BorderlessForm1.DockIndicatorTransparencyValue = 1.0;
this.guna2BorderlessForm1.DragStartTransparencyValue = 1.0;
this.guna2BorderlessForm1.ResizeForm = false;
this.guna2BorderlessForm1.ShadowColor = System.Drawing.Color.White;
this.guna2BorderlessForm1.TransparentWhileDrag = true;
this.timer1.Enabled = true;
this.timer1.Interval = 10;
this.timer1.Tick += new System.EventHandler(timer1_Tick);
((System.Windows.Forms.Control)(object)this.guna2CheckBox2).AutoSize =
true;
this.guna2CheckBox2.CheckedState.BorderColor =
System.Drawing.Color.FromArgb(94, 148, 255);
this.guna2CheckBox2.CheckedState.BorderRadius = 0;
this.guna2CheckBox2.CheckedState.BorderThickness = 0;
this.guna2CheckBox2.CheckedState.FillColor = System.Drawing.Color.Lime;
((System.Windows.Forms.Control)(object)this.guna2CheckBox2).Cursor =
System.Windows.Forms.Cursors.Hand;
((System.Windows.Forms.Control)(object)this.guna2CheckBox2).Font = new
System.Drawing.Font("Microsoft Sans Serif", 8.25f);
((System.Windows.Forms.Control)(object)this.guna2CheckBox2).Location =
new System.Drawing.Point(311, 134);
((System.Windows.Forms.Control)(object)this.guna2CheckBox2).Name =
"guna2CheckBox2";
((System.Windows.Forms.Control)(object)this.guna2CheckBox2).Size = new
System.Drawing.Size(15, 14);
((System.Windows.Forms.Control)(object)this.guna2CheckBox2).TabIndex =
28;
this.guna2CheckBox2.UncheckedState.BorderColor =
System.Drawing.Color.FromArgb(125, 137, 149);
this.guna2CheckBox2.UncheckedState.BorderRadius = 0;
this.guna2CheckBox2.UncheckedState.BorderThickness = 0;
this.guna2CheckBox2.UncheckedState.FillColor =
System.Drawing.Color.FromArgb(179, 179, 179);
((System.Windows.Forms.CheckBox)
(object)this.guna2CheckBox2).CheckedChanged += new
System.EventHandler(guna2CheckBox2_CheckedChanged);
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox5).BackColor = System.Drawing.Color.Transparent;
this.guna2CustomCheckBox5.CheckedState.BorderColor =
System.Drawing.Color.White;
this.guna2CustomCheckBox5.CheckedState.BorderRadius = 2;
this.guna2CustomCheckBox5.CheckedState.BorderThickness = 0;
this.guna2CustomCheckBox5.CheckedState.FillColor =
System.Drawing.Color.Gainsboro;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox5).Cursor = System.Windows.Forms.Cursors.Hand;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox5).Location = new System.Drawing.Point(295, 78);
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox5).Name
= "guna2CustomCheckBox5";
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox5).Size
= new System.Drawing.Size(20, 20);
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox5).TabIndex = 69;
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox5).Text
= "guna2CustomCheckBox5";
this.guna2CustomCheckBox5.UncheckedState.BorderColor =
System.Drawing.Color.LightGray;
this.guna2CustomCheckBox5.UncheckedState.BorderRadius = 2;
this.guna2CustomCheckBox5.UncheckedState.BorderThickness = 0;
this.guna2CustomCheckBox5.UncheckedState.FillColor =
System.Drawing.Color.Transparent;
this.guna2CustomCheckBox5.UseTransparentBackground = true;
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox5).Click
+= new System.EventHandler(guna2CustomCheckBox5_Click);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel26).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel26).Font =
new System.Drawing.Font("Microsoft New Tai Lue", 12f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel26).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel26).Location
= new System.Drawing.Point(39, 78);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel26).Name =
"guna2HtmlLabel26";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel26).Size =
new System.Drawing.Size(102, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel26).TabIndex
= 68;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel26).Text =
"Chams Menu";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel24).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel24).Font =
new System.Drawing.Font("Microsoft New Tai Lue", 12f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel24).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel24).Location
= new System.Drawing.Point(39, 132);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel24).Name =
"guna2HtmlLabel24";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel24).Size =
new System.Drawing.Size(105, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel24).TabIndex
= 58;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel24).Text =
"Stream Mode";
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox2).BackColor = System.Drawing.Color.Transparent;
this.guna2CustomCheckBox2.CheckedState.BorderColor =
System.Drawing.Color.White;
this.guna2CustomCheckBox2.CheckedState.BorderRadius = 2;
this.guna2CustomCheckBox2.CheckedState.BorderThickness = 0;
this.guna2CustomCheckBox2.CheckedState.FillColor =
System.Drawing.Color.Gainsboro;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox2).Cursor = System.Windows.Forms.Cursors.Hand;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox2).Location = new System.Drawing.Point(295, 120);
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox2).Name
= "guna2CustomCheckBox2";
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox2).Size
= new System.Drawing.Size(20, 20);
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox2).TabIndex = 69;
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox2).Text
= "guna2redchams";
this.guna2CustomCheckBox2.UncheckedState.BorderColor =
System.Drawing.Color.LightGray;
this.guna2CustomCheckBox2.UncheckedState.BorderRadius = 2;
this.guna2CustomCheckBox2.UncheckedState.BorderThickness = 0;
this.guna2CustomCheckBox2.UncheckedState.FillColor =
System.Drawing.Color.Transparent;
this.guna2CustomCheckBox2.UseTransparentBackground = true;
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox2).Click
+= new System.EventHandler(guna2CustomCheckBox2_Click);
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox1).BackColor = System.Drawing.Color.Transparent;
this.guna2CustomCheckBox1.CheckedState.BorderColor =
System.Drawing.Color.White;
this.guna2CustomCheckBox1.CheckedState.BorderRadius = 2;
this.guna2CustomCheckBox1.CheckedState.BorderThickness = 0;
this.guna2CustomCheckBox1.CheckedState.FillColor =
System.Drawing.Color.Gainsboro;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox1).Cursor = System.Windows.Forms.Cursors.Hand;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox1).Location = new System.Drawing.Point(295, 161);
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox1).Name
= "guna2CustomCheckBox1";
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox1).Size
= new System.Drawing.Size(20, 20);
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox1).TabIndex = 69;
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox1).Text
= "guna2bluechams";
this.guna2CustomCheckBox1.UncheckedState.BorderColor =
System.Drawing.Color.LightGray;
this.guna2CustomCheckBox1.UncheckedState.BorderRadius = 2;
this.guna2CustomCheckBox1.UncheckedState.BorderThickness = 0;
this.guna2CustomCheckBox1.UncheckedState.FillColor =
System.Drawing.Color.Transparent;
this.guna2CustomCheckBox1.UseTransparentBackground = true;
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox1).Click
+= new System.EventHandler(guna2CustomCheckBox1_Click);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel3).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel3).Font = new
System.Drawing.Font("Microsoft New Tai Lue", 12f, System.Drawing.FontStyle.Bold,
System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel3).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel3).Location =
new System.Drawing.Point(39, 117);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel3).Name =
"guna2HtmlLabel3";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel3).Size = new
System.Drawing.Size(87, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel3).TabIndex =
68;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel3).Text =
"Red Chams";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel6).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel6).Font = new
System.Drawing.Font("Microsoft New Tai Lue", 12f, System.Drawing.FontStyle.Bold,
System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel6).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel6).Location =
new System.Drawing.Point(152, 132);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel6).Name =
"guna2HtmlLabel6";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel6).Size = new
System.Drawing.Size(122, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel6).TabIndex =
68;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel6).Text =
"( Ctrl+Alt+Tab )";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel2).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel2).Font = new
System.Drawing.Font("Microsoft New Tai Lue", 12f, System.Drawing.FontStyle.Bold,
System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel2).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel2).Location =
new System.Drawing.Point(39, 158);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel2).Name =
"guna2HtmlLabel2";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel2).Size = new
System.Drawing.Size(92, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel2).TabIndex =
68;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel2).Text =
"Blue Chams";
((System.Windows.Forms.Control)(object)this.guna2Panel1).BackColor =
System.Drawing.Color.Transparent;
this.guna2Panel1.BorderColor = System.Drawing.Color.FromArgb(126, 1,
236);
this.guna2Panel1.BorderRadius = 1;
this.guna2Panel1.BorderThickness = 1;
((System.Windows.Forms.Control)
(object)this.guna2Panel1).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel9);
((System.Windows.Forms.Control)
(object)this.guna2Panel1).Controls.Add((System.Windows.Forms.Control)
(object)this.Sta);
((System.Windows.Forms.Control)
(object)this.guna2Panel1).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2CirclePictureBox1);
this.guna2Panel1.CustomBorderColor = System.Drawing.Color.FromArgb(126,
1, 236);
this.guna2Panel1.CustomBorderThickness = new
System.Windows.Forms.Padding(1);
((System.Windows.Forms.Control)(object)this.guna2Panel1).Location = new
System.Drawing.Point(230, 363);
((System.Windows.Forms.Control)(object)this.guna2Panel1).Name =
"guna2Panel1";
((System.Windows.Forms.Control)(object)this.guna2Panel1).Size = new
System.Drawing.Size(384, 47);
((System.Windows.Forms.Control)(object)this.guna2Panel1).TabIndex =
100;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel9).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel9).Font = new
System.Drawing.Font("Microsoft YaHei", 9.75f, System.Drawing.FontStyle.Bold,
System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel9).ForeColor
= System.Drawing.Color.White;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel9).Location =
new System.Drawing.Point(15, 13);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel9).Name =
"guna2HtmlLabel9";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel9).Size = new
System.Drawing.Size(63, 21);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel9).TabIndex =
2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel9).Text =
"STATUS :";
((System.Windows.Forms.Control)(object)this.Sta).BackColor =
System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.Sta).Font = new
System.Drawing.Font("Microsoft YaHei", 9.75f, System.Drawing.FontStyle.Bold,
System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.Sta).ForeColor =
System.Drawing.Color.White;
((System.Windows.Forms.Control)(object)this.Sta).Location = new
System.Drawing.Point(80, 14);
((System.Windows.Forms.Control)(object)this.Sta).Name = "Sta";
((System.Windows.Forms.Control)(object)this.Sta).Size = new
System.Drawing.Size(205, 21);
((System.Windows.Forms.Control)(object)this.Sta).TabIndex = 2;
((System.Windows.Forms.Control)(object)this.Sta).Text = "BLACK DEVIL
CRACKED BY KHAN AKA MrxTox";
((System.Windows.Forms.Control)
(object)this.guna2CirclePictureBox1).BackColor = System.Drawing.Color.Transparent;
this.guna2CirclePictureBox1.FillColor =
System.Drawing.Color.Transparent;
((System.Windows.Forms.PictureBox)
(object)this.guna2CirclePictureBox1).Image =
(System.Drawing.Image)resources.GetObject("guna2CirclePictureBox1.Image");
this.guna2CirclePictureBox1.ImageRotate = 0f;
((System.Windows.Forms.Control)
(object)this.guna2CirclePictureBox1).Location = new System.Drawing.Point(380, 0);
((System.Windows.Forms.Control)
(object)this.guna2CirclePictureBox1).Name = "guna2CirclePictureBox1";
this.guna2CirclePictureBox1.ShadowDecoration.Mode = (ShadowMode)1;
((System.Windows.Forms.Control)
(object)this.guna2CirclePictureBox1).Size = new System.Drawing.Size(48, 46);
((System.Windows.Forms.PictureBox)
(object)this.guna2CirclePictureBox1).SizeMode =
System.Windows.Forms.PictureBoxSizeMode.Zoom;
((System.Windows.Forms.PictureBox)
(object)this.guna2CirclePictureBox1).TabIndex = 0;
((System.Windows.Forms.PictureBox)
(object)this.guna2CirclePictureBox1).TabStop = false;
this.guna2CirclePictureBox1.UseTransparentBackground = true;
((System.Windows.Forms.Control)(object)this.guna2PictureBox6).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2PictureBox6).Cursor =
System.Windows.Forms.Cursors.Hand;
this.guna2PictureBox6.FillColor = System.Drawing.Color.Transparent;
((System.Windows.Forms.PictureBox)(object)this.guna2PictureBox6).Image
= (System.Drawing.Image)resources.GetObject("guna2PictureBox6.Image");
this.guna2PictureBox6.ImageRotate = 0f;
((System.Windows.Forms.Control)(object)this.guna2PictureBox6).Location
= new System.Drawing.Point(283, 15);
((System.Windows.Forms.Control)(object)this.guna2PictureBox6).Name =
"guna2PictureBox6";
((System.Windows.Forms.Control)(object)this.guna2PictureBox6).Size =
new System.Drawing.Size(44, 43);
((System.Windows.Forms.PictureBox)
(object)this.guna2PictureBox6).SizeMode =
System.Windows.Forms.PictureBoxSizeMode.StretchImage;
((System.Windows.Forms.PictureBox)
(object)this.guna2PictureBox6).TabIndex = 95;
((System.Windows.Forms.PictureBox)
(object)this.guna2PictureBox6).TabStop = false;
this.guna2PictureBox6.UseTransparentBackground = true;
((System.Windows.Forms.Control)(object)this.guna2PictureBox6).Click +=
new System.EventHandler(guna2PictureBox6_Click);
((System.Windows.Forms.Control)(object)this.guna2PictureBox2).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2PictureBox2).Cursor =
System.Windows.Forms.Cursors.Hand;
this.guna2PictureBox2.FillColor = System.Drawing.Color.Transparent;
((System.Windows.Forms.PictureBox)(object)this.guna2PictureBox2).Image
= (System.Drawing.Image)resources.GetObject("guna2PictureBox2.Image");
this.guna2PictureBox2.ImageRotate = 0f;
((System.Windows.Forms.Control)(object)this.guna2PictureBox2).Location
= new System.Drawing.Point(328, 15);
((System.Windows.Forms.Control)(object)this.guna2PictureBox2).Name =
"guna2PictureBox2";
((System.Windows.Forms.Control)(object)this.guna2PictureBox2).Size =
new System.Drawing.Size(44, 43);
((System.Windows.Forms.PictureBox)
(object)this.guna2PictureBox2).SizeMode =
System.Windows.Forms.PictureBoxSizeMode.StretchImage;
((System.Windows.Forms.PictureBox)
(object)this.guna2PictureBox2).TabIndex = 92;
((System.Windows.Forms.PictureBox)
(object)this.guna2PictureBox2).TabStop = false;
this.guna2PictureBox2.UseTransparentBackground = true;
((System.Windows.Forms.Control)(object)this.guna2PictureBox2).Click +=
new System.EventHandler(guna2PictureBox2_Click);
((System.Windows.Forms.Control)(object)this.otherpan).BackColor =
System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)
(object)this.otherpan).Controls.Add(this.label53);
((System.Windows.Forms.Control)
(object)this.otherpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2Button2);
((System.Windows.Forms.Control)
(object)this.otherpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel30);
((System.Windows.Forms.Control)
(object)this.otherpan).Controls.Add(this.label17);
((System.Windows.Forms.Control)
(object)this.otherpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox17);
((System.Windows.Forms.Control)
(object)this.otherpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox16);
((System.Windows.Forms.Control)
(object)this.otherpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox15);
((System.Windows.Forms.Control)
(object)this.otherpan).Controls.Add(this.label16);
((System.Windows.Forms.Control)
(object)this.otherpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox8);
((System.Windows.Forms.Control)
(object)this.otherpan).Controls.Add(this.label3);
((System.Windows.Forms.Control)
(object)this.otherpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox3);
((System.Windows.Forms.Control)
(object)this.otherpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel29);
((System.Windows.Forms.Control)
(object)this.otherpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel28);
((System.Windows.Forms.Control)
(object)this.otherpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel27);
((System.Windows.Forms.Control)
(object)this.otherpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel18);
((System.Windows.Forms.Control)
(object)this.otherpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel8);
((System.Windows.Forms.Control)
(object)this.otherpan).Controls.Add(this.label2);
((System.Windows.Forms.Control)
(object)this.otherpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox7);
((System.Windows.Forms.Control)
(object)this.otherpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel4);
this.otherpan.CustomBorderColor = System.Drawing.Color.FromArgb(126, 1,
236);
this.otherpan.CustomBorderThickness = new
System.Windows.Forms.Padding(1);
((System.Windows.Forms.Control)(object)this.otherpan).Location = new
System.Drawing.Point(1013, 327);
((System.Windows.Forms.Control)(object)this.otherpan).Name =
"otherpan";
((System.Windows.Forms.Control)(object)this.otherpan).Size = new
System.Drawing.Size(384, 260);
((System.Windows.Forms.Control)(object)this.otherpan).TabIndex = 103;
((System.Windows.Forms.Control)(object)this.otherpan).Visible = false;
this.label53.AutoSize = true;
this.label53.Font = new System.Drawing.Font("Microsoft Sans Serif",
11.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
this.label53.ForeColor = System.Drawing.Color.IndianRed;
this.label53.Location = new System.Drawing.Point(284, 18);
this.label53.Name = "label53";
this.label53.Size = new System.Drawing.Size(55, 18);
this.label53.TabIndex = 104;
this.label53.Text = "RISK !";
this.guna2Button2.Animated = true;
this.guna2Button2.AutoRoundedCorners = true;
this.guna2Button2.BorderRadius = 12;
this.guna2Button2.DefaultAutoSize = true;
this.guna2Button2.DisabledState.BorderColor =
System.Drawing.Color.DarkGray;
this.guna2Button2.DisabledState.CustomBorderColor =
System.Drawing.Color.DarkGray;
this.guna2Button2.DisabledState.FillColor =
System.Drawing.Color.FromArgb(169, 169, 169);
this.guna2Button2.DisabledState.ForeColor =
System.Drawing.Color.FromArgb(141, 141, 141);
this.guna2Button2.FillColor = System.Drawing.Color.Indigo;
((System.Windows.Forms.Control)(object)this.guna2Button2).Font = new
System.Drawing.Font("Segoe UI", 9f, System.Drawing.FontStyle.Bold,
System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2Button2).ForeColor =
System.Drawing.Color.White;
this.guna2Button2.IndicateFocus = true;
((System.Windows.Forms.Control)(object)this.guna2Button2).Location =
new System.Drawing.Point(322, 229);
((System.Windows.Forms.Control)(object)this.guna2Button2).Name =
"guna2Button2";
((System.Windows.Forms.Control)(object)this.guna2Button2).Size = new
System.Drawing.Size(58, 27);
((System.Windows.Forms.Control)(object)this.guna2Button2).TabIndex =
103;
((System.Windows.Forms.Control)(object)this.guna2Button2).Text =
"Next";
((System.Windows.Forms.Control)(object)this.guna2Button2).Click += new
System.EventHandler(guna2Button2_Click);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel30).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel30).ForeColor
= System.Drawing.Color.Gray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel30).Location
= new System.Drawing.Point(95, 33);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel30).Name =
"guna2HtmlLabel30";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel30).Size =
new System.Drawing.Size(182, 15);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel30).TabIndex
= 102;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel30).Text =
"Must use on your Bot / Noob account";
this.label17.AutoSize = true;
this.label17.BackColor = System.Drawing.Color.Transparent;
this.label17.Font = new System.Drawing.Font("Microsoft YaHei", 14.25f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
this.label17.ForeColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label17.Location = new System.Drawing.Point(111, 7);
this.label17.Name = "label17";
this.label17.Size = new System.Drawing.Size(153, 26);
this.label17.TabIndex = 63;
this.label17.Text = "OTHER HACKS";
this.guna2CustomCheckBox17.CheckedState.BorderColor =
System.Drawing.Color.White;
this.guna2CustomCheckBox17.CheckedState.BorderRadius = 2;
this.guna2CustomCheckBox17.CheckedState.BorderThickness = 0;
this.guna2CustomCheckBox17.CheckedState.FillColor =
System.Drawing.Color.Gainsboro;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox17).Location = new System.Drawing.Point(287, 234);
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox17).Name
= "guna2CustomCheckBox17";
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox17).Size
= new System.Drawing.Size(20, 20);
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox17).TabIndex = 64;
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox17).Text
= "guna2CustomCheckBox3";
this.guna2CustomCheckBox17.UncheckedState.BorderColor =
System.Drawing.Color.LightGray;
this.guna2CustomCheckBox17.UncheckedState.BorderRadius = 2;
this.guna2CustomCheckBox17.UncheckedState.BorderThickness = 0;
this.guna2CustomCheckBox17.UncheckedState.FillColor =
System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox17).Click += new
System.EventHandler(guna2CustomCheckBox17_Click);
this.guna2CustomCheckBox16.CheckedState.BorderColor =
System.Drawing.Color.White;
this.guna2CustomCheckBox16.CheckedState.BorderRadius = 2;
this.guna2CustomCheckBox16.CheckedState.BorderThickness = 0;
this.guna2CustomCheckBox16.CheckedState.FillColor =
System.Drawing.Color.Gainsboro;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox16).Location = new System.Drawing.Point(287, 203);
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox16).Name
= "guna2CustomCheckBox16";
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox16).Size
= new System.Drawing.Size(20, 20);
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox16).TabIndex = 64;
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox16).Text
= "guna2CustomCheckBox3";
this.guna2CustomCheckBox16.UncheckedState.BorderColor =
System.Drawing.Color.LightGray;
this.guna2CustomCheckBox16.UncheckedState.BorderRadius = 2;
this.guna2CustomCheckBox16.UncheckedState.BorderThickness = 0;
this.guna2CustomCheckBox16.UncheckedState.FillColor =
System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox16).Click += new
System.EventHandler(guna2CustomCheckBox16_Click);
this.guna2CustomCheckBox15.CheckedState.BorderColor =
System.Drawing.Color.White;
this.guna2CustomCheckBox15.CheckedState.BorderRadius = 2;
this.guna2CustomCheckBox15.CheckedState.BorderThickness = 0;
this.guna2CustomCheckBox15.CheckedState.FillColor =
System.Drawing.Color.Gainsboro;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox15).Location = new System.Drawing.Point(287, 169);
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox15).Name
= "guna2CustomCheckBox15";
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox15).Size
= new System.Drawing.Size(20, 20);
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox15).TabIndex = 64;
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox15).Text
= "guna2CustomCheckBox3";
this.guna2CustomCheckBox15.UncheckedState.BorderColor =
System.Drawing.Color.LightGray;
this.guna2CustomCheckBox15.UncheckedState.BorderRadius = 2;
this.guna2CustomCheckBox15.UncheckedState.BorderThickness = 0;
this.guna2CustomCheckBox15.UncheckedState.FillColor =
System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox15).Click += new
System.EventHandler(guna2CustomCheckBox15_Click);
this.label16.AutoSize = true;
this.label16.BackColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label16.Location = new System.Drawing.Point(16, 53);
this.label16.MaximumSize = new System.Drawing.Size(150, 1);
this.label16.Name = "label16";
this.label16.Size = new System.Drawing.Size(148, 1);
this.label16.TabIndex = 101;
this.label16.Text = resources.GetString("label16.Text");
this.guna2CustomCheckBox8.CheckedState.BorderColor =
System.Drawing.Color.White;
this.guna2CustomCheckBox8.CheckedState.BorderRadius = 2;
this.guna2CustomCheckBox8.CheckedState.BorderThickness = 0;
this.guna2CustomCheckBox8.CheckedState.FillColor =
System.Drawing.Color.Gainsboro;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox8).Location = new System.Drawing.Point(287, 99);
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox8).Name
= "guna2CustomCheckBox8";
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox8).Size
= new System.Drawing.Size(20, 20);
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox8).TabIndex = 64;
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox8).Text
= "guna2CustomCheckBox3";
this.guna2CustomCheckBox8.UncheckedState.BorderColor =
System.Drawing.Color.LightGray;
this.guna2CustomCheckBox8.UncheckedState.BorderRadius = 2;
this.guna2CustomCheckBox8.UncheckedState.BorderThickness = 0;
this.guna2CustomCheckBox8.UncheckedState.FillColor =
System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox8).Click
+= new System.EventHandler(guna2CustomCheckBox8_Click);
this.label3.AutoSize = true;
this.label3.BackColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label3.Location = new System.Drawing.Point(219, 53);
this.label3.MaximumSize = new System.Drawing.Size(150, 1);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(148, 1);
this.label3.TabIndex = 101;
this.label3.Text = resources.GetString("label3.Text");
this.guna2CustomCheckBox3.CheckedState.BorderColor =
System.Drawing.Color.White;
this.guna2CustomCheckBox3.CheckedState.BorderRadius = 2;
this.guna2CustomCheckBox3.CheckedState.BorderThickness = 0;
this.guna2CustomCheckBox3.CheckedState.FillColor =
System.Drawing.Color.Gainsboro;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox3).Location = new System.Drawing.Point(287, 67);
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox3).Name
= "guna2CustomCheckBox3";
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox3).Size
= new System.Drawing.Size(20, 20);
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox3).TabIndex = 64;
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox3).Text
= "guna2CustomCheckBox3";
this.guna2CustomCheckBox3.UncheckedState.BorderColor =
System.Drawing.Color.LightGray;
this.guna2CustomCheckBox3.UncheckedState.BorderRadius = 2;
this.guna2CustomCheckBox3.UncheckedState.BorderThickness = 0;
this.guna2CustomCheckBox3.UncheckedState.FillColor =
System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox3).Click
+= new System.EventHandler(guna2CustomCheckBox3_Click);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel29).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel29).Font =
new System.Drawing.Font("Microsoft New Tai Lue", 12f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel29).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel29).Location
= new System.Drawing.Point(36, 233);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel29).Name =
"guna2HtmlLabel29";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel29).Size =
new System.Drawing.Size(156, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel29).TabIndex
= 2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel29).Text =
"SPEED TIME TRAVEL";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel28).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel28).Font =
new System.Drawing.Font("Microsoft New Tai Lue", 12f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel28).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel28).Location
= new System.Drawing.Point(36, 201);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel28).Name =
"guna2HtmlLabel28";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel28).Size =
new System.Drawing.Size(54, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel28).TabIndex
= 2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel28).Text =
"Car Fly";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel27).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel27).Font =
new System.Drawing.Font("Microsoft New Tai Lue", 12f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel27).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel27).Location
= new System.Drawing.Point(36, 167);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel27).Name =
"guna2HtmlLabel27";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel27).Size =
new System.Drawing.Size(116, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel27).TabIndex
= 2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel27).Text =
"Wallhack Legit";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel18).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel18).Font =
new System.Drawing.Font("Microsoft New Tai Lue", 12f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel18).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel18).Location
= new System.Drawing.Point(36, 132);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel18).Name =
"guna2HtmlLabel18";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel18).Size =
new System.Drawing.Size(77, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel18).TabIndex
= 2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel18).Text =
"No Recoil";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel8).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel8).Font = new
System.Drawing.Font("Microsoft New Tai Lue", 12f, System.Drawing.FontStyle.Bold,
System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel8).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel8).Location =
new System.Drawing.Point(36, 99);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel8).Name =
"guna2HtmlLabel8";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel8).Size = new
System.Drawing.Size(123, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel8).TabIndex =
2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel8).Text =
"Magic Bullet V8";
this.label2.AutoSize = true;
this.label2.BackColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label2.Location = new System.Drawing.Point(116, 53);
this.label2.MaximumSize = new System.Drawing.Size(150, 1);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(148, 1);
this.label2.TabIndex = 101;
this.label2.Text = resources.GetString("label2.Text");
this.guna2CustomCheckBox7.CheckedState.BorderColor =
System.Drawing.Color.White;
this.guna2CustomCheckBox7.CheckedState.BorderRadius = 2;
this.guna2CustomCheckBox7.CheckedState.BorderThickness = 0;
this.guna2CustomCheckBox7.CheckedState.FillColor =
System.Drawing.Color.Gainsboro;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox7).Location = new System.Drawing.Point(287, 135);
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox7).Name
= "guna2CustomCheckBox7";
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox7).Size
= new System.Drawing.Size(20, 20);
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox7).TabIndex = 64;
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox7).Text
= "guna2CustomCheckBox3";
this.guna2CustomCheckBox7.UncheckedState.BorderColor =
System.Drawing.Color.LightGray;
this.guna2CustomCheckBox7.UncheckedState.BorderRadius = 2;
this.guna2CustomCheckBox7.UncheckedState.BorderThickness = 0;
this.guna2CustomCheckBox7.UncheckedState.FillColor =
System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox7).Click
+= new System.EventHandler(guna2CustomCheckBox7_Click);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel4).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel4).Font = new
System.Drawing.Font("Microsoft New Tai Lue", 12f, System.Drawing.FontStyle.Bold,
System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel4).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel4).Location =
new System.Drawing.Point(36, 67);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel4).Name =
"guna2HtmlLabel4";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel4).Size = new
System.Drawing.Size(99, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel4).TabIndex =
2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel4).Text =
"Fast Landing";
this.guna2CustomCheckBox6.CheckedState.BorderColor =
System.Drawing.Color.White;
this.guna2CustomCheckBox6.CheckedState.BorderRadius = 2;
this.guna2CustomCheckBox6.CheckedState.BorderThickness = 0;
this.guna2CustomCheckBox6.CheckedState.FillColor =
System.Drawing.Color.Gainsboro;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox6).Location = new System.Drawing.Point(296, 109);
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox6).Name
= "guna2CustomCheckBox6";
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox6).Size
= new System.Drawing.Size(20, 20);
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox6).TabIndex = 64;
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox6).Text
= "guna2CustomCheckBox3";
this.guna2CustomCheckBox6.UncheckedState.BorderColor =
System.Drawing.Color.LightGray;
this.guna2CustomCheckBox6.UncheckedState.BorderRadius = 2;
this.guna2CustomCheckBox6.UncheckedState.BorderThickness = 0;
this.guna2CustomCheckBox6.UncheckedState.FillColor =
System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox6).Click
+= new System.EventHandler(guna2CustomCheckBox6_Click);
this.guna2CustomCheckBox4.CheckedState.BorderColor =
System.Drawing.Color.White;
this.guna2CustomCheckBox4.CheckedState.BorderRadius = 2;
this.guna2CustomCheckBox4.CheckedState.BorderThickness = 0;
this.guna2CustomCheckBox4.CheckedState.FillColor =
System.Drawing.Color.Gainsboro;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox4).Location = new System.Drawing.Point(296, 73);
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox4).Name
= "guna2CustomCheckBox4";
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox4).Size
= new System.Drawing.Size(20, 20);
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox4).TabIndex = 64;
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox4).Text
= "guna2CustomCheckBox3";
this.guna2CustomCheckBox4.UncheckedState.BorderColor =
System.Drawing.Color.LightGray;
this.guna2CustomCheckBox4.UncheckedState.BorderRadius = 2;
this.guna2CustomCheckBox4.UncheckedState.BorderThickness = 0;
this.guna2CustomCheckBox4.UncheckedState.FillColor =
System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox4).Click
+= new System.EventHandler(guna2CustomCheckBox4_Click);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel7).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel7).Font = new
System.Drawing.Font("Microsoft New Tai Lue", 12f, System.Drawing.FontStyle.Bold,
System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel7).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel7).Location =
new System.Drawing.Point(38, 109);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel7).Name =
"guna2HtmlLabel7";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel7).Size = new
System.Drawing.Size(177, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel7).TabIndex =
2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel7).Text =
"SNIPER QUICK SWITCH";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel5).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel5).Font = new
System.Drawing.Font("Microsoft New Tai Lue", 12f, System.Drawing.FontStyle.Bold,
System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel5).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel5).Location =
new System.Drawing.Point(38, 73);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel5).Name =
"guna2HtmlLabel5";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel5).Size = new
System.Drawing.Size(179, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel5).TabIndex =
2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel5).Text =
"SNIPER AIMBOT SCOPE";
((System.Windows.Forms.Control)(object)this.sidepan).BackColor =
System.Drawing.SystemColors.ActiveCaptionText;
((System.Windows.Forms.Control)
(object)this.sidepan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel10);
((System.Windows.Forms.Control)
(object)this.sidepan).Controls.Add((System.Windows.Forms.Control)
(object)this.sidesettings);
((System.Windows.Forms.Control)
(object)this.sidepan).Controls.Add((System.Windows.Forms.Control)
(object)this.sideother);
((System.Windows.Forms.Control)
(object)this.sidepan).Controls.Add((System.Windows.Forms.Control)
(object)this.sidemobile);
((System.Windows.Forms.Control)
(object)this.sidepan).Controls.Add((System.Windows.Forms.Control)
(object)this.sidehotkey);
((System.Windows.Forms.Control)
(object)this.sidepan).Controls.Add((System.Windows.Forms.Control)
(object)this.sidesniper);
((System.Windows.Forms.Control)
(object)this.sidepan).Controls.Add((System.Windows.Forms.Control)
(object)this.sidelocation);
((System.Windows.Forms.Control)
(object)this.sidepan).Controls.Add((System.Windows.Forms.Control)
(object)this.Sideaimbot);
((System.Windows.Forms.Control)
(object)this.sidepan).Controls.Add(this.label5);
this.sidepan.CustomBorderColor = System.Drawing.Color.FromArgb(126, 1,
236);
this.sidepan.CustomBorderThickness = new
System.Windows.Forms.Padding(1);
this.sidepan.FillColor = System.Drawing.Color.Black;
((System.Windows.Forms.Control)(object)this.sidepan).Location = new
System.Drawing.Point(9, 41);
((System.Windows.Forms.Control)(object)this.sidepan).Name = "sidepan";
((System.Windows.Forms.Control)(object)this.sidepan).Size = new
System.Drawing.Size(190, 412);
((System.Windows.Forms.Control)(object)this.sidepan).TabIndex = 104;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel10).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel10).Font =
new System.Drawing.Font("Microsoft YaHei", 14.25f, System.Drawing.FontStyle.Bold,
System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel10).ForeColor
= System.Drawing.Color.White;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel10).Location
= new System.Drawing.Point(64, 6);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel10).Name =
"guna2HtmlLabel10";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel10).Size =
new System.Drawing.Size(65, 28);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel10).TabIndex
= 2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel10).Text =
"MENU";
this.sidesettings.Animated = true;
((System.Windows.Forms.Control)(object)this.sidesettings).BackColor =
System.Drawing.Color.Transparent;
this.sidesettings.BorderColor = System.Drawing.Color.FromArgb(126, 1,
236);
this.sidesettings.BorderThickness = 1;
this.sidesettings.DisabledState.BorderColor =
System.Drawing.Color.DarkGray;
this.sidesettings.DisabledState.CustomBorderColor =
System.Drawing.Color.DarkGray;
this.sidesettings.DisabledState.FillColor =
System.Drawing.Color.FromArgb(169, 169, 169);
this.sidesettings.DisabledState.ForeColor =
System.Drawing.Color.FromArgb(141, 141, 141);
this.sidesettings.FillColor = System.Drawing.Color.Transparent;
this.sidesettings.FocusedColor = System.Drawing.Color.WhiteSmoke;
((System.Windows.Forms.Control)(object)this.sidesettings).Font = new
System.Drawing.Font("Verdana", 9.75f, System.Drawing.FontStyle.Bold);
((System.Windows.Forms.Control)(object)this.sidesettings).ForeColor =
System.Drawing.Color.White;
this.sidesettings.HoverState.BorderColor = System.Drawing.Color.White;
this.sidesettings.HoverState.FillColor =
System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.sidesettings).Location =
new System.Drawing.Point(0, 365);
((System.Windows.Forms.Control)(object)this.sidesettings).Name =
"sidesettings";
this.sidesettings.PressedColor = System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.sidesettings).Size = new
System.Drawing.Size(190, 37);
((System.Windows.Forms.Control)(object)this.sidesettings).TabIndex =
102;
((System.Windows.Forms.Control)(object)this.sidesettings).Text =
"SETTINGS";
this.sidesettings.UseTransparentBackground = true;
((System.Windows.Forms.Control)(object)this.sidesettings).Click += new
System.EventHandler(sidesettings_Click);
this.sideother.Animated = true;
this.sideother.BorderColor = System.Drawing.Color.FromArgb(126, 1,
236);
this.sideother.BorderThickness = 1;
this.sideother.DisabledState.BorderColor =
System.Drawing.Color.DarkGray;
this.sideother.DisabledState.CustomBorderColor =
System.Drawing.Color.DarkGray;
this.sideother.DisabledState.FillColor =
System.Drawing.Color.FromArgb(169, 169, 169);
this.sideother.DisabledState.ForeColor =
System.Drawing.Color.FromArgb(141, 141, 141);
this.sideother.FillColor = System.Drawing.Color.Transparent;
this.sideother.FocusedColor = System.Drawing.Color.WhiteSmoke;
((System.Windows.Forms.Control)(object)this.sideother).Font = new
System.Drawing.Font("Verdana", 9.75f, System.Drawing.FontStyle.Bold);
((System.Windows.Forms.Control)(object)this.sideother).ForeColor =
System.Drawing.Color.White;
this.sideother.HoverState.BorderColor = System.Drawing.Color.White;
this.sideother.HoverState.FillColor = System.Drawing.Color.Transparent;
this.sideother.IndicateFocus = true;
((System.Windows.Forms.Control)(object)this.sideother).Location = new
System.Drawing.Point(0, 309);
((System.Windows.Forms.Control)(object)this.sideother).Name =
"sideother";
this.sideother.PressedColor = System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.sideother).Size = new
System.Drawing.Size(190, 35);
((System.Windows.Forms.Control)(object)this.sideother).TabIndex = 102;
((System.Windows.Forms.Control)(object)this.sideother).Text = "OTHER
HACKS";
((System.Windows.Forms.Control)(object)this.sideother).Click += new
System.EventHandler(sideother_Click);
this.sidemobile.Animated = true;
this.sidemobile.BorderColor = System.Drawing.Color.FromArgb(126, 1,
236);
this.sidemobile.BorderThickness = 1;
this.sidemobile.DisabledState.BorderColor =
System.Drawing.Color.DarkGray;
this.sidemobile.DisabledState.CustomBorderColor =
System.Drawing.Color.DarkGray;
this.sidemobile.DisabledState.FillColor =
System.Drawing.Color.FromArgb(169, 169, 169);
this.sidemobile.DisabledState.ForeColor =
System.Drawing.Color.FromArgb(141, 141, 141);
this.sidemobile.FillColor = System.Drawing.Color.Transparent;
this.sidemobile.FocusedColor = System.Drawing.Color.WhiteSmoke;
((System.Windows.Forms.Control)(object)this.sidemobile).Font = new
System.Drawing.Font("Verdana", 9.75f, System.Drawing.FontStyle.Bold);
((System.Windows.Forms.Control)(object)this.sidemobile).ForeColor =
System.Drawing.Color.White;
this.sidemobile.HoverState.BorderColor = System.Drawing.Color.White;
this.sidemobile.HoverState.FillColor =
System.Drawing.Color.Transparent;
this.sidemobile.IndicateFocus = true;
((System.Windows.Forms.Control)(object)this.sidemobile).Location = new
System.Drawing.Point(0, 257);
((System.Windows.Forms.Control)(object)this.sidemobile).Name =
"sidemobile";
this.sidemobile.PressedColor = System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.sidemobile).Size = new
System.Drawing.Size(190, 35);
((System.Windows.Forms.Control)(object)this.sidemobile).TabIndex = 102;
((System.Windows.Forms.Control)(object)this.sidemobile).Text = "MOBILE
CONTROL";
((System.Windows.Forms.Control)(object)this.sidemobile).Click += new
System.EventHandler(sidemobile_Click);
this.sidehotkey.Animated = true;
this.sidehotkey.BorderColor = System.Drawing.Color.FromArgb(126, 1,
236);
this.sidehotkey.BorderThickness = 1;
this.sidehotkey.DisabledState.BorderColor =
System.Drawing.Color.DarkGray;
this.sidehotkey.DisabledState.CustomBorderColor =
System.Drawing.Color.DarkGray;
this.sidehotkey.DisabledState.FillColor =
System.Drawing.Color.FromArgb(169, 169, 169);
this.sidehotkey.DisabledState.ForeColor =
System.Drawing.Color.FromArgb(141, 141, 141);
this.sidehotkey.FillColor = System.Drawing.Color.Transparent;
this.sidehotkey.FocusedColor = System.Drawing.Color.WhiteSmoke;
((System.Windows.Forms.Control)(object)this.sidehotkey).Font = new
System.Drawing.Font("Verdana", 9.75f, System.Drawing.FontStyle.Bold);
((System.Windows.Forms.Control)(object)this.sidehotkey).ForeColor =
System.Drawing.Color.White;
this.sidehotkey.HoverState.BorderColor = System.Drawing.Color.White;
this.sidehotkey.HoverState.FillColor =
System.Drawing.Color.Transparent;
this.sidehotkey.IndicateFocus = true;
((System.Windows.Forms.Control)(object)this.sidehotkey).Location = new
System.Drawing.Point(0, 204);
((System.Windows.Forms.Control)(object)this.sidehotkey).Name =
"sidehotkey";
this.sidehotkey.PressedColor = System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.sidehotkey).Size = new
System.Drawing.Size(190, 35);
((System.Windows.Forms.Control)(object)this.sidehotkey).TabIndex = 102;
((System.Windows.Forms.Control)(object)this.sidehotkey).Text = "HOT
KEY";
((System.Windows.Forms.Control)(object)this.sidehotkey).Click += new
System.EventHandler(sidehotkey_Click);
this.sidesniper.Animated = true;
this.sidesniper.BorderColor = System.Drawing.Color.FromArgb(126, 1,
236);
this.sidesniper.BorderThickness = 1;
this.sidesniper.DisabledState.BorderColor =
System.Drawing.Color.DarkGray;
this.sidesniper.DisabledState.CustomBorderColor =
System.Drawing.Color.DarkGray;
this.sidesniper.DisabledState.FillColor =
System.Drawing.Color.FromArgb(169, 169, 169);
this.sidesniper.DisabledState.ForeColor =
System.Drawing.Color.FromArgb(141, 141, 141);
this.sidesniper.FillColor = System.Drawing.Color.Transparent;
this.sidesniper.FocusedColor = System.Drawing.Color.WhiteSmoke;
((System.Windows.Forms.Control)(object)this.sidesniper).Font = new
System.Drawing.Font("Verdana", 9.75f, System.Drawing.FontStyle.Bold);
((System.Windows.Forms.Control)(object)this.sidesniper).ForeColor =
System.Drawing.Color.White;
this.sidesniper.HoverState.BorderColor = System.Drawing.Color.White;
this.sidesniper.HoverState.FillColor =
System.Drawing.Color.Transparent;
this.sidesniper.IndicateFocus = true;
((System.Windows.Forms.Control)(object)this.sidesniper).Location = new
System.Drawing.Point(0, 153);
((System.Windows.Forms.Control)(object)this.sidesniper).Name =
"sidesniper";
this.sidesniper.PressedColor = System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.sidesniper).Size = new
System.Drawing.Size(190, 35);
((System.Windows.Forms.Control)(object)this.sidesniper).TabIndex = 102;
((System.Windows.Forms.Control)(object)this.sidesniper).Text =
"SNIPER";
((System.Windows.Forms.Control)(object)this.sidesniper).Click += new
System.EventHandler(sidesniper_Click);
this.sidelocation.Animated = true;
this.sidelocation.BorderColor = System.Drawing.Color.FromArgb(126, 1,
236);
this.sidelocation.BorderThickness = 1;
this.sidelocation.DisabledState.BorderColor =
System.Drawing.Color.DarkGray;
this.sidelocation.DisabledState.CustomBorderColor =
System.Drawing.Color.DarkGray;
this.sidelocation.DisabledState.FillColor =
System.Drawing.Color.FromArgb(169, 169, 169);
this.sidelocation.DisabledState.ForeColor =
System.Drawing.Color.FromArgb(141, 141, 141);
this.sidelocation.FillColor = System.Drawing.Color.Transparent;
this.sidelocation.FocusedColor = System.Drawing.Color.WhiteSmoke;
((System.Windows.Forms.Control)(object)this.sidelocation).Font = new
System.Drawing.Font("Verdana", 9.75f, System.Drawing.FontStyle.Bold);
((System.Windows.Forms.Control)(object)this.sidelocation).ForeColor =
System.Drawing.Color.White;
this.sidelocation.HoverState.BorderColor = System.Drawing.Color.White;
this.sidelocation.HoverState.FillColor =
System.Drawing.Color.Transparent;
this.sidelocation.IndicateFocus = true;
((System.Windows.Forms.Control)(object)this.sidelocation).Location =
new System.Drawing.Point(0, 103);
((System.Windows.Forms.Control)(object)this.sidelocation).Name =
"sidelocation";
this.sidelocation.PressedColor = System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.sidelocation).Size = new
System.Drawing.Size(190, 35);
((System.Windows.Forms.Control)(object)this.sidelocation).TabIndex =
102;
((System.Windows.Forms.Control)(object)this.sidelocation).Text =
"LOCATION";
((System.Windows.Forms.Control)(object)this.sidelocation).Click += new
System.EventHandler(sidelocation_Click);
this.Sideaimbot.Animated = true;
this.Sideaimbot.BorderColor = System.Drawing.Color.FromArgb(126, 1,
236);
this.Sideaimbot.BorderThickness = 1;
this.Sideaimbot.CheckedState.BorderColor = System.Drawing.Color.White;
this.Sideaimbot.CheckedState.FillColor = System.Drawing.Color.White;
this.Sideaimbot.CheckedState.Font = new System.Drawing.Font("Microsoft
Sans Serif", 8.25f);
this.Sideaimbot.CheckedState.ForeColor = System.Drawing.Color.Black;
this.Sideaimbot.DisabledState.BorderColor =
System.Drawing.Color.DarkGray;
this.Sideaimbot.DisabledState.CustomBorderColor =
System.Drawing.Color.DarkGray;
this.Sideaimbot.DisabledState.FillColor =
System.Drawing.Color.FromArgb(169, 169, 169);
this.Sideaimbot.DisabledState.ForeColor =
System.Drawing.Color.FromArgb(141, 141, 141);
this.Sideaimbot.FillColor = System.Drawing.Color.Transparent;
this.Sideaimbot.FocusedColor = System.Drawing.Color.WhiteSmoke;
((System.Windows.Forms.Control)(object)this.Sideaimbot).Font = new
System.Drawing.Font("Verdana", 9.75f, System.Drawing.FontStyle.Bold);
((System.Windows.Forms.Control)(object)this.Sideaimbot).ForeColor =
System.Drawing.Color.White;
this.Sideaimbot.HoverState.BorderColor = System.Drawing.Color.White;
this.Sideaimbot.IndicateFocus = true;
((System.Windows.Forms.Control)(object)this.Sideaimbot).Location = new
System.Drawing.Point(0, 50);
((System.Windows.Forms.Control)(object)this.Sideaimbot).Name =
"Sideaimbot";
this.Sideaimbot.PressedColor = System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.Sideaimbot).Size = new
System.Drawing.Size(190, 35);
((System.Windows.Forms.Control)(object)this.Sideaimbot).TabIndex = 102;
((System.Windows.Forms.Control)(object)this.Sideaimbot).Text =
"AIMBOT";
((System.Windows.Forms.Control)(object)this.Sideaimbot).Click += new
System.EventHandler(Sideaimbot_Click);
this.label5.AutoSize = true;
this.label5.BackColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label5.Location = new System.Drawing.Point(19, 35);
this.label5.MaximumSize = new System.Drawing.Size(150, 1);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(148, 1);
this.label5.TabIndex = 101;
this.label5.Text = "-----------------------------------------------";
((System.Windows.Forms.Control)
(object)this.guna2ContextMenuStrip1).Name = "guna2ContextMenuStrip1";
this.guna2ContextMenuStrip1.RenderStyle.ArrowColor =
System.Drawing.Color.FromArgb(151, 143, 255);
this.guna2ContextMenuStrip1.RenderStyle.BorderColor =
System.Drawing.Color.Gainsboro;
this.guna2ContextMenuStrip1.RenderStyle.ColorTable = null;
((System.Windows.Forms.ToolStripProfessionalRenderer)
(object)this.guna2ContextMenuStrip1.RenderStyle).RoundedEdges = true;
this.guna2ContextMenuStrip1.RenderStyle.SelectionArrowColor =
System.Drawing.Color.White;
this.guna2ContextMenuStrip1.RenderStyle.SelectionBackColor =
System.Drawing.Color.FromArgb(100, 88, 255);
this.guna2ContextMenuStrip1.RenderStyle.SelectionForeColor =
System.Drawing.Color.White;
this.guna2ContextMenuStrip1.RenderStyle.SeparatorColor =
System.Drawing.Color.Gainsboro;
this.guna2ContextMenuStrip1.RenderStyle.TextRenderingHint =
System.Drawing.Text.TextRenderingHint.SystemDefault;
((System.Windows.Forms.Control)
(object)this.guna2ContextMenuStrip1).Size = new System.Drawing.Size(61, 4);
((System.Windows.Forms.Control)(object)this.aimbotpan).BackColor =
System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)
(object)this.aimbotpan).Controls.Add(this.label54);
((System.Windows.Forms.Control)
(object)this.aimbotpan).Controls.Add(this.label11);
((System.Windows.Forms.Control)
(object)this.aimbotpan).Controls.Add(this.label48);
((System.Windows.Forms.Control)
(object)this.aimbotpan).Controls.Add(this.label10);
((System.Windows.Forms.Control)
(object)this.aimbotpan).Controls.Add((System.Windows.Forms.Control)(object)this.c);
((System.Windows.Forms.Control)
(object)this.aimbotpan).Controls.Add(this.label47);
((System.Windows.Forms.Control)
(object)this.aimbotpan).Controls.Add(this.label9);
((System.Windows.Forms.Control)
(object)this.aimbotpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel11);
((System.Windows.Forms.Control)
(object)this.aimbotpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel20);
((System.Windows.Forms.Control)
(object)this.aimbotpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel21);
((System.Windows.Forms.Control)
(object)this.aimbotpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel39);
((System.Windows.Forms.Control)
(object)this.aimbotpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel19);
((System.Windows.Forms.Control)
(object)this.aimbotpan).Controls.Add(this.label46);
((System.Windows.Forms.Control)
(object)this.aimbotpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel12);
((System.Windows.Forms.Control)
(object)this.aimbotpan).Controls.Add(this.label1);
((System.Windows.Forms.Control)
(object)this.aimbotpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2ToggleSwitch2);
((System.Windows.Forms.Control)
(object)this.aimbotpan).Controls.Add((System.Windows.Forms.Control)
(object)this.dragbtndisable);
((System.Windows.Forms.Control)
(object)this.aimbotpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2ToggleSwitch3);
((System.Windows.Forms.Control)
(object)this.aimbotpan).Controls.Add((System.Windows.Forms.Control)
(object)this.aimbotbtndisable);
((System.Windows.Forms.Control)
(object)this.aimbotpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2ToggleSwitch1);
this.aimbotpan.CustomBorderColor = System.Drawing.Color.FromArgb(126,
1, 236);
this.aimbotpan.CustomBorderThickness = new
System.Windows.Forms.Padding(1);
((System.Windows.Forms.Control)(object)this.aimbotpan).Location = new
System.Drawing.Point(230, 61);
((System.Windows.Forms.Control)(object)this.aimbotpan).Name =
"aimbotpan";
((System.Windows.Forms.Control)(object)this.aimbotpan).Size = new
System.Drawing.Size(384, 260);
((System.Windows.Forms.Control)(object)this.aimbotpan).TabIndex = 105;
((System.Windows.Forms.Control)(object)this.aimbotpan).Paint += new
System.Windows.Forms.PaintEventHandler(aimbotpan_Paint);
this.label54.AutoSize = true;
this.label54.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
this.label54.ForeColor = System.Drawing.Color.IndianRed;
this.label54.Location = new System.Drawing.Point(129, 166);
this.label54.Name = "label54";
this.label54.Size = new System.Drawing.Size(38, 13);
this.label54.TabIndex = 104;
this.label54.Text = "RISK !";
this.label11.AutoSize = true;
this.label11.BackColor = System.Drawing.Color.Transparent;
this.label11.Font = new System.Drawing.Font("Microsoft YaHei", 14.25f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
this.label11.ForeColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label11.Location = new System.Drawing.Point(146, 15);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(93, 26);
this.label11.TabIndex = 63;
this.label11.Text = "AIMBOT";
this.label48.AutoSize = true;
this.label48.BackColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label48.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label48.Location = new System.Drawing.Point(14, 191);
this.label48.MaximumSize = new System.Drawing.Size(150, 1);
this.label48.Name = "label48";
this.label48.Size = new System.Drawing.Size(148, 1);
this.label48.TabIndex = 101;
this.label48.Text = resources.GetString("label48.Text");
this.label10.AutoSize = true;
this.label10.BackColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label10.Location = new System.Drawing.Point(18, 50);
this.label10.MaximumSize = new System.Drawing.Size(150, 1);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(148, 1);
this.label10.TabIndex = 101;
this.label10.Text = resources.GetString("label10.Text");
this.c.Animated = true;
((System.Windows.Forms.Control)(object)this.c).BackColor =
System.Drawing.Color.Transparent;
this.c.CheckedState.BorderColor = System.Drawing.Color.FromArgb(64, 64,
64);
this.c.CheckedState.BorderThickness = 1;
this.c.CheckedState.FillColor = System.Drawing.Color.Transparent;
this.c.CheckedState.InnerBorderColor =
System.Drawing.Color.Transparent;
this.c.CheckedState.InnerBorderThickness = 1;
this.c.CheckedState.InnerColor = System.Drawing.Color.White;
((System.Windows.Forms.Control)(object)this.c).Cursor =
System.Windows.Forms.Cursors.Hand;
((System.Windows.Forms.Control)(object)this.c).Location = new
System.Drawing.Point(303, 64);
((System.Windows.Forms.Control)(object)this.c).Name = "c";
((System.Windows.Forms.Control)(object)this.c).Size = new
System.Drawing.Size(23, 23);
((System.Windows.Forms.Control)(object)this.c).TabIndex = 97;
this.c.UncheckedState.BorderColor = System.Drawing.Color.Gray;
this.c.UncheckedState.BorderThickness = 2;
this.c.UncheckedState.FillColor = System.Drawing.Color.Transparent;
this.c.UncheckedState.InnerBorderColor =
System.Drawing.Color.Transparent;
this.c.UncheckedState.InnerBorderThickness = 1;
this.c.UncheckedState.InnerColor = System.Drawing.Color.Transparent;
this.c.UseTransparentBackground = true;
this.c.CheckedChanged += new
System.EventHandler(AimbotBtn_CheckedChanged);
this.label47.AutoSize = true;
this.label47.BackColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label47.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label47.Location = new System.Drawing.Point(219, 191);
this.label47.MaximumSize = new System.Drawing.Size(150, 1);
this.label47.Name = "label47";
this.label47.Size = new System.Drawing.Size(148, 1);
this.label47.TabIndex = 101;
this.label47.Text = resources.GetString("label47.Text");
this.label9.AutoSize = true;
this.label9.BackColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label9.Location = new System.Drawing.Point(223, 50);
this.label9.MaximumSize = new System.Drawing.Size(150, 1);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(148, 1);
this.label9.TabIndex = 101;
this.label9.Text = resources.GetString("label9.Text");
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel11).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel11).Font =
new System.Drawing.Font("Microsoft New Tai Lue", 12f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel11).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel11).Location
= new System.Drawing.Point(39, 99);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel11).Name =
"guna2HtmlLabel11";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel11).Size =
new System.Drawing.Size(137, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel11).TabIndex
= 98;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel11).Text =
"AIMFOV 2x Scope";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel20).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel20).Font =
new System.Drawing.Font("Microsoft New Tai Lue", 12f,
System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel20).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel20).Location
= new System.Drawing.Point(37, 229);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel20).Name =
"guna2HtmlLabel20";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel20).Size =
new System.Drawing.Size(148, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel20).TabIndex
= 2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel20).Text =
"AIMBOT DRAG / OFF";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel21).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel21).Font =
new System.Drawing.Font("Microsoft New Tai Lue", 12f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel21).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel21).Location
= new System.Drawing.Point(39, 132);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel21).Name =
"guna2HtmlLabel21";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel21).Size =
new System.Drawing.Size(151, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel21).TabIndex
= 2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel21).Text =
"AIMBOT DRAG LEFT";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel39).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel39).Font =
new System.Drawing.Font("Microsoft New Tai Lue", 12f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel39).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel39).Location
= new System.Drawing.Point(39, 161);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel39).Name =
"guna2HtmlLabel39";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel39).Size =
new System.Drawing.Size(69, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel39).TabIndex
= 2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel39).Text =
"AIM FOV";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel19).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel19).Font =
new System.Drawing.Font("Microsoft New Tai Lue", 12f,
System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel19).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel19).Location
= new System.Drawing.Point(39, 197);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel19).Name =
"guna2HtmlLabel19";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel19).Size =
new System.Drawing.Size(102, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel19).TabIndex
= 2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel19).Text =
"AIMBOT / OFF";
this.label46.AutoSize = true;
this.label46.BackColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label46.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label46.Location = new System.Drawing.Point(116, 191);
this.label46.MaximumSize = new System.Drawing.Size(150, 1);
this.label46.Name = "label46";
this.label46.Size = new System.Drawing.Size(148, 1);
this.label46.TabIndex = 101;
this.label46.Text = resources.GetString("label46.Text");
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel12).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel12).Font =
new System.Drawing.Font("Microsoft New Tai Lue", 12f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel12).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel12).Location
= new System.Drawing.Point(39, 64);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel12).Name =
"guna2HtmlLabel12";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel12).Size =
new System.Drawing.Size(140, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel12).TabIndex
= 2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel12).Text =
"AIMBOT DEVIL ++ ";
this.label1.AutoSize = true;
this.label1.BackColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label1.Location = new System.Drawing.Point(120, 50);
this.label1.MaximumSize = new System.Drawing.Size(150, 1);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(148, 1);
this.label1.TabIndex = 101;
this.label1.Text = resources.GetString("label1.Text");
this.guna2ToggleSwitch2.Animated = true;
((System.Windows.Forms.Control)
(object)this.guna2ToggleSwitch2).BackColor = System.Drawing.Color.Transparent;
this.guna2ToggleSwitch2.CheckedState.BorderColor =
System.Drawing.Color.FromArgb(64, 64, 64);
this.guna2ToggleSwitch2.CheckedState.BorderThickness = 1;
this.guna2ToggleSwitch2.CheckedState.FillColor =
System.Drawing.Color.Transparent;
this.guna2ToggleSwitch2.CheckedState.InnerBorderColor =
System.Drawing.Color.Transparent;
this.guna2ToggleSwitch2.CheckedState.InnerBorderThickness = 1;
this.guna2ToggleSwitch2.CheckedState.InnerColor =
System.Drawing.Color.White;
((System.Windows.Forms.Control)(object)this.guna2ToggleSwitch2).Cursor
= System.Windows.Forms.Cursors.Hand;
((System.Windows.Forms.Control)
(object)this.guna2ToggleSwitch2).Location = new System.Drawing.Point(303, 130);
((System.Windows.Forms.Control)(object)this.guna2ToggleSwitch2).Name =
"guna2ToggleSwitch2";
((System.Windows.Forms.Control)(object)this.guna2ToggleSwitch2).Size =
new System.Drawing.Size(23, 23);
((System.Windows.Forms.Control)
(object)this.guna2ToggleSwitch2).TabIndex = 99;
this.guna2ToggleSwitch2.UncheckedState.BorderColor =
System.Drawing.Color.Gray;
this.guna2ToggleSwitch2.UncheckedState.BorderThickness = 2;
this.guna2ToggleSwitch2.UncheckedState.FillColor =
System.Drawing.Color.Transparent;
this.guna2ToggleSwitch2.UncheckedState.InnerBorderColor =
System.Drawing.Color.Transparent;
this.guna2ToggleSwitch2.UncheckedState.InnerBorderThickness = 1;
this.guna2ToggleSwitch2.UncheckedState.InnerColor =
System.Drawing.Color.Transparent;
this.guna2ToggleSwitch2.UseTransparentBackground = true;
this.guna2ToggleSwitch2.CheckedChanged += new
System.EventHandler(guna2ToggleSwitch2_CheckedChanged);
this.dragbtndisable.Animated = true;
((System.Windows.Forms.Control)(object)this.dragbtndisable).BackColor =
System.Drawing.Color.Transparent;
this.dragbtndisable.CheckedState.BorderColor =
System.Drawing.Color.FromArgb(64, 64, 64);
this.dragbtndisable.CheckedState.BorderThickness = 1;
this.dragbtndisable.CheckedState.FillColor =
System.Drawing.Color.Transparent;
this.dragbtndisable.CheckedState.InnerBorderColor =
System.Drawing.Color.Transparent;
this.dragbtndisable.CheckedState.InnerBorderThickness = 1;
this.dragbtndisable.CheckedState.InnerColor =
System.Drawing.Color.White;
((System.Windows.Forms.Control)(object)this.dragbtndisable).Cursor =
System.Windows.Forms.Cursors.Hand;
((System.Windows.Forms.Control)(object)this.dragbtndisable).Location =
new System.Drawing.Point(304, 229);
((System.Windows.Forms.Control)(object)this.dragbtndisable).Name =
"dragbtndisable";
((System.Windows.Forms.Control)(object)this.dragbtndisable).Size = new
System.Drawing.Size(23, 23);
((System.Windows.Forms.Control)(object)this.dragbtndisable).TabIndex =
99;
this.dragbtndisable.UncheckedState.BorderColor =
System.Drawing.Color.Gray;
this.dragbtndisable.UncheckedState.BorderThickness = 2;
this.dragbtndisable.UncheckedState.FillColor =
System.Drawing.Color.Transparent;
this.dragbtndisable.UncheckedState.InnerBorderColor =
System.Drawing.Color.Transparent;
this.dragbtndisable.UncheckedState.InnerBorderThickness = 1;
this.dragbtndisable.UncheckedState.InnerColor =
System.Drawing.Color.Transparent;
this.dragbtndisable.UseTransparentBackground = true;
this.dragbtndisable.CheckedChanged += new
System.EventHandler(guna2ToggleSwitch1_CheckedChanged_2);
this.guna2ToggleSwitch3.Animated = true;
((System.Windows.Forms.Control)
(object)this.guna2ToggleSwitch3).BackColor = System.Drawing.Color.Transparent;
this.guna2ToggleSwitch3.CheckedState.BorderColor =
System.Drawing.Color.FromArgb(64, 64, 64);
this.guna2ToggleSwitch3.CheckedState.BorderThickness = 1;
this.guna2ToggleSwitch3.CheckedState.FillColor =
System.Drawing.Color.Transparent;
this.guna2ToggleSwitch3.CheckedState.InnerBorderColor =
System.Drawing.Color.Transparent;
this.guna2ToggleSwitch3.CheckedState.InnerBorderThickness = 1;
this.guna2ToggleSwitch3.CheckedState.InnerColor =
System.Drawing.Color.White;
((System.Windows.Forms.Control)(object)this.guna2ToggleSwitch3).Cursor
= System.Windows.Forms.Cursors.Hand;
((System.Windows.Forms.Control)
(object)this.guna2ToggleSwitch3).Location = new System.Drawing.Point(303, 161);
((System.Windows.Forms.Control)(object)this.guna2ToggleSwitch3).Name =
"guna2ToggleSwitch3";
((System.Windows.Forms.Control)(object)this.guna2ToggleSwitch3).Size =
new System.Drawing.Size(23, 23);
((System.Windows.Forms.Control)
(object)this.guna2ToggleSwitch3).TabIndex = 99;
this.guna2ToggleSwitch3.UncheckedState.BorderColor =
System.Drawing.Color.Gray;
this.guna2ToggleSwitch3.UncheckedState.BorderThickness = 2;
this.guna2ToggleSwitch3.UncheckedState.FillColor =
System.Drawing.Color.Transparent;
this.guna2ToggleSwitch3.UncheckedState.InnerBorderColor =
System.Drawing.Color.Transparent;
this.guna2ToggleSwitch3.UncheckedState.InnerBorderThickness = 1;
this.guna2ToggleSwitch3.UncheckedState.InnerColor =
System.Drawing.Color.Transparent;
this.guna2ToggleSwitch3.UseTransparentBackground = true;
this.guna2ToggleSwitch3.CheckedChanged += new
System.EventHandler(guna2ToggleSwitch1_CheckedChanged_2);
this.aimbotbtndisable.Animated = true;
((System.Windows.Forms.Control)(object)this.aimbotbtndisable).BackColor
= System.Drawing.Color.Transparent;
this.aimbotbtndisable.CheckedState.BorderColor =
System.Drawing.Color.FromArgb(64, 64, 64);
this.aimbotbtndisable.CheckedState.BorderThickness = 1;
this.aimbotbtndisable.CheckedState.FillColor =
System.Drawing.Color.Transparent;
this.aimbotbtndisable.CheckedState.InnerBorderColor =
System.Drawing.Color.Transparent;
this.aimbotbtndisable.CheckedState.InnerBorderThickness = 1;
this.aimbotbtndisable.CheckedState.InnerColor =
System.Drawing.Color.White;
((System.Windows.Forms.Control)(object)this.aimbotbtndisable).Cursor =
System.Windows.Forms.Cursors.Hand;
((System.Windows.Forms.Control)(object)this.aimbotbtndisable).Location
= new System.Drawing.Point(303, 200);
((System.Windows.Forms.Control)(object)this.aimbotbtndisable).Name =
"aimbotbtndisable";
((System.Windows.Forms.Control)(object)this.aimbotbtndisable).Size =
new System.Drawing.Size(23, 23);
((System.Windows.Forms.Control)(object)this.aimbotbtndisable).TabIndex
= 99;
this.aimbotbtndisable.UncheckedState.BorderColor =
System.Drawing.Color.Gray;
this.aimbotbtndisable.UncheckedState.BorderThickness = 2;
this.aimbotbtndisable.UncheckedState.FillColor =
System.Drawing.Color.Transparent;
this.aimbotbtndisable.UncheckedState.InnerBorderColor =
System.Drawing.Color.Transparent;
this.aimbotbtndisable.UncheckedState.InnerBorderThickness = 1;
this.aimbotbtndisable.UncheckedState.InnerColor =
System.Drawing.Color.Transparent;
this.aimbotbtndisable.UseTransparentBackground = true;
this.aimbotbtndisable.CheckedChanged += new
System.EventHandler(guna2ToggleSwitch1_CheckedChanged_2);
this.guna2ToggleSwitch1.Animated = true;
((System.Windows.Forms.Control)
(object)this.guna2ToggleSwitch1).BackColor = System.Drawing.Color.Transparent;
this.guna2ToggleSwitch1.CheckedState.BorderColor =
System.Drawing.Color.FromArgb(64, 64, 64);
this.guna2ToggleSwitch1.CheckedState.BorderThickness = 1;
this.guna2ToggleSwitch1.CheckedState.FillColor =
System.Drawing.Color.Transparent;
this.guna2ToggleSwitch1.CheckedState.InnerBorderColor =
System.Drawing.Color.Transparent;
this.guna2ToggleSwitch1.CheckedState.InnerBorderThickness = 1;
this.guna2ToggleSwitch1.CheckedState.InnerColor =
System.Drawing.Color.White;
((System.Windows.Forms.Control)(object)this.guna2ToggleSwitch1).Cursor
= System.Windows.Forms.Cursors.Hand;
((System.Windows.Forms.Control)
(object)this.guna2ToggleSwitch1).Location = new System.Drawing.Point(303, 99);
((System.Windows.Forms.Control)(object)this.guna2ToggleSwitch1).Name =
"guna2ToggleSwitch1";
((System.Windows.Forms.Control)(object)this.guna2ToggleSwitch1).Size =
new System.Drawing.Size(23, 23);
((System.Windows.Forms.Control)
(object)this.guna2ToggleSwitch1).TabIndex = 99;
this.guna2ToggleSwitch1.UncheckedState.BorderColor =
System.Drawing.Color.Gray;
this.guna2ToggleSwitch1.UncheckedState.BorderThickness = 2;
this.guna2ToggleSwitch1.UncheckedState.FillColor =
System.Drawing.Color.Transparent;
this.guna2ToggleSwitch1.UncheckedState.InnerBorderColor =
System.Drawing.Color.Transparent;
this.guna2ToggleSwitch1.UncheckedState.InnerBorderThickness = 1;
this.guna2ToggleSwitch1.UncheckedState.InnerColor =
System.Drawing.Color.Transparent;
this.guna2ToggleSwitch1.UseTransparentBackground = true;
this.guna2ToggleSwitch1.CheckedChanged += new
System.EventHandler(guna2ToggleSwitch1_CheckedChanged_2);
this.guna2CustomCheckBox29.CheckedState.BorderColor =
System.Drawing.Color.White;
this.guna2CustomCheckBox29.CheckedState.BorderRadius = 2;
this.guna2CustomCheckBox29.CheckedState.BorderThickness = 0;
this.guna2CustomCheckBox29.CheckedState.FillColor =
System.Drawing.Color.Gainsboro;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox29).Location = new System.Drawing.Point(329, 76);
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox29).Name
= "guna2CustomCheckBox29";
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox29).Size
= new System.Drawing.Size(20, 20);
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox29).TabIndex = 64;
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox29).Text
= "guna2CustomCheckBox3";
this.guna2CustomCheckBox29.UncheckedState.BorderColor =
System.Drawing.Color.LightGray;
this.guna2CustomCheckBox29.UncheckedState.BorderRadius = 2;
this.guna2CustomCheckBox29.UncheckedState.BorderThickness = 0;
this.guna2CustomCheckBox29.UncheckedState.FillColor =
System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox29).Click += new
System.EventHandler(guna2CustomCheckBox29_Click);
((System.Windows.Forms.Control)(object)this.locationpan).BackColor =
System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)
(object)this.locationpan).Controls.Add(this.label8);
((System.Windows.Forms.Control)
(object)this.locationpan).Controls.Add(this.label7);
((System.Windows.Forms.Control)
(object)this.locationpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2Button6);
((System.Windows.Forms.Control)
(object)this.locationpan).Controls.Add(this.label4);
((System.Windows.Forms.Control)
(object)this.locationpan).Controls.Add(this.label6);
((System.Windows.Forms.Control)
(object)this.locationpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel26);
((System.Windows.Forms.Control)
(object)this.locationpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox2);
((System.Windows.Forms.Control)
(object)this.locationpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel2);
((System.Windows.Forms.Control)
(object)this.locationpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox1);
((System.Windows.Forms.Control)
(object)this.locationpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox5);
((System.Windows.Forms.Control)
(object)this.locationpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel3);
this.locationpan.CustomBorderColor = System.Drawing.Color.FromArgb(126,
1, 236);
this.locationpan.CustomBorderThickness = new
System.Windows.Forms.Padding(1);
((System.Windows.Forms.Control)(object)this.locationpan).Location = new
System.Drawing.Point(5, 506);
((System.Windows.Forms.Control)(object)this.locationpan).Name =
"locationpan";
((System.Windows.Forms.Control)(object)this.locationpan).Size = new
System.Drawing.Size(384, 260);
((System.Windows.Forms.Control)(object)this.locationpan).TabIndex =
105;
((System.Windows.Forms.Control)(object)this.locationpan).Visible =
false;
this.label8.AutoSize = true;
this.label8.BackColor = System.Drawing.Color.Transparent;
this.label8.Font = new System.Drawing.Font("Microsoft YaHei", 14.25f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
this.label8.ForeColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label8.Location = new System.Drawing.Point(146, 18);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(115, 26);
this.label8.TabIndex = 63;
this.label8.Text = "LOCATION";
this.label7.AutoSize = true;
this.label7.BackColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label7.Location = new System.Drawing.Point(19, 55);
this.label7.MaximumSize = new System.Drawing.Size(150, 1);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(148, 1);
this.label7.TabIndex = 101;
this.label7.Text = resources.GetString("label7.Text");
this.guna2Button6.Animated = true;
this.guna2Button6.AutoRoundedCorners = true;
this.guna2Button6.BorderRadius = 12;
this.guna2Button6.DefaultAutoSize = true;
this.guna2Button6.DisabledState.BorderColor =
System.Drawing.Color.DarkGray;
this.guna2Button6.DisabledState.CustomBorderColor =
System.Drawing.Color.DarkGray;
this.guna2Button6.DisabledState.FillColor =
System.Drawing.Color.FromArgb(169, 169, 169);
this.guna2Button6.DisabledState.ForeColor =
System.Drawing.Color.FromArgb(141, 141, 141);
this.guna2Button6.FillColor = System.Drawing.Color.Indigo;
((System.Windows.Forms.Control)(object)this.guna2Button6).Font = new
System.Drawing.Font("Segoe UI", 9f, System.Drawing.FontStyle.Bold,
System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2Button6).ForeColor =
System.Drawing.Color.White;
this.guna2Button6.IndicateFocus = true;
((System.Windows.Forms.Control)(object)this.guna2Button6).Location =
new System.Drawing.Point(318, 229);
((System.Windows.Forms.Control)(object)this.guna2Button6).Name =
"guna2Button6";
((System.Windows.Forms.Control)(object)this.guna2Button6).Size = new
System.Drawing.Size(58, 27);
((System.Windows.Forms.Control)(object)this.guna2Button6).TabIndex =
103;
((System.Windows.Forms.Control)(object)this.guna2Button6).Text =
"Next";
((System.Windows.Forms.Control)(object)this.guna2Button6).Click += new
System.EventHandler(guna2Button6_Click);
this.label4.AutoSize = true;
this.label4.BackColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label4.Location = new System.Drawing.Point(121, 55);
this.label4.MaximumSize = new System.Drawing.Size(150, 1);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(148, 1);
this.label4.TabIndex = 101;
this.label4.Text = resources.GetString("label4.Text");
this.label6.AutoSize = true;
this.label6.BackColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label6.Location = new System.Drawing.Point(224, 55);
this.label6.MaximumSize = new System.Drawing.Size(150, 1);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(148, 1);
this.label6.TabIndex = 101;
this.label6.Text = resources.GetString("label6.Text");
((System.Windows.Forms.Control)(object)this.sniperpan).BackColor =
System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)
(object)this.sniperpan).Controls.Add(this.label12);
((System.Windows.Forms.Control)
(object)this.sniperpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox11);
((System.Windows.Forms.Control)
(object)this.sniperpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox10);
((System.Windows.Forms.Control)
(object)this.sniperpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox6);
((System.Windows.Forms.Control)
(object)this.sniperpan).Controls.Add(this.label13);
((System.Windows.Forms.Control)
(object)this.sniperpan).Controls.Add(this.label14);
((System.Windows.Forms.Control)
(object)this.sniperpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox24);
((System.Windows.Forms.Control)
(object)this.sniperpan).Controls.Add(this.label15);
((System.Windows.Forms.Control)
(object)this.sniperpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox4);
((System.Windows.Forms.Control)
(object)this.sniperpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel23);
((System.Windows.Forms.Control)
(object)this.sniperpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel25);
((System.Windows.Forms.Control)
(object)this.sniperpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel5);
((System.Windows.Forms.Control)
(object)this.sniperpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel43);
((System.Windows.Forms.Control)
(object)this.sniperpan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel7);
this.sniperpan.CustomBorderColor = System.Drawing.Color.FromArgb(126,
1, 236);
this.sniperpan.CustomBorderThickness = new
System.Windows.Forms.Padding(1);
((System.Windows.Forms.Control)(object)this.sniperpan).Location = new
System.Drawing.Point(408, 593);
((System.Windows.Forms.Control)(object)this.sniperpan).Name =
"sniperpan";
((System.Windows.Forms.Control)(object)this.sniperpan).Size = new
System.Drawing.Size(384, 260);
((System.Windows.Forms.Control)(object)this.sniperpan).TabIndex = 105;
((System.Windows.Forms.Control)(object)this.sniperpan).Visible = false;
this.label12.AutoSize = true;
this.label12.BackColor = System.Drawing.Color.Transparent;
this.label12.Font = new System.Drawing.Font("Microsoft YaHei", 14.25f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
this.label12.ForeColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label12.Location = new System.Drawing.Point(138, 16);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(81, 26);
this.label12.TabIndex = 63;
this.label12.Text = "SNIPER";
this.guna2CustomCheckBox11.CheckedState.BorderColor =
System.Drawing.Color.White;
this.guna2CustomCheckBox11.CheckedState.BorderRadius = 2;
this.guna2CustomCheckBox11.CheckedState.BorderThickness = 0;
this.guna2CustomCheckBox11.CheckedState.FillColor =
System.Drawing.Color.Gainsboro;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox11).Location = new System.Drawing.Point(296, 221);
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox11).Name
= "guna2CustomCheckBox11";
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox11).Size
= new System.Drawing.Size(20, 20);
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox11).TabIndex = 64;
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox11).Text
= "guna2CustomCheckBox3";
this.guna2CustomCheckBox11.UncheckedState.BorderColor =
System.Drawing.Color.LightGray;
this.guna2CustomCheckBox11.UncheckedState.BorderRadius = 2;
this.guna2CustomCheckBox11.UncheckedState.BorderThickness = 0;
this.guna2CustomCheckBox11.UncheckedState.FillColor =
System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox11).Click += new
System.EventHandler(guna2CustomCheckBox11_Click);
this.guna2CustomCheckBox10.CheckedState.BorderColor =
System.Drawing.Color.White;
this.guna2CustomCheckBox10.CheckedState.BorderRadius = 2;
this.guna2CustomCheckBox10.CheckedState.BorderThickness = 0;
this.guna2CustomCheckBox10.CheckedState.FillColor =
System.Drawing.Color.Gainsboro;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox10).Location = new System.Drawing.Point(296, 174);
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox10).Name
= "guna2CustomCheckBox10";
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox10).Size
= new System.Drawing.Size(20, 20);
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox10).TabIndex = 64;
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox10).Text
= "guna2CustomCheckBox3";
this.guna2CustomCheckBox10.UncheckedState.BorderColor =
System.Drawing.Color.LightGray;
this.guna2CustomCheckBox10.UncheckedState.BorderRadius = 2;
this.guna2CustomCheckBox10.UncheckedState.BorderThickness = 0;
this.guna2CustomCheckBox10.UncheckedState.FillColor =
System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox10).Click += new
System.EventHandler(guna2CustomCheckBox10_Click);
this.label13.AutoSize = true;
this.label13.BackColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label13.Location = new System.Drawing.Point(19, 55);
this.label13.MaximumSize = new System.Drawing.Size(150, 1);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(148, 1);
this.label13.TabIndex = 101;
this.label13.Text = resources.GetString("label13.Text");
this.label14.AutoSize = true;
this.label14.BackColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label14.Location = new System.Drawing.Point(121, 55);
this.label14.MaximumSize = new System.Drawing.Size(150, 1);
this.label14.Name = "label14";
this.label14.Size = new System.Drawing.Size(148, 1);
this.label14.TabIndex = 101;
this.label14.Text = resources.GetString("label14.Text");
this.guna2CustomCheckBox24.CheckedState.BorderColor =
System.Drawing.Color.White;
this.guna2CustomCheckBox24.CheckedState.BorderRadius = 2;
this.guna2CustomCheckBox24.CheckedState.BorderThickness = 0;
this.guna2CustomCheckBox24.CheckedState.FillColor =
System.Drawing.Color.Gainsboro;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox24).Location = new System.Drawing.Point(296, 144);
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox24).Name
= "guna2CustomCheckBox24";
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox24).Size
= new System.Drawing.Size(20, 20);
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox24).TabIndex = 64;
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox24).Text
= "guna2CustomCheckBox3";
this.guna2CustomCheckBox24.UncheckedState.BorderColor =
System.Drawing.Color.LightGray;
this.guna2CustomCheckBox24.UncheckedState.BorderRadius = 2;
this.guna2CustomCheckBox24.UncheckedState.BorderThickness = 0;
this.guna2CustomCheckBox24.UncheckedState.FillColor =
System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox24).Click += new
System.EventHandler(guna2CustomCheckBox24_Click_1);
this.label15.AutoSize = true;
this.label15.BackColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label15.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label15.Location = new System.Drawing.Point(224, 55);
this.label15.MaximumSize = new System.Drawing.Size(150, 1);
this.label15.Name = "label15";
this.label15.Size = new System.Drawing.Size(148, 1);
this.label15.TabIndex = 101;
this.label15.Text = resources.GetString("label15.Text");
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel23).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel23).Font =
new System.Drawing.Font("Microsoft New Tai Lue", 12f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel23).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel23).Location
= new System.Drawing.Point(38, 171);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel23).Name =
"guna2HtmlLabel23";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel23).Size =
new System.Drawing.Size(167, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel23).TabIndex
= 2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel23).Text =
"SNIPER SCOPE TRACK";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel25).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel25).Font =
new System.Drawing.Font("Microsoft New Tai Lue", 12f,
System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel25).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel25).Location
= new System.Drawing.Point(38, 221);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel25).Name =
"guna2HtmlLabel25";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel25).Size =
new System.Drawing.Size(184, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel25).TabIndex
= 2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel25).Text =
"Sniper Quick Switch / OFF";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel43).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel43).Font =
new System.Drawing.Font("Microsoft New Tai Lue", 12f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel43).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel43).Location
= new System.Drawing.Point(38, 142);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel43).Name =
"guna2HtmlLabel43";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel43).Size =
new System.Drawing.Size(164, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel43).TabIndex
= 2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel43).Text =
"M82B QUICK SWITCH";
((System.Windows.Forms.Control)(object)this.settingspan).BackColor =
System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)
(object)this.settingspan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2Button8);
((System.Windows.Forms.Control)
(object)this.settingspan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2Button7);
((System.Windows.Forms.Control)
(object)this.settingspan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox13);
((System.Windows.Forms.Control)
(object)this.settingspan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox12);
((System.Windows.Forms.Control)
(object)this.settingspan).Controls.Add(this.label18);
((System.Windows.Forms.Control)
(object)this.settingspan).Controls.Add(this.label19);
((System.Windows.Forms.Control)
(object)this.settingspan).Controls.Add(this.label20);
((System.Windows.Forms.Control)
(object)this.settingspan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel1);
((System.Windows.Forms.Control)
(object)this.settingspan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox25);
((System.Windows.Forms.Control)
(object)this.settingspan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel45);
((System.Windows.Forms.Control)
(object)this.settingspan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel44);
((System.Windows.Forms.Control)
(object)this.settingspan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel13);
((System.Windows.Forms.Control)
(object)this.settingspan).Controls.Add(this.label21);
((System.Windows.Forms.Control)
(object)this.settingspan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel24);
((System.Windows.Forms.Control)
(object)this.settingspan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel6);
((System.Windows.Forms.Control)
(object)this.settingspan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2CheckBox2);
this.settingspan.CustomBorderColor = System.Drawing.Color.FromArgb(126,
1, 236);
this.settingspan.CustomBorderThickness = new
System.Windows.Forms.Padding(1);
((System.Windows.Forms.Control)(object)this.settingspan).Location = new
System.Drawing.Point(620, 61);
((System.Windows.Forms.Control)(object)this.settingspan).Name =
"settingspan";
((System.Windows.Forms.Control)(object)this.settingspan).Size = new
System.Drawing.Size(384, 260);
((System.Windows.Forms.Control)(object)this.settingspan).TabIndex =
105;
((System.Windows.Forms.Control)(object)this.settingspan).Visible =
false;
this.guna2CustomCheckBox13.CheckedState.BorderColor =
System.Drawing.Color.White;
this.guna2CustomCheckBox13.CheckedState.BorderRadius = 2;
this.guna2CustomCheckBox13.CheckedState.BorderThickness = 0;
this.guna2CustomCheckBox13.CheckedState.FillColor =
System.Drawing.Color.Gainsboro;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox13).Location = new System.Drawing.Point(308, 99);
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox13).Name
= "guna2CustomCheckBox13";
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox13).Size
= new System.Drawing.Size(20, 20);
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox13).TabIndex = 64;
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox13).Text
= "guna2CustomCheckBox3";
this.guna2CustomCheckBox13.UncheckedState.BorderColor =
System.Drawing.Color.LightGray;
this.guna2CustomCheckBox13.UncheckedState.BorderRadius = 2;
this.guna2CustomCheckBox13.UncheckedState.BorderThickness = 0;
this.guna2CustomCheckBox13.UncheckedState.FillColor =
System.Drawing.Color.Transparent;
this.guna2CustomCheckBox12.CheckedState.BorderColor =
System.Drawing.Color.White;
this.guna2CustomCheckBox12.CheckedState.BorderRadius = 2;
this.guna2CustomCheckBox12.CheckedState.BorderThickness = 0;
this.guna2CustomCheckBox12.CheckedState.FillColor =
System.Drawing.Color.Gainsboro;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox12).Location = new System.Drawing.Point(308, 69);
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox12).Name
= "guna2CustomCheckBox12";
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox12).Size
= new System.Drawing.Size(20, 20);
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox12).TabIndex = 64;
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox12).Text
= "guna2CustomCheckBox3";
this.guna2CustomCheckBox12.UncheckedState.BorderColor =
System.Drawing.Color.LightGray;
this.guna2CustomCheckBox12.UncheckedState.BorderRadius = 2;
this.guna2CustomCheckBox12.UncheckedState.BorderThickness = 0;
this.guna2CustomCheckBox12.UncheckedState.FillColor =
System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox12).Click += new
System.EventHandler(guna2CustomCheckBox12_Click);
this.label18.AutoSize = true;
this.label18.BackColor = System.Drawing.Color.Transparent;
this.label18.Font = new System.Drawing.Font("Microsoft YaHei", 14.25f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
this.label18.ForeColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label18.Location = new System.Drawing.Point(146, 15);
this.label18.Name = "label18";
this.label18.Size = new System.Drawing.Size(106, 26);
this.label18.TabIndex = 63;
this.label18.Text = "SETTINGS";
this.label19.AutoSize = true;
this.label19.BackColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label19.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label19.Location = new System.Drawing.Point(18, 50);
this.label19.MaximumSize = new System.Drawing.Size(150, 1);
this.label19.Name = "label19";
this.label19.Size = new System.Drawing.Size(148, 1);
this.label19.TabIndex = 101;
this.label19.Text = resources.GetString("label19.Text");
this.label20.AutoSize = true;
this.label20.BackColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label20.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label20.Location = new System.Drawing.Point(223, 50);
this.label20.MaximumSize = new System.Drawing.Size(150, 1);
this.label20.Name = "label20";
this.label20.Size = new System.Drawing.Size(148, 1);
this.label20.TabIndex = 101;
this.label20.Text = resources.GetString("label20.Text");
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel1).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel1).Font = new
System.Drawing.Font("Microsoft New Tai Lue", 12f, System.Drawing.FontStyle.Bold,
System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel1).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel1).Location =
new System.Drawing.Point(39, 100);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel1).Name =
"guna2HtmlLabel1";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel1).Size = new
System.Drawing.Size(128, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel1).TabIndex =
98;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel1).Text =
"VOICE CONTROL";
this.guna2CustomCheckBox25.CheckedState.BorderColor =
System.Drawing.Color.White;
this.guna2CustomCheckBox25.CheckedState.BorderRadius = 2;
this.guna2CustomCheckBox25.CheckedState.BorderThickness = 0;
this.guna2CustomCheckBox25.CheckedState.FillColor =
System.Drawing.Color.Gainsboro;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox25).Location = new System.Drawing.Point(308, 164);
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox25).Name
= "guna2CustomCheckBox25";
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox25).Size
= new System.Drawing.Size(20, 20);
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox25).TabIndex = 64;
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox25).Text
= "guna2CustomCheckBox3";
this.guna2CustomCheckBox25.UncheckedState.BorderColor =
System.Drawing.Color.LightGray;
this.guna2CustomCheckBox25.UncheckedState.BorderRadius = 2;
this.guna2CustomCheckBox25.UncheckedState.BorderThickness = 0;
this.guna2CustomCheckBox25.UncheckedState.FillColor =
System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox25).Click += new
System.EventHandler(guna2CustomCheckBox25_Click);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel44).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel44).Font =
new System.Drawing.Font("Microsoft New Tai Lue", 12f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel44).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel44).Location
= new System.Drawing.Point(39, 161);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel44).Name =
"guna2HtmlLabel44";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel44).Size =
new System.Drawing.Size(191, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel44).TabIndex
= 2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel44).Text =
"Turn Off Discord Activity";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel13).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel13).Font =
new System.Drawing.Font("Microsoft New Tai Lue", 12f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel13).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel13).Location
= new System.Drawing.Point(39, 66);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel13).Name =
"guna2HtmlLabel13";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel13).Size =
new System.Drawing.Size(110, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel13).TabIndex
= 2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel13).Text =
"MUTE SOUND";
this.label21.AutoSize = true;
this.label21.BackColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label21.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label21.Location = new System.Drawing.Point(120, 50);
this.label21.MaximumSize = new System.Drawing.Size(150, 1);
this.label21.Name = "label21";
this.label21.Size = new System.Drawing.Size(148, 1);
this.label21.TabIndex = 101;
this.label21.Text = resources.GetString("label21.Text");
((System.Windows.Forms.Control)(object)this.mobilepan).BackColor =
System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)
(object)this.mobilepan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2PictureBox3);
((System.Windows.Forms.Control)
(object)this.mobilepan).Controls.Add(this.label22);
((System.Windows.Forms.Control)
(object)this.mobilepan).Controls.Add(this.label23);
((System.Windows.Forms.Control)
(object)this.mobilepan).Controls.Add(this.label24);
((System.Windows.Forms.Control)
(object)this.mobilepan).Controls.Add(this.label25);
((System.Windows.Forms.Control)
(object)this.mobilepan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox29);
((System.Windows.Forms.Control)
(object)this.mobilepan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel15);
this.mobilepan.CustomBorderColor = System.Drawing.Color.FromArgb(126,
1, 236);
this.mobilepan.CustomBorderThickness = new
System.Windows.Forms.Padding(1);
((System.Windows.Forms.Control)(object)this.mobilepan).Location = new
System.Drawing.Point(1013, 61);
((System.Windows.Forms.Control)(object)this.mobilepan).Name =
"mobilepan";
((System.Windows.Forms.Control)(object)this.mobilepan).Size = new
System.Drawing.Size(384, 260);
((System.Windows.Forms.Control)(object)this.mobilepan).TabIndex = 105;
((System.Windows.Forms.Control)(object)this.mobilepan).Visible = false;
this.guna2PictureBox3.FillColor = System.Drawing.Color.Transparent;
this.guna2PictureBox3.ImageRotate = 0f;
((System.Windows.Forms.Control)(object)this.guna2PictureBox3).Location
= new System.Drawing.Point(143, 147);
((System.Windows.Forms.Control)(object)this.guna2PictureBox3).Name =
"guna2PictureBox3";
((System.Windows.Forms.Control)(object)this.guna2PictureBox3).Size =
new System.Drawing.Size(116, 100);
((System.Windows.Forms.PictureBox)
(object)this.guna2PictureBox3).TabIndex = 102;
((System.Windows.Forms.PictureBox)
(object)this.guna2PictureBox3).TabStop = false;
this.guna2PictureBox3.UseTransparentBackground = true;
this.label22.AutoSize = true;
this.label22.BackColor = System.Drawing.Color.Transparent;
this.label22.Font = new System.Drawing.Font("Microsoft YaHei", 14.25f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
this.label22.ForeColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label22.Location = new System.Drawing.Point(118, 15);
this.label22.Name = "label22";
this.label22.Size = new System.Drawing.Size(190, 26);
this.label22.TabIndex = 63;
this.label22.Text = "MOBILE CONTROL";
this.label23.AutoSize = true;
this.label23.BackColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label23.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label23.Location = new System.Drawing.Point(18, 50);
this.label23.MaximumSize = new System.Drawing.Size(150, 1);
this.label23.Name = "label23";
this.label23.Size = new System.Drawing.Size(148, 1);
this.label23.TabIndex = 101;
this.label23.Text = resources.GetString("label23.Text");
this.label24.AutoSize = true;
this.label24.BackColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label24.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label24.Location = new System.Drawing.Point(223, 50);
this.label24.MaximumSize = new System.Drawing.Size(150, 1);
this.label24.Name = "label24";
this.label24.Size = new System.Drawing.Size(148, 1);
this.label24.TabIndex = 101;
this.label24.Text = resources.GetString("label24.Text");
this.label25.AutoSize = true;
this.label25.BackColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label25.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label25.Location = new System.Drawing.Point(120, 50);
this.label25.MaximumSize = new System.Drawing.Size(150, 1);
this.label25.Name = "label25";
this.label25.Size = new System.Drawing.Size(148, 1);
this.label25.TabIndex = 101;
this.label25.Text = resources.GetString("label25.Text");
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel15).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel15).Font =
new System.Drawing.Font("Microsoft New Tai Lue", 12f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel15).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel15).Location
= new System.Drawing.Point(39, 73);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel15).Name =
"guna2HtmlLabel15";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel15).Size =
new System.Drawing.Size(174, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel15).TabIndex
= 2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel15).Text =
"Mobile Control Enable";
((System.Windows.Forms.Control)(object)this.hotkeypan).BackColor =
System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)
(object)this.hotkeypan).Controls.Add((System.Windows.Forms.Control)
(object)this.btnsave);
((System.Windows.Forms.Control)
(object)this.hotkeypan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2Button1);
((System.Windows.Forms.Control)
(object)this.hotkeypan).Controls.Add(this.label26);
((System.Windows.Forms.Control)
(object)this.hotkeypan).Controls.Add(this.label27);
((System.Windows.Forms.Control)
(object)this.hotkeypan).Controls.Add(this.label28);
((System.Windows.Forms.Control)
(object)this.hotkeypan).Controls.Add((System.Windows.Forms.Control)
(object)this.status);
((System.Windows.Forms.Control)
(object)this.hotkeypan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel17);
((System.Windows.Forms.Control)
(object)this.hotkeypan).Controls.Add(this.label29);
((System.Windows.Forms.Control)
(object)this.hotkeypan).Controls.Add((System.Windows.Forms.Control)
(object)this.hotkey2pan);
this.hotkeypan.CustomBorderColor = System.Drawing.Color.FromArgb(126,
1, 236);
this.hotkeypan.CustomBorderThickness = new
System.Windows.Forms.Padding(1);
((System.Windows.Forms.Control)(object)this.hotkeypan).Location = new
System.Drawing.Point(1185, 594);
((System.Windows.Forms.Control)(object)this.hotkeypan).Name =
"hotkeypan";
((System.Windows.Forms.Control)(object)this.hotkeypan).Size = new
System.Drawing.Size(384, 272);
((System.Windows.Forms.Control)(object)this.hotkeypan).TabIndex = 105;
((System.Windows.Forms.Control)(object)this.hotkeypan).Visible = false;
this.btnsave.Animated = true;
this.btnsave.AutoRoundedCorners = true;
this.btnsave.BorderRadius = 10;
this.btnsave.DefaultAutoSize = true;
this.btnsave.DisabledState.BorderColor = System.Drawing.Color.DarkGray;
this.btnsave.DisabledState.CustomBorderColor =
System.Drawing.Color.DarkGray;
this.btnsave.DisabledState.FillColor =
System.Drawing.Color.FromArgb(169, 169, 169);
this.btnsave.DisabledState.ForeColor =
System.Drawing.Color.FromArgb(141, 141, 141);
this.btnsave.FillColor = System.Drawing.Color.Green;
((System.Windows.Forms.Control)(object)this.btnsave).Font = new
System.Drawing.Font("Sitka Text", 9f, System.Drawing.FontStyle.Bold);
((System.Windows.Forms.Control)(object)this.btnsave).ForeColor =
System.Drawing.Color.White;
((System.Windows.Forms.Control)(object)this.btnsave).Location = new
System.Drawing.Point(280, 241);
((System.Windows.Forms.Control)(object)this.btnsave).Name = "btnsave";
((System.Windows.Forms.Control)(object)this.btnsave).Size = new
System.Drawing.Size(62, 23);
((System.Windows.Forms.Control)(object)this.btnsave).TabIndex = 102;
((System.Windows.Forms.Control)(object)this.btnsave).Text = "SAVE";
((System.Windows.Forms.Control)(object)this.btnsave).Click += new
System.EventHandler(btnsave_Click);
this.guna2Button1.Animated = true;
this.guna2Button1.AutoRoundedCorners = true;
this.guna2Button1.BorderRadius = 10;
this.guna2Button1.DefaultAutoSize = true;
this.guna2Button1.DisabledState.BorderColor =
System.Drawing.Color.DarkGray;
this.guna2Button1.DisabledState.CustomBorderColor =
System.Drawing.Color.DarkGray;
this.guna2Button1.DisabledState.FillColor =
System.Drawing.Color.FromArgb(169, 169, 169);
this.guna2Button1.DisabledState.ForeColor =
System.Drawing.Color.FromArgb(141, 141, 141);
this.guna2Button1.FillColor = System.Drawing.Color.FromArgb(192, 0, 0);
((System.Windows.Forms.Control)(object)this.guna2Button1).Font = new
System.Drawing.Font("Sitka Text", 9f, System.Drawing.FontStyle.Bold,
System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2Button1).ForeColor =
System.Drawing.Color.White;
((System.Windows.Forms.Control)(object)this.guna2Button1).Location =
new System.Drawing.Point(283, 49);
((System.Windows.Forms.Control)(object)this.guna2Button1).Name =
"guna2Button1";
((System.Windows.Forms.Control)(object)this.guna2Button1).Size = new
System.Drawing.Size(53, 23);
((System.Windows.Forms.Control)(object)this.guna2Button1).TabIndex =
102;
((System.Windows.Forms.Control)(object)this.guna2Button1).Text = "SET";
((System.Windows.Forms.Control)(object)this.guna2Button1).Click += new
System.EventHandler(guna2Button1_Click);
this.label26.AutoSize = true;
this.label26.BackColor = System.Drawing.Color.Transparent;
this.label26.Font = new System.Drawing.Font("Microsoft YaHei", 14.25f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
this.label26.ForeColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label26.Location = new System.Drawing.Point(137, 1);
this.label26.Name = "label26";
this.label26.Size = new System.Drawing.Size(109, 26);
this.label26.TabIndex = 63;
this.label26.Text = "HOT KEYS";
this.label27.AutoSize = true;
this.label27.BackColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label27.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label27.Location = new System.Drawing.Point(18, 38);
this.label27.MaximumSize = new System.Drawing.Size(150, 1);
this.label27.Name = "label27";
this.label27.Size = new System.Drawing.Size(148, 1);
this.label27.TabIndex = 101;
this.label27.Text = resources.GetString("label27.Text");
this.label28.AutoSize = true;
this.label28.BackColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label28.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label28.Location = new System.Drawing.Point(223, 38);
this.label28.MaximumSize = new System.Drawing.Size(150, 1);
this.label28.Name = "label28";
this.label28.Size = new System.Drawing.Size(148, 1);
this.label28.TabIndex = 101;
this.label28.Text = resources.GetString("label28.Text");
((System.Windows.Forms.Control)(object)this.status).BackColor =
System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.status).Font = new
System.Drawing.Font("Microsoft New Tai Lue", 9.75f, System.Drawing.FontStyle.Bold,
System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.status).ForeColor =
System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.status).Location = new
System.Drawing.Point(22, 245);
((System.Windows.Forms.Control)(object)this.status).Name = "status";
((System.Windows.Forms.Control)(object)this.status).Size = new
System.Drawing.Size(41, 19);
((System.Windows.Forms.Control)(object)this.status).TabIndex = 2;
((System.Windows.Forms.Control)(object)this.status).Text = "Status";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel17).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel17).Font =
new System.Drawing.Font("Microsoft New Tai Lue", 12f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel17).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel17).Location
= new System.Drawing.Point(39, 49);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel17).Name =
"guna2HtmlLabel17";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel17).Size =
new System.Drawing.Size(179, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel17).TabIndex
= 2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel17).Text =
"Set Hot Keys ( F1 - F12 )";
this.label29.AutoSize = true;
this.label29.BackColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label29.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label29.Location = new System.Drawing.Point(120, 38);
this.label29.MaximumSize = new System.Drawing.Size(150, 1);
this.label29.Name = "label29";
this.label29.Size = new System.Drawing.Size(148, 1);
this.label29.TabIndex = 101;
this.label29.Text = resources.GetString("label29.Text");
((System.Windows.Forms.Control)
(object)this.hotkey2pan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2TextBoxChamsMenu);
((System.Windows.Forms.Control)
(object)this.hotkey2pan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2TextBoxSniperQuickSwitch);
((System.Windows.Forms.Control)
(object)this.hotkey2pan).Controls.Add(this.label45);
((System.Windows.Forms.Control)
(object)this.hotkey2pan).Controls.Add(this.label42);
((System.Windows.Forms.Control)
(object)this.hotkey2pan).Controls.Add(this.label44);
((System.Windows.Forms.Control)
(object)this.hotkey2pan).Controls.Add(this.label39);
((System.Windows.Forms.Control)
(object)this.hotkey2pan).Controls.Add(this.label41);
((System.Windows.Forms.Control)
(object)this.hotkey2pan).Controls.Add(this.label32);
((System.Windows.Forms.Control)
(object)this.hotkey2pan).Controls.Add(this.label38);
((System.Windows.Forms.Control)
(object)this.hotkey2pan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2TextBoxSniperScope);
((System.Windows.Forms.Control)
(object)this.hotkey2pan).Controls.Add(this.label31);
((System.Windows.Forms.Control)
(object)this.hotkey2pan).Controls.Add(this.label43);
((System.Windows.Forms.Control)
(object)this.hotkey2pan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2TextBoxAimbotDrag);
((System.Windows.Forms.Control)
(object)this.hotkey2pan).Controls.Add(this.label40);
((System.Windows.Forms.Control)
(object)this.hotkey2pan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2TextBoxAimbotExternal);
((System.Windows.Forms.Control)
(object)this.hotkey2pan).Controls.Add(this.label33);
((System.Windows.Forms.Control)
(object)this.hotkey2pan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel34);
((System.Windows.Forms.Control)
(object)this.hotkey2pan).Controls.Add(this.label30);
((System.Windows.Forms.Control)
(object)this.hotkey2pan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel35);
((System.Windows.Forms.Control)
(object)this.hotkey2pan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel36);
((System.Windows.Forms.Control)
(object)this.hotkey2pan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel37);
((System.Windows.Forms.Control)
(object)this.hotkey2pan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel38);
((System.Windows.Forms.Control)
(object)this.hotkey2pan).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel16);
this.hotkey2pan.CustomBorderColor = System.Drawing.Color.FromArgb(192,
0, 0);
this.hotkey2pan.CustomBorderThickness = new
System.Windows.Forms.Padding(2);
((System.Windows.Forms.Control)(object)this.hotkey2pan).Location = new
System.Drawing.Point(22, 76);
((System.Windows.Forms.Control)(object)this.hotkey2pan).Name =
"hotkey2pan";
((System.Windows.Forms.Control)(object)this.hotkey2pan).Size = new
System.Drawing.Size(344, 159);
((System.Windows.Forms.Control)(object)this.hotkey2pan).TabIndex = 104;
((System.Windows.Forms.Control)(object)this.hotkey2pan).Visible =
false;
this.guna2TextBoxChamsMenu.Animated = true;
this.guna2TextBoxChamsMenu.BorderRadius = 2;
this.guna2TextBoxChamsMenu.BorderThickness = 0;
((System.Windows.Forms.Control)
(object)this.guna2TextBoxChamsMenu).Cursor = System.Windows.Forms.Cursors.IBeam;
this.guna2TextBoxChamsMenu.DefaultText = "";
this.guna2TextBoxChamsMenu.DisabledState.BorderColor =
System.Drawing.Color.FromArgb(208, 208, 208);
this.guna2TextBoxChamsMenu.DisabledState.FillColor =
System.Drawing.Color.FromArgb(226, 226, 226);
this.guna2TextBoxChamsMenu.DisabledState.ForeColor =
System.Drawing.Color.FromArgb(138, 138, 138);
this.guna2TextBoxChamsMenu.DisabledState.PlaceholderForeColor =
System.Drawing.Color.FromArgb(138, 138, 138);
this.guna2TextBoxChamsMenu.FillColor =
System.Drawing.Color.FromArgb(64, 64, 64);
this.guna2TextBoxChamsMenu.FocusedState.BorderColor =
System.Drawing.Color.FromArgb(94, 148, 255);
((System.Windows.Forms.Control)(object)this.guna2TextBoxChamsMenu).Font
= new System.Drawing.Font("Segoe UI", 9f);
((System.Windows.Forms.Control)
(object)this.guna2TextBoxChamsMenu).ForeColor = System.Drawing.Color.White;
this.guna2TextBoxChamsMenu.HoverState.BorderColor =
System.Drawing.Color.FromArgb(94, 148, 255);
((System.Windows.Forms.Control)
(object)this.guna2TextBoxChamsMenu).Location = new System.Drawing.Point(241, 128);
((System.Windows.Forms.Control)(object)this.guna2TextBoxChamsMenu).Name
= "guna2TextBoxChamsMenu";
this.guna2TextBoxChamsMenu.PasswordChar = '\0';
this.guna2TextBoxChamsMenu.PlaceholderForeColor =
System.Drawing.Color.DarkGray;
this.guna2TextBoxChamsMenu.PlaceholderText = "ENTER KEY";
this.guna2TextBoxChamsMenu.SelectedText = "";
((System.Windows.Forms.Control)(object)this.guna2TextBoxChamsMenu).Size
= new System.Drawing.Size(90, 23);
((System.Windows.Forms.Control)
(object)this.guna2TextBoxChamsMenu).TabIndex = 99;
this.guna2TextBoxChamsMenu.TextAlign =
System.Windows.Forms.HorizontalAlignment.Center;
this.guna2TextBoxSniperQuickSwitch.Animated = true;
this.guna2TextBoxSniperQuickSwitch.BorderRadius = 2;
this.guna2TextBoxSniperQuickSwitch.BorderThickness = 0;
((System.Windows.Forms.Control)
(object)this.guna2TextBoxSniperQuickSwitch).Cursor =
System.Windows.Forms.Cursors.IBeam;
this.guna2TextBoxSniperQuickSwitch.DefaultText = "";
this.guna2TextBoxSniperQuickSwitch.DisabledState.BorderColor =
System.Drawing.Color.FromArgb(208, 208, 208);
this.guna2TextBoxSniperQuickSwitch.DisabledState.FillColor =
System.Drawing.Color.FromArgb(226, 226, 226);
this.guna2TextBoxSniperQuickSwitch.DisabledState.ForeColor =
System.Drawing.Color.FromArgb(138, 138, 138);
this.guna2TextBoxSniperQuickSwitch.DisabledState.PlaceholderForeColor =
System.Drawing.Color.FromArgb(138, 138, 138);
this.guna2TextBoxSniperQuickSwitch.FillColor =
System.Drawing.Color.FromArgb(64, 64, 64);
this.guna2TextBoxSniperQuickSwitch.FocusedState.BorderColor =
System.Drawing.Color.FromArgb(94, 148, 255);
((System.Windows.Forms.Control)
(object)this.guna2TextBoxSniperQuickSwitch).Font = new System.Drawing.Font("Segoe
UI", 9f);
((System.Windows.Forms.Control)
(object)this.guna2TextBoxSniperQuickSwitch).ForeColor = System.Drawing.Color.White;
this.guna2TextBoxSniperQuickSwitch.HoverState.BorderColor =
System.Drawing.Color.FromArgb(94, 148, 255);
((System.Windows.Forms.Control)
(object)this.guna2TextBoxSniperQuickSwitch).Location = new
System.Drawing.Point(241, 98);
((System.Windows.Forms.Control)
(object)this.guna2TextBoxSniperQuickSwitch).Name = "guna2TextBoxSniperQuickSwitch";
this.guna2TextBoxSniperQuickSwitch.PasswordChar = '\0';
this.guna2TextBoxSniperQuickSwitch.PlaceholderForeColor =
System.Drawing.Color.DarkGray;
this.guna2TextBoxSniperQuickSwitch.PlaceholderText = "ENTER KEY";
this.guna2TextBoxSniperQuickSwitch.SelectedText = "";
((System.Windows.Forms.Control)
(object)this.guna2TextBoxSniperQuickSwitch).Size = new System.Drawing.Size(90, 23);
((System.Windows.Forms.Control)
(object)this.guna2TextBoxSniperQuickSwitch).TabIndex = 99;
this.guna2TextBoxSniperQuickSwitch.TextAlign =
System.Windows.Forms.HorizontalAlignment.Center;
this.label45.AutoSize = true;
this.label45.BackColor = System.Drawing.Color.FromArgb(192, 0, 0);
this.label45.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label45.Location = new System.Drawing.Point(7, 124);
this.label45.MaximumSize = new System.Drawing.Size(150, 1);
this.label45.Name = "label45";
this.label45.Size = new System.Drawing.Size(148, 1);
this.label45.TabIndex = 101;
this.label45.Text = resources.GetString("label45.Text");
this.label42.AutoSize = true;
this.label42.BackColor = System.Drawing.Color.FromArgb(192, 0, 0);
this.label42.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label42.Location = new System.Drawing.Point(3, 95);
this.label42.MaximumSize = new System.Drawing.Size(150, 1);
this.label42.Name = "label42";
this.label42.Size = new System.Drawing.Size(148, 1);
this.label42.TabIndex = 101;
this.label42.Text = resources.GetString("label42.Text");
this.label44.AutoSize = true;
this.label44.BackColor = System.Drawing.Color.FromArgb(192, 0, 0);
this.label44.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label44.Location = new System.Drawing.Point(212, 124);
this.label44.MaximumSize = new System.Drawing.Size(150, 1);
this.label44.Name = "label44";
this.label44.Size = new System.Drawing.Size(148, 1);
this.label44.TabIndex = 101;
this.label44.Text = resources.GetString("label44.Text");
this.label39.AutoSize = true;
this.label39.BackColor = System.Drawing.Color.FromArgb(192, 0, 0);
this.label39.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label39.Location = new System.Drawing.Point(-4, 65);
this.label39.MaximumSize = new System.Drawing.Size(150, 1);
this.label39.Name = "label39";
this.label39.Size = new System.Drawing.Size(148, 1);
this.label39.TabIndex = 101;
this.label39.Text = resources.GetString("label39.Text");
this.label41.AutoSize = true;
this.label41.BackColor = System.Drawing.Color.FromArgb(192, 0, 0);
this.label41.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label41.Location = new System.Drawing.Point(208, 95);
this.label41.MaximumSize = new System.Drawing.Size(150, 1);
this.label41.Name = "label41";
this.label41.Size = new System.Drawing.Size(148, 1);
this.label41.TabIndex = 101;
this.label41.Text = resources.GetString("label41.Text");
this.label32.AutoSize = true;
this.label32.BackColor = System.Drawing.Color.FromArgb(192, 0, 0);
this.label32.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label32.Location = new System.Drawing.Point(-9, 35);
this.label32.MaximumSize = new System.Drawing.Size(150, 1);
this.label32.Name = "label32";
this.label32.Size = new System.Drawing.Size(148, 1);
this.label32.TabIndex = 101;
this.label32.Text = resources.GetString("label32.Text");
this.label38.AutoSize = true;
this.label38.BackColor = System.Drawing.Color.FromArgb(192, 0, 0);
this.label38.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label38.Location = new System.Drawing.Point(201, 65);
this.label38.MaximumSize = new System.Drawing.Size(150, 1);
this.label38.Name = "label38";
this.label38.Size = new System.Drawing.Size(148, 1);
this.label38.TabIndex = 101;
this.label38.Text = resources.GetString("label38.Text");
this.guna2TextBoxSniperScope.Animated = true;
this.guna2TextBoxSniperScope.BorderRadius = 2;
this.guna2TextBoxSniperScope.BorderThickness = 0;
((System.Windows.Forms.Control)
(object)this.guna2TextBoxSniperScope).Cursor = System.Windows.Forms.Cursors.IBeam;
this.guna2TextBoxSniperScope.DefaultText = "";
this.guna2TextBoxSniperScope.DisabledState.BorderColor =
System.Drawing.Color.FromArgb(208, 208, 208);
this.guna2TextBoxSniperScope.DisabledState.FillColor =
System.Drawing.Color.FromArgb(226, 226, 226);
this.guna2TextBoxSniperScope.DisabledState.ForeColor =
System.Drawing.Color.FromArgb(138, 138, 138);
this.guna2TextBoxSniperScope.DisabledState.PlaceholderForeColor =
System.Drawing.Color.FromArgb(138, 138, 138);
this.guna2TextBoxSniperScope.FillColor =
System.Drawing.Color.FromArgb(64, 64, 64);
this.guna2TextBoxSniperScope.FocusedState.BorderColor =
System.Drawing.Color.FromArgb(94, 148, 255);
((System.Windows.Forms.Control)
(object)this.guna2TextBoxSniperScope).Font = new System.Drawing.Font("Segoe UI",
9f);
((System.Windows.Forms.Control)
(object)this.guna2TextBoxSniperScope).ForeColor = System.Drawing.Color.White;
this.guna2TextBoxSniperScope.HoverState.BorderColor =
System.Drawing.Color.FromArgb(94, 148, 255);
((System.Windows.Forms.Control)
(object)this.guna2TextBoxSniperScope).Location = new System.Drawing.Point(241, 69);
((System.Windows.Forms.Control)
(object)this.guna2TextBoxSniperScope).Name = "guna2TextBoxSniperScope";
this.guna2TextBoxSniperScope.PasswordChar = '\0';
this.guna2TextBoxSniperScope.PlaceholderForeColor =
System.Drawing.Color.DarkGray;
this.guna2TextBoxSniperScope.PlaceholderText = "ENTER KEY";
this.guna2TextBoxSniperScope.SelectedText = "";
((System.Windows.Forms.Control)
(object)this.guna2TextBoxSniperScope).Size = new System.Drawing.Size(90, 23);
((System.Windows.Forms.Control)
(object)this.guna2TextBoxSniperScope).TabIndex = 99;
this.guna2TextBoxSniperScope.TextAlign =
System.Windows.Forms.HorizontalAlignment.Center;
this.label31.AutoSize = true;
this.label31.BackColor = System.Drawing.Color.FromArgb(192, 0, 0);
this.label31.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label31.Location = new System.Drawing.Point(196, 35);
this.label31.MaximumSize = new System.Drawing.Size(150, 1);
this.label31.Name = "label31";
this.label31.Size = new System.Drawing.Size(148, 1);
this.label31.TabIndex = 101;
this.label31.Text = resources.GetString("label31.Text");
this.label43.AutoSize = true;
this.label43.BackColor = System.Drawing.Color.FromArgb(192, 0, 0);
this.label43.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label43.Location = new System.Drawing.Point(109, 124);
this.label43.MaximumSize = new System.Drawing.Size(150, 1);
this.label43.Name = "label43";
this.label43.Size = new System.Drawing.Size(148, 1);
this.label43.TabIndex = 101;
this.label43.Text = resources.GetString("label43.Text");
this.guna2TextBoxAimbotDrag.Animated = true;
this.guna2TextBoxAimbotDrag.BorderRadius = 2;
this.guna2TextBoxAimbotDrag.BorderThickness = 0;
((System.Windows.Forms.Control)
(object)this.guna2TextBoxAimbotDrag).Cursor = System.Windows.Forms.Cursors.IBeam;
this.guna2TextBoxAimbotDrag.DefaultText = "";
this.guna2TextBoxAimbotDrag.DisabledState.BorderColor =
System.Drawing.Color.FromArgb(208, 208, 208);
this.guna2TextBoxAimbotDrag.DisabledState.FillColor =
System.Drawing.Color.FromArgb(226, 226, 226);
this.guna2TextBoxAimbotDrag.DisabledState.ForeColor =
System.Drawing.Color.FromArgb(138, 138, 138);
this.guna2TextBoxAimbotDrag.DisabledState.PlaceholderForeColor =
System.Drawing.Color.FromArgb(138, 138, 138);
this.guna2TextBoxAimbotDrag.FillColor =
System.Drawing.Color.FromArgb(64, 64, 64);
this.guna2TextBoxAimbotDrag.FocusedState.BorderColor =
System.Drawing.Color.FromArgb(94, 148, 255);
((System.Windows.Forms.Control)
(object)this.guna2TextBoxAimbotDrag).Font = new System.Drawing.Font("Segoe UI",
9f);
((System.Windows.Forms.Control)
(object)this.guna2TextBoxAimbotDrag).ForeColor = System.Drawing.Color.White;
this.guna2TextBoxAimbotDrag.HoverState.BorderColor =
System.Drawing.Color.FromArgb(94, 148, 255);
((System.Windows.Forms.Control)
(object)this.guna2TextBoxAimbotDrag).Location = new System.Drawing.Point(241, 39);
((System.Windows.Forms.Control)
(object)this.guna2TextBoxAimbotDrag).Name = "guna2TextBoxAimbotDrag";
this.guna2TextBoxAimbotDrag.PasswordChar = '\0';
this.guna2TextBoxAimbotDrag.PlaceholderForeColor =
System.Drawing.Color.DarkGray;
this.guna2TextBoxAimbotDrag.PlaceholderText = "ENTER KEY";
this.guna2TextBoxAimbotDrag.SelectedText = "";
((System.Windows.Forms.Control)
(object)this.guna2TextBoxAimbotDrag).Size = new System.Drawing.Size(90, 23);
((System.Windows.Forms.Control)
(object)this.guna2TextBoxAimbotDrag).TabIndex = 99;
this.guna2TextBoxAimbotDrag.TextAlign =
System.Windows.Forms.HorizontalAlignment.Center;
this.label40.AutoSize = true;
this.label40.BackColor = System.Drawing.Color.FromArgb(192, 0, 0);
this.label40.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label40.Location = new System.Drawing.Point(105, 95);
this.label40.MaximumSize = new System.Drawing.Size(150, 1);
this.label40.Name = "label40";
this.label40.Size = new System.Drawing.Size(148, 1);
this.label40.TabIndex = 101;
this.label40.Text = resources.GetString("label40.Text");
this.guna2TextBoxAimbotExternal.Animated = true;
this.guna2TextBoxAimbotExternal.BorderRadius = 2;
this.guna2TextBoxAimbotExternal.BorderThickness = 0;
((System.Windows.Forms.Control)
(object)this.guna2TextBoxAimbotExternal).Cursor =
System.Windows.Forms.Cursors.IBeam;
this.guna2TextBoxAimbotExternal.DefaultText = "";
this.guna2TextBoxAimbotExternal.DisabledState.BorderColor =
System.Drawing.Color.FromArgb(208, 208, 208);
this.guna2TextBoxAimbotExternal.DisabledState.FillColor =
System.Drawing.Color.FromArgb(226, 226, 226);
this.guna2TextBoxAimbotExternal.DisabledState.ForeColor =
System.Drawing.Color.FromArgb(138, 138, 138);
this.guna2TextBoxAimbotExternal.DisabledState.PlaceholderForeColor =
System.Drawing.Color.FromArgb(138, 138, 138);
this.guna2TextBoxAimbotExternal.FillColor =
System.Drawing.Color.FromArgb(64, 64, 64);
this.guna2TextBoxAimbotExternal.FocusedState.BorderColor =
System.Drawing.Color.FromArgb(94, 148, 255);
((System.Windows.Forms.Control)
(object)this.guna2TextBoxAimbotExternal).Font = new System.Drawing.Font("Segoe UI",
9f);
((System.Windows.Forms.Control)
(object)this.guna2TextBoxAimbotExternal).ForeColor = System.Drawing.Color.White;
this.guna2TextBoxAimbotExternal.HoverState.BorderColor =
System.Drawing.Color.FromArgb(94, 148, 255);
((System.Windows.Forms.Control)
(object)this.guna2TextBoxAimbotExternal).Location = new System.Drawing.Point(241,
9);
((System.Windows.Forms.Control)
(object)this.guna2TextBoxAimbotExternal).Name = "guna2TextBoxAimbotExternal";
this.guna2TextBoxAimbotExternal.PasswordChar = '\0';
this.guna2TextBoxAimbotExternal.PlaceholderForeColor =
System.Drawing.Color.DarkGray;
this.guna2TextBoxAimbotExternal.PlaceholderText = "ENTER KEY";
this.guna2TextBoxAimbotExternal.SelectedText = "";
((System.Windows.Forms.Control)
(object)this.guna2TextBoxAimbotExternal).Size = new System.Drawing.Size(90, 23);
((System.Windows.Forms.Control)
(object)this.guna2TextBoxAimbotExternal).TabIndex = 99;
this.guna2TextBoxAimbotExternal.TextAlign =
System.Windows.Forms.HorizontalAlignment.Center;
this.label33.AutoSize = true;
this.label33.BackColor = System.Drawing.Color.FromArgb(192, 0, 0);
this.label33.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label33.Location = new System.Drawing.Point(98, 65);
this.label33.MaximumSize = new System.Drawing.Size(150, 1);
this.label33.Name = "label33";
this.label33.Size = new System.Drawing.Size(148, 1);
this.label33.TabIndex = 101;
this.label33.Text = resources.GetString("label33.Text");
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel34).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel34).Font =
new System.Drawing.Font("Microsoft New Tai Lue", 12f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel34).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel34).Location
= new System.Drawing.Point(17, 11);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel34).Name =
"guna2HtmlLabel34";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel34).Size =
new System.Drawing.Size(127, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel34).TabIndex
= 2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel34).Text =
"Aimbot External";
this.label30.AutoSize = true;
this.label30.BackColor = System.Drawing.Color.FromArgb(192, 0, 0);
this.label30.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label30.Location = new System.Drawing.Point(93, 35);
this.label30.MaximumSize = new System.Drawing.Size(150, 1);
this.label30.Name = "label30";
this.label30.Size = new System.Drawing.Size(148, 1);
this.label30.TabIndex = 101;
this.label30.Text = resources.GetString("label30.Text");
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel35).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel35).Font =
new System.Drawing.Font("Microsoft New Tai Lue", 12f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel35).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel35).Location
= new System.Drawing.Point(17, 41);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel35).Name =
"guna2HtmlLabel35";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel35).Size =
new System.Drawing.Size(101, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel35).TabIndex
= 2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel35).Text =
"Aimbot Drag";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel36).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel36).Font =
new System.Drawing.Font("Microsoft New Tai Lue", 12f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel36).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel36).Location
= new System.Drawing.Point(17, 71);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel36).Name =
"guna2HtmlLabel36";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel36).Size =
new System.Drawing.Size(102, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel36).TabIndex
= 2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel36).Text =
"Sniper Scope";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel37).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel37).Font =
new System.Drawing.Font("Microsoft New Tai Lue", 12f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel37).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel37).Location
= new System.Drawing.Point(17, 101);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel37).Name =
"guna2HtmlLabel37";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel37).Size =
new System.Drawing.Size(155, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel37).TabIndex
= 2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel37).Text =
"Sniper Quick Switch";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel38).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel38).Font =
new System.Drawing.Font("Microsoft New Tai Lue", 12f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel38).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel38).Location
= new System.Drawing.Point(17, 131);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel38).Name =
"guna2HtmlLabel38";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel38).Size =
new System.Drawing.Size(102, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel38).TabIndex
= 2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel38).Text =
"Chams Menu";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel16).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel16).Font =
new System.Drawing.Font("Microsoft New Tai Lue", 12f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel16).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel16).Location
= new System.Drawing.Point(17, 11);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel16).Name =
"guna2HtmlLabel16";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel16).Size =
new System.Drawing.Size(3, 2);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel16).TabIndex
= 98;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel16).Text =
null;
this.guna2CustomCheckBox9.CheckedState.BorderColor =
System.Drawing.Color.White;
this.guna2CustomCheckBox9.CheckedState.BorderRadius = 2;
this.guna2CustomCheckBox9.CheckedState.BorderThickness = 0;
this.guna2CustomCheckBox9.CheckedState.FillColor =
System.Drawing.Color.Gainsboro;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox9).Location = new System.Drawing.Point(76, 481);
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox9).Name
= "guna2CustomCheckBox9";
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox9).Size
= new System.Drawing.Size(20, 20);
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox9).TabIndex = 64;
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox9).Text
= "guna2CustomCheckBox3";
this.guna2CustomCheckBox9.UncheckedState.BorderColor =
System.Drawing.Color.LightGray;
this.guna2CustomCheckBox9.UncheckedState.BorderRadius = 2;
this.guna2CustomCheckBox9.UncheckedState.BorderThickness = 0;
this.guna2CustomCheckBox9.UncheckedState.FillColor =
System.Drawing.Color.Transparent;
this.guna2Button3.Animated = true;
this.guna2Button3.AutoRoundedCorners = true;
this.guna2Button3.BorderRadius = 12;
this.guna2Button3.DefaultAutoSize = true;
this.guna2Button3.DisabledState.BorderColor =
System.Drawing.Color.DarkGray;
this.guna2Button3.DisabledState.CustomBorderColor =
System.Drawing.Color.DarkGray;
this.guna2Button3.DisabledState.FillColor =
System.Drawing.Color.FromArgb(169, 169, 169);
this.guna2Button3.DisabledState.ForeColor =
System.Drawing.Color.FromArgb(141, 141, 141);
this.guna2Button3.FillColor = System.Drawing.Color.Indigo;
((System.Windows.Forms.Control)(object)this.guna2Button3).Font = new
System.Drawing.Font("Segoe UI", 9f, System.Drawing.FontStyle.Bold,
System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2Button3).ForeColor =
System.Drawing.Color.White;
this.guna2Button3.IndicateFocus = true;
((System.Windows.Forms.Control)(object)this.guna2Button3).Location =
new System.Drawing.Point(12, 481);
((System.Windows.Forms.Control)(object)this.guna2Button3).Name =
"guna2Button3";
((System.Windows.Forms.Control)(object)this.guna2Button3).Size = new
System.Drawing.Size(58, 27);
((System.Windows.Forms.Control)(object)this.guna2Button3).TabIndex =
103;
((System.Windows.Forms.Control)(object)this.guna2Button3).Text =
"Next";
((System.Windows.Forms.Control)(object)this.otherpan2).BackColor =
System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)
(object)this.otherpan2).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel31);
((System.Windows.Forms.Control)
(object)this.otherpan2).Controls.Add(this.label37);
((System.Windows.Forms.Control)
(object)this.otherpan2).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2Button4);
((System.Windows.Forms.Control)
(object)this.otherpan2).Controls.Add(this.label34);
((System.Windows.Forms.Control)
(object)this.otherpan2).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox19);
((System.Windows.Forms.Control)
(object)this.otherpan2).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox18);
((System.Windows.Forms.Control)
(object)this.otherpan2).Controls.Add(this.label36);
((System.Windows.Forms.Control)
(object)this.otherpan2).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel33);
((System.Windows.Forms.Control)
(object)this.otherpan2).Controls.Add(this.label35);
((System.Windows.Forms.Control)
(object)this.otherpan2).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel32);
((System.Windows.Forms.Control)
(object)this.otherpan2).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2PictureBox6);
((System.Windows.Forms.Control)
(object)this.otherpan2).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2PictureBox2);
this.otherpan2.CustomBorderColor = System.Drawing.Color.FromArgb(126,
1, 236);
this.otherpan2.CustomBorderThickness = new
System.Windows.Forms.Padding(1);
((System.Windows.Forms.Control)(object)this.otherpan2).Location = new
System.Drawing.Point(620, 327);
((System.Windows.Forms.Control)(object)this.otherpan2).Name =
"otherpan2";
((System.Windows.Forms.Control)(object)this.otherpan2).Size = new
System.Drawing.Size(384, 260);
((System.Windows.Forms.Control)(object)this.otherpan2).TabIndex = 105;
((System.Windows.Forms.Control)(object)this.otherpan2).Visible = false;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel31).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel31).ForeColor
= System.Drawing.Color.Gray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel31).Location
= new System.Drawing.Point(95, 41);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel31).Name =
"guna2HtmlLabel31";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel31).Size =
new System.Drawing.Size(182, 15);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel31).TabIndex
= 102;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel31).Text =
"Must use on your Bot / Noob account";
this.label37.AutoSize = true;
this.label37.BackColor = System.Drawing.Color.Transparent;
this.label37.Font = new System.Drawing.Font("Microsoft YaHei", 14.25f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
this.label37.ForeColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label37.Location = new System.Drawing.Point(111, 15);
this.label37.Name = "label37";
this.label37.Size = new System.Drawing.Size(153, 26);
this.label37.TabIndex = 63;
this.label37.Text = "OTHER HACKS";
this.guna2Button4.Animated = true;
this.guna2Button4.AutoRoundedCorners = true;
this.guna2Button4.BorderRadius = 12;
this.guna2Button4.DefaultAutoSize = true;
this.guna2Button4.DisabledState.BorderColor =
System.Drawing.Color.DarkGray;
this.guna2Button4.DisabledState.CustomBorderColor =
System.Drawing.Color.DarkGray;
this.guna2Button4.DisabledState.FillColor =
System.Drawing.Color.FromArgb(169, 169, 169);
this.guna2Button4.DisabledState.ForeColor =
System.Drawing.Color.FromArgb(141, 141, 141);
this.guna2Button4.FillColor = System.Drawing.Color.Maroon;
((System.Windows.Forms.Control)(object)this.guna2Button4).Font = new
System.Drawing.Font("Segoe UI", 9f, System.Drawing.FontStyle.Bold,
System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2Button4).ForeColor =
System.Drawing.Color.White;
this.guna2Button4.IndicateFocus = true;
((System.Windows.Forms.Control)(object)this.guna2Button4).Location =
new System.Drawing.Point(324, 229);
((System.Windows.Forms.Control)(object)this.guna2Button4).Name =
"guna2Button4";
((System.Windows.Forms.Control)(object)this.guna2Button4).Size = new
System.Drawing.Size(57, 27);
((System.Windows.Forms.Control)(object)this.guna2Button4).TabIndex =
103;
((System.Windows.Forms.Control)(object)this.guna2Button4).Text =
"Back";
((System.Windows.Forms.Control)(object)this.guna2Button4).Click += new
System.EventHandler(guna2Button4_Click);
this.label34.AutoSize = true;
this.label34.BackColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label34.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label34.Location = new System.Drawing.Point(116, 61);
this.label34.MaximumSize = new System.Drawing.Size(150, 1);
this.label34.Name = "label34";
this.label34.Size = new System.Drawing.Size(148, 1);
this.label34.TabIndex = 101;
this.label34.Text = resources.GetString("label34.Text");
this.guna2CustomCheckBox19.CheckedState.BorderColor =
System.Drawing.Color.White;
this.guna2CustomCheckBox19.CheckedState.BorderRadius = 2;
this.guna2CustomCheckBox19.CheckedState.BorderThickness = 0;
this.guna2CustomCheckBox19.CheckedState.FillColor =
System.Drawing.Color.Gainsboro;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox19).Location = new System.Drawing.Point(258, 103);
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox19).Name
= "guna2CustomCheckBox19";
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox19).Size
= new System.Drawing.Size(20, 20);
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox19).TabIndex = 64;
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox19).Text
= "guna2CustomCheckBox3";
this.guna2CustomCheckBox19.UncheckedState.BorderColor =
System.Drawing.Color.LightGray;
this.guna2CustomCheckBox19.UncheckedState.BorderRadius = 2;
this.guna2CustomCheckBox19.UncheckedState.BorderThickness = 0;
this.guna2CustomCheckBox19.UncheckedState.FillColor =
System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox19).Click += new
System.EventHandler(guna2CustomCheckBox19_Click);
this.guna2CustomCheckBox18.CheckedState.BorderColor =
System.Drawing.Color.White;
this.guna2CustomCheckBox18.CheckedState.BorderRadius = 2;
this.guna2CustomCheckBox18.CheckedState.BorderThickness = 0;
this.guna2CustomCheckBox18.CheckedState.FillColor =
System.Drawing.Color.Gainsboro;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox18).Location = new System.Drawing.Point(258, 75);
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox18).Name
= "guna2CustomCheckBox18";
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox18).Size
= new System.Drawing.Size(20, 20);
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox18).TabIndex = 64;
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox18).Text
= "guna2CustomCheckBox3";
this.guna2CustomCheckBox18.UncheckedState.BorderColor =
System.Drawing.Color.LightGray;
this.guna2CustomCheckBox18.UncheckedState.BorderRadius = 2;
this.guna2CustomCheckBox18.UncheckedState.BorderThickness = 0;
this.guna2CustomCheckBox18.UncheckedState.FillColor =
System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox18).Click += new
System.EventHandler(guna2CustomCheckBox18_Click);
this.label36.AutoSize = true;
this.label36.BackColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label36.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label36.Location = new System.Drawing.Point(16, 61);
this.label36.MaximumSize = new System.Drawing.Size(150, 1);
this.label36.Name = "label36";
this.label36.Size = new System.Drawing.Size(148, 1);
this.label36.TabIndex = 101;
this.label36.Text = resources.GetString("label36.Text");
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel33).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel33).Font =
new System.Drawing.Font("Microsoft New Tai Lue", 12f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel33).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel33).Location
= new System.Drawing.Point(30, 100);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel33).Name =
"guna2HtmlLabel33";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel33).Size =
new System.Drawing.Size(117, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel33).TabIndex
= 2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel33).Text =
"Speed External";
this.label35.AutoSize = true;
this.label35.BackColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label35.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label35.Location = new System.Drawing.Point(219, 61);
this.label35.MaximumSize = new System.Drawing.Size(150, 1);
this.label35.Name = "label35";
this.label35.Size = new System.Drawing.Size(148, 1);
this.label35.TabIndex = 101;
this.label35.Text = resources.GetString("label35.Text");
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel32).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel32).Font =
new System.Drawing.Font("Microsoft New Tai Lue", 12f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel32).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel32).Location
= new System.Drawing.Point(30, 72);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel32).Name =
"guna2HtmlLabel32";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel32).Size =
new System.Drawing.Size(94, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel32).TabIndex
= 2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel32).Text =
"Camera Left";
((System.Windows.Forms.Control)(object)this.sniperpan2).BackColor =
System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)
(object)this.sniperpan2).Controls.Add(this.label49);
((System.Windows.Forms.Control)
(object)this.sniperpan2).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2Button5);
((System.Windows.Forms.Control)
(object)this.sniperpan2).Controls.Add(this.label50);
((System.Windows.Forms.Control)
(object)this.sniperpan2).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox20);
((System.Windows.Forms.Control)
(object)this.sniperpan2).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox21);
((System.Windows.Forms.Control)
(object)this.sniperpan2).Controls.Add(this.label51);
((System.Windows.Forms.Control)
(object)this.sniperpan2).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox23);
((System.Windows.Forms.Control)
(object)this.sniperpan2).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox22);
((System.Windows.Forms.Control)
(object)this.sniperpan2).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox14);
((System.Windows.Forms.Control)
(object)this.sniperpan2).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel40);
((System.Windows.Forms.Control)
(object)this.sniperpan2).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel22);
((System.Windows.Forms.Control)
(object)this.sniperpan2).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel14);
((System.Windows.Forms.Control)
(object)this.sniperpan2).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel41);
((System.Windows.Forms.Control)
(object)this.sniperpan2).Controls.Add(this.label52);
((System.Windows.Forms.Control)
(object)this.sniperpan2).Controls.Add((System.Windows.Forms.Control)
(object)this.guna2HtmlLabel42);
this.sniperpan2.CustomBorderColor = System.Drawing.Color.FromArgb(126,
1, 236);
this.sniperpan2.CustomBorderThickness = new
System.Windows.Forms.Padding(1);
((System.Windows.Forms.Control)(object)this.sniperpan2).Location = new
System.Drawing.Point(795, 593);
((System.Windows.Forms.Control)(object)this.sniperpan2).Name =
"sniperpan2";
((System.Windows.Forms.Control)(object)this.sniperpan2).Size = new
System.Drawing.Size(384, 260);
((System.Windows.Forms.Control)(object)this.sniperpan2).TabIndex = 105;
((System.Windows.Forms.Control)(object)this.sniperpan2).Visible =
false;
this.label49.AutoSize = true;
this.label49.BackColor = System.Drawing.Color.Transparent;
this.label49.Font = new System.Drawing.Font("Microsoft YaHei", 14.25f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
this.label49.ForeColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label49.Location = new System.Drawing.Point(139, 21);
this.label49.Name = "label49";
this.label49.Size = new System.Drawing.Size(115, 26);
this.label49.TabIndex = 63;
this.label49.Text = "LOCATION";
this.guna2Button5.Animated = true;
this.guna2Button5.AutoRoundedCorners = true;
this.guna2Button5.BorderRadius = 12;
this.guna2Button5.DefaultAutoSize = true;
this.guna2Button5.DisabledState.BorderColor =
System.Drawing.Color.DarkGray;
this.guna2Button5.DisabledState.CustomBorderColor =
System.Drawing.Color.DarkGray;
this.guna2Button5.DisabledState.FillColor =
System.Drawing.Color.FromArgb(169, 169, 169);
this.guna2Button5.DisabledState.ForeColor =
System.Drawing.Color.FromArgb(141, 141, 141);
this.guna2Button5.FillColor = System.Drawing.Color.Maroon;
((System.Windows.Forms.Control)(object)this.guna2Button5).Font = new
System.Drawing.Font("Segoe UI", 9f, System.Drawing.FontStyle.Bold,
System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2Button5).ForeColor =
System.Drawing.Color.White;
this.guna2Button5.IndicateFocus = true;
((System.Windows.Forms.Control)(object)this.guna2Button5).Location =
new System.Drawing.Point(323, 229);
((System.Windows.Forms.Control)(object)this.guna2Button5).Name =
"guna2Button5";
((System.Windows.Forms.Control)(object)this.guna2Button5).Size = new
System.Drawing.Size(57, 27);
((System.Windows.Forms.Control)(object)this.guna2Button5).TabIndex =
103;
((System.Windows.Forms.Control)(object)this.guna2Button5).Text =
"Back";
((System.Windows.Forms.Control)(object)this.guna2Button5).Click += new
System.EventHandler(guna2Button5_Click);
this.label50.AutoSize = true;
this.label50.BackColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label50.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label50.Location = new System.Drawing.Point(116, 61);
this.label50.MaximumSize = new System.Drawing.Size(150, 1);
this.label50.Name = "label50";
this.label50.Size = new System.Drawing.Size(148, 1);
this.label50.TabIndex = 101;
this.label50.Text = resources.GetString("label50.Text");
this.guna2CustomCheckBox20.CheckedState.BorderColor =
System.Drawing.Color.White;
this.guna2CustomCheckBox20.CheckedState.BorderRadius = 2;
this.guna2CustomCheckBox20.CheckedState.BorderThickness = 0;
this.guna2CustomCheckBox20.CheckedState.FillColor =
System.Drawing.Color.Gainsboro;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox20).Location = new System.Drawing.Point(272, 106);
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox20).Name
= "guna2CustomCheckBox20";
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox20).Size
= new System.Drawing.Size(20, 20);
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox20).TabIndex = 64;
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox20).Text
= "guna2CustomCheckBox3";
this.guna2CustomCheckBox20.UncheckedState.BorderColor =
System.Drawing.Color.LightGray;
this.guna2CustomCheckBox20.UncheckedState.BorderRadius = 2;
this.guna2CustomCheckBox20.UncheckedState.BorderThickness = 0;
this.guna2CustomCheckBox20.UncheckedState.FillColor =
System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox20).Click += new
System.EventHandler(guna2CustomCheckBox20_Click);
this.guna2CustomCheckBox21.CheckedState.BorderColor =
System.Drawing.Color.White;
this.guna2CustomCheckBox21.CheckedState.BorderRadius = 2;
this.guna2CustomCheckBox21.CheckedState.BorderThickness = 0;
this.guna2CustomCheckBox21.CheckedState.FillColor =
System.Drawing.Color.Gainsboro;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox21).Location = new System.Drawing.Point(272, 80);
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox21).Name
= "guna2CustomCheckBox21";
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox21).Size
= new System.Drawing.Size(20, 20);
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox21).TabIndex = 64;
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox21).Text
= "guna2CustomCheckBox3";
this.guna2CustomCheckBox21.UncheckedState.BorderColor =
System.Drawing.Color.LightGray;
this.guna2CustomCheckBox21.UncheckedState.BorderRadius = 2;
this.guna2CustomCheckBox21.UncheckedState.BorderThickness = 0;
this.guna2CustomCheckBox21.UncheckedState.FillColor =
System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox21).Click += new
System.EventHandler(guna2CustomCheckBox21_Click);
this.label51.AutoSize = true;
this.label51.BackColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label51.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label51.Location = new System.Drawing.Point(16, 61);
this.label51.MaximumSize = new System.Drawing.Size(150, 1);
this.label51.Name = "label51";
this.label51.Size = new System.Drawing.Size(148, 1);
this.label51.TabIndex = 101;
this.label51.Text = resources.GetString("label51.Text");
this.guna2CustomCheckBox23.CheckedState.BorderColor =
System.Drawing.Color.White;
this.guna2CustomCheckBox23.CheckedState.BorderRadius = 2;
this.guna2CustomCheckBox23.CheckedState.BorderThickness = 0;
this.guna2CustomCheckBox23.CheckedState.FillColor =
System.Drawing.Color.Gainsboro;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox23).Location = new System.Drawing.Point(272, 184);
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox23).Name
= "guna2CustomCheckBox23";
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox23).Size
= new System.Drawing.Size(20, 20);
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox23).TabIndex = 64;
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox23).Text
= "guna2CustomCheckBox3";
this.guna2CustomCheckBox23.UncheckedState.BorderColor =
System.Drawing.Color.LightGray;
this.guna2CustomCheckBox23.UncheckedState.BorderRadius = 2;
this.guna2CustomCheckBox23.UncheckedState.BorderThickness = 0;
this.guna2CustomCheckBox23.UncheckedState.FillColor =
System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox23).Click += new
System.EventHandler(guna2CustomCheckBox23_Click);
this.guna2CustomCheckBox22.CheckedState.BorderColor =
System.Drawing.Color.White;
this.guna2CustomCheckBox22.CheckedState.BorderRadius = 2;
this.guna2CustomCheckBox22.CheckedState.BorderThickness = 0;
this.guna2CustomCheckBox22.CheckedState.FillColor =
System.Drawing.Color.Gainsboro;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox22).Location = new System.Drawing.Point(272, 158);
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox22).Name
= "guna2CustomCheckBox22";
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox22).Size
= new System.Drawing.Size(20, 20);
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox22).TabIndex = 64;
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox22).Text
= "guna2CustomCheckBox3";
this.guna2CustomCheckBox22.UncheckedState.BorderColor =
System.Drawing.Color.LightGray;
this.guna2CustomCheckBox22.UncheckedState.BorderRadius = 2;
this.guna2CustomCheckBox22.UncheckedState.BorderThickness = 0;
this.guna2CustomCheckBox22.UncheckedState.FillColor =
System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox22).Click += new
System.EventHandler(guna2CustomCheckBox22_Click_1);
this.guna2CustomCheckBox14.CheckedState.BorderColor =
System.Drawing.Color.White;
this.guna2CustomCheckBox14.CheckedState.BorderRadius = 2;
this.guna2CustomCheckBox14.CheckedState.BorderThickness = 0;
this.guna2CustomCheckBox14.CheckedState.FillColor =
System.Drawing.Color.Gainsboro;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox14).Location = new System.Drawing.Point(272, 132);
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox14).Name
= "guna2CustomCheckBox14";
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox14).Size
= new System.Drawing.Size(20, 20);
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox14).TabIndex = 64;
((System.Windows.Forms.Control)(object)this.guna2CustomCheckBox14).Text
= "guna2CustomCheckBox3";
this.guna2CustomCheckBox14.UncheckedState.BorderColor =
System.Drawing.Color.LightGray;
this.guna2CustomCheckBox14.UncheckedState.BorderRadius = 2;
this.guna2CustomCheckBox14.UncheckedState.BorderThickness = 0;
this.guna2CustomCheckBox14.UncheckedState.FillColor =
System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox14).Click += new
System.EventHandler(guna2CustomCheckBox14_Click);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel40).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel40).Font =
new System.Drawing.Font("Microsoft New Tai Lue", 12f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel40).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel40).Location
= new System.Drawing.Point(56, 185);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel40).Name =
"guna2HtmlLabel40";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel40).Size =
new System.Drawing.Size(200, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel40).TabIndex
= 2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel40).Text =
"SNIPER AMMO LOCATION";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel22).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel22).Font =
new System.Drawing.Font("Microsoft New Tai Lue", 12f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel22).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel22).Location
= new System.Drawing.Point(55, 158);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel22).Name =
"guna2HtmlLabel22";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel22).Size =
new System.Drawing.Size(130, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel22).TabIndex
= 2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel22).Text =
"MP40 LOCATION";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel14).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel14).Font =
new System.Drawing.Font("Microsoft New Tai Lue", 12f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel14).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel14).Location
= new System.Drawing.Point(56, 131);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel14).Name =
"guna2HtmlLabel14";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel14).Size =
new System.Drawing.Size(145, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel14).TabIndex
= 2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel14).Text =
"AWM-Y LOCATION";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel41).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel41).Font =
new System.Drawing.Font("Microsoft New Tai Lue", 12f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel41).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel41).Location
= new System.Drawing.Point(56, 105);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel41).Name =
"guna2HtmlLabel41";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel41).Size =
new System.Drawing.Size(130, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel41).TabIndex
= 2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel41).Text =
"M82B LOCATION";
this.label52.AutoSize = true;
this.label52.BackColor = System.Drawing.Color.FromArgb(126, 1, 236);
this.label52.Font = new System.Drawing.Font("Microsoft Sans Serif",
8.25f, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, 0);
this.label52.Location = new System.Drawing.Point(219, 61);
this.label52.MaximumSize = new System.Drawing.Size(150, 1);
this.label52.Name = "label52";
this.label52.Size = new System.Drawing.Size(148, 1);
this.label52.TabIndex = 101;
this.label52.Text = resources.GetString("label52.Text");
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel42).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel42).Font =
new System.Drawing.Font("Microsoft New Tai Lue", 12f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel42).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel42).Location
= new System.Drawing.Point(56, 77);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel42).Name =
"guna2HtmlLabel42";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel42).Size =
new System.Drawing.Size(202, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel42).TabIndex
= 2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel42).Text =
"AWM NORMAL LOCATION";
((System.Windows.Forms.Control)(object)this.guna2PictureBox4).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2PictureBox4).Cursor =
System.Windows.Forms.Cursors.Hand;
this.guna2PictureBox4.FillColor = System.Drawing.Color.Transparent;
((System.Windows.Forms.PictureBox)(object)this.guna2PictureBox4).Image
= (System.Drawing.Image)resources.GetObject("guna2PictureBox4.Image");
this.guna2PictureBox4.ImageRotate = 0f;
((System.Windows.Forms.Control)(object)this.guna2PictureBox4).Location
= new System.Drawing.Point(623, 13);
((System.Windows.Forms.Control)(object)this.guna2PictureBox4).Name =
"guna2PictureBox4";
((System.Windows.Forms.Control)(object)this.guna2PictureBox4).Size =
new System.Drawing.Size(18, 19);
((System.Windows.Forms.PictureBox)
(object)this.guna2PictureBox4).SizeMode =
System.Windows.Forms.PictureBoxSizeMode.Zoom;
((System.Windows.Forms.PictureBox)
(object)this.guna2PictureBox4).TabIndex = 93;
((System.Windows.Forms.PictureBox)
(object)this.guna2PictureBox4).TabStop = false;
this.guna2PictureBox4.UseTransparentBackground = true;
((System.Windows.Forms.Control)(object)this.guna2PictureBox4).Click +=
new System.EventHandler(guna2PictureBox4_Click);
((System.Windows.Forms.PictureBox)(object)this.guna2PictureBox1).Image
= (System.Drawing.Image)resources.GetObject("guna2PictureBox1.Image");
this.guna2PictureBox1.ImageRotate = 0f;
((System.Windows.Forms.Control)(object)this.guna2PictureBox1).Location
= new System.Drawing.Point(-32, -6);
((System.Windows.Forms.Control)(object)this.guna2PictureBox1).Name =
"guna2PictureBox1";
((System.Windows.Forms.Control)(object)this.guna2PictureBox1).Size =
new System.Drawing.Size(349, 54);
((System.Windows.Forms.PictureBox)
(object)this.guna2PictureBox1).SizeMode =
System.Windows.Forms.PictureBoxSizeMode.Zoom;
((System.Windows.Forms.PictureBox)
(object)this.guna2PictureBox1).TabIndex = 106;
((System.Windows.Forms.PictureBox)
(object)this.guna2PictureBox1).TabStop = false;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel45).BackColor
= System.Drawing.Color.Transparent;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel45).Font =
new System.Drawing.Font("Microsoft New Tai Lue", 12f,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel45).ForeColor
= System.Drawing.Color.LightGray;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel45).Location
= new System.Drawing.Point(39, 190);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel45).Name =
"guna2HtmlLabel45";
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel45).Size =
new System.Drawing.Size(88, 23);
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel45).TabIndex
= 2;
((System.Windows.Forms.Control)(object)this.guna2HtmlLabel45).Text =
"ANTIVIRUS";
this.guna2Button7.Animated = true;
this.guna2Button7.AutoRoundedCorners = true;
this.guna2Button7.BorderRadius = 10;
this.guna2Button7.DisabledState.BorderColor =
System.Drawing.Color.DarkGray;
this.guna2Button7.DisabledState.CustomBorderColor =
System.Drawing.Color.DarkGray;
this.guna2Button7.DisabledState.FillColor =
System.Drawing.Color.FromArgb(169, 169, 169);
this.guna2Button7.DisabledState.ForeColor =
System.Drawing.Color.FromArgb(141, 141, 141);
this.guna2Button7.FillColor = System.Drawing.Color.FromArgb(0, 64, 0);
((System.Windows.Forms.Control)(object)this.guna2Button7).Font = new
System.Drawing.Font("Segoe UI", 9f, System.Drawing.FontStyle.Bold,
System.Drawing.GraphicsUnit.Point, 0);
((System.Windows.Forms.Control)(object)this.guna2Button7).ForeColor =
System.Drawing.Color.White;
((System.Windows.Forms.Control)(object)this.guna2Button7).Location =
new System.Drawing.Point(221, 190);
((System.Windows.Forms.Control)(object)this.guna2Button7).Name =
"guna2Button7";
((System.Windows.Forms.Control)(object)this.guna2Button7).Size = new
System.Drawing.Size(49, 23);
((System.Windows.Forms.Control)(object)this.guna2Button7).TabIndex =
102;
((System.Windows.Forms.Control)(object)this.guna2Button7).Text = "ON";
((System.Windows.Forms.Control)(object)this.guna2Button7).Click += new
System.EventHandler(guna2Button7_Click);
this.guna2Button8.Animated = true;
this.guna2Button8.AutoRoundedCorners = true;
this.guna2Button8.BorderRadius = 10;
this.guna2Button8.DisabledState.BorderColor =
System.Drawing.Color.DarkGray;
this.guna2Button8.DisabledState.CustomBorderColor =
System.Drawing.Color.DarkGray;
this.guna2Button8.DisabledState.FillColor =
System.Drawing.Color.FromArgb(169, 169, 169);
this.guna2Button8.DisabledState.ForeColor =
System.Drawing.Color.FromArgb(141, 141, 141);
this.guna2Button8.FillColor = System.Drawing.Color.Maroon;
((System.Windows.Forms.Control)(object)this.guna2Button8).Font = new
System.Drawing.Font("Segoe UI", 9f, System.Drawing.FontStyle.Bold);
((System.Windows.Forms.Control)(object)this.guna2Button8).ForeColor =
System.Drawing.Color.White;
((System.Windows.Forms.Control)(object)this.guna2Button8).Location =
new System.Drawing.Point(294, 190);
((System.Windows.Forms.Control)(object)this.guna2Button8).Name =
"guna2Button8";
((System.Windows.Forms.Control)(object)this.guna2Button8).Size = new
System.Drawing.Size(49, 23);
((System.Windows.Forms.Control)(object)this.guna2Button8).TabIndex =
102;
((System.Windows.Forms.Control)(object)this.guna2Button8).Text = "OFF";
((System.Windows.Forms.Control)(object)this.guna2Button8).Click += new
System.EventHandler(guna2Button8_Click);
base.AutoScaleDimensions = new System.Drawing.SizeF(6f, 13f);
base.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoValidate =
System.Windows.Forms.AutoValidate.EnablePreventFocusChange;
this.BackColor = System.Drawing.Color.FromArgb(5, 0, 10);
base.ClientSize = new System.Drawing.Size(1386, 788);
base.Controls.Add((System.Windows.Forms.Control)
(object)this.guna2PictureBox4);
base.Controls.Add((System.Windows.Forms.Control)
(object)this.mobilepan);
base.Controls.Add((System.Windows.Forms.Control)
(object)this.otherpan2);
base.Controls.Add((System.Windows.Forms.Control)
(object)this.guna2Button3);
base.Controls.Add((System.Windows.Forms.Control)
(object)this.sniperpan2);
base.Controls.Add((System.Windows.Forms.Control)
(object)this.guna2CustomCheckBox9);
base.Controls.Add((System.Windows.Forms.Control)
(object)this.sniperpan);
base.Controls.Add((System.Windows.Forms.Control)
(object)this.locationpan);
base.Controls.Add((System.Windows.Forms.Control)
(object)this.hotkeypan);
base.Controls.Add((System.Windows.Forms.Control)(object)this.otherpan);
base.Controls.Add((System.Windows.Forms.Control)
(object)this.settingspan);
base.Controls.Add((System.Windows.Forms.Control)
(object)this.aimbotpan);
base.Controls.Add((System.Windows.Forms.Control)
(object)this.guna2Panel1);
base.Controls.Add((System.Windows.Forms.Control)(object)this.sidepan);
base.Controls.Add((System.Windows.Forms.Control)
(object)this.guna2PictureBox1);
this.ForeColor = System.Drawing.Color.White;
base.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
base.Icon = (System.Drawing.Icon)resources.GetObject("$this.Icon");
base.Name = "MAIN";
base.StartPosition =
System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "MAIN";
base.Load += new System.EventHandler(MAIN_Load_2);
((System.Windows.Forms.Control)
(object)this.guna2Panel1).ResumeLayout(false);
((System.Windows.Forms.Control)
(object)this.guna2Panel1).PerformLayout();

((System.ComponentModel.ISupportInitialize)this.guna2CirclePictureBox1).EndInit();

((System.ComponentModel.ISupportInitialize)this.guna2PictureBox6).EndInit();

((System.ComponentModel.ISupportInitialize)this.guna2PictureBox2).EndInit();
((System.Windows.Forms.Control)
(object)this.otherpan).ResumeLayout(false);
((System.Windows.Forms.Control)(object)this.otherpan).PerformLayout();
((System.Windows.Forms.Control)
(object)this.sidepan).ResumeLayout(false);
((System.Windows.Forms.Control)(object)this.sidepan).PerformLayout();
((System.Windows.Forms.Control)
(object)this.aimbotpan).ResumeLayout(false);
((System.Windows.Forms.Control)(object)this.aimbotpan).PerformLayout();
((System.Windows.Forms.Control)
(object)this.locationpan).ResumeLayout(false);
((System.Windows.Forms.Control)
(object)this.locationpan).PerformLayout();
((System.Windows.Forms.Control)
(object)this.sniperpan).ResumeLayout(false);
((System.Windows.Forms.Control)(object)this.sniperpan).PerformLayout();
((System.Windows.Forms.Control)
(object)this.settingspan).ResumeLayout(false);
((System.Windows.Forms.Control)
(object)this.settingspan).PerformLayout();
((System.Windows.Forms.Control)
(object)this.mobilepan).ResumeLayout(false);
((System.Windows.Forms.Control)(object)this.mobilepan).PerformLayout();

((System.ComponentModel.ISupportInitialize)this.guna2PictureBox3).EndInit();
((System.Windows.Forms.Control)
(object)this.hotkeypan).ResumeLayout(false);
((System.Windows.Forms.Control)(object)this.hotkeypan).PerformLayout();
((System.Windows.Forms.Control)
(object)this.hotkey2pan).ResumeLayout(false);
((System.Windows.Forms.Control)
(object)this.hotkey2pan).PerformLayout();
((System.Windows.Forms.Control)
(object)this.otherpan2).ResumeLayout(false);
((System.Windows.Forms.Control)(object)this.otherpan2).PerformLayout();
((System.Windows.Forms.Control)
(object)this.sniperpan2).ResumeLayout(false);
((System.Windows.Forms.Control)
(object)this.sniperpan2).PerformLayout();

((System.ComponentModel.ISupportInitialize)this.guna2PictureBox4).EndInit();

((System.ComponentModel.ISupportInitialize)this.guna2PictureBox1).EndInit();
base.ResumeLayout(false);
base.PerformLayout();
}
}

You might also like