Does it work?

This commit is contained in:
CreepyCrafter24 2018-07-07 15:03:45 +02:00
parent 5caf68b238
commit 9786574a40
44 changed files with 1069 additions and 0 deletions

BIN
.vs/AutoClicker/v15/.suo Normal file

Binary file not shown.

Binary file not shown.

6
App.config Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
</startup>
</configuration>

82
AutoClicker.csproj Normal file
View File

@ -0,0 +1,82 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{C567B050-F98B-49B5-AC6F-8D63573F3161}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>AutoClicker</RootNamespace>
<AssemblyName>AutoClicker</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Deployment" />
<Reference Include="System.Drawing" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Form1.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Form1.Designer.cs">
<DependentUpon>Form1.cs</DependentUpon>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<EmbeddedResource Include="Form1.resx">
<DependentUpon>Form1.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

25
AutoClicker.sln Normal file
View File

@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27130.2027
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AutoClicker", "AutoClicker.csproj", "{C567B050-F98B-49B5-AC6F-8D63573F3161}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{C567B050-F98B-49B5-AC6F-8D63573F3161}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C567B050-F98B-49B5-AC6F-8D63573F3161}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C567B050-F98B-49B5-AC6F-8D63573F3161}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C567B050-F98B-49B5-AC6F-8D63573F3161}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {2DE97599-9181-4959-9211-94158082618F}
EndGlobalSection
EndGlobal

141
Form1.Designer.cs generated Normal file
View File

@ -0,0 +1,141 @@
namespace AutoClicker
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.button1 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.textBox1 = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.ClickTimer = new System.Windows.Forms.Timer(this.components);
this.label2 = new System.Windows.Forms.Label();
this.button3 = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// button1
//
this.button1.Location = new System.Drawing.Point(9, 6);
this.button1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(56, 19);
this.button1.TabIndex = 0;
this.button1.Text = "Enable";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// button2
//
this.button2.Location = new System.Drawing.Point(9, 30);
this.button2.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(56, 19);
this.button2.TabIndex = 1;
this.button2.Text = "Disable";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(70, 6);
this.textBox1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(98, 20);
this.textBox1.TabIndex = 2;
this.textBox1.Text = "10";
this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(68, 27);
this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(92, 13);
this.label1.TabIndex = 3;
this.label1.Text = "Times per Secons";
//
// ClickTimer
//
this.ClickTimer.Tick += new System.EventHandler(this.ClickTimer_Tick);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(7, 50);
this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(88, 13);
this.label2.TabIndex = 4;
this.label2.Text = "Hold shift to click";
//
// button3
//
this.button3.Location = new System.Drawing.Point(118, 42);
this.button3.Name = "button3";
this.button3.Size = new System.Drawing.Size(56, 20);
this.button3.TabIndex = 5;
this.button3.Text = "Left";
this.button3.UseVisualStyleBackColor = true;
this.button3.Click += new System.EventHandler(this.button3_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(176, 63);
this.Controls.Add(this.button3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.button2);
this.Controls.Add(this.button1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
this.Name = "Form1";
this.Text = "CC-Clicker";
this.Load += new System.EventHandler(this.Form1_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Timer ClickTimer;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button button3;
}
}

88
Form1.cs Normal file
View File

@ -0,0 +1,88 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Runtime.InteropServices;
namespace AutoClicker
{
public partial class Form1 : Form
{
[DllImport("user32.dll", CharSet = CharSet.Auto, CallingConvention = CallingConvention.StdCall)]
public static extern void mouse_event(uint dwFlags, uint dx, uint dy, uint cButtons, uint dwExtraInfo);
private const int MOUSEEVENTF_LEFTDOWN = 0x02;
private const int MOUSEEVENTF_LEFTUP = 0x04;
private const int MOUSEEVENTF_RIGHTDOWN = 0x08;
private const int MOUSEEVENTF_RIGHTUP = 0x10;
public Form1()
{
InitializeComponent();
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
ClickTimer.Interval = 1000 / Int32.Parse(textBox1.Text);
}
private void button1_Click(object sender, EventArgs e)
{
ClickTimer.Start();
button2.Enabled = true;
button1.Enabled = false;
textBox1.Enabled = false;
}
private void button2_Click(object sender, EventArgs e)
{
ClickTimer.Stop();
button2.Enabled = false;
button1.Enabled = true;
textBox1.Enabled = true;
}
private void Form1_Load(object sender, EventArgs e)
{
ClickTimer.Stop();
button2.Enabled = false;
button1.Enabled = true;
textBox1.Enabled = true;
}
private void ClickTimer_Tick(object sender, EventArgs e)
{
if ((Control.ModifierKeys & Keys.Shift) != 0)
{
uint X = (uint)Cursor.Position.X;
uint Y = (uint)Cursor.Position.Y;
switch (button3.Text)
{
case "Left":
mouse_event(MOUSEEVENTF_LEFTDOWN | MOUSEEVENTF_LEFTUP, X, Y, 0, 0);
break;
default:
mouse_event(MOUSEEVENTF_RIGHTDOWN | MOUSEEVENTF_RIGHTUP, X, Y, 0, 0);
break;
}
}
}
private void button3_Click(object sender, EventArgs e)
{
switch (button3.Text)
{
case "Left":
button3.Text = "Right";
break;
default:
button3.Text = "Left";
break;
}
}
}
}

411
Form1.resx Normal file
View File

@ -0,0 +1,411 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<metadata name="ClickTimer.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
AAABAAEAQEAAAAEAIAAoQgAAFgAAACgAAABAAAAAgAAAAAEAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACUOCYBAAAAAAAA
AACUOCYBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJM1
KAEAAAAAkzUog5M1KP+TNSj/kzUogwAAAACTNSgBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAkzUoAQAAAACTNSiAkzUo/5M1KP6TNSj/kzUo/5M1KP6TNSj/kzUogAAAAACTNSgBAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAJM1KC+TNSj/kzUo/pM1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1
KP6TNSj/kzUoLwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkzUoOJM1KMeTNSj/kzUo/5M1KP+TNSj/kzUo/5M1
KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSjHkzUoOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJM1KAEAAAAAkzUo0JM1KP+TNSj/kzUo/5M1
KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSjQAAAAAJM1
KAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkzUoAQAAAACTNSiAkzUo/5M1
KP6TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1
KP+TNSj/kzUo/pM1KP+TNSiAAAAAAJM1KAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACUNigAAAAAAJM1
KH+TNSj/kzUo/pM1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1
KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/pM1KP+TNSh/AAAAAJM2KAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAkzUoNpM1KNWTNSj+kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1
KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/pM1
KNSTNSg3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAACTNSg4kzUox5M1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1
KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1
KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KMeTNSg3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAkzUoAQAAAACTNSi8kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1
KP+TNSj/kzUo/5M2Kf+MKBr/iCET/82hm//JmpT/yZqU/8malP/JmpT/yZqU/8malP/NoZv/iCET/4wo
Gv+TNin/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KLkAAAAAkzUoAQAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTNSgBAAAAAJM1KICTNSj/kzUo/pM1KP+TNSj/kzUo/5M1
KP+TNSj/kzUo/5M1KP+TNSj/kjMm/4ghE//JmpT//////////////v7/////////////////////////
//////////7+////////////yZqU/4ghE/+SMyb/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1
KP+TNSj+kzUo/5M1KIAAAAAAkzUoAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAlDYpMZM1KP+TNSj+kzUo/5M1
KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNin/iCAS/9i2sf////////7+////////////////////
///////////////////////////////////////////////+/v//////2Lax/4ggEv+TNin/kzUo/5M1
KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj+kzUo/5Q2KTEAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACTNSg4kzUox5M1
KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+NKx3/u3xz/////////v7/////////
///////////////////////////////////////////////////////////////////////////////+
/v//////u3xz/40rHf+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj/kzUox5M1
KDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AACRMybLkzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+MKBr/69rY////
////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////r2tj/jCga/5M1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1
KP+TNSj/kzUo/5M1KP+TNSj/kjQnywAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAuGFT/44wI/+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1
KP+MKBr/7NvY///+/v//////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////7+/+zb2P+MKBr/kzUo/5M1
KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+SNCf/mDks/6ZFNv8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwGxdh8BrXP7FcGH/qlBC/44wI/+TNSj/kzUo/5M1
KP+TNSj/kzUo/5M1KP+MKBr/7NvY///+/v//////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
/////v7/7NvY/4woGv+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+UNin/pkU2/6xKOv+rSTn+q0k5hwAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBrXIDAa1z/wGtc/8Br
XP/FcGH/mz8y/5IzJv+TNSj/kzUo/5M1KP+NKx3/69rY///+/v//////////////////////////////
////////////////////////////////////////////////////////////////////////////////
///////////////////////////////+/v/r2tj/jSsd/5M1KP+TNSj/kzUo/5EzJv+fPzD/rUs6/6tJ
Of+rSTn/q0k5/6tJOYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AADAa1yAwGtc/8BrXP/Aa1z/wGtc/8FtXv+2X1H/nUEz/5IzJv+TNin/un52////////////////////
////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////7p+dv+UNin/kTMm/58/
MP+tSzv/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAwGtcgMBrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8FtXv+4YVL/hR0P////
/////////////////////////////////////////////////////////////////////////////8aU
jf/GlI3/////////////////////////////////////////////////////////////////////////
////////kSsd/61LO/+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5gAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBrXIDAa1z/wGtc/8BrXP/Aa1z/wGtc/8Br
XP/Aa1z/v2la/+zQy////v7///////////////////////////////////////////////////7+/+jU
0f+5e3L/iyYY/4wpG/+TNin/kzYp/4wpG/+LJhj/uXty/+jU0f///v7/////////////////////////
///////////////////t19T/vXBj/6xKOv+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJ
OYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAa1yAwGtc/8Br
XP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/7pcTP//////////////////////////////////////////////
/////////////8malP+MKBr/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+MKBr/yZqU////
/////////////////////////////+3X1P+9cWT/qEMz/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJ
Of+rSTn/q0k5/6tJOf+rSTmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAwGtcgMBrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BsXf/gta7///7+////////////////////
/////////////////////////////6ZZT/+TNin/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1
KP+TNSj/kzUo/5M2Kf+mWU///////////////v7//////71wZP+oQzL/q0k5/6tJOf+rSTn/q0k5/6tJ
Of+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBrXIDAa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP+8YVH/////////
//////////////////////////////////////////7+/8malP+TNin/kzUo/5M1KP+TNSj/kzUo/5M1
KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj/kzYp/8mZk///////1aSc/6I3Jf+rSjr/q0k5/6tJ
Of+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOYAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAa1yAwGtc/8BrXP/Aa1z/wGtc/8Br
XP/Aa1z/ul1M//////////////////////////////////////////////////Xj4P+HIhT/kzUo/5M1
KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5EzJ/+cOSr/pj4s/6tK
Ov+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJ
Of+rSTmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwGtcgMBr
XP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/+K6s////v7/////////////////////////////////////////
///UnJP/xXBh/5s/Mv+SMyb/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj/kzUo/5M1KP+TNSj/kjQn/5g5
K/+rSDn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJ
Of+rSTn/q0k5/6tJOf+rSTn/q0k5gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAMBrXIDAa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/gta7/////////////////////////
////////////////////////u2BQ/8BrXP/BbV7/tl9R/51BM/+SMyb/kzUo/5M1KP+TNSj/kzUo/5M1
KP+SNCf/mDks/6ZFNf+sSjr/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJ
Of+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAa1yAwGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/4LWu////
/////////////////////////////////////////////7xiUv/Aa1z/wGtc/8BrXP/BbV7/uGFS/44w
I/+TNSj/kzUo/5M1KP+TNSj/pkU2/6xKOv+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJ
Of+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTmAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwGtcgMBrXP/Aa1z/wGtc/8Br
XP/Aa1z/wGtc/+C1rv///////////////////////////////////////////96wqf/AbF3/wGtc/8Br
XP/Aa1z/wGtc/8BrXP/FcGH/qlBC/44vIv+fPzH/rUs7/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJ
Of+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJ
Of+rSTn/q0k5gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBr
XIDAa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/gta7/////////////////////////////////////////
///esan/wGtd/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/EcGH/qks8/6tIOP+rSTn/q0k5/6tJ
Of+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJ
Of+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAADAa1yAwGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/4LWu////////////////////
/////////////////////////////7xiUv/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8Ft
Xf+7ZFT/sFBB/6pIOP+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJ
Of+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTmAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwGtcgMBrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/+C1
rv////////////////////////////////////////////////+7YFD/wGtc/8BrXP/Aa1z/wGtc/8Br
XP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8FsXf+8ZVb/pkMz/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJ
Of+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5gAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBrXIDAa1z/wGtc/8Br
XP/Aa1z/wGtc/8BrXP/iurP///7+////////////////////////////////////////////1JqP/8Br
XP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8JvYP+2Wkr/qUY1/6tJ
Of+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJ
Of+rSTn/q0k5/6tJOYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AADAa1yAwGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/ul1M////////////////////////////////////
//////////////Hf3P+8YVH/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8Br
XP/Aa1z/wGtc/8JuYP+pRzj/qUQz/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJ
Of+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAwGtcgMBrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/7xhUf//////////////
/////////////////////////////////////v7/4LWt/8BsXf/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8Br
XP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/AbF3/4Lau/+3X1P+9cWT/qEMz/6tJOf+rSTn/q0k5/6tJ
Of+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5gAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBrXIDAa1z/wGtc/8BrXP/Aa1z/wGtc/8Br
XP/AbF3/4LWu///+/v/////////////////////////////////////////////////Lhnn/wGxd/8Br
XP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/AbF3/y4Z5/////////////////+7b
2P+uTDz/q0o6/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJ
OYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAa1yAwGtc/8Br
XP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/7pcTP//////////////////////////////////////////////
/////////////+C1rf+8YVH/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP+8YVH/4LWt////
/////////////////////////////9WknP+iNyX/q0o6/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJ
Of+rSTn/q0k5/6tJOf+rSTmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAwGtcgMBrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP+/aVr/6c3J///+/v//////////////
/////////////////////////////////////v7/8d/c/9OYjf+7YFD/vGJS/8BrXf/Aa13/vGJS/7tg
UP/TmI3/8d/c///+/v///////////////////////////////////v7//////8yPhf+mPy7/q0k5/6tJ
Of+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBrXIDAa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/7pc
S///////////////////////////////////////////////////////////////////////////////
///esan/3rGp////////////////////////////////////////////////////////////////////
////////8eHf/61LO/+qSDj/q0k5/6tJOf+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJOYAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAa1yAwGtc/8BrXP/Aa1z/wGtc/8Br
XP/Aa1z/wGtc/8BrXP/AbF3/2aad////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////
/////////////////////////////9ikm//BbV7/vGVW/6dENP+rSTn/q0k5/6tJOf+rSTn/q0k5/6tJ
Of+rSTmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwGtcgMBr
XP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/71jU//05OL///7+////////////////////
////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////7+//Tk4f+9Y1P/wGtc/8BrXP/Cb2D/tlpK/6lG
Nf+rSTn/q0k5/6tJOf+rSTn/q0k5gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAMBrXIHAa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/vGFR//Tk
4v///v7/////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////7+//Tk4v+8YVH/wGtc/8Br
XP/Aa1z/wGtc/8BrXP/CbmD/rU9A/6tIOP+rSTn/q0k5/qtJOYcAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAaVonwGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8Br
XP/Aa1z/wGtc/8BrXP+8YVH/9OTi///+/v//////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////7+//Tk
4v+8YVH/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8FsXf+7ZFT/sFBB/6tIOP8AAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBrXM/Aa1z/wGtc/8Br
XP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/7xhUf/05OL/////////////////////////
////////////////////////////////////////////////////////////////////////////////
//////////////Tk4v+8YVH/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8Fs
Xf+6YVHPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAwGtcMMBrXP/Aa1z+wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/vWNT/9mm
nf////////7+////////////////////////////////////////////////////////////////////
/////////////////////v7//////9mmnf+9Y1P/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8Br
XP/Aa1z/wGtc/sBrXP/Aa1wxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBqXAEAAAAAwGtcgMBrXP/Aa1z+wGtc/8BrXP/Aa1z/wGtc/8Br
XP/Aa1z/wGtc/8BrXP/AbF3/ulxL/+vQy/////////7+////////////////////////////////////
///////////////////////////////+/v//////69DL/7pcS//AbF3/wGtc/8BrXP/Aa1z/wGtc/8Br
XP/Aa1z/wGtc/8BrXP/Aa1z+wGtc/8BrXIAAAAAAwGpbAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBrXAEAAAAAwGtcgMBr
XP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP+/aVn/ulxM/+C1rv/////////////+
/v///////////////////////////////////v7////////////gta7/ulxM/79pWf/Aa1z/wGtc/8Br
XP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP7Aa1z/wGtcgAAAAADAa1wBAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAMBrXAHAa1ocwGtcysBrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8Br
XP/AbF3/vGFR/7pdTP/iurP/4LWu/+C1rv/gta7/4LWu/+C1rv/gta7/4rqz/7pdTP+8YVH/wGxd/8Br
XP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1zNwGtcAcBrXAEAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAa1w4wGtcx8BrXP/Aa1z/wGtc/8Br
XP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8Br
XP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXMfAa1w4AAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AADAa1wzwGtc/8BrXP7Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8Br
XP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z+wGtc/8Br
XC8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAwGtcAQAAAADAa1yAwGtc/8BrXP7Aa1z/wGtc/8BrXP/Aa1z/wGtc/8Br
XP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8Br
XP7Aa1z/wGtcgAAAAADAa1wBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwGtcAQAAAADAa1y4wGtc/8Br
XP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8Br
XP/Aa1z/wGtc/8BrXP/Aa1yEAAAAAMBrXAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAMBrXDfAa1zHwGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8Br
XP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXMjAaVwuvmxdAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMBrXDfAa1zNwGtc/8BrXP/Aa1z/wGtc/8Br
XP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtcx8BrXDgAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADCalsAAAAAAMBr
XHrAa1z/wGtc/sBrXP/Aa1z/wGtc/8BrXP/Aa1z/wGtc/8BrXP7Aa1z/wGtcNgAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAADAa1wBAAAAAMBrXIDAa1z/wGtc/sBrXP/Aa1z/wGtc/sBrXP/Aa1yAAAAAAMBr
XAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAa1wBAAAAAMBrXNDAa1z/wGtc/8Br
XJcAAAAAwGtcAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAA/////////////////////////////////////b/////////0L////////9AL////////wAP/
//////8AAP//////+gAAX//////oAAAX/////+AAAAf/////gAAAAf////4AAAAAf///9AAAAAAv///Q
AAAAAAv//8AAAAAAA///AAAAAAAA//4AAAAAAAB//gAAAAAAAH/8AAAAAAAAP/wAAAAAAAA//AAAAAAA
AD/8AAAAAAAAP/wAAAAAAAA//AAAAAAAAD/8AAAAAAAAP/wAAAAAAAA//AAAAAAAAD/8AAAAAAAAP/wA
AAAAAAA//AAAAAAAAD/8AAAAAAAAP/wAAAAAAAA//AAAAAAAAD/8AAAAAAAAP/wAAAAAAAA//AAAAAAA
AD/8AAAAAAAAP/wAAAAAAAA//AAAAAAAAD/8AAAAAAAAP/wAAAAAAAA//AAAAAAAAD/8AAAAAAAAP/wA
AAAAAAA//AAAAAAAAH/+AAAAAAAAf/8AAAAAAAD//0AAAAAAAv//0AAAAAAL///wAAAAAA////4AAAAA
f////4AAAAH/////oAAABf/////oAAAX//////wAAB///////wAA////////wAP////////QC///////
//Qv//////////////////////////////////////////////8=
</value>
</data>
</root>

22
Program.cs Normal file
View File

@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace AutoClicker
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}

View File

@ -0,0 +1,36 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("AutoClicker")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("AutoClicker")]
[assembly: AssemblyCopyright("Copyright © 2018")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("c567b050-f98b-49b5-ac6f-8d63573f3161")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

71
Properties/Resources.Designer.cs generated Normal file
View File

@ -0,0 +1,71 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace AutoClicker.Properties
{
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources
{
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Resources()
{
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager
{
get
{
if ((resourceMan == null))
{
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("AutoClicker.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture
{
get
{
return resourceCulture;
}
set
{
resourceCulture = value;
}
}
}
}

117
Properties/Resources.resx Normal file
View File

@ -0,0 +1,117 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>

30
Properties/Settings.Designer.cs generated Normal file
View File

@ -0,0 +1,30 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace AutoClicker.Properties
{
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
{
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
public static Settings Default
{
get
{
return defaultInstance;
}
}
}
}

View File

@ -0,0 +1,7 @@
<?xml version='1.0' encoding='utf-8'?>
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)">
<Profiles>
<Profile Name="(Default)" />
</Profiles>
<Settings />
</SettingsFile>

BIN
bin/Debug/AutoClicker.exe Normal file

Binary file not shown.

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
</startup>
</configuration>

BIN
bin/Debug/AutoClicker.pdb Normal file

Binary file not shown.

BIN
bin/Release/AutoClicker.exe Normal file

Binary file not shown.

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
</startup>
</configuration>

BIN
bin/Release/AutoClicker.pdb Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1 @@
08bf06d9cc1fca392bb7a08d0cd993c764c4ee4c

View File

@ -0,0 +1,10 @@
C:\Users\Johannes\source\repos\AutoClicker\bin\Debug\AutoClicker.exe.config
C:\Users\Johannes\source\repos\AutoClicker\bin\Debug\AutoClicker.exe
C:\Users\Johannes\source\repos\AutoClicker\bin\Debug\AutoClicker.pdb
C:\Users\Johannes\source\repos\AutoClicker\obj\Debug\AutoClicker.csprojResolveAssemblyReference.cache
C:\Users\Johannes\source\repos\AutoClicker\obj\Debug\AutoClicker.Form1.resources
C:\Users\Johannes\source\repos\AutoClicker\obj\Debug\AutoClicker.Properties.Resources.resources
C:\Users\Johannes\source\repos\AutoClicker\obj\Debug\AutoClicker.csproj.GenerateResource.Cache
C:\Users\Johannes\source\repos\AutoClicker\obj\Debug\AutoClicker.csproj.CoreCompileInputs.cache
C:\Users\Johannes\source\repos\AutoClicker\obj\Debug\AutoClicker.exe
C:\Users\Johannes\source\repos\AutoClicker\obj\Debug\AutoClicker.pdb

Binary file not shown.

BIN
obj/Debug/AutoClicker.exe Normal file

Binary file not shown.

BIN
obj/Debug/AutoClicker.pdb Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1 @@
54d859b9ab6e1ef1406c48e3bf3ada09d9bd7a01

View File

@ -0,0 +1,9 @@
C:\Users\Johannes\source\repos\AutoClicker\bin\Release\AutoClicker.exe.config
C:\Users\Johannes\source\repos\AutoClicker\bin\Release\AutoClicker.exe
C:\Users\Johannes\source\repos\AutoClicker\bin\Release\AutoClicker.pdb
C:\Users\Johannes\source\repos\AutoClicker\obj\Release\AutoClicker.Form1.resources
C:\Users\Johannes\source\repos\AutoClicker\obj\Release\AutoClicker.Properties.Resources.resources
C:\Users\Johannes\source\repos\AutoClicker\obj\Release\AutoClicker.csproj.GenerateResource.Cache
C:\Users\Johannes\source\repos\AutoClicker\obj\Release\AutoClicker.csproj.CoreCompileInputs.cache
C:\Users\Johannes\source\repos\AutoClicker\obj\Release\AutoClicker.exe
C:\Users\Johannes\source\repos\AutoClicker\obj\Release\AutoClicker.pdb

Binary file not shown.

BIN
obj/Release/AutoClicker.exe Normal file

Binary file not shown.

BIN
obj/Release/AutoClicker.pdb Normal file

Binary file not shown.