Thread Rating:
  • 25 Vote(s) - 4.04 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post your CTRL+V.
using System;
using System.IO;
using System.Drawing;
using System.Diagnostics;
using System.Windows.Forms;
using System.ComponentModel;
using Microsoft.VisualBasic;
using System.Drawing.Imaging;
using System.Drawing.Drawing2D;
using System.Collections.Generic;
using System.ComponentModel.Design;
using System.Runtime.InteropServices;

//---------/CREDITS/-----------
//
//Themebase creator: Aeonhack
//Site: elitevs.net
//Created: 08/02/2011
//Changed: 12/06/2011
//Version: 1.5.4
//
//Theme creator: Mavamaarten
//Created: 9/12/2011
//Changed: 3/03/2012
//Version: 2.0
//
//Thanks to Tedd for helping
//with combobox & tabcontrol!
//
//Converted to C# by: Ethernal Five
//On: 3/04/2012
//--------/CREDITS/------------

#region "THEMEBASE"
abstract class ThemeContainer154 : ContainerControl
{

#region " Initialization "

protected Graphics G;

protected Bitmap B;
public ThemeContainer154()
{
SetStyle((ControlStyles)139270, true);

_ImageSize = Size.Empty;
Font = new Font("Verdana", 8);

MeasureBitmap = new Bitmap(1, 1);
MeasureGraphics = Graphics.FromImage(MeasureBitmap);

DrawRadialPath = new GraphicsPath();

InvalidateCustimization();
}

protected override sealed void OnHandleCreated(EventArgs e)
{
if (DoneCreation)
InitializeMessages();

InvalidateCustimization();
ColorHook();

if (!(_LockWidth == 0))
Width = _LockWidth;
if (!(_LockHeight == 0))
Height = _LockHeight;
if (!_ControlMode)
base.Dock = DockStyle.Fill;

Transparent = _Transparent;
if (_Transparent && _BackColor)
BackColor = Color.Transparent;

base.OnHandleCreated(e);
}

private bool DoneCreation;
protected override sealed void OnParentChanged(EventArgs e)
{
base.OnParentChanged(e);

if (Parent == null)
return;
_IsParentForm = Parent is Form;

if (!_ControlMode)
{
InitializeMessages();

if (_IsParentForm)
{
ParentForm.FormBorderStyle = _BorderStyle;
ParentForm.TransparencyKey = _TransparencyKey;

if (!DesignMode)
{
ParentForm.Shown += FormShown;
}
}

Parent.BackColor = BackColor;
}

OnCreation();
DoneCreation = true;
InvalidateTimer();
}

#endregion

private void DoAnimation(bool i)
{
OnAnimation();
if (i)
Invalidate();
}

protected override sealed void OnPaint(PaintEventArgs e)
{
if (Width == 0 || Height == 0)
return;

if (_Transparent && _ControlMode)
{
PaintHook();
e.Graphics.DrawImage(B, 0, 0);
}
else
{
G = e.Graphics;
PaintHook();
}
}

protected override void OnHandleDestroyed(EventArgs e)
{
ThemeShare.RemoveAnimationCallback(DoAnimation);
base.OnHandleDestroyed(e);
}

private bool HasShown;
private void FormShown(object sender, EventArgs e)
{
if (_ControlMode || HasShown)
return;

if (_StartPosition == FormStartPosition.CenterParent || _StartPosition == FormStartPosition.CenterScreen)
{
Rectangle SB = Screen.PrimaryScreen.Bounds;
Rectangle CB = ParentForm.Bounds;
ParentForm.Location = new Point(SB.Width / 2 - CB.Width / 2, SB.Height / 2 - CB.Width / 2);
}

HasShown = true;
}


#region " Size Handling "

private Rectangle Frame;
protected override sealed void OnSizeChanged(EventArgs e)
{
if (_Movable && !_ControlMode)
{
Frame = new Rectangle(7, 7, Width - 14, _Header - 7);
}

InvalidateBitmap();
Invalidate();

base.OnSizeChanged(e);
}

protected override void SetBoundsCore(int x, int y, int width, int height, BoundsSpecified specified)
{
if (!(_LockWidth == 0))
width = _LockWidth;
if (!(_LockHeight == 0))
height = _LockHeight;
base.SetBoundsCore(x, y, width, height, specified);
}

#endregion

#region " State Handling "

protected MouseState State;
private void SetState(MouseState current)
{
State = current;
Invalidate();
}

protected override void OnMouseMove(MouseEventArgs e)
{
if (!(_IsParentForm && ParentForm.WindowState == FormWindowState.Maximized))
{
if (_Sizable && !_ControlMode)
InvalidateMouse();
}

base.OnMouseMove(e);
}

protected override void OnEnabledChanged(EventArgs e)
{
if (Enabled)
SetState(MouseState.None);
else
SetState(MouseState.Block);
base.OnEnabledChanged(e);
}

protected override void OnMouseEnter(EventArgs e)
{
SetState(MouseState.Over);
base.OnMouseEnter(e);
}

protected override void OnMouseUp(MouseEventArgs e)
{
SetState(MouseState.Over);
base.OnMouseUp(e);
}

protected override void OnMouseLeave(EventArgs e)
{
SetState(MouseState.None);

if (GetChildAtPoint(PointToClient(MousePosition)) != null)
{
if (_Sizable && !_ControlMode)
{
Cursor = Cursors.Default;
Previous = 0;
}
}

base.OnMouseLeave(e);
}

protected override void OnMouseDown(MouseEventArgs e)
{
if (e.Button == System.Windows.Forms.MouseButtons.Left)
SetState(MouseState.Down);

if (!(_IsParentForm && ParentForm.WindowState == FormWindowState.Maximized || _ControlMode))
{
if (_Movable && Frame.Contains(e.Location))
{
Capture = false;
WM_LMBUTTONDOWN = true;
DefWndProc(ref Messages[0]);
}
else if (_Sizable && !(Previous == 0))
{
Capture = false;
WM_LMBUTTONDOWN = true;
DefWndProc(ref Messages[Previous]);
}
}

base.OnMouseDown(e);
}

private bool WM_LMBUTTONDOWN;
protected override void WndProc(ref Message m)
{
base.WndProc(ref m);

if (WM_LMBUTTONDOWN && m.Msg == 513)
{
WM_LMBUTTONDOWN = false;

SetState(MouseState.Over);
if (!_SmartBounds)
return;

if (IsParentMdi)
{
CorrectBounds(new Rectangle(Point.Empty, Parent.Parent.Size));
}
else
{
CorrectBounds(Screen.FromControl(Parent).WorkingArea);
}
}
}

private Point GetIndexPoint;
private bool B1;
private bool B2;
private bool B3;
private bool B4;
private int GetIndex()
{
GetIndexPoint = PointToClient(MousePosition);
B1 = GetIndexPoint.X < 7;
B2 = GetIndexPoint.X > Width - 7;
B3 = GetIndexPoint.Y < 7;
B4 = GetIndexPoint.Y > Height - 7;

if (B1 && B3)
return 4;
if (B1 && B4)
return 7;
if (B2 && B3)
return 5;
if (B2 && B4)
return 8;
if (B1)
return 1;
if (B2)
return 2;
if (B3)
return 3;
if (B4)
return 6;
return 0;
}

private int Current;
private int Previous;
private void InvalidateMouse()
{
Current = GetIndex();
if (Current == Previous)
return;

Previous = Current;
switch (Previous)
{
case 0:
Cursor = Cursors.Default;
break;
case 1:
case 2:
Cursor = Cursors.SizeWE;
break;
case 3:
case 6:
Cursor = Cursors.SizeNS;
break;
case 4:
case 8:
Cursor = Cursors.SizeNWSE;
break;
case 5:
case 7:
Cursor = Cursors.SizeNESW;
break;
}
}

private Message[] Messages = new Message[9];
private void InitializeMessages()
{
Messages[0] = Message.Create(Parent.Handle, 161, new IntPtr(2), IntPtr.Zero);
for (int I = 1; I <= 8; I++)
{
Messages[I] = Message.Create(Parent.Handle, 161, new IntPtr(I + 9), IntPtr.Zero);
}
}

private void CorrectBounds(Rectangle bounds)
{
if (Parent.Width > bounds.Width)
Parent.Width = bounds.Width;
if (Parent.Height > bounds.Height)
Parent.Height = bounds.Height;

int X = Parent.Location.X;
int Y = Parent.Location.Y;

if (X < bounds.X)
X = bounds.X;
if (Y < bounds.Y)
Y = bounds.Y;

int Width = bounds.X + bounds.Width;
int Height = bounds.Y + bounds.Height;

if (X + Parent.Width > Width)
X = Width - Parent.Width;
if (Y + Parent.Height > Height)
Y = Height - Parent.Height;

Parent.Location = new Point(X, Y);
}

#endregion


#region " Base Properties "

public override DockStyle Dock
{
get { return base.Dock; }
set
{
if (!_ControlMode)
return;
base.Dock = value;
}
}

private bool _BackColor;
[Category("Misc")]
public override Color BackColor
{
get { return base.BackColor; }
set
{
if (value == base.BackColor)
return;

if (!IsHandleCreated && _ControlMode && value == Color.Transparent)
{
_BackColor = true;
return;
}

base.BackColor = value;
if (Parent != null)
{
if (!_ControlMode)
Parent.BackColor = value;
ColorHook();
}
}
}

public override Size MinimumSize
{
get { return base.MinimumSize; }
set
{
base.MinimumSize = value;
if (Parent != null)
Parent.MinimumSize = value;
}
}

public override Size MaximumSize
{
get { return base.MaximumSize; }
set
{
base.MaximumSize = value;
if (Parent != null)
Parent.MaximumSize = value;
}
}

public override string Text
{
get { return base.Text; }
set
{
base.Text = value;
Invalidate();
}
}

public override Font Font
{
get { return base.Font; }
set
{
base.Font = value;
Invalidate();
}
}

[Browsable(false), EditorBrowsable(EditorBrowsableState.Never), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public override Color ForeColor
{
get { return Color.Empty; }
set { }
}
[Browsable(false), EditorBrowsable(EditorBrowsableState.Never), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public override Image BackgroundImage
{
get { return null; }
set { }
}
[Browsable(false), EditorBrowsable(EditorBrowsableState.Never), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public override ImageLayout BackgroundImageLayout
{
get { return ImageLayout.None; }
set { }
}

#endregion

#region " Public Properties "

private bool _SmartBounds = true;
public bool SmartBounds
{
get { return _SmartBounds; }
set { _SmartBounds = value; }
}

private bool _Movable = true;
public bool Movable
{
get { return _Movable; }
set { _Movable = value; }
}

private bool _Sizable = true;
public bool Sizable
{
get { return _Sizable; }
set { _Sizable = value; }
}

private Color _TransparencyKey;
public Color TransparencyKey
{
get
{
if (_IsParentForm && !_ControlMode)
return ParentForm.TransparencyKey;
else
return _TransparencyKey;
}
set
{
if (value == _TransparencyKey)
return;
_TransparencyKey = value;

if (_IsParentForm && !_ControlMode)
{
ParentForm.TransparencyKey = value;
ColorHook();
}
}
}

private FormBorderStyle _BorderStyle;
public FormBorderStyle BorderStyle
{
get
{
if (_IsParentForm && !_ControlMode)
return ParentForm.FormBorderStyle;
else
return _BorderStyle;
}
set
{
_BorderStyle = value;

if (_IsParentForm && !_ControlMode)
{
ParentForm.FormBorderStyle = value;

if (!(value == FormBorderStyle.None))
{
Movable = false;
Sizable = false;
}
}
}
}

private FormStartPosition _StartPosition;
public FormStartPosition StartPosition
{
get
{
if (_IsParentForm && !_ControlMode)
return ParentForm.StartPosition;
else
return _StartPosition;
}
set
{
_StartPosition = value;

if (_IsParentForm && !_ControlMode)
{
ParentForm.StartPosition = value;
}
}
}

private bool _NoRounding;
public bool NoRounding
{
get { return _NoRounding; }
set
{
_NoRounding = value;
Invalidate();
}
}

private Image _Image;
public Image Image
{
get { return _Image; }
set
{
if (value == null)
_ImageSize = Size.Empty;
else
_ImageSize = value.Size;

_Image = value;
Invalidate();
}
}

private Dictionary<string, Color> Items = new Dictionary<string, Color>();
public Bloom[] Colors
{
get
{
List<Bloom> T = new List<Bloom>();
Dictionary<string, Color>.Enumerator E = Items.GetEnumerator();

while (E.MoveNext())
{
T.Add(new Bloom(E.Current.Key, E.Current.Value));
}

return T.ToArray();
}
set
{
foreach (Bloom B in value)
{
if (Items.ContainsKey(B.Name))
Items[B.Name] = B.Value;
}

InvalidateCustimization();
ColorHook();
Invalidate();
}
}

private string _Customization;
public string Customization
{
get { return _Customization; }
set
{
if (value == _Customization)
return;

byte[] Data = null;
Bloom[] Items = Colors;

try
{
Data = Convert.FromBase64String(value);
for (int I = 0; I <= Items.Length - 1; I++)
{
Items[I].Value = Color.FromArgb(BitConverter.ToInt32(Data, I * 4));
}
}
catch
{
return;
}

_Customization = value;

Colors = Items;
ColorHook();
Invalidate();
}
}

private bool _Transparent;
public bool Transparent
{
get { return _Transparent; }
set
{
_Transparent = value;
if (!(IsHandleCreated || _ControlMode))
return;

if (!value && !(BackColor.A == 255))
{
throw new Exception("Unable to change value to false while a transparent BackColor is in use.");
}

SetStyle(ControlStyles.Opaque, !value);
SetStyle(ControlStyles.SupportsTransparentBackColor, value);

InvalidateBitmap();
Invalidate();
}
}

#endregion

#region " Private Properties "

private Size _ImageSize;
protected Size ImageSize
{
get { return _ImageSize; }
}

private bool _IsParentForm;
protected bool IsParentForm
{
get { return _IsParentForm; }
}

protected bool IsParentMdi
{
get
{
if (Parent == null)
return false;
return Parent.Parent != null;
}
}

private int _LockWidth;
protected int LockWidth
{
get { return _LockWidth; }
set
{
_LockWidth = value;
if (!(LockWidth == 0) && IsHandleCreated)
Width = LockWidth;
}
}

private int _LockHeight;
protected int LockHeight
{
get { return _LockHeight; }
set
{
_LockHeight = value;
if (!(LockHeight == 0) && IsHandleCreated)
Height = LockHeight;
}
}

private int _Header = 24;
protected int Header
{
get { return _Header; }
set
{
_Header = value;

if (!_ControlMode)
{
Frame = new Rectangle(7, 7, Width - 14, value - 7);
Invalidate();
}
}
}

private bool _ControlMode;
protected bool ControlMode
{
get { return _ControlMode; }
set
{
_ControlMode = value;

Transparent = _Transparent;
if (_Transparent && _BackColor)
BackColor = Color.Transparent;

InvalidateBitmap();
Invalidate();
}
}

private bool _IsAnimated;
protected bool IsAnimated
{
get { return _IsAnimated; }
set
{
_IsAnimated = value;
InvalidateTimer();
}
}

#endregion


#region " Property Helpers "

protected Pen GetPen(string name)
{
return new Pen(Items[name]);
}
protected Pen GetPen(string name, float width)
{
return new Pen(Items[name], width);
}

protected SolidBrush GetBrush(string name)
{
return new SolidBrush(Items[name]);
}

protected Color GetColor(string name)
{
return Items[name];
}

protected void SetColor(string name, Color value)
{
if (Items.ContainsKey(name))
Items[name] = value;
else
Items.Add(name, value);
}
protected void SetColor(string name, byte r, byte g, byte b)
{
SetColor(name, Color.FromArgb(r, g, b));
}
protected void SetColor(string name, byte a, byte r, byte g, byte b)
{
SetColor(name, Color.FromArgb(a, r, g, b));
}
protected void SetColor(string name, byte a, Color value)
{
SetColor(name, Color.FromArgb(a, value));
}

private void InvalidateBitmap()
{
if (_Transparent && _ControlMode)
{
if (Width == 0 || Height == 0)
return;
B = new Bitmap(Width, Height, PixelFormat.Format32bppPArgb);
G = Graphics.FromImage(B);
}
else
{
G = null;
B = null;
}
}

private void InvalidateCustimization()
{
MemoryStream M = new MemoryStream(Items.Count * 4);

foreach (Bloom B in Colors)
{
M.Write(BitConverter.GetBytes(B.Value.ToArgb()), 0, 4);
}

M.Close();
_Customization = Convert.ToBase64String(M.ToArray());
}

private void InvalidateTimer()
{
if (DesignMode || !DoneCreation)
return;

if (_IsAnimated)
{
ThemeShare.AddAnimationCallback(DoAnimation);
}
else
{
ThemeShare.RemoveAnimationCallback(DoAnimation);
}
}

#endregion


#region " User Hooks "

protected abstract void ColorHook();
protected abstract void PaintHook();

protected virtual void OnCreation()
{
}

protected virtual void OnAnimation()
{
}

#endregion


#region " Offset "

private Rectangle OffsetReturnRectangle;
protected Rectangle Offset(Rectangle r, int amount)
{
OffsetReturnRectangle = new Rectangle(r.X + amount, r.Y + amount, r.Width - (amount * 2), r.Height - (amount * 2));
return OffsetReturnRectangle;
}

private Size OffsetReturnSize;
protected Size Offset(Size s, int amount)
{
OffsetReturnSize = new Size(s.Width + amount, s.Height + amount);
return OffsetReturnSize;
}

private Point OffsetReturnPoint;
protected Point Offset(Point p, int amount)
{
OffsetReturnPoint = new Point(p.X + amount, p.Y + amount);
return OffsetReturnPoint;
}

#endregion

#region " Center "


private Point CenterReturn;
protected Point Center(Rectangle p, Rectangle c)
{
CenterReturn = new Point((p.Width / 2 - c.Width / 2) + p.X + c.X, (p.Height / 2 - c.Height / 2) + p.Y + c.Y);
return CenterReturn;
}
protected Point Center(Rectangle p, Size c)
{
CenterReturn = new Point((p.Width / 2 - c.Width / 2) + p.X, (p.Height / 2 - c.Height / 2) + p.Y);
return CenterReturn;
}

protected Point Center(Rectangle child)
{
return Center(Width, Height, child.Width, child.Height);
}
protected Point Center(Size child)
{
return Center(Width, Height, child.Width, child.Height);
}
protected Point Center(int childWidth, int childHeight)
{
return Center(Width, Height, childWidth, childHeight);
}

protected Point Center(Size p, Size c)
{
return Center(p.Width, p.Height, c.Width, c.Height);
}

protected Point Center(int pWidth, int pHeight, int cWidth, int cHeight)
{
CenterReturn = new Point(pWidth / 2 - cWidth / 2, pHeight / 2 - cHeight / 2);
return CenterReturn;
}

#endregion

#region " Measure "

private Bitmap MeasureBitmap;

private Graphics MeasureGraphics;
protected Size Measure()
{
lock (MeasureGraphics)
{
return MeasureGraphics.MeasureString(Text, Font, Width).ToSize();
}
}
protected Size Measure(string text)
{
lock (MeasureGraphics)
{
return MeasureGraphics.MeasureString(text, Font, Width).ToSize();
}
}

#endregion


#region " DrawPixel "


private SolidBrush DrawPixelBrush;
protected void DrawPixel(Color c1, int x, int y)
{
if (_Transparent)
{
B.SetPixel(x, y, c1);
}
else
{
DrawPixelBrush = new SolidBrush(c1);
G.FillRectangle(DrawPixelBrush, x, y, 1, 1);
}
}

#endregion

#region " DrawCorners "


private SolidBrush DrawCornersBrush;
protected void DrawCorners(Color c1, int offset)
{
DrawCorners(c1, 0, 0, Width, Height, offset);
}
protected void DrawCorners(Color c1, Rectangle r1, int offset)
{
DrawCorners(c1, r1.X, r1.Y, r1.Width, r1.Height, offset);
}
protected void DrawCorners(Color c1, int x, int y, int width, int height, int offset)
{
DrawCorners(c1, x + offset, y + offset, width - (offset * 2), height - (offset * 2));
}

protected void DrawCorners(Color c1)
{
DrawCorners(c1, 0, 0, Width, Height);
}
protected void DrawCorners(Color c1, Rectangle r1)
{
DrawCorners(c1, r1.X, r1.Y, r1.Width, r1.Height);
}
protected void DrawCorners(Color c1, int x, int y, int width, int height)
{
if (_NoRounding)
return;

if (_Transparent)
{
B.SetPixel(x, y, c1);
B.SetPixel(x + (width - 1), y, c1);
B.SetPixel(x, y + (height - 1), c1);
B.SetPixel(x + (width - 1), y + (height - 1), c1);
}
else
{
DrawCornersBrush = new SolidBrush(c1);
G.FillRectangle(DrawCornersBrush, x, y, 1, 1);
G.FillRectangle(DrawCornersBrush, x + (width - 1), y, 1, 1);
G.FillRectangle(DrawCornersBrush, x, y + (height - 1), 1, 1);
G.FillRectangle(DrawCornersBrush, x + (width - 1), y + (height - 1), 1, 1);
}
}

#endregion

#region " DrawBorders "

protected void DrawBorders(Pen p1, int offset)
{
DrawBorders(p1, 0, 0, Width, Height, offset);
}
protected void DrawBorders(Pen p1, Rectangle r, int offset)
{
DrawBorders(p1, r.X, r.Y, r.Width, r.Height, offset);
}
protected void DrawBorders(Pen p1, int x, int y, int width, int height, int offset)
{
DrawBorders(p1, x + offset, y + offset, width - (offset * 2), height - (offset * 2));
}

protected void DrawBorders(Pen p1)
{
DrawBorders(p1, 0, 0, Width, Height);
}
protected void DrawBorders(Pen p1, Rectangle r)
{
DrawBorders(p1, r.X, r.Y, r.Width, r.Height);
}
protected void DrawBorders(Pen p1, int x, int y, int width, int height)
{
G.DrawRectangle(p1, x, y, width - 1, height - 1);
}

#endregion

#region " DrawText "

private Point DrawTextPoint;

private Size DrawTextSize;
protected void DrawText(Brush b1, HorizontalAlignment a, int x, int y)
{
DrawText(b1, Text, a, x, y);
}
protected void DrawText(Brush b1, string text, HorizontalAlignment a, int x, int y)
{
if (text.Length == 0)
return;

DrawTextSize = Measure(text);
DrawTextPoint = new Point(Width / 2 - DrawTextSize.Width / 2, Header / 2 - DrawTextSize.Height / 2);

switch (a)
{
case HorizontalAlignment.Left:
G.DrawString(text, Font, b1, x, DrawTextPoint.Y + y);
break;
case HorizontalAlignment.Center:
G.DrawString(text, Font, b1, DrawTextPoint.X + x, DrawTextPoint.Y + y);
break;
case HorizontalAlignment.Right:
G.DrawString(text, Font, b1, Width - DrawTextSize.Width - x, DrawTextPoint.Y + y);
break;
}
}

protected void DrawText(Brush b1, Point p1)
{
if (Text.Length == 0)
return;
G.DrawString(Text, Font, b1, p1);
}
protected void DrawText(Brush b1, int x, int y)
{
if (Text.Length == 0)
return;
G.DrawString(Text, Font, b1, x, y);
}

#endregion

#region " DrawImage "


private Point DrawImagePoint;
protected void DrawImage(HorizontalAlignment a, int x, int y)
{
DrawImage(_Image, a, x, y);
}
protected void DrawImage(Image image, HorizontalAlignment a, int x, int y)
{
if (image == null)
return;
DrawImagePoint = new Point(Width / 2 - image.Width / 2, Header / 2 - image.Height / 2);

switch (a)
{
case HorizontalAlignment.Left:
G.DrawImage(image, x, DrawImagePoint.Y + y, image.Width, image.Height);
break;
case HorizontalAlignment.Center:
G.DrawImage(image, DrawImagePoint.X + x, DrawImagePoint.Y + y, image.Width, image.Height);
break;
case HorizontalAlignment.Right:
G.DrawImage(image, Width - image.Width - x, DrawImagePoint.Y + y, image.Width, image.Height);
break;
}
}

protected void DrawImage(Point p1)
{
DrawImage(_Image, p1.X, p1.Y);
}
protected void DrawImage(int x, int y)
{
DrawImage(_Image, x, y);
}

protected void DrawImage(Image image, Point p1)
{
DrawImage(image, p1.X, p1.Y);
}
protected void DrawImage(Image image, int x, int y)
{
if (image == null)
return;
G.DrawImage(image, x, y, image.Width, image.Height);
}

#endregion

#region " DrawGradient "

private LinearGradientBrush DrawGradientBrush;

private Rectangle DrawGradientRectangle;
protected void DrawGradient(ColorBlend blend, int x, int y, int width, int height)
{
DrawGradientRectangle = new Rectangle(x, y, width, height);
DrawGradient(blend, DrawGradientRectangle);
}
protected void DrawGradient(ColorBlend blend, int x, int y, int width, int height, float angle)
{
DrawGradientRectangle = new Rectangle(x, y, width, height);
DrawGradient(blend, DrawGradientRectangle, angle);
}

protected void DrawGradient(ColorBlend blend, Rectangle r)
{
DrawGradientBrush = new LinearGradientBrush(r, Color.Empty, Color.Empty, 90f);
DrawGradientBrush.InterpolationColors = blend;
G.FillRectangle(DrawGradientBrush, r);
}
protected void DrawGradient(ColorBlend blend, Rectangle r, float angle)
{
DrawGradientBrush = new LinearGradientBrush(r, Color.Empty, Color.Empty, angle);
DrawGradientBrush.InterpolationColors = blend;
G.FillRectangle(DrawGradientBrush, r);
}


protected void DrawGradient(Color c1, Color c2, int x, int y, int width, int height)
{
DrawGradientRectangle = new Rectangle(x, y, width, height);
DrawGradient(c1, c2, DrawGradientRectangle);
}
protected void DrawGradient(Color c1, Color c2, int x, int y, int width, int height, float angle)
{
DrawGradientRectangle = new Rectangle(x, y, width, height);
DrawGradient(c1, c2, DrawGradientRectangle, angle);
}

protected void DrawGradient(Color c1, Color c2, Rectangle r)
{
DrawGradientBrush = new LinearGradientBrush(r, c1, c2, 90f);
G.FillRectangle(DrawGradientBrush, r);
}
protected void DrawGradient(Color c1, Color c2, Rectangle r, float angle)
{
DrawGradientBrush = new LinearGradientBrush(r, c1, c2, angle);
G.FillRectangle(DrawGradientBrush, r);
}

#endregion

#region " DrawRadial "

private GraphicsPath DrawRadialPath;
private PathGradientBrush DrawRadialBrush1;
private LinearGradientBrush DrawRadialBrush2;

private Rectangle DrawRadialRectangle;
public void DrawRadial(ColorBlend blend, int x, int y, int width, int height)
{
DrawRadialRectangle = new Rectangle(x, y, width, height);
DrawRadial(blend, DrawRadialRectangle, width / 2, height / 2);
}
public void DrawRadial(ColorBlend blend, int x, int y, int width, int height, Point center)
{
DrawRadialRectangle = new Rectangle(x, y, width, height);
DrawRadial(blend, DrawRadialRectangle, center.X, center.Y);
}
public void DrawRadial(ColorBlend blend, int x, int y, int width, int height, int cx, int cy)
{
DrawRadialRectangle = new Rectangle(x, y, width, height);
DrawRadial(blend, DrawRadialRectangle, cx, cy);
}

public void DrawRadial(ColorBlend blend, Rectangle r)
{
DrawRadial(blend, r, r.Width / 2, r.Height / 2);
}
public void DrawRadial(ColorBlend blend, Rectangle r, Point center)
{
DrawRadial(blend, r, center.X, center.Y);
}
public void DrawRadial(ColorBlend blend, Rectangle r, int cx, int cy)
{
DrawRadialPath.Reset();
DrawRadialPath.AddEllipse(r.X, r.Y, r.Width - 1, r.Height - 1);

DrawRadialBrush1 = new PathGradientBrush(DrawRadialPath);
DrawRadialBrush1.CenterPoint = new Point(r.X + cx, r.Y + cy);
DrawRadialBrush1.InterpolationColors = blend;

if (G.SmoothingMode == SmoothingMode.AntiAlias)
{
G.FillEllipse(DrawRadialBrush1, r.X + 1, r.Y + 1, r.Width - 3, r.Height - 3);
}
else
{
G.FillEllipse(DrawRadialBrush1, r);
}
}


protected void DrawRadial(Color c1, Color c2, int x, int y, int width, int height)
{
DrawRadialRectangle = new Rectangle(x, y, width, height);
DrawRadial(c1, c2, DrawGradientRectangle);
}
protected void DrawRadial(Color c1, Color c2, int x, int y, int width, int height, float angle)
{
DrawRadialRectangle = new Rectangle(x, y, width, height);
DrawRadial(c1, c2, DrawGradientRectangle, angle);
}

protected void DrawRadial(Color c1, Color c2, Rectangle r)
{
DrawRadialBrush2 = new LinearGradientBrush(r, c1, c2, 90f);
G.FillRectangle(DrawGradientBrush, r);
}
protected void DrawRadial(Color c1, Color c2, Rectangle r, float angle)
{
DrawRadialBrush2 = new LinearGradientBrush(r, c1, c2, angle);
G.FillEllipse(DrawGradientBrush, r);
}

#endregion

#region " CreateRound "

private GraphicsPath CreateRoundPath;

private Rectangle CreateRoundRectangle;
public GraphicsPath CreateRound(int x, int y, int width, int height, int slope)
{
CreateRoundRectangle = new Rectangle(x, y, width, height);
return CreateRound(CreateRoundRectangle, slope);
}

public GraphicsPath CreateRound(Rectangle r, int slope)
{
CreateRoundPath = new GraphicsPath(FillMode.Winding);
CreateRoundPath.AddArc(r.X, r.Y, slope, slope, 180f, 90f);
CreateRoundPath.AddArc(r.Right - slope, r.Y, slope, slope, 270f, 90f);
CreateRoundPath.AddArc(r.Right - slope, r.Bottom - slope, slope, slope, 0f, 90f);
CreateRoundPath.AddArc(r.X, r.Bottom - slope, slope, slope, 90f, 90f);
CreateRoundPath.CloseFigure();
return CreateRoundPath;
}

#endregion

}

abstract class ThemeControl154 : Control
{


#region " Initialization "

protected Graphics G;

protected Bitmap B;
public ThemeControl154()
{
SetStyle((ControlStyles)139270, true);

_ImageSize = Size.Empty;
Font = new Font("Verdana", 8);

MeasureBitmap = new Bitmap(1, 1);
MeasureGraphics = Graphics.FromImage(MeasureBitmap);

DrawRadialPath = new GraphicsPath();

InvalidateCustimization();
//Remove?
}

protected override sealed void OnHandleCreated(EventArgs e)
{
InvalidateCustimization();
ColorHook();

if (!(_LockWidth == 0))
Width = _LockWidth;
if (!(_LockHeight == 0))
Height = _LockHeight;

Transparent = _Transparent;
if (_Transparent && _BackColor)
BackColor = Color.Transparent;

base.OnHandleCreated(e);
}

private bool DoneCreation;
protected override sealed void OnParentChanged(EventArgs e)
{
if (Parent != null)
{
OnCreation();
DoneCreation = true;
InvalidateTimer();
}

base.OnParentChanged(e);
}

#endregion

private void DoAnimation(bool i)
{
OnAnimation();
if (i)
Invalidate();
}

protected override sealed void OnPaint(PaintEventArgs e)
{
if (Width == 0 || Height == 0)
return;

if (_Transparent)
{
PaintHook();
e.Graphics.DrawImage(B, 0, 0);
}
else
{
G = e.Graphics;
PaintHook();
}
}

protected override void OnHandleDestroyed(EventArgs e)
{
ThemeShare.RemoveAnimationCallback(DoAnimation);
base.OnHandleDestroyed(e);
}

#region " Size Handling "

protected override sealed void OnSizeChanged(EventArgs e)
{
if (_Transparent)
{
InvalidateBitmap();
}

Invalidate();
base.OnSizeChanged(e);
}

protected override void SetBoundsCore(int x, int y, int width, int height, BoundsSpecified specified)
{
if (!(_LockWidth == 0))
width = _LockWidth;
if (!(_LockHeight == 0))
height = _LockHeight;
base.SetBoundsCore(x, y, width, height, specified);
}

#endregion

#region " State Handling "

private bool InPosition;
protected override void OnMouseEnter(EventArgs e)
{
InPosition = true;
SetState(MouseState.Over);
base.OnMouseEnter(e);
}

protected override void OnMouseUp(MouseEventArgs e)
{
if (InPosition)
SetState(MouseState.Over);
base.OnMouseUp(e);
}

protected override void OnMouseDown(MouseEventArgs e)
{
if (e.Button == System.Windows.Forms.MouseButtons.Left)
SetState(MouseState.Down);
base.OnMouseDown(e);
}

protected override void OnMouseLeave(EventArgs e)
{
InPosition = false;
SetState(MouseState.None);
base.OnMouseLeave(e);
}

protected override void OnEnabledChanged(EventArgs e)
{
if (Enabled)
SetState(MouseState.None);
else
SetState(MouseState.Block);
base.OnEnabledChanged(e);
}

protected MouseState State;
private void SetState(MouseState current)
{
State = current;
Invalidate();
}

#endregion


#region " Base Properties "

[Browsable(false), EditorBrowsable(EditorBrowsableState.Never), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public override Color ForeColor
{
get { return Color.Empty; }
set { }
}
[Browsable(false), EditorBrowsable(EditorBrowsableState.Never), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public override Image BackgroundImage
{
get { return null; }
set { }
}
[Browsable(false), EditorBrowsable(EditorBrowsableState.Never), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public override ImageLayout BackgroundImageLayout
{
get { return ImageLayout.None; }
set { }
}

public override string Text
{
get { return base.Text; }
set
{
base.Text = value;
Invalidate();
}
}
public override Font Font
{
get { return base.Font; }
set
{
base.Font = value;
Invalidate();
}
}

private bool _BackColor;
[Category("Misc")]
public override Color BackColor
{
get { return base.BackColor; }
set
{
if (!IsHandleCreated && value == Color.Transparent)
{
_BackColor = true;
return;
}

base.BackColor = value;
if (Parent != null)
ColorHook();
}
}

#endregion

#region " Public Properties "

private bool _NoRounding;
public bool NoRounding
{
get { return _NoRounding; }
set
{
_NoRounding = value;
Invalidate();
}
}

private Image _Image;
public Image Image
{
get { return _Image; }
set
{
if (value == null)
{
_ImageSize = Size.Empty;
}
else
{
_ImageSize = value.Size;
}

_Image = value;
Invalidate();
}
}

private bool _Transparent;
public bool Transparent
{
get { return _Transparent; }
set
{
_Transparent = value;
if (!IsHandleCreated)
return;

if (!value && !(BackColor.A == 255))
{
throw new Exception("Unable to change value to false while a transparent BackColor is in use.");
}

SetStyle(ControlStyles.Opaque, !value);
SetStyle(ControlStyles.SupportsTransparentBackColor, value);

if (value)
InvalidateBitmap();
else
B = null;
Invalidate();
}
}

private Dictionary<string, Color> Items = new Dictionary<string, Color>();
public Bloom[] Colors
{
get
{
List<Bloom> T = new List<Bloom>();
Dictionary<string, Color>.Enumerator E = Items.GetEnumerator();

while (E.MoveNext())
{
T.Add(new Bloom(E.Current.Key, E.Current.Value));
}

return T.ToArray();
}
set
{
foreach (Bloom B in value)
{
if (Items.ContainsKey(B.Name))
Items[B.Name] = B.Value;
}

InvalidateCustimization();
ColorHook();
Invalidate();
}
}

private string _Customization;
public string Customization
{
get { return _Customization; }
set
{
if (value == _Customization)
return;

byte[] Data = null;
Bloom[] Items = Colors;

try
{
Data = Convert.FromBase64String(value);
for (int I = 0; I <= Items.Length - 1; I++)
{
Items[I].Value = Color.FromArgb(BitConverter.ToInt32(Data, I * 4));
}
}
catch
{
return;
}

_Customization = value;

Colors = Items;
ColorHook();
Invalidate();
}
}

#endregion

#region " Private Properties "

private Size _ImageSize;
protected Size ImageSize
{
get { return _ImageSize; }
}

private int _LockWidth;
protected int LockWidth
{
get { return _LockWidth; }
set
{
_LockWidth = value;
if (!(LockWidth == 0) && IsHandleCreated)
Width = LockWidth;
}
}

private int _LockHeight;
protected int LockHeight
{
get { return _LockHeight; }
set
{
_LockHeight = value;
if (!(LockHeight == 0) && IsHandleCreated)
Height = LockHeight;
}
}

private bool _IsAnimated;
protected bool IsAnimated
{
get { return _IsAnimated; }
set
{
_IsAnimated = value;
InvalidateTimer();
}
}

#endregion


#region " Property Helpers "

protected Pen GetPen(string name)
{
return new Pen(Items[name]);
}
protected Pen GetPen(string name, float width)
{
return new Pen(Items[name], width);
}

protected SolidBrush GetBrush(string name)
{
return new SolidBrush(Items[name]);
}

protected Color GetColor(string name)
{
return Items[name];
}

protected void SetColor(string name, Color value)
{
if (Items.ContainsKey(name))
Items[name] = value;
else
Items.Add(name, value);
}
protected void SetColor(string name, byte r, byte g, byte b)
{
SetColor(name, Color.FromArgb(r, g, b));
}
protected void SetColor(string name, byte a, byte r, byte g, byte b)
{
SetColor(name, Color.FromArgb(a, r, g, b));
}
protected void SetColor(string name, byte a, Color value)
{
SetColor(name, Color.FromArgb(a, value));
}

private void InvalidateBitmap()
{
if (Width == 0 || Height == 0)
return;
B = new Bitmap(Width, Height, PixelFormat.Format32bppPArgb);
G = Graphics.FromImage(B);
}

private void InvalidateCustimization()
{
MemoryStream M = new MemoryStream(Items.Count * 4);

foreach (Bloom B in Colors)
{
M.Write(BitConverter.GetBytes(B.Value.ToArgb()), 0, 4);
}

M.Close();
_Customization = Convert.ToBase64String(M.ToArray());
}

private void InvalidateTimer()
{
if (DesignMode || !DoneCreation)
return;

if (_IsAnimated)
{
ThemeShare.AddAnimationCallback(DoAnimation);
}
else
{
ThemeShare.RemoveAnimationCallback(DoAnimation);
}
}
#endregion


#region " User Hooks "

protected abstract void ColorHook();
protected abstract void PaintHook();

protected virtual void OnCreation()
{
}

protected virtual void OnAnimation()
{
}

#endregion


#region " Offset "

private Rectangle OffsetReturnRectangle;
protected Rectangle Offset(Rectangle r, int amount)
{
OffsetReturnRectangle = new Rectangle(r.X + amount, r.Y + amount, r.Width - (amount * 2), r.Height - (amount * 2));
return OffsetReturnRectangle;
}

private Size OffsetReturnSize;
protected Size Offset(Size s, int amount)
{
OffsetReturnSize = new Size(s.Width + amount, s.Height + amount);
return OffsetReturnSize;
}

private Point OffsetReturnPoint;
protected Point Offset(Point p, int amount)
{
OffsetReturnPoint = new Point(p.X + amount, p.Y + amount);
return OffsetReturnPoint;
}

#endregion

#region " Center "


private Point CenterReturn;
protected Point Center(Rectangle p, Rectangle c)
{
CenterReturn = new Point((p.Width / 2 - c.Width / 2) + p.X + c.X, (p.Height / 2 - c.Height / 2) + p.Y + c.Y);
return CenterReturn;
}
protected Point Center(Rectangle p, Size c)
{
CenterReturn = new Point((p.Width / 2 - c.Width / 2) + p.X, (p.Height / 2 - c.Height / 2) + p.Y);
return CenterReturn;
}

protected Point Center(Rectangle child)
{
return Center(Width, Height, child.Width, child.Height);
}
protected Point Center(Size child)
{
return Center(Width, Height, child.Width, child.Height);
}
protected Point Center(int childWidth, int childHeight)
{
return Center(Width, Height, childWidth, childHeight);
}

protected Point Center(Size p, Size c)
{
return Center(p.Width, p.Height, c.Width, c.Height);
}

protected Point Center(int pWidth, int pHeight, int cWidth, int cHeight)
{
CenterReturn = new Point(pWidth / 2 - cWidth / 2, pHeight / 2 - cHeight / 2);
return CenterReturn;
}

#endregion

#region " Measure "

private Bitmap MeasureBitmap;
//TODO: Potential issues during multi-threading.
private Graphics MeasureGraphics;

protected Size Measure()
{
return MeasureGraphics.MeasureString(Text, Font, Width).ToSize();
}
protected Size Measure(string text)
{
return MeasureGraphics.MeasureString(text, Font, Width).ToSize();
}

#endregion


#region " DrawPixel "


private SolidBrush DrawPixelBrush;
protected void DrawPixel(Color c1, int x, int y)
{
if (_Transparent)
{
B.SetPixel(x, y, c1);
}
else
{
DrawPixelBrush = new SolidBrush(c1);
G.FillRectangle(DrawPixelBrush, x, y, 1, 1);
}
}

#endregion

#region " DrawCorners "


private SolidBrush DrawCornersBrush;
protected void DrawCorners(Color c1, int offset)
{
DrawCorners(c1, 0, 0, Width, Height, offset);
}
protected void DrawCorners(Color c1, Rectangle r1, int offset)
{
DrawCorners(c1, r1.X, r1.Y, r1.Width, r1.Height, offset);
}
protected void DrawCorners(Color c1, int x, int y, int width, int height, int offset)
{
DrawCorners(c1, x + offset, y + offset, width - (offset * 2), height - (offset * 2));
}

protected void DrawCorners(Color c1)
{
DrawCorners(c1, 0, 0, Width, Height);
}
protected void DrawCorners(Color c1, Rectangle r1)
{
DrawCorners(c1, r1.X, r1.Y, r1.Width, r1.Height);
}
protected void DrawCorners(Color c1, int x, int y, int width, int height)
{
if (_NoRounding)
return;

if (_Transparent)
{
B.SetPixel(x, y, c1);
B.SetPixel(x + (width - 1), y, c1);
B.SetPixel(x, y + (height - 1), c1);
B.SetPixel(x + (width - 1), y + (height - 1), c1);
}
else
{
DrawCornersBrush = new SolidBrush(c1);
G.FillRectangle(DrawCornersBrush, x, y, 1, 1);
G.FillRectangle(DrawCornersBrush, x + (width - 1), y, 1, 1);
G.FillRectangle(DrawCornersBrush, x, y + (height - 1), 1, 1);
G.FillRectangle(DrawCornersBrush, x + (width - 1), y + (height - 1), 1, 1);
}
}

#endregion

#region " DrawBorders "

protected void DrawBorders(Pen p1, int offset)
{
DrawBorders(p1, 0, 0, Width, Height, offset);
}
protected void DrawBorders(Pen p1, Rectangle r, int offset)
{
DrawBorders(p1, r.X, r.Y, r.Width, r.Height, offset);
}
protected void DrawBorders(Pen p1, int x, int y, int width, int height, int offset)
{
DrawBorders(p1, x + offset, y + offset, width - (offset * 2), height - (offset * 2));
}

protected void DrawBorders(Pen p1)
{
DrawBorders(p1, 0, 0, Width, Height);
}
protected void DrawBorders(Pen p1, Rectangle r)
{
DrawBorders(p1, r.X, r.Y, r.Width, r.Height);
}
protected void DrawBorders(Pen p1, int x, int y, int width, int height)
{
G.DrawRectangle(p1, x, y, width - 1, height - 1);
}

#endregion

#region " DrawText "

private Point DrawTextPoint;

private Size DrawTextSize;
protected void DrawText(Brush b1, HorizontalAlignment a, int x, int y)
{
DrawText(b1, Text, a, x, y);
}
protected void DrawText(Brush b1, string text, HorizontalAlignment a, int x, int y)
{
if (text.Length == 0)
return;

DrawTextSize = Measure(text);
DrawTextPoint = Center(DrawTextSize);

switch (a)
{
case HorizontalAlignment.Left:
G.DrawString(text, Font, b1, x, DrawTextPoint.Y + y);
break;
case HorizontalAlignment.Center:
G.DrawString(text, Font, b1, DrawTextPoint.X + x, DrawTextPoint.Y + y);
break;
case HorizontalAlignment.Right:
G.DrawString(text, Font, b1, Width - DrawTextSize.Width - x, DrawTextPoint.Y + y);
break;
}
}

protected void DrawText(Brush b1, Point p1)
{
if (Text.Length == 0)
return;
G.DrawString(Text, Font, b1, p1);
}
protected void DrawText(Brush b1, int x, int y)
{
if (Text.Length == 0)
return;
G.DrawString(Text, Font, b1, x, y);
}

#endregion

#region " DrawImage "


private Point DrawImagePoint;
protected void DrawImage(HorizontalAlignment a, int x, int y)
{
DrawImage(_Image, a, x, y);
}
protected void DrawImage(Image image, HorizontalAlignment a, int x, int y)
{
if (image == null)
return;
DrawImagePoint = Center(image.Size);

switch (a)
{
case HorizontalAlignment.Left:
G.DrawImage(image, x, DrawImagePoint.Y + y, image.Width, image.Height);
break;
case HorizontalAlignment.Center:
G.DrawImage(image, DrawImagePoint.X + x, DrawImagePoint.Y + y, image.Width, image.Height);
break;
case HorizontalAlignment.Right:
G.DrawImage(image, Width - image.Width - x, DrawImagePoint.Y + y, image.Width, image.Height);
break;
}
}

protected void DrawImage(Point p1)
{
DrawImage(_Image, p1.X, p1.Y);
}
protected void DrawImage(int x, int y)
{
DrawImage(_Image, x, y);
}

protected void DrawImage(Image image, Point p1)
{
DrawImage(image, p1.X, p1.Y);
}
protected void DrawImage(Image image, int x, int y)
{
if (image == null)
return;
G.DrawImage(image, x, y, image.Width, image.Height);
}

#endregion

#region " DrawGradient "

private LinearGradientBrush DrawGradientBrush;

private Rectangle DrawGradientRectangle;
protected void DrawGradient(ColorBlend blend, int x, int y, int width, int height)
{
DrawGradientRectangle = new Rectangle(x, y, width, height);
DrawGradient(blend, DrawGradientRectangle);
}
protected void DrawGradient(ColorBlend blend, int x, int y, int width, int height, float angle)
{
DrawGradientRectangle = new Rectangle(x, y, width, height);
DrawGradient(blend, DrawGradientRectangle, angle);
}

protected void DrawGradient(ColorBlend blend, Rectangle r)
{
DrawGradientBrush = new LinearGradientBrush(r, Color.Empty, Color.Empty, 90f);
DrawGradientBrush.InterpolationColors = blend;
G.FillRectangle(DrawGradientBrush, r);
}
protected void DrawGradient(ColorBlend blend, Rectangle r, float angle)
{
DrawGradientBrush = new LinearGradientBrush(r, Color.Empty, Color.Empty, angle);
DrawGradientBrush.InterpolationColors = blend;
G.FillRectangle(DrawGradientBrush, r);
}


protected void DrawGradient(Color c1, Color c2, int x, int y, int width, int height)
{
DrawGradientRectangle = new Rectangle(x, y, width, height);
DrawGradient(c1, c2, DrawGradientRectangle);
}
protected void DrawGradient(Color c1, Color c2, int x, int y, int width, int height, float angle)
{
DrawGradientRectangle = new Rectangle(x, y, width, height);
DrawGradient(c1, c2, DrawGradientRectangle, angle);
}

protected void DrawGradient(Color c1, Color c2, Rectangle r)
{
DrawGradientBrush = new LinearGradientBrush(r, c1, c2, 90f);
G.FillRectangle(DrawGradientBrush, r);
}
protected void DrawGradient(Color c1, Color c2, Rectangle r, float angle)
{
DrawGradientBrush = new LinearGradientBrush(r, c1, c2, angle);
G.FillRectangle(DrawGradientBrush, r);
}

#endregion

#region " DrawRadial "

private GraphicsPath DrawRadialPath;
private PathGradientBrush DrawRadialBrush1;
private LinearGradientBrush DrawRadialBrush2;

private Rectangle DrawRadialRectangle;
public void DrawRadial(ColorBlend blend, int x, int y, int width, int height)
{
DrawRadialRectangle = new Rectangle(x, y, width, height);
DrawRadial(blend, DrawRadialRectangle, width / 2, height / 2);
}
public void DrawRadial(ColorBlend blend, int x, int y, int width, int height, Point center)
{
DrawRadialRectangle = new Rectangle(x, y, width, height);
DrawRadial(blend, DrawRadialRectangle, center.X, center.Y);
}
public void DrawRadial(ColorBlend blend, int x, int y, int width, int height, int cx, int cy)
{
DrawRadialRectangle = new Rectangle(x, y, width, height);
DrawRadial(blend, DrawRadialRectangle, cx, cy);
}

public void DrawRadial(ColorBlend blend, Rectangle r)
{
DrawRadial(blend, r, r.Width / 2, r.Height / 2);
}
public void DrawRadial(ColorBlend blend, Rectangle r, Point center)
{
DrawRadial(blend, r, center.X, center.Y);
}
public void DrawRadial(ColorBlend blend, Rectangle r, int cx, int cy)
{
DrawRadialPath.Reset();
DrawRadialPath.AddEllipse(r.X, r.Y, r.Width - 1, r.Height - 1);

DrawRadialBrush1 = new PathGradientBrush(DrawRadialPath);
DrawRadialBrush1.CenterPoint = new Point(r.X + cx, r.Y + cy);
DrawRadialBrush1.InterpolationColors = blend;

if (G.SmoothingMode == SmoothingMode.AntiAlias)
{
G.FillEllipse(DrawRadialBrush1, r.X + 1, r.Y + 1, r.Width - 3, r.Height - 3);
}
else
{
G.FillEllipse(DrawRadialBrush1, r);
}
}


protected void DrawRadial(Color c1, Color c2, int x, int y, int width, int height)
{
DrawRadialRectangle = new Rectangle(x, y, width, height);
DrawRadial(c1, c2, DrawRadialRectangle);
}
protected void DrawRadial(Color c1, Color c2, int x, int y, int width, int height, float angle)
{
DrawRadialRectangle = new Rectangle(x, y, width, height);
DrawRadial(c1, c2, DrawRadialRectangle, angle);
}

protected void DrawRadial(Color c1, Color c2, Rectangle r)
{
DrawRadialBrush2 = new LinearGradientBrush(r, c1, c2, 90f);
G.FillEllipse(DrawRadialBrush2, r);
}
protected void DrawRadial(Color c1, Color c2, Rectangle r, float angle)
{
DrawRadialBrush2 = new LinearGradientBrush(r, c1, c2, angle);
G.FillEllipse(DrawRadialBrush2, r);
}

#endregion

#region " CreateRound "

private GraphicsPath CreateRoundPath;

private Rectangle CreateRoundRectangle;
public GraphicsPath CreateRound(int x, int y, int width, int height, int slope)
{
CreateRoundRectangle = new Rectangle(x, y, width, height);
return CreateRound(CreateRoundRectangle, slope);
}

public GraphicsPath CreateRound(Rectangle r, int slope)
{
CreateRoundPath = new GraphicsPath(FillMode.Winding);
CreateRoundPath.AddArc(r.X, r.Y, slope, slope, 180f, 90f);
CreateRoundPath.AddArc(r.Right - slope, r.Y, slope, slope, 270f, 90f);
CreateRoundPath.AddArc(r.Right - slope, r.Bottom - slope, slope, slope, 0f, 90f);
CreateRoundPath.AddArc(r.X, r.Bottom - slope, slope, slope, 90f, 90f);
CreateRoundPath.CloseFigure();
return CreateRoundPath;
}

#endregion

}

static class ThemeShare
{

#region " Animation "

private static int Frames;
private static bool Invalidate;

public static PrecisionTimer ThemeTimer = new PrecisionTimer();
//1000 / 50 = 20 FPS
public static int FPS = 20;

public static int Rate = 50;
public delegate void AnimationDelegate(bool invalidate);


private static List<AnimationDelegate> Callbacks = new List<AnimationDelegate>();
private static void HandleCallbacks(IntPtr state, bool reserve)
{
Invalidate = (Frames >= FPS);
if (Invalidate)
Frames = 0;

lock (Callbacks)
{
for (int I = 0; I <= Callbacks.Count - 1; I++)
{
Callbacks[I].Invoke(Invalidate);
}
}

Frames += Rate;
}

private static void InvalidateThemeTimer()
{
if (Callbacks.Count == 0)
{
ThemeTimer.Delete();
}
else
{
ThemeTimer.Create(0, (uint)Rate, HandleCallbacks);
}
}

public static void AddAnimationCallback(AnimationDelegate callback)
{
lock (Callbacks)
{
if (Callbacks.Contains(callback))
return;

Callbacks.Add(callback);
InvalidateThemeTimer();
}
}

public static void RemoveAnimationCallback(AnimationDelegate callback)
{
lock (Callbacks)
{
if (!Callbacks.Contains(callback))
return;

Callbacks.Remove(callback);
InvalidateThemeTimer();
}
}

#endregion

}

enum MouseState : byte
{
None = 0,
Over = 1,
Down = 2,
Block = 3
}

struct Bloom
{

public string _Name;
public string Name
{
get { return _Name; }
}

private Color _Value;
public Color Value
{
get { return _Value; }
set { _Value = value; }
}

public string ValueHex
{
get { return string.Concat("#", _Value.R.ToString("X2", null), _Value.G.ToString("X2", null), _Value.B.ToString("X2", null)); }
set
{
try
{
_Value = ColorTranslator.FromHtml(value);
}
catch
{
return;
}
}
}


public Bloom(string name, Color value)
{
_Name = name;
_Value = value;
}
}

//------------------
//Creator: aeonhack
//Site: elitevs.net
//Created: 11/30/2011
//Changed: 11/30/2011
//Version: 1.0.0
//------------------
class PrecisionTimer : IDisposable
{

private bool _Enabled;
public bool Enabled
{
get { return _Enabled; }
}

private IntPtr Handle;

private TimerDelegate TimerCallback;
[DllImport("kernel32.dll", EntryPoint = "CreateTimerQueueTimer")]
private static extern bool CreateTimerQueueTimer(ref IntPtr handle, IntPtr queue, TimerDelegate callback, IntPtr state, uint dueTime, uint period, uint flags);

[DllImport("kernel32.dll", EntryPoint = "DeleteTimerQueueTimer")]
private static extern bool DeleteTimerQueueTimer(IntPtr queue, IntPtr handle, IntPtr callback);

public delegate void TimerDelegate(IntPtr r1, bool r2);

public void Create(uint dueTime, uint period, TimerDelegate callback)
{
if (_Enabled)
return;

TimerCallback = callback;
bool Success = CreateTimerQueueTimer(ref Handle, IntPtr.Zero, TimerCallback, IntPtr.Zero, dueTime, period, 0);

if (!Success)
ThrowNewException("CreateTimerQueueTimer");
_Enabled = Success;
}

public void Delete()
{
if (!_Enabled)
return;
bool Success = DeleteTimerQueueTimer(IntPtr.Zero, Handle, IntPtr.Zero);

if (!Success && !(Marshal.GetLastWin32Error() == 997))
{
//ThrowNewException("DeleteTimerQueueTimer")
}

_Enabled = !Success;
}

private void ThrowNewException(string name)
{
throw new Exception(string.Format("{0} failed. Win32Error: {1}", name, Marshal.GetLastWin32Error()));
}

public void Dispose()
{
Delete();
}
}
#endregion

class GhostTheme : ThemeContainer154
{


protected override void ColorHook()
{
}

private bool _ShowIcon;
public bool ShowIcon
{
get { return _ShowIcon; }
set
{
_ShowIcon = value;
Invalidate();
}
}

protected override void PaintHook()
{
G.Clear(Color.DimGray);
ColorBlend hatch = new ColorBlend(2);
DrawBorders(Pens.Gray, 1);
hatch.Colors[0] = Color.DimGray;
hatch.Colors[1] = Color.FromArgb(60, 60, 60);
hatch.Positions[0] = 0;
hatch.Positions[1] = 1;
DrawGradient(hatch, new Rectangle(0, 0, Width, 24));
hatch.Colors[0] = Color.FromArgb(100, 100, 100);
hatch.Colors[1] = Color.DimGray;
DrawGradient(hatch, new Rectangle(0, 0, Width, 12));
HatchBrush asdf = null;
asdf = new HatchBrush(HatchStyle.DarkDownwardDiagonal, Color.FromArgb(15, Color.Black), Color.FromArgb(0, Color.Gray));
hatch.Colors[0] = Color.FromArgb(120, Color.Black);
hatch.Colors[1] = Color.FromArgb(0, Color.Black);
DrawGradient(hatch, new Rectangle(0, 0, Width, 30));
G.FillRectangle(asdf, 0, 0, Width, 24);
G.DrawLine(Pens.Black, 6, 24, Width - 7, 24);
G.DrawLine(Pens.Black, 6, 24, 6, Height - 7);
G.DrawLine(Pens.Black, 6, Height - 7, Width - 7, Height - 7);
G.DrawLine(Pens.Black, Width - 7, 24, Width - 7, Height - 7);
G.FillRectangle(new SolidBrush(Color.FromArgb(60, 60, 60)), new Rectangle(1, 24, 5, Height - 6 - 24));
G.FillRectangle(asdf, 1, 24, 5, Height - 6 - 24);
G.FillRectangle(new SolidBrush(Color.FromArgb(60, 60, 60)), new Rectangle(Width - 6, 24, Width - 1, Height - 6 - 24));
G.FillRectangle(asdf, Width - 6, 24, Width - 2, Height - 6 - 24);
G.FillRectangle(new SolidBrush(Color.FromArgb(60, 60, 60)), new Rectangle(1, Height - 6, Width - 2, Height - 1));
G.FillRectangle(asdf, 1, Height - 6, Width - 2, Height - 1);
DrawBorders(Pens.Black);
asdf = new HatchBrush(HatchStyle.LightDownwardDiagonal, Color.DimGray);
G.FillRectangle(asdf, 7, 25, Width - 14, Height - 24 - 8);
G.FillRectangle(new SolidBrush(Color.FromArgb(230, 20, 20, 20)), 7, 25, Width - 14, Height - 24 - 8);
DrawCorners(Color.Fuchsia);
DrawCorners(Color.Fuchsia, 0, 1, 1, 1);
DrawCorners(Color.Fuchsia, 1, 0, 1, 1);
DrawPixel(Color.Black, 1, 1);

DrawCorners(Color.Fuchsia, 0, Height - 2, 1, 1);
DrawCorners(Color.Fuchsia, 1, Height - 1, 1, 1);
DrawPixel(Color.Black, Width - 2, 1);

DrawCorners(Color.Fuchsia, Width - 1, 1, 1, 1);
DrawCorners(Color.Fuchsia, Width - 2, 0, 1, 1);
DrawPixel(Color.Black, 1, Height - 2);

DrawCorners(Color.Fuchsia, Width - 1, Height - 2, 1, 1);
DrawCorners(Color.Fuchsia, Width - 2, Height - 1, 1, 1);
DrawPixel(Color.Black, Width - 2, Height - 2);

ColorBlend cblend = new ColorBlend(2);
cblend.Colors[0] = Color.F
Reply


Messages In This Thread
Post your CTRL+V. - by MyNameIs940 - 10-04-2009, 10:35 PM
RE: Post your CTRL+V. - by RPicard - 10-04-2009, 10:38 PM
RE: Post your CTRL+V. - by MyNameIs940 - 10-04-2009, 10:39 PM
RE: Post your CTRL+V. - by Gos - 10-04-2009, 10:38 PM
RE: Post your CTRL+V. - by Kaotic - 10-04-2009, 10:48 PM
RE: Post your CTRL+V. - by MyNameIs940 - 10-04-2009, 10:50 PM
RE: Post your CTRL+V. - by Skawke - 10-04-2009, 11:05 PM
RE: Post your CTRL+V. - by Tempest Knight - 10-04-2009, 11:06 PM
RE: Post your CTRL+V. - by Elektrisk - 10-04-2009, 11:58 PM
RE: Post your CTRL+V. - by Niko Bellic - 10-05-2009, 02:01 AM
RE: Post your CTRL+V. - by Akashreturns - 10-19-2012, 02:00 AM
RE: Post your CTRL+V. - by m4tth3vv - 10-05-2009, 02:51 AM
RE: Post your CTRL+V. - by RAZcracK - 10-05-2009, 01:43 PM
RE: Post your CTRL+V. - by Glas - 10-05-2009, 01:43 PM
RE: Post your CTRL+V. - by Snooopy` - 10-05-2009, 02:03 PM
RE: Post your CTRL+V. - by Gaijin - 10-05-2009, 02:06 PM
RE: Post your CTRL+V. - by Backslash - 10-05-2009, 02:07 PM
RE: Post your CTRL+V. - by MyNameIs940 - 10-05-2009, 02:08 PM
RE: Post your CTRL+V. - by Elektrisk - 10-05-2009, 02:10 PM
RE: Post your CTRL+V. - by WeZZi - 10-05-2009, 02:18 PM
RE: Post your CTRL+V. - by Elektrisk - 10-05-2009, 02:43 PM
RE: Post your CTRL+V. - by WeZZi - 10-05-2009, 03:02 PM
RE: Post your CTRL+V. - by Elektrisk - 10-05-2009, 03:05 PM
RE: Post your CTRL+V. - by Zoidberg - 10-05-2009, 02:44 PM
RE: Post your CTRL+V. - by CryptoSoldier - 10-05-2009, 02:47 PM
RE: Post your CTRL+V. - by Elektrisk - 10-05-2009, 03:01 PM
RE: Post your CTRL+V. - by invisible - 10-06-2009, 08:31 AM
RE: Post your CTRL+V. - by Vorfin - 10-06-2009, 01:01 PM
RE: Post your CTRL+V. - by YoungHelper - 10-06-2009, 01:02 PM
RE: Post your CTRL+V. - by Elektrisk - 10-06-2009, 02:06 PM
RE: Post your CTRL+V. - by Camgaertner - 10-06-2009, 03:50 PM
RE: Post your CTRL+V. - by golyand - 10-06-2009, 04:25 PM
RE: Post your CTRL+V. - by etcBro - 10-06-2009, 05:59 PM
RE: Post your CTRL+V. - by rated - 10-06-2009, 09:03 PM
RE: Post your CTRL+V. - by S1cKL3R - 10-06-2009, 10:22 PM
RE: Post your CTRL+V. - by Elektrisk - 10-06-2009, 10:25 PM
RE: Post your CTRL+V. - by Acekidd01 - 10-06-2009, 10:25 PM
RE: Post your CTRL+V. - by Elektrisk - 10-07-2009, 01:14 AM
RE: Post your CTRL+V. - by MyNameIs940 - 10-07-2009, 08:45 AM
RE: Post your CTRL+V. - by Vorfin - 10-07-2009, 09:07 AM
RE: Post your CTRL+V. - by yuenowo - 10-07-2009, 02:05 PM
RE: Post your CTRL+V. - by Rawkfist - 10-07-2009, 05:43 PM
RE: Post your CTRL+V. - by nevets04 - 10-07-2009, 05:56 PM
RE: Post your CTRL+V. - by C!RCU!T tr0jAn ☠ - 10-07-2009, 06:10 PM
RE: Post your CTRL+V. - by matt - 10-07-2009, 06:30 PM
RE: Post your CTRL+V. - by Gone - 10-07-2009, 06:36 PM
RE: Post your CTRL+V. - by Acekidd01 - 10-07-2009, 06:38 PM
RE: Post your CTRL+V. - by Rawkfist - 10-07-2009, 08:41 PM
RE: Post your CTRL+V. - by Legend - 10-07-2009, 08:44 PM
RE: Post your CTRL+V. - by Viciousness - 10-07-2009, 08:49 PM
RE: Post your CTRL+V. - by h1r0n - 10-08-2009, 03:36 AM
RE: Post your CTRL+V. - by rockclimber66 - 10-08-2009, 03:53 AM
RE: Post your CTRL+V. - by Madafaka - 10-08-2009, 05:33 AM
RE: Post your CTRL+V. - by Soldier of Fortune - 10-08-2009, 05:35 AM
RE: Post your CTRL+V. - by doomster - 10-08-2009, 05:46 AM
RE: Post your CTRL+V. - by Creqaw - 10-08-2009, 08:01 AM
RE: Post your CTRL+V. - by Headshot - 10-08-2009, 08:03 AM
RE: Post your CTRL+V. - by Origin - 10-08-2009, 10:08 AM
RE: Post your CTRL+V. - by Guerriero420 - 10-08-2009, 10:11 AM
RE: Post your CTRL+V. - by Headshot - 10-08-2009, 10:19 AM
RE: Post your CTRL+V. - by iTz Goku09 - 10-08-2009, 10:51 AM
RE: Post your CTRL+V. - by Headshot - 10-08-2009, 10:53 AM
RE: Post your CTRL+V. - by Rawkfist - 10-08-2009, 10:59 AM
RE: Post your CTRL+V. - by bladerboy6000 - 10-08-2009, 11:10 AM
RE: Post your CTRL+V. - by Doofy - 10-08-2009, 01:01 PM
RE: Post your CTRL+V. - by Headshot - 10-08-2009, 01:04 PM
RE: Post your CTRL+V. - by Lazydude2000 - 10-08-2009, 01:07 PM
RE: Post your CTRL+V. - by WirelessWave - 10-08-2009, 01:08 PM
RE: Post your CTRL+V. - by highfuzz - 10-08-2009, 01:25 PM
RE: Post your CTRL+V. - by Gizmo - 10-08-2009, 01:31 PM
RE: Post your CTRL+V. - by Gone - 10-08-2009, 01:51 PM
RE: Post your CTRL+V. - by Rawkfist - 10-08-2009, 01:57 PM
RE: Post your CTRL+V. - by SpydR - 10-08-2009, 06:13 PM
RE: Post your CTRL+V. - by SuperSperm - 10-08-2009, 06:14 PM
RE: Post your CTRL+V. - by Hanzo - 10-08-2009, 06:17 PM
RE: Post your CTRL+V. - by Cppsean - 10-08-2009, 06:30 PM
RE: Post your CTRL+V. - by Headshot - 10-08-2009, 06:31 PM
RE: Post your CTRL+V. - by Zammyslave - 10-08-2009, 06:41 PM
RE: Post your CTRL+V. - by Idiot #1 - 10-08-2009, 06:55 PM
RE: Post your CTRL+V. - by JDBar - 10-08-2009, 06:55 PM
RE: Post your CTRL+V. - by Evo - 10-08-2009, 07:29 PM
RE: Post your CTRL+V. - by VantisH - 10-08-2009, 07:34 PM
RE: Post your CTRL+V. - by WhightKnight - 10-08-2009, 08:31 PM
RE: Post your CTRL+V. - by Lucien Lachance - 10-08-2009, 10:29 PM
RE: Post your CTRL+V. - by M47R!X - 10-08-2009, 10:33 PM
RE: Post your CTRL+V. - by invisible - 10-09-2009, 10:02 AM
RE: Post your CTRL+V. - by Skill - 10-09-2009, 10:04 AM
RE: Post your CTRL+V. - by ...w3 - 10-09-2009, 10:25 AM
RE: Post your CTRL+V. - by Cakk - 10-09-2009, 10:27 AM
RE: Post your CTRL+V. - by Moudi - 10-09-2009, 10:47 AM
RE: Post your CTRL+V. - by TemperingPick - 10-09-2009, 02:37 PM
RE: Post your CTRL+V. - by rockclimber66 - 10-09-2009, 02:38 PM
RE: Post your CTRL+V. - by JDBar - 10-09-2009, 08:13 PM
RE: Post your CTRL+V. - by majinbuu1023 - 10-10-2009, 12:56 AM
RE: Post your CTRL+V. - by MyNameIs940 - 10-10-2009, 12:33 PM
RE: Post your CTRL+V. - by Elektrisk - 10-10-2009, 01:32 PM
RE: Post your CTRL+V. - by invisible - 10-10-2009, 02:26 PM
RE: Post your CTRL+V. - by Project Evolution - 10-10-2009, 03:15 PM
RE: Post your CTRL+V. - by cheeseburger - 10-10-2009, 03:38 PM
RE: Post your CTRL+V. - by Amped - 10-10-2009, 04:15 PM
RE: Post your CTRL+V. - by cheeseburger - 10-11-2009, 03:39 AM
RE: Post your CTRL+V. - by invisible - 10-11-2009, 03:48 AM
RE: Post your CTRL+V. - by Tim - 10-11-2009, 04:23 AM
RE: Post your CTRL+V. - by KretPul - 10-11-2009, 04:25 AM
RE: Post your CTRL+V. - by 5C4RF4C3 - 10-11-2009, 04:35 AM
RE: Post your CTRL+V. - by x0re - 10-11-2009, 05:10 AM
RE: Post your CTRL+V. - by Moudi - 10-11-2009, 07:27 AM
RE: Post your CTRL+V. - by invisible - 10-11-2009, 04:34 PM
RE: Post your CTRL+V. - by highfuzz - 10-11-2009, 04:35 PM
RE: Post your CTRL+V. - by Rawkfist - 10-11-2009, 04:58 PM
RE: Post your CTRL+V. - by BlizzStaff - 10-11-2009, 07:04 PM
RE: Post your CTRL+V. - by metzntrix89 - 10-12-2009, 03:13 AM
RE: Post your CTRL+V. - by Akshay* - 10-12-2009, 07:03 AM
RE: Post your CTRL+V. - by cheeseburger - 10-12-2009, 08:20 AM
RE: Post your CTRL+V. - by loge00 - 10-12-2009, 10:08 AM
RE: Post your CTRL+V. - by cheeseburger - 10-12-2009, 10:34 AM
RE: Post your CTRL+V. - by Rawkfist - 10-12-2009, 12:06 PM
RE: Post your CTRL+V. - by Rawkfist - 10-12-2009, 02:30 PM
RE: Post your CTRL+V. - by R3c0nna1ssanc3 - 10-12-2009, 02:30 PM
RE: Post your CTRL+V. - by Gone - 10-12-2009, 07:42 PM
RE: Post your CTRL+V. - by Conan - 10-13-2009, 05:31 PM
RE: Post your CTRL+V. - by Gone - 10-13-2009, 06:47 PM
RE: Post your CTRL+V. - by p0w3r0fchr1st - 10-13-2009, 06:56 PM
RE: Post your CTRL+V. - by Elektrisk - 10-13-2009, 10:39 PM
RE: Post your CTRL+V. - by Gpizzle - 10-13-2009, 10:47 PM
RE: Post your CTRL+V. - by MyNameIs940 - 10-17-2009, 12:14 AM
RE: Post your CTRL+V. - by flAmingw0rm - 10-17-2009, 04:46 AM
RE: Post your CTRL+V. - by Gone - 10-17-2009, 10:37 AM
RE: Post your CTRL+V. - by Rawkfist - 10-17-2009, 12:01 PM
RE: Post your CTRL+V. - by nevets04 - 10-17-2009, 12:07 PM
RE: Post your CTRL+V. - by jado - 10-17-2009, 12:11 PM
RE: Post your CTRL+V. - by Conan - 10-17-2009, 04:47 PM
RE: Post your CTRL+V. - by flAmingw0rm - 10-17-2009, 05:06 PM
RE: Post your CTRL+V. - by D3N - 10-17-2009, 05:08 PM
RE: Post your CTRL+V. - by Headshot - 10-17-2009, 05:54 PM
RE: Post your CTRL+V. - by cheeseburger - 10-17-2009, 06:27 PM
RE: Post your CTRL+V. - by LOL - 10-18-2009, 09:12 AM
RE: Post your CTRL+V. - by invisible - 10-18-2009, 02:01 PM
RE: Post your CTRL+V. - by ProgramMajor - 10-18-2009, 02:16 PM
RE: Post your CTRL+V. - by invisible - 10-19-2009, 10:40 AM
RE: Post your CTRL+V. - by manipulate - 10-21-2009, 09:06 AM
RE: Post your CTRL+V. - by invisible - 10-21-2009, 10:09 AM
RE: Post your CTRL+V. - by Combo - 10-21-2009, 11:01 AM
RE: Post your CTRL+V. - by flAmingw0rm - 10-21-2009, 04:32 PM
RE: Post your CTRL+V. - by -=[CyberHR]=- - 10-21-2009, 07:28 PM
RE: Post your CTRL+V. - by tusku - 10-21-2009, 07:30 PM
RE: Post your CTRL+V. - by Acekidd01 - 10-22-2009, 12:57 AM
RE: Post your CTRL+V. - by Rawkfist - 10-22-2009, 03:13 AM
RE: Post your CTRL+V. - by Gaijin - 10-22-2009, 03:15 AM
RE: Post your CTRL+V. - by JDBar - 10-22-2009, 02:54 PM
RE: Post your CTRL+V. - by Fade - 10-22-2009, 02:56 PM
RE: Post your CTRL+V. - by Riverthief - 10-22-2009, 06:35 PM
RE: Post your CTRL+V. - by invisible - 10-23-2009, 10:01 AM
RE: Post your CTRL+V. - by immi - 10-23-2009, 10:23 AM
RE: Post your CTRL+V. - by Akshay* - 10-23-2009, 10:26 AM
RE: Post your CTRL+V. - by immi - 10-23-2009, 11:00 AM
RE: Post your CTRL+V. - by Rawkfist - 10-23-2009, 07:29 PM
RE: Post your CTRL+V. - by Extasey - 10-23-2009, 08:20 PM
RE: Post your CTRL+V. - by manipulate - 10-24-2009, 01:45 AM
RE: Post your CTRL+V. - by 3 X P L 0 I T - 10-24-2009, 07:18 AM
RE: Post your CTRL+V. - by manipulate - 10-24-2009, 09:11 PM
RE: Post your CTRL+V. - by Surface - 10-24-2009, 09:32 PM
RE: Post your CTRL+V. - by iFlare - 10-24-2009, 10:06 PM
RE: Post your CTRL+V. - by Rawkfist - 10-25-2009, 06:47 AM
RE: Post your CTRL+V. - by Mia - 10-25-2009, 08:50 AM
RE: Post your CTRL+V. - by Idiot #1 - 10-25-2009, 04:18 PM
RE: Post your CTRL+V. - by nevets04 - 10-25-2009, 04:37 PM
RE: Post your CTRL+V. - by uber1337 - 10-25-2009, 05:41 PM
RE: Post your CTRL+V. - by manipulate - 10-26-2009, 07:01 AM
RE: Post your CTRL+V. - by MyNameIs940 - 11-04-2009, 12:12 AM
RE: Post your CTRL+V. - by Yoshi - 11-04-2009, 02:33 AM
RE: Post your CTRL+V. - by p0w3r0fchr1st - 11-04-2009, 07:11 AM
RE: Post your CTRL+V. - by Codine - 11-04-2009, 07:12 AM
RE: Post your CTRL+V. - by Gone - 11-04-2009, 07:49 PM
RE: Post your CTRL+V. - by MyNameIs940 - 11-08-2009, 02:08 AM
RE: Post your CTRL+V. - by awil - 11-08-2009, 02:48 AM
RE: Post your CTRL+V. - by Extasey - 11-08-2009, 03:35 AM
RE: Post your CTRL+V. - by Fade - 11-08-2009, 05:01 AM
RE: Post your CTRL+V. - by Rawkfist - 11-08-2009, 08:01 AM
RE: Post your CTRL+V. - by Phyrrus - 11-08-2009, 08:18 AM
RE: Post your CTRL+V. - by zone - 11-08-2009, 09:35 AM
RE: Post your CTRL+V. - by MyNameIs940 - 11-15-2009, 08:43 PM
RE: Post your CTRL+V. - by [nWo] Hulk Hogan - 11-16-2009, 07:39 PM
RE: Post your CTRL+V. - by Skawke - 11-16-2009, 07:47 PM
RE: Post your CTRL+V. - by matt - 11-17-2009, 01:25 AM
RE: Post your CTRL+V. - by RPicard - 11-17-2009, 01:30 AM
RE: Post your CTRL+V. - by Nonmod - 11-17-2009, 02:01 AM
RE: Post your CTRL+V. - by Brainless Control - 11-17-2009, 02:16 AM
RE: Post your CTRL+V. - by cheeseburger - 11-17-2009, 02:23 AM
RE: Post your CTRL+V. - by -JD- - 11-17-2009, 02:36 AM
RE: Post your CTRL+V. - by Gone - 11-19-2009, 07:37 PM
RE: Post your CTRL+V. - by RPicard - 11-23-2009, 11:04 AM
RE: Post your CTRL+V. - by invisible - 11-23-2009, 12:57 PM
RE: Post your CTRL+V. - by Cohen - 11-23-2009, 01:59 PM
RE: Post your CTRL+V. - by Shadow Soul - 11-23-2009, 03:35 PM
RE: Post your CTRL+V. - by Gone - 11-23-2009, 03:43 PM
RE: Post your CTRL+V. - by Shadow Soul - 11-23-2009, 03:45 PM
RE: Post your CTRL+V. - by Gone - 11-23-2009, 04:48 PM
RE: Post your CTRL+V. - by Annuit Coeptis - 11-23-2009, 09:19 PM
RE: Post your CTRL+V. - by RPicard - 11-24-2009, 10:01 AM
RE: Post your CTRL+V. - by Keyreaper - 11-24-2009, 04:15 PM
RE: Post your CTRL+V. - by ProgramMajor - 11-24-2009, 05:09 PM
RE: Post your CTRL+V. - by Gone - 11-29-2009, 03:26 PM
RE: Post your CTRL+V. - by flAmingw0rm - 11-29-2009, 04:24 PM
RE: Post your CTRL+V. - by Acekidd01 - 11-29-2009, 08:12 PM
RE: Post your CTRL+V. - by RPicard - 11-29-2009, 11:11 PM
RE: Post your CTRL+V. - by Treblez - 11-30-2009, 12:51 AM
RE: Post your CTRL+V. - by Gone - 12-01-2009, 11:44 PM
RE: Post your CTRL+V. - by manipulate - 12-01-2009, 11:48 PM
RE: Post your CTRL+V. - by Brainless Control - 12-02-2009, 05:39 AM
RE: Post your CTRL+V. - by Moudi - 12-02-2009, 01:48 PM
RE: Post your CTRL+V. - by broken_machine - 12-02-2009, 07:53 PM
RE: Post your CTRL+V. - by JDBar - 12-02-2009, 08:43 PM
RE: Post your CTRL+V. - by cheeseburger - 12-02-2009, 10:09 PM
RE: Post your CTRL+V. - by manipulate - 12-03-2009, 04:49 AM
RE: Post your CTRL+V. - by manipulate - 12-03-2009, 06:57 AM
RE: Post your CTRL+V. - by Moudi - 12-03-2009, 05:47 PM
RE: Post your CTRL+V. - by Gone - 12-03-2009, 08:50 PM
RE: Post your CTRL+V. - by Gone - 12-04-2009, 09:27 PM
RE: Post your CTRL+V. - by Zomaian - 12-04-2009, 09:30 PM
RE: Post your CTRL+V. - by RPicard - 12-04-2009, 11:30 PM
RE: Post your CTRL+V. - by Gone - 12-06-2009, 08:56 PM
RE: Post your CTRL+V. - by Gone - 12-09-2009, 10:51 AM
RE: Post your CTRL+V. - by RPicard - 12-09-2009, 11:46 AM
RE: Post your CTRL+V. - by Gone - 12-09-2009, 07:20 PM
RE: Post your CTRL+V. - by WMM - 12-09-2009, 07:25 PM
RE: Post your CTRL+V. - by Uhriventis - 12-09-2009, 09:14 PM
RE: Post your CTRL+V. - by awil - 12-09-2009, 09:36 PM
RE: Post your CTRL+V. - by Rawkfist - 12-10-2009, 04:45 AM
RE: Post your CTRL+V. - by Gone - 12-10-2009, 02:04 PM
RE: Post your CTRL+V. - by Rawkfist - 12-10-2009, 02:09 PM
RE: Post your CTRL+V. - by Gone - 12-10-2009, 02:10 PM
RE: Post your CTRL+V. - by Nonmod - 12-10-2009, 02:48 PM
RE: Post your CTRL+V. - by Gone - 12-10-2009, 03:22 PM
RE: Post your CTRL+V. - by Dutchcoffee - 12-12-2009, 02:41 PM
RE: Post your CTRL+V. - by Gone - 12-12-2009, 05:04 PM
RE: Post your CTRL+V. - by Treblez - 12-12-2009, 05:46 PM
RE: Post your CTRL+V. - by Dutchcoffee - 12-12-2009, 06:41 PM
RE: Post your CTRL+V. - by Gone - 12-12-2009, 06:50 PM
RE: Post your CTRL+V. - by Dii xOx - 12-12-2009, 07:14 PM
RE: Post your CTRL+V. - by Uhriventis - 12-12-2009, 07:55 PM
RE: Post your CTRL+V. - by Detective RooTz - 12-13-2009, 11:09 AM
RE: Post your CTRL+V. - by Gone - 12-15-2009, 08:23 PM
RE: Post your CTRL+V. - by flAmingw0rm - 12-17-2009, 05:00 PM
RE: Post your CTRL+V. - by Gone - 12-18-2009, 12:50 PM
RE: Post your CTRL+V. - by spiro_dt - 12-18-2009, 12:56 PM
RE: Post your CTRL+V. - by Kirtaner - 12-18-2009, 10:11 PM
RE: Post your CTRL+V. - by Gone - 12-18-2009, 10:12 PM
RE: Post your CTRL+V. - by Jordan L. - 12-18-2009, 10:14 PM
RE: Post your CTRL+V. - by Gone - 12-18-2009, 10:15 PM
RE: Post your CTRL+V. - by Gone - 12-24-2009, 12:36 AM
RE: Post your CTRL+V. - by nextlive - 12-24-2009, 06:11 AM
RE: Post your CTRL+V. - by flAmingw0rm - 12-24-2009, 06:19 AM
RE: Post your CTRL+V. - by kaigen - 12-24-2009, 06:29 AM
RE: Post your CTRL+V. - by SupportForums Bot - 12-24-2009, 09:33 AM
RE: Post your CTRL+V. - by Gone - 12-24-2009, 11:01 AM
RE: Post your CTRL+V. - by Canoris - 12-24-2009, 11:01 AM
RE: Post your CTRL+V. - by flAmingw0rm - 03-06-2010, 03:46 AM
RE: Post your CTRL+V. - by Maestro - 03-06-2010, 05:58 AM
RE: Post your CTRL+V. - by Treblez - 03-06-2010, 06:00 AM
RE: Post your CTRL+V. - by joelixny - 03-06-2010, 02:29 PM
RE: Post your CTRL+V. - by Canoris - 03-06-2010, 02:52 PM
RE: Post your CTRL+V. - by MrD. - 03-06-2010, 04:29 PM
RE: Post your CTRL+V. - by SouR'D - 03-07-2010, 06:40 AM
RE: Post your CTRL+V. - by Skill - 03-08-2010, 11:27 AM
RE: Post your CTRL+V. - by Gone - 03-08-2010, 06:59 PM
RE: Post your CTRL+V. - by Firesale - 03-08-2010, 09:46 PM
RE: Post your CTRL+V. - by Derrick - 03-08-2010, 09:52 PM
RE: Post your CTRL+V. - by randomusername1234 - 03-15-2010, 04:50 AM
RE: Post your CTRL+V. - by htarahs - 03-17-2010, 02:37 AM
RE: Post your CTRL+V. - by randomusername1234 - 03-17-2010, 08:47 AM
RE: Post your CTRL+V. - by randomusername1234 - 03-17-2010, 11:07 AM
RE: Post your CTRL+V. - by ☺☻☺ - 03-19-2010, 05:12 AM
RE: Post your CTRL+V. - by Cida - 03-19-2010, 05:36 AM
RE: Post your CTRL+V. - by Derrick - 03-19-2010, 07:25 PM
RE: Post your CTRL+V. - by randomusername1234 - 03-20-2010, 10:43 AM
RE: Post your CTRL+V. - by cheeseburger - 03-20-2010, 11:02 AM
RE: Post your CTRL+V. - by Canoris - 03-21-2010, 06:35 AM
RE: Post your CTRL+V. - by Cida - 03-21-2010, 06:59 AM
RE: Post your CTRL+V. - by randomusername1234 - 03-22-2010, 11:32 AM
RE: Post your CTRL+V. - by randomusername1234 - 03-23-2010, 08:38 AM
RE: Post your CTRL+V. - by flAmingw0rm - 03-23-2010, 12:17 PM
RE: Post your CTRL+V. - by Cida - 03-23-2010, 01:10 PM
RE: Post your CTRL+V. - by Gone - 03-25-2010, 07:18 PM
RE: Post your CTRL+V. - by invisible - 03-26-2010, 03:52 AM
RE: Post your CTRL+V. - by RyanScarp - 03-26-2010, 04:40 PM
RE: Post your CTRL+V. - by invisible - 03-26-2010, 04:45 PM
RE: Post your CTRL+V. - by Gone - 03-26-2010, 04:47 PM
RE: Post your CTRL+V. - by randomusername1234 - 03-27-2010, 02:25 AM
RE: Post your CTRL+V. - by Gone - 03-27-2010, 11:40 AM
RE: Post your CTRL+V. - by randomusername1234 - 03-28-2010, 12:32 AM
RE: Post your CTRL+V. - by cheeseburger - 03-28-2010, 11:30 AM
RE: Post your CTRL+V. - by Notorious Mental - 03-29-2010, 12:45 AM
RE: Post your CTRL+V. - by Elektrisk - 03-29-2010, 12:48 AM
RE: Post your CTRL+V. - by Aero - 03-29-2010, 09:35 AM
RE: Post your CTRL+V. - by Elektrisk - 03-29-2010, 04:13 PM
RE: Post your CTRL+V. - by randomusername1234 - 03-30-2010, 12:42 PM
RE: Post your CTRL+V. - by Elektrisk - 03-31-2010, 11:40 PM
RE: Post your CTRL+V. - by nevets04 - 03-31-2010, 11:49 PM
RE: Post your CTRL+V. - by Elektrisk - 04-01-2010, 12:45 AM
RE: Post your CTRL+V. - by Gone - 04-01-2010, 05:06 PM
RE: Post your CTRL+V. - by Elektrisk - 04-01-2010, 11:30 PM
RE: Post your CTRL+V. - by wiland - 04-01-2010, 11:51 PM
RE: Post your CTRL+V. - by Elektrisk - 04-02-2010, 01:47 AM
RE: Post your CTRL+V. - by Dragon Hawk - 04-02-2010, 03:51 AM
RE: Post your CTRL+V. - by Gone - 04-02-2010, 11:43 AM
RE: Post your CTRL+V. - by randomusername1234 - 04-02-2010, 11:55 AM
RE: Post your CTRL+V. - by Coffesin - 04-02-2010, 02:16 PM
RE: Post your CTRL+V. - by Gone - 04-02-2010, 08:02 PM
RE: Post your CTRL+V. - by Elektrisk - 04-03-2010, 05:06 PM
RE: Post your CTRL+V. - by Gone - 04-03-2010, 05:41 PM
RE: Post your CTRL+V. - by BrainDeadFreak - 04-03-2010, 06:06 PM
RE: Post your CTRL+V. - by Gone - 04-03-2010, 06:43 PM
RE: Post your CTRL+V. - by Trihunter3 - 04-05-2010, 12:28 PM
RE: Post your CTRL+V. - by Kewlz - 04-05-2010, 12:47 PM
RE: Post your CTRL+V. - by aiir - 04-05-2010, 12:50 PM
RE: Post your CTRL+V. - by Gos - 04-05-2010, 12:54 PM
RE: Post your CTRL+V. - by BO0GEYMAN - 04-05-2010, 01:26 PM
RE: Post your CTRL+V. - by Xypher - 04-05-2010, 01:33 PM
RE: Post your CTRL+V. - by burnt - 04-05-2010, 01:35 PM
RE: Post your CTRL+V. - by Ⱳąŗɗ - 04-05-2010, 01:51 PM
RE: Post your CTRL+V. - by Statics - 04-05-2010, 01:56 PM
RE: Post your CTRL+V. - by invisible - 04-05-2010, 01:59 PM
RE: Post your CTRL+V. - by Shadaw - 04-05-2010, 02:09 PM
RE: Post your CTRL+V. - by Elektrisk - 04-05-2010, 02:33 PM
RE: Post your CTRL+V. - by nFekted - 04-05-2010, 03:44 PM
RE: Post your CTRL+V. - by awes0me - 04-05-2010, 03:50 PM
RE: Post your CTRL+V. - by Detective RooTz - 04-05-2010, 04:47 PM
RE: Post your CTRL+V. - by Hallow - 04-05-2010, 04:59 PM
RE: Post your CTRL+V. - by Elektrisk - 04-05-2010, 05:11 PM
RE: Post your CTRL+V. - by Nyx- - 04-05-2010, 05:12 PM
RE: Post your CTRL+V. - by craig1337h - 04-05-2010, 05:53 PM
RE: Post your CTRL+V. - by Gone - 04-05-2010, 05:55 PM
RE: Post your CTRL+V. - by Elektrisk - 04-05-2010, 06:17 PM
RE: Post your CTRL+V. - by «Ðartz™» - 04-05-2010, 06:18 PM
RE: Post your CTRL+V. - by Kaleb - 04-05-2010, 06:19 PM
RE: Post your CTRL+V. - by S1cKL3R - 04-05-2010, 06:32 PM
RE: Post your CTRL+V. - by -Ru - 04-05-2010, 06:45 PM
RE: Post your CTRL+V. - by Gone - 04-05-2010, 06:45 PM
RE: Post your CTRL+V. - by CustomSync - 04-05-2010, 08:14 PM
RE: Post your CTRL+V. - by Quintus - 04-05-2010, 09:58 PM
RE: Post your CTRL+V. - by Detective RooTz - 04-05-2010, 10:05 PM
RE: Post your CTRL+V. - by Amped - 04-05-2010, 10:08 PM
RE: Post your CTRL+V. - by Elektrisk - 04-05-2010, 10:15 PM
RE: Post your CTRL+V. - by Gone - 04-05-2010, 11:09 PM
RE: Post your CTRL+V. - by php - 04-05-2010, 11:13 PM
RE: Post your CTRL+V. - by Gone - 04-05-2010, 11:17 PM
RE: Post your CTRL+V. - by S1cKL3R - 04-05-2010, 11:18 PM
RE: Post your CTRL+V. - by Detective RooTz - 04-05-2010, 11:21 PM
RE: Post your CTRL+V. - by S1cKL3R - 04-05-2010, 11:21 PM
RE: Post your CTRL+V. - by nextlive - 04-06-2010, 12:54 AM
RE: Post your CTRL+V. - by Kewlz - 04-06-2010, 01:07 AM
RE: Post your CTRL+V. - by nextlive - 04-06-2010, 01:27 AM
RE: Post your CTRL+V. - by Kewlz - 04-06-2010, 01:42 AM
RE: Post your CTRL+V. - by Pink Floyd - 04-07-2010, 12:08 AM
RE: Post your CTRL+V. - by Heli0s - 04-07-2010, 12:09 AM
RE: Post your CTRL+V. - by Detective RooTz - 04-07-2010, 12:24 AM
RE: Post your CTRL+V. - by Explosions Hurt - 04-07-2010, 05:20 AM
RE: Post your CTRL+V. - by invisible - 04-07-2010, 05:44 AM
RE: Post your CTRL+V. - by Kewlz - 04-07-2010, 05:56 AM
RE: Post your CTRL+V. - by Sam - 04-07-2010, 06:40 AM
RE: Post your CTRL+V. - by Don Panzer - 04-07-2010, 12:26 PM
RE: Post your CTRL+V. - by TheBlackMarket - 04-07-2010, 12:32 PM
RE: Post your CTRL+V. - by Gone - 04-07-2010, 04:18 PM
RE: Post your CTRL+V. - by Sam - 04-07-2010, 05:25 PM
RE: Post your CTRL+V. - by Atmosphere - 04-07-2010, 05:27 PM
RE: Post your CTRL+V. - by Ridik - 04-08-2010, 01:55 AM
RE: Post your CTRL+V. - by Explosions Hurt - 04-08-2010, 03:29 AM
RE: Post your CTRL+V. - by Swift Swim - 04-08-2010, 04:06 AM
RE: Post your CTRL+V. - by DarkXLord - 04-08-2010, 04:28 AM
RE: Post your CTRL+V. - by Teh - 04-08-2010, 05:43 AM
RE: Post your CTRL+V. - by Ditz - 04-08-2010, 06:04 AM
RE: Post your CTRL+V. - by Mia - 04-08-2010, 06:07 AM
RE: Post your CTRL+V. - by Anubis™ - 04-08-2010, 06:14 AM
RE: Post your CTRL+V. - by php - 04-08-2010, 06:55 AM
RE: Post your CTRL+V. - by Fragma - 04-08-2010, 07:07 AM
RE: Post your CTRL+V. - by RayzoR - 04-08-2010, 07:39 AM
RE: Post your CTRL+V. - by Teh - 04-08-2010, 07:47 AM
RE: Post your CTRL+V. - by shubhamm - 04-08-2010, 01:17 PM
RE: Post your CTRL+V. - by Swift Swim - 04-08-2010, 01:22 PM
RE: Post your CTRL+V. - by Kewlz - 04-08-2010, 03:11 PM
RE: Post your CTRL+V. - by iFuck - 04-08-2010, 03:13 PM
RE: Post your CTRL+V. - by Nyx- - 04-09-2010, 01:55 AM
RE: Post your CTRL+V. - by Swift Swim - 04-09-2010, 01:56 AM
RE: Post your CTRL+V. - by Uchiha Scottyy.Fx™ - 04-10-2010, 05:24 PM
RE: Post your CTRL+V. - by Gone - 04-10-2010, 08:34 PM
RE: Post your CTRL+V. - by void. - 04-10-2010, 09:44 PM
RE: Post your CTRL+V. - by Nyx- - 04-10-2010, 10:03 PM
RE: Post your CTRL+V. - by I Am Divine - 04-11-2010, 11:42 AM
RE: Post your CTRL+V. - by Atmosphere - 04-11-2010, 11:43 AM
RE: Post your CTRL+V. - by Camgaertner - 04-11-2010, 11:43 AM
RE: Post your CTRL+V. - by ph1xl - 04-11-2010, 11:57 AM
RE: Post your CTRL+V. - by Fallenour - 04-11-2010, 11:58 AM
RE: Post your CTRL+V. - by Christopher - 04-11-2010, 11:59 AM
RE: Post your CTRL+V. - by Poppins - 04-11-2010, 12:07 PM
RE: Post your CTRL+V. - by FishCake - 04-11-2010, 12:10 PM
RE: Post your CTRL+V. - by Jaiimc - 04-11-2010, 12:19 PM
RE: Post your CTRL+V. - by dnsm - 04-11-2010, 12:23 PM
RE: Post your CTRL+V. - by C00k13 - 04-11-2010, 12:53 PM
RE: Post your CTRL+V. - by Verdande - 04-11-2010, 12:55 PM
RE: Post your CTRL+V. - by Emotion - 05-31-2010, 01:07 AM
RE: Post your CTRL+V. - by Natha - 05-31-2010, 01:08 AM
RE: Post your CTRL+V. - by Effectzz - 05-31-2010, 06:12 AM
RE: Post your CTRL+V. - by υℓqυισяяα - 05-31-2010, 07:04 AM
RE: Post your CTRL+V. - by ♫BøøM♫ - 05-31-2010, 12:33 PM
RE: Post your CTRL+V. - by Razorac3 - 05-31-2010, 12:34 PM
RE: Post your CTRL+V. - by Solidify - 05-31-2010, 05:52 PM
RE: Post your CTRL+V. - by ΣΠΤΣR SHΦΚΔRΦ - 05-31-2010, 07:09 PM
RE: Post your CTRL+V. - by Maurice Moss - 06-05-2010, 11:02 AM
RE: Post your CTRL+V. - by randomusername1234 - 06-06-2010, 10:11 AM
RE: Post your CTRL+V. - by TheOverAnalyzer_808 - 06-07-2010, 03:13 AM
RE: Post your CTRL+V. - by robbiecee2 - 06-07-2010, 04:29 PM
RE: Post your CTRL+V. - by spY[3Mo] - 06-07-2010, 04:37 PM
RE: Post your CTRL+V. - by Maurice Moss - 06-07-2010, 05:20 PM
RE: Post your CTRL+V. - by Spagnum - 06-08-2010, 06:04 AM
RE: Post your CTRL+V. - by Sam - 06-08-2010, 06:12 AM
RE: Post your CTRL+V. - by PubMaster - 06-09-2010, 07:58 AM
RE: Post your CTRL+V. - by J0R63 - 06-09-2010, 10:34 AM
RE: Post your CTRL+V. - by Đενɨаηсε™ - 06-09-2010, 06:37 PM
RE: Post your CTRL+V. - by TheOverAnalyzer_808 - 06-09-2010, 07:58 PM
RE: Post your CTRL+V. - by saumil - 06-16-2010, 03:52 AM
RE: Post your CTRL+V. - by iHood - 06-17-2010, 08:21 AM
RE: Post your CTRL+V. - by Anubis™ - 06-17-2010, 02:01 PM
RE: Post your CTRL+V. - by DeHaterZ - 06-17-2010, 03:35 PM
RE: Post your CTRL+V. - by Roro - 06-17-2010, 04:04 PM
RE: Post your CTRL+V. - by h4ck3rk1ng - 06-18-2010, 04:11 PM
RE: Post your CTRL+V. - by mmki - 06-19-2010, 03:37 AM
RE: Post your CTRL+V. - by º¤øĐőŘđĘø¤º - 06-19-2010, 08:48 AM
RE: Post your CTRL+V. - by Pedobear™ - 06-19-2010, 09:40 AM
RE: Post your CTRL+V. - by xSiiK - 06-20-2010, 10:24 AM
RE: Post your CTRL+V. - by Pedobear™ - 06-20-2010, 10:58 AM
RE: Post your CTRL+V. - by KyleIsTheBeast - 06-20-2010, 02:23 PM
RE: Post your CTRL+V. - by Charlie - 06-20-2010, 02:44 PM
RE: Post your CTRL+V. - by мємσ - 06-21-2010, 11:05 AM
RE: Post your CTRL+V. - by Pedobear™ - 06-21-2010, 11:15 AM
RE: Post your CTRL+V. - by T o X i C - 06-21-2010, 06:06 PM
RE: Post your CTRL+V. - by Cal™ - 06-21-2010, 06:33 PM
RE: Post your CTRL+V. - by † The Beast † - 06-21-2010, 10:59 PM
RE: Post your CTRL+V. - by Diabolic - 06-21-2010, 11:44 PM
RE: Post your CTRL+V. - by º¤øĐőŘđĘø¤º - 06-23-2010, 02:43 AM
RE: Post your CTRL+V. - by Industrialized™ - 06-24-2010, 03:18 AM
RE: Post your CTRL+V. - by Maurice Moss - 06-27-2010, 10:05 AM
RE: Post your CTRL+V. - by timestandstill - 06-28-2010, 12:55 AM
RE: Post your CTRL+V. - by chasejjj - 06-28-2010, 10:36 AM
RE: Post your CTRL+V. - by xTiNgUiSh - 06-28-2010, 10:38 AM
RE: Post your CTRL+V. - by Project - 06-28-2010, 12:28 PM
RE: Post your CTRL+V. - by Cal™ - 06-28-2010, 12:34 PM
RE: Post your CTRL+V. - by Maurice Moss - 06-28-2010, 09:11 PM
RE: Post your CTRL+V. - by Minus-Zero - 06-29-2010, 11:33 AM
RE: Post your CTRL+V. - by Cal™ - 06-29-2010, 12:08 PM
RE: Post your CTRL+V. - by Statics - 06-29-2010, 03:03 PM
RE: Post your CTRL+V. - by -X- - 06-30-2010, 05:26 AM
RE: Post your CTRL+V. - by Nightmarе - 06-30-2010, 08:18 PM
RE: Post your CTRL+V. - by Tøxic GFX - 07-01-2010, 12:21 AM
RE: Post your CTRL+V. - by Logan - 07-01-2010, 01:57 AM
RE: Post your CTRL+V. - by DanPaq - 07-01-2010, 09:11 PM
RE: Post your CTRL+V. - by DancingCobra™ - 07-01-2010, 10:37 PM
RE: Post your CTRL+V. - by Zolesz - 07-01-2010, 10:58 PM
RE: Post your CTRL+V. - by Minus-Zero - 07-01-2010, 11:00 PM
RE: Post your CTRL+V. - by 0h D 3 A R - 07-04-2010, 12:00 PM
RE: Post your CTRL+V. - by Notorious Mental - 07-04-2010, 01:01 PM
RE: Post your CTRL+V. - by Maurice Moss - 07-04-2010, 06:51 PM
RE: Post your CTRL+V. - by bkotz - 07-10-2010, 05:48 PM
RE: Post your CTRL+V. - by Excalibur - 07-10-2010, 09:08 PM
RE: Post your CTRL+V. - by -BoodyE- - 07-10-2010, 09:48 PM
RE: Post your CTRL+V. - by Eugene - 07-10-2010, 11:35 PM
RE: Post your CTRL+V. - by Đενɨаηсε™ - 07-11-2010, 12:06 AM
RE: Post your CTRL+V. - by Maurice Moss - 07-12-2010, 08:15 PM
RE: Post your CTRL+V. - by Rhythm - 07-13-2010, 12:03 AM
RE: Post your CTRL+V. - by randomusername1234 - 07-18-2010, 01:28 PM
RE: Post your CTRL+V. - by UrugEci - 07-18-2010, 03:17 PM
RE: Post your CTRL+V. - by ProgramMajor - 07-18-2010, 03:22 PM
RE: Post your CTRL+V. - by zShotS - 07-18-2010, 06:58 PM
RE: Post your CTRL+V. - by UrugEci - 07-18-2010, 08:35 PM
RE: Post your CTRL+V. - by randomusername1234 - 07-19-2010, 06:40 AM
RE: Post your CTRL+V. - by MarkH - 07-19-2010, 03:19 PM
RE: Post your CTRL+V. - by Mike. - 07-21-2010, 04:54 PM
RE: Post your CTRL+V. - by RedOwn - 07-21-2010, 05:54 PM
RE: Post your CTRL+V. - by Nahomish - 07-21-2010, 06:32 PM
RE: Post your CTRL+V. - by UrugEci - 07-22-2010, 01:34 AM
RE: Post your CTRL+V. - by Airex - 07-22-2010, 04:16 AM
RE: Post your CTRL+V. - by Kris™ - 07-22-2010, 04:18 AM
RE: Post your CTRL+V. - by Logan - 07-22-2010, 06:26 AM
RE: Post your CTRL+V. - by UrugEci - 07-22-2010, 06:28 AM
RE: Post your CTRL+V. - by xLnT - 07-22-2010, 07:22 AM
RE: Post your CTRL+V. - by xofogox - 07-23-2010, 09:17 PM
RE: Post your CTRL+V. - by Logan - 07-24-2010, 12:40 AM
RE: Post your CTRL+V. - by Clay - 07-24-2010, 10:33 AM
RE: Post your CTRL+V. - by UrugEci - 07-24-2010, 12:19 PM
RE: Post your CTRL+V. - by killerpop89 - 07-25-2010, 11:44 AM
RE: Post your CTRL+V. - by FiLTHY - 07-26-2010, 12:08 PM
RE: Post your CTRL+V. - by Samurai - 07-26-2010, 12:32 PM
RE: Post your CTRL+V. - by Reality - 07-27-2010, 09:47 PM
RE: Post your CTRL+V. - by DAMINK™ - 07-28-2010, 02:28 AM
RE: Post your CTRL+V. - by Wynston - 07-28-2010, 05:19 AM
RE: Post your CTRL+V. - by flAmingw0rm - 07-28-2010, 07:47 AM
RE: Post your CTRL+V. - by Barely Hidden - 07-28-2010, 10:09 AM
RE: Post your CTRL+V. - by Virtual Reality - 07-28-2010, 10:53 AM
RE: Post your CTRL+V. - by Red Pill - 07-28-2010, 02:31 PM
RE: Post your CTRL+V. - by Thomas - 07-28-2010, 03:03 PM
RE: Post your CTRL+V. - by BadWolf - 07-28-2010, 11:24 PM
RE: Post your CTRL+V. - by Clay - 07-28-2010, 11:33 PM
RE: Post your CTRL+V. - by bkotz - 07-29-2010, 12:52 AM
RE: Post your CTRL+V. - by GLO13AL_T3RROR - 07-29-2010, 07:23 PM
RE: Post your CTRL+V. - by Pokémon - 07-30-2010, 11:56 PM
RE: Post your CTRL+V. - by Swat Runs Train - 07-31-2010, 12:13 AM
RE: Post your CTRL+V. - by Ocelot - 07-31-2010, 08:25 AM
RE: Post your CTRL+V. - by Daiily - 07-31-2010, 10:54 AM
RE: Post your CTRL+V. - by Travy - 07-31-2010, 01:55 PM
RE: Post your CTRL+V. - by Reality - 08-01-2010, 02:53 PM
RE: Post your CTRL+V. - by step down kid - 08-01-2010, 02:55 PM
RE: Post your CTRL+V. - by DAMINK™ - 08-01-2010, 11:34 PM
RE: Post your CTRL+V. - by Simba - 08-02-2010, 02:40 AM
RE: Post your CTRL+V. - by Deadmau5 - 08-02-2010, 06:48 AM
RE: Post your CTRL+V. - by invisible - 08-02-2010, 03:17 PM
RE: Post your CTRL+V. - by XACTLYSIN - 08-03-2010, 03:12 PM
RE: Post your CTRL+V. - by Michaelmhmhmh - 08-03-2010, 03:14 PM
RE: Post your CTRL+V. - by -shroomz. - 08-03-2010, 04:27 PM
RE: Post your CTRL+V. - by Crawl - 08-04-2010, 06:09 AM
RE: Post your CTRL+V. - by Reality - 08-04-2010, 09:21 AM
RE: Post your CTRL+V. - by Simba - 08-04-2010, 09:48 AM
RE: Post your CTRL+V. - by Kanee - 08-14-2010, 02:58 PM
RE: Post your CTRL+V. - by Plutonium - 08-14-2010, 03:48 PM
RE: Post your CTRL+V. - by Black Theorem - 08-15-2010, 12:06 AM
RE: Post your CTRL+V. - by Kye - 08-15-2010, 05:28 AM
RE: Post your CTRL+V. - by Fragma - 08-15-2010, 09:08 AM
RE: Post your CTRL+V. - by Music - 08-15-2010, 09:58 PM
RE: Post your CTRL+V. - by alv4 - 08-16-2010, 03:22 PM
RE: Post your CTRL+V. - by macdonjo - 08-23-2010, 08:02 AM
RE: Post your CTRL+V. - by Intro - 08-23-2010, 08:11 AM
RE: Post your CTRL+V. - by lukef555 - 08-24-2010, 12:38 PM
RE: Post your CTRL+V. - by Zoidberg - 08-24-2010, 05:08 PM
RE: Post your CTRL+V. - by PhortyPhour - 08-25-2010, 08:36 PM
RE: Post your CTRL+V. - by invisible - 08-27-2010, 04:06 AM
RE: Post your CTRL+V. - by Toxic Injection - 08-27-2010, 05:26 AM
RE: Post your CTRL+V. - by Zoidberg - 08-27-2010, 06:27 AM
RE: Post your CTRL+V. - by Intro - 08-27-2010, 06:30 AM
RE: Post your CTRL+V. - by Devil TraZ - 08-28-2010, 04:32 PM
RE: Post your CTRL+V. - by Xypher - 08-28-2010, 06:55 PM
RE: Post your CTRL+V. - by Fragma - 08-29-2010, 08:51 AM
RE: Post your CTRL+V. - by Xypher - 08-29-2010, 11:12 AM
RE: Post your CTRL+V. - by Sam - 08-29-2010, 11:16 AM
RE: Post your CTRL+V. - by invisible - 08-29-2010, 11:24 AM
RE: Post your CTRL+V. - by Eminent - 08-30-2010, 01:30 PM
RE: Post your CTRL+V. - by Botted - 09-01-2010, 03:30 PM
RE: Post your CTRL+V. - by pers2981 - 09-09-2010, 06:02 PM
RE: Post your CTRL+V. - by Robbieava - 09-09-2010, 06:40 PM
RE: Post your CTRL+V. - by Reality - 09-09-2010, 07:48 PM
RE: Post your CTRL+V. - by Eugene - 09-11-2010, 03:18 AM
RE: Post your CTRL+V. - by -[i]Dzire-™ - 09-11-2010, 03:26 AM
RE: Post your CTRL+V. - by Robbieava - 09-11-2010, 03:37 AM
RE: Post your CTRL+V. - by cheeseburger - 09-11-2010, 03:49 AM
RE: Post your CTRL+V. - by Skill - 09-12-2010, 02:35 AM
RE: Post your CTRL+V. - by -[i]Dzire-™ - 09-12-2010, 05:24 AM
RE: Post your CTRL+V. - by Solitary - 09-17-2010, 02:44 AM
RE: Post your CTRL+V. - by .Fr0z3n - 09-17-2010, 09:07 PM
RE: Post your CTRL+V. - by Reality - 09-17-2010, 09:22 PM
RE: Post your CTRL+V. - by Deja-Vu - 09-21-2010, 02:13 PM
RE: Post your CTRL+V. - by Brutal Styles - 09-21-2010, 04:28 PM
RE: Post your CTRL+V. - by Brandon - 09-21-2010, 04:34 PM
RE: Post your CTRL+V. - by mmki - 09-24-2010, 05:12 AM
RE: Post your CTRL+V. - by invisible - 09-24-2010, 10:55 AM
RE: Post your CTRL+V. - by AceInfinity - 09-25-2010, 11:39 AM
RE: Post your CTRL+V. - by Notorious Mental - 09-25-2010, 03:04 PM
RE: Post your CTRL+V. - by Kye - 09-25-2010, 03:25 PM
RE: Post your CTRL+V. - by Drizzy - 10-07-2010, 03:53 PM
RE: Post your CTRL+V. - by Bok1ca - 10-07-2010, 03:56 PM
RE: Post your CTRL+V. - by Maurice Moss - 10-07-2010, 03:57 PM
RE: Post your CTRL+V. - by Bok1ca - 10-07-2010, 03:58 PM
RE: Post your CTRL+V. - by cheeseburger - 10-07-2010, 03:59 PM
RE: Post your CTRL+V. - by bkotz - 10-07-2010, 05:53 PM
RE: Post your CTRL+V. - by Drizzy - 10-07-2010, 06:30 PM
RE: Post your CTRL+V. - by bkotz - 10-07-2010, 06:32 PM
RE: Post your CTRL+V. - by Drizzy - 10-07-2010, 06:35 PM
RE: Post your CTRL+V. - by Devil TraZ - 10-09-2010, 03:47 PM
RE: Post your CTRL+V. - by Sam - 10-09-2010, 03:47 PM
RE: Post your CTRL+V. - by Resistance - 10-10-2010, 12:11 AM
RE: Post your CTRL+V. - by Maurice Moss - 10-10-2010, 02:34 PM
RE: Post your CTRL+V. - by sneezing panda - 10-10-2010, 06:47 PM
RE: Post your CTRL+V. - by Resistance - 10-10-2010, 08:52 PM
RE: Post your CTRL+V. - by New York - 10-11-2010, 04:12 PM
RE: Post your CTRL+V. - by Resistance - 11-08-2010, 08:23 PM
RE: Post your CTRL+V. - by єץє - 11-07-2010, 05:11 AM
RE: Post your CTRL+V. - by Fossil - 11-07-2010, 05:04 PM
RE: Post your CTRL+V. - by Microsoft - 11-07-2010, 05:58 PM
RE: Post your CTRL+V. - by Beautiful - 11-07-2010, 06:58 PM
RE: Post your CTRL+V. - by Pill - 11-08-2010, 10:01 PM
RE: Post your CTRL+V. - by C4Vendetta - 11-08-2010, 11:41 PM
RE: Post your CTRL+V. - by the_legend_nl - 11-09-2010, 12:34 AM
RE: Post your CTRL+V. - by caspur - 11-09-2010, 12:44 AM
RE: Post your CTRL+V. - by Malmoc - 11-10-2010, 01:55 AM
RE: Post your CTRL+V. - by єץє - 11-10-2010, 02:45 PM
RE: Post your CTRL+V. - by Soveregn - 11-13-2010, 06:29 PM
RE: Post your CTRL+V. - by Beautiful - 11-13-2010, 06:59 PM
RE: Post your CTRL+V. - by solaceface - 11-14-2010, 08:42 AM
RE: Post your CTRL+V. - by KoBE - 11-14-2010, 10:22 PM
RE: Post your CTRL+V. - by AceInfinity - 11-14-2010, 10:36 PM
RE: Post your CTRL+V. - by Notorious Mental - 11-15-2010, 03:48 PM
RE: Post your CTRL+V. - by Navineous - 11-15-2010, 04:04 PM
RE: Post your CTRL+V. - by SlimDeath - 11-16-2010, 02:38 PM
RE: Post your CTRL+V. - by Quintus - 11-17-2010, 09:41 AM
RE: Post your CTRL+V. - by Oliver - 11-17-2010, 10:23 AM
RE: Post your CTRL+V. - by Christopher - 11-19-2010, 03:54 AM
RE: Post your CTRL+V. - by Drizzy - 11-19-2010, 05:22 AM
RE: Post your CTRL+V. - by Josheywhat - 11-19-2010, 07:14 AM
RE: Post your CTRL+V. - by Preeminent - 11-23-2010, 02:06 PM
RE: Post your CTRL+V. - by Zyptic - 11-23-2010, 02:09 PM
RE: Post your CTRL+V. - by Sky- - 11-23-2010, 02:58 PM
RE: Post your CTRL+V. - by Zyptic - 11-23-2010, 03:00 PM
RE: Post your CTRL+V. - by Sky- - 11-23-2010, 03:10 PM
RE: Post your CTRL+V. - by Guru2k7 - 11-23-2010, 03:02 PM
RE: Post your CTRL+V. - by Proof - 11-24-2010, 12:09 PM
RE: Post your CTRL+V. - by Win - 11-26-2010, 02:59 PM
RE: Post your CTRL+V. - by spY[3Mo] - 11-26-2010, 06:08 PM
RE: Post your CTRL+V. - by Maine - 11-28-2010, 10:38 AM
RE: Post your CTRL+V. - by Trixx - 11-28-2010, 07:15 PM
RE: Post your CTRL+V. - by Solidus - 11-28-2010, 07:20 PM
RE: Post your CTRL+V. - by BigBadSoft - 11-28-2010, 07:44 PM
RE: Post your CTRL+V. - by AceInfinity - 11-28-2010, 08:51 PM
RE: Post your CTRL+V. - by BigBadSoft - 11-28-2010, 09:00 PM
RE: Post your CTRL+V. - by AceInfinity - 11-28-2010, 11:06 PM
RE: Post your CTRL+V. - by exhale - 11-28-2010, 09:55 PM
RE: Post your CTRL+V. - by Unreality - 11-28-2010, 11:02 PM
RE: Post your CTRL+V. - by Search - 11-29-2010, 07:13 AM
RE: Post your CTRL+V. - by SODDY - 11-29-2010, 05:48 PM
RE: Post your CTRL+V. - by JDBar - 11-29-2010, 06:49 PM
RE: Post your CTRL+V. - by Wormag - 12-12-2010, 02:11 PM
RE: Post your CTRL+V. - by Gadget - 12-12-2010, 02:43 PM
RE: Post your CTRL+V. - by iCrack - 12-12-2010, 02:59 PM
RE: Post your CTRL+V. - by Violence - 12-12-2010, 03:38 PM
RE: Post your CTRL+V. - by Ted - 12-12-2010, 03:39 PM
RE: Post your CTRL+V. - by Đενɨаηсε™ - 12-12-2010, 03:40 PM
RE: Post your CTRL+V. - by Sk1ttles - 12-12-2010, 03:40 PM
RE: Post your CTRL+V. - by SiR CRaCk AL0T - 12-12-2010, 03:42 PM
RE: Post your CTRL+V. - by PSYCHO DEADMAN - 12-12-2010, 03:47 PM
RE: Post your CTRL+V. - by Airsoftgunsruz - 12-12-2010, 03:48 PM
RE: Post your CTRL+V. - by The Anarchist - 12-12-2010, 04:36 PM
RE: Post your CTRL+V. - by Figaro - 12-12-2010, 04:38 PM
RE: Post your CTRL+V. - by Eminem - 12-12-2010, 04:39 PM
RE: Post your CTRL+V. - by BizzyX - 12-12-2010, 04:42 PM
RE: Post your CTRL+V. - by Jordan - 12-12-2010, 04:45 PM
RE: Post your CTRL+V. - by Arson - 12-12-2010, 05:05 PM
RE: Post your CTRL+V. - by xerotic - 12-12-2010, 05:05 PM
RE: Post your CTRL+V. - by Periwinkle - 12-12-2010, 05:46 PM
RE: Post your CTRL+V. - by -1337 - 12-12-2010, 05:47 PM
RE: Post your CTRL+V. - by Christopher - 12-12-2010, 05:51 PM
RE: Post your CTRL+V. - by xHtmlPhP - 12-13-2010, 08:30 AM
RE: Post your CTRL+V. - by lavangiriece - 12-16-2010, 03:48 AM
RE: Post your CTRL+V. - by H0p.e - 12-21-2010, 10:40 PM
RE: Post your CTRL+V. - by Tyler8746 - 12-22-2010, 12:40 AM
RE: Post your CTRL+V. - by Sir - 12-22-2010, 01:25 AM
RE: Post your CTRL+V. - by xerotic - 12-22-2010, 01:26 AM
RE: Post your CTRL+V. - by Logan - 12-22-2010, 01:26 AM
RE: Post your CTRL+V. - by Pyratepig - 12-22-2010, 01:27 AM
RE: Post your CTRL+V. - by TriGz - 12-22-2010, 01:28 AM
RE: Post your CTRL+V. - by Cobalt - 12-22-2010, 01:28 AM
RE: Post your CTRL+V. - by Project- - 12-23-2010, 10:06 PM
RE: Post your CTRL+V. - by Peter L - 12-23-2010, 10:07 PM
RE: Post your CTRL+V. - by apoC - 12-23-2010, 11:01 PM
RE: Post your CTRL+V. - by SleepyTroll - 12-23-2010, 11:10 PM
RE: Post your CTRL+V. - by xerotic - 12-23-2010, 11:23 PM
RE: Post your CTRL+V. - by Hellas - 12-24-2010, 07:51 AM
RE: Post your CTRL+V. - by Lith - 12-24-2010, 08:03 AM
RE: Post your CTRL+V. - by Mr. Rager - 12-24-2010, 12:46 PM
RE: Post your CTRL+V. - by Peter L - 12-24-2010, 12:55 PM
RE: Post your CTRL+V. - by SubJectioN - 12-24-2010, 04:30 PM
RE: Post your CTRL+V. - by Ditz - 12-24-2010, 05:17 PM
RE: Post your CTRL+V. - by nextlive - 12-26-2010, 03:29 AM
RE: Post your CTRL+V. - by #21 - 12-26-2010, 08:12 AM
RE: Post your CTRL+V. - by Syed - 12-26-2010, 10:24 AM
RE: Post your CTRL+V. - by Intro - 12-26-2010, 10:32 AM
RE: Post your CTRL+V. - by echo.phyber - 12-26-2010, 10:54 AM
RE: Post your CTRL+V. - by Beautiful - 12-26-2010, 05:04 PM
RE: Post your CTRL+V. - by Tyler8746 - 12-26-2010, 05:06 PM
RE: Post your CTRL+V. - by Ditz - 12-26-2010, 06:36 PM
RE: Post your CTRL+V. - by Dont Worry - 12-26-2010, 06:40 PM
RE: Post your CTRL+V. - by Confidence - 12-26-2010, 10:43 PM
RE: Post your CTRL+V. - by Mystic - 12-26-2010, 10:44 PM
RE: Post your CTRL+V. - by mrlips - 12-26-2010, 11:16 PM
RE: Post your CTRL+V. - by eXpLoD - 12-29-2010, 12:34 PM
RE: Post your CTRL+V. - by Barely Hidden - 12-31-2010, 09:44 PM
RE: Post your CTRL+V. - by Shades - 12-31-2010, 09:45 PM
RE: Post your CTRL+V. - by T3RRi8Le™ - 01-01-2011, 06:34 AM
RE: Post your CTRL+V. - by Project- - 01-01-2011, 12:31 PM
RE: Post your CTRL+V. - by Swift Swim - 01-01-2011, 12:33 PM
RE: Post your CTRL+V. - by Death Trap™ - 01-01-2011, 01:08 PM
RE: Post your CTRL+V. - by BizzyX - 01-02-2011, 12:20 AM
RE: Post your CTRL+V. - by Syringe™ - 01-02-2011, 03:26 AM
RE: Post your CTRL+V. - by z†cĸα - 01-03-2011, 07:14 AM
RE: Post your CTRL+V. - by Ɲymph - 01-03-2011, 09:28 AM
RE: Post your CTRL+V. - by Project- - 01-03-2011, 11:17 AM
RE: Post your CTRL+V. - by Orgasmic - 01-03-2011, 12:05 PM
RE: Post your CTRL+V. - by Syringe™ - 01-07-2011, 07:54 AM
RE: Post your CTRL+V. - by Charmz - 01-07-2011, 08:45 AM
RE: Post your CTRL+V. - by Apex - 01-09-2011, 02:27 PM
RE: Post your CTRL+V. - by z†cĸα - 01-19-2011, 09:33 AM
RE: Post your CTRL+V. - by Intel - 01-19-2011, 11:52 PM
RE: Post your CTRL+V. - by Syringe™ - 01-20-2011, 11:10 AM
RE: Post your CTRL+V. - by JohnRonder - 01-20-2011, 04:01 AM
RE: Post your CTRL+V. - by Christopher - 01-20-2011, 10:18 AM
RE: Post your CTRL+V. - by Mao - 01-21-2011, 06:37 AM
RE: Post your CTRL+V. - by Legit™ - 01-21-2011, 03:31 PM
RE: Post your CTRL+V. - by haphazard - 01-21-2011, 03:44 PM
RE: Post your CTRL+V. - by w00pz - 01-22-2011, 05:08 AM
RE: Post your CTRL+V. - by Apex - 01-25-2011, 04:09 AM
RE: Post your CTRL+V. - by Sam - 01-25-2011, 04:29 AM
RE: Post your CTRL+V. - by apoC - 01-25-2011, 06:09 AM
RE: Post your CTRL+V. - by Apex - 01-26-2011, 10:14 AM
RE: Post your CTRL+V. - by randomusername1234 - 01-30-2011, 11:23 AM
RE: Post your CTRL+V. - by Peter L - 01-30-2011, 11:23 AM
RE: Post your CTRL+V. - by randomusername1234 - 01-30-2011, 11:24 AM
RE: Post your CTRL+V. - by Apex - 01-31-2011, 12:58 PM
RE: Post your CTRL+V. - by Packers - 01-31-2011, 02:04 PM
RE: Post your CTRL+V. - by h4ckZ3r - 02-06-2011, 01:44 AM
RE: Post your CTRL+V. - by Jay - 02-06-2011, 07:38 AM
RE: Post your CTRL+V. - by h-boy - 02-06-2011, 08:00 AM
RE: Post your CTRL+V. - by Modestep - 02-06-2011, 01:03 PM
RE: Post your CTRL+V. - by Apex - 02-10-2011, 07:22 AM
RE: Post your CTRL+V. - by Twicks - 02-10-2011, 09:23 AM
RE: Post your CTRL+V. - by nextlive - 02-11-2011, 01:39 PM
RE: Post your CTRL+V. - by thanasis2028 - 02-12-2011, 11:59 AM
RE: Post your CTRL+V. - by Apex - 02-12-2011, 06:55 PM
RE: Post your CTRL+V. - by Syed - 02-12-2011, 07:20 PM
RE: Post your CTRL+V. - by Apex - 02-14-2011, 06:17 AM
RE: Post your CTRL+V. - by Denirulz - 02-14-2011, 06:33 AM
RE: Post your CTRL+V. - by Example - 02-14-2011, 07:50 AM
RE: Post your CTRL+V. - by Caaz - 02-16-2011, 08:21 PM
RE: Post your CTRL+V. - by Charles - 02-16-2011, 09:36 PM
RE: Post your CTRL+V. - by 'F R O Z E ™ - 02-16-2011, 10:02 PM
RE: Post your CTRL+V. - by Deltron - 02-16-2011, 10:08 PM
RE: Post your CTRL+V. - by crazy4cs - 02-17-2011, 02:48 AM
RE: Post your CTRL+V. - by Jack- - 02-17-2011, 03:32 PM
RE: Post your CTRL+V. - by Melted oreo - 03-02-2011, 12:43 PM
RE: Post your CTRL+V. - by Apex - 03-02-2011, 02:50 PM
RE: Post your CTRL+V. - by Wasted - 03-02-2011, 05:28 PM
RE: Post your CTRL+V. - by Shock - 03-02-2011, 06:29 PM
RE: Post your CTRL+V. - by iMario - 03-02-2011, 06:31 PM
RE: Post your CTRL+V. - by Deltron - 03-02-2011, 09:48 PM
RE: Post your CTRL+V. - by Splodge0007 - 03-02-2011, 10:08 PM
RE: Post your CTRL+V. - by Brawl - 03-10-2011, 06:05 PM
RE: Post your CTRL+V. - by Shock - 03-10-2011, 06:14 PM
RE: Post your CTRL+V. - by Brawl - 03-10-2011, 06:17 PM
RE: Post your CTRL+V. - by aggouras - 03-11-2011, 01:26 PM
RE: Post your CTRL+V. - by Codad Law - 03-11-2011, 01:42 PM
RE: Post your CTRL+V. - by JDBar - 03-11-2011, 01:45 PM
RE: Post your CTRL+V. - by Scalise - 03-11-2011, 03:45 PM
RE: Post your CTRL+V. - by jinjin12 - 03-11-2011, 04:39 PM
RE: Post your CTRL+V. - by Scalise - 03-11-2011, 07:34 PM
RE: Post your CTRL+V. - by EMINƎM - 03-17-2011, 11:04 PM
RE: Post your CTRL+V. - by spection - 03-21-2011, 01:19 PM
RE: Post your CTRL+V. - by Notorious Mental - 03-24-2011, 04:45 AM
RE: Post your CTRL+V. - by Splodge0007 - 03-25-2011, 03:32 AM
RE: Post your CTRL+V. - by Nick - 03-26-2011, 07:48 PM
RE: Post your CTRL+V. - by Pyratepig - 04-02-2011, 05:10 PM
RE: Post your CTRL+V. - by Example - 04-02-2011, 05:13 PM
RE: Post your CTRL+V. - by Cida - 04-02-2011, 05:25 PM
RE: Post your CTRL+V. - by A N D R E W - 04-02-2011, 09:15 PM
RE: Post your CTRL+V. - by Anarchy - 04-02-2011, 09:15 PM
RE: Post your CTRL+V. - by SleepyTroll - 04-02-2011, 09:19 PM
RE: Post your CTRL+V. - by A N D R E W - 04-02-2011, 09:34 PM
RE: Post your CTRL+V. - by apoC - 04-02-2011, 09:35 PM
RE: Post your CTRL+V. - by Tuskarr - 04-03-2011, 05:36 AM
RE: Post your CTRL+V. - by Nyx is beautiful - 04-03-2011, 06:54 PM
RE: Post your CTRL+V. - by Crytek - 04-06-2011, 09:28 PM
RE: Post your CTRL+V. - by CLoudy - 04-09-2011, 03:33 PM
RE: Post your CTRL+V. - by elvinguitar - 04-11-2011, 08:33 AM
RE: Post your CTRL+V. - by mycroft - 04-17-2011, 08:07 AM
RE: Post your CTRL+V. - by Inventor - 04-15-2011, 02:40 PM
RE: Post your CTRL+V. - by Pulse - 04-17-2011, 08:57 AM
RE: Post your CTRL+V. - by Highmen - 04-17-2011, 04:58 PM
RE: Post your CTRL+V. - by RDCA - 04-17-2011, 05:02 PM
RE: Post your CTRL+V. - by Ty1er Durden - 04-19-2011, 03:50 PM
RE: Post your CTRL+V. - by iloveportalz0r - 04-23-2011, 02:08 PM
RE: Post your CTRL+V. - by ReactioNz - 04-23-2011, 02:33 PM
RE: Post your CTRL+V. - by Telhast - 04-24-2011, 01:24 PM
RE: Post your CTRL+V. - by Crimson - 04-25-2011, 06:44 PM
RE: Post your CTRL+V. - by thanasis2028 - 05-19-2011, 09:09 AM
RE: Post your CTRL+V. - by begginer - 05-19-2011, 09:35 AM
RE: Post your CTRL+V. - by Quintus - 05-23-2011, 01:20 AM
RE: Post your CTRL+V. - by ๖ۣۜED - 05-23-2011, 05:21 AM
RE: Post your CTRL+V. - by BlackChaos - 05-23-2011, 09:36 AM
RE: Post your CTRL+V. - by WhiteFlame - 05-23-2011, 01:10 PM
RE: Post your CTRL+V. - by Impulses SF - 05-24-2011, 07:22 PM
RE: Post your CTRL+V. - by fagerino - 05-26-2011, 07:28 AM
RE: Post your CTRL+V. - by :'( - 05-26-2011, 03:28 PM
RE: Post your CTRL+V. - by Syaxe - 05-26-2011, 09:04 PM
RE: Post your CTRL+V. - by Tyler8746 - 05-26-2011, 09:15 PM
RE: Post your CTRL+V. - by whyme? - 05-27-2011, 02:50 AM
RE: Post your CTRL+V. - by G0dfath3r - 05-27-2011, 03:01 AM
RE: Post your CTRL+V. - by Atthackers - 05-29-2011, 05:20 PM
RE: Post your CTRL+V. - by Tropical - 05-29-2011, 05:40 PM
RE: Post your CTRL+V. - by davidmarker - 05-29-2011, 05:53 PM
RE: Post your CTRL+V. - by Miku - 05-29-2011, 06:11 PM
RE: Post your CTRL+V. - by Lulz - 05-29-2011, 08:16 PM
RE: Post your CTRL+V. - by milopeach - 05-31-2011, 05:30 AM
RE: Post your CTRL+V. - by Filefinder - 05-31-2011, 11:52 AM
RE: Post your CTRL+V. - by davidmarker - 05-31-2011, 12:00 PM
RE: Post your CTRL+V. - by xerotic - 06-02-2011, 02:44 AM
RE: Post your CTRL+V. - by Laughynose - 06-02-2011, 05:39 PM
RE: Post your CTRL+V. - by jhfire - 06-06-2011, 12:41 PM
RE: Post your CTRL+V. - by Pulse - 06-09-2011, 11:38 AM
RE: Post your CTRL+V. - by Laughynose - 06-09-2011, 11:42 AM
RE: Post your CTRL+V. - by -Infectious - 06-09-2011, 07:38 PM
RE: Post your CTRL+V. - by xMan - 06-09-2011, 08:08 PM
RE: Post your CTRL+V. - by codevade - 06-09-2011, 08:10 PM
RE: Post your CTRL+V. - by Legitti - 06-12-2011, 01:41 AM
RE: Post your CTRL+V. - by Teruko - 06-22-2011, 02:55 AM
RE: Post your CTRL+V. - by VeNoMz - 06-22-2011, 03:59 AM
RE: Post your CTRL+V. - by Top - 06-22-2011, 04:07 AM
RE: Post your CTRL+V. - by sockatobi - 06-23-2011, 08:07 AM
RE: Post your CTRL+V. - by Charles - 06-23-2011, 10:49 AM
RE: Post your CTRL+V. - by Firetech - 06-23-2011, 11:25 AM
RE: Post your CTRL+V. - by Strong - 06-25-2011, 12:16 AM
RE: Post your CTRL+V. - by Condoms - 06-25-2011, 12:25 AM
RE: Post your CTRL+V. - by Mordecai - 06-25-2011, 12:31 AM
RE: Post your CTRL+V. - by omdz - 06-25-2011, 03:01 AM
RE: Post your CTRL+V. - by old - 06-25-2011, 08:05 AM
RE: Post your CTRL+V. - by Glassy - 06-25-2011, 09:23 AM
RE: Post your CTRL+V. - by AirKode - 06-25-2011, 03:36 PM
RE: Post your CTRL+V. - by Strong - 06-27-2011, 06:18 AM
RE: Post your CTRL+V. - by devilpsn - 06-27-2011, 07:12 AM
RE: Post your CTRL+V. - by Zeon - 06-27-2011, 08:00 AM
RE: Post your CTRL+V. - by Mayhem - 07-02-2011, 07:34 AM
RE: Post your CTRL+V. - by Gerira - 07-25-2011, 05:59 PM
RE: Post your CTRL+V. - by BreShiE - 07-25-2011, 06:19 PM
RE: Post your CTRL+V. - by Cronus - 07-28-2011, 11:16 AM
RE: Post your CTRL+V. - by Rofl Loves You - 07-28-2011, 05:55 PM
RE: Post your CTRL+V. - by Annuit Coeptis - 08-02-2011, 04:21 PM
RE: Post your CTRL+V. - by Arron XR - 08-02-2011, 04:47 PM
RE: Post your CTRL+V. - by Carbon Host - 08-02-2011, 08:26 PM
RE: Post your CTRL+V. - by Mayhem - 08-03-2011, 12:01 AM
RE: Post your CTRL+V. - by Ambition - 08-03-2011, 12:07 AM
RE: Post your CTRL+V. - by Mayhem - 08-03-2011, 12:12 AM
RE: Post your CTRL+V. - by Deceive - 08-03-2011, 12:43 AM
RE: Post your CTRL+V. - by Mark Zuckerberg - 08-03-2011, 01:02 AM
RE: Post your CTRL+V. - by Boo‌ - 08-03-2011, 02:07 AM
RE: Post your CTRL+V. - by Pass Candy - 08-04-2011, 04:02 AM
RE: Post your CTRL+V. - by Black Ghost - 08-10-2011, 12:29 AM
RE: Post your CTRL+V. - by TechDil - 08-11-2011, 03:20 PM
RE: Post your CTRL+V. - by Soulmate - 08-11-2011, 03:22 PM
RE: Post your CTRL+V. - by Fundamental - 08-11-2011, 03:29 PM
RE: Post your CTRL+V. - by Derail - 08-11-2011, 03:59 PM
RE: Post your CTRL+V. - by Mayhem - 08-12-2011, 11:03 AM
RE: Post your CTRL+V. - by Chief - 08-12-2011, 11:06 AM
RE: Post your CTRL+V. - by -Infectious - 08-13-2011, 01:31 PM
RE: Post your CTRL+V. - by EnergySource - 08-13-2011, 02:11 PM
RE: Post your CTRL+V. - by MrTylerHaz - 08-13-2011, 02:17 PM
RE: Post your CTRL+V. - by Scream - 08-13-2011, 04:11 PM
RE: Post your CTRL+V. - by FISH - 08-13-2011, 05:00 PM
RE: Post your CTRL+V. - by iRoroana - 08-14-2011, 04:00 PM
RE: Post your CTRL+V. - by Logan - 08-14-2011, 10:24 PM
RE: Post your CTRL+V. - by Xplosion™ - 08-14-2011, 10:29 PM
RE: Post your CTRL+V. - by morchid - 08-14-2011, 10:30 PM
RE: Post your CTRL+V. - by Evaluation - 08-14-2011, 11:21 PM
RE: Post your CTRL+V. - by Chocothunda - 08-16-2011, 11:45 AM
RE: Post your CTRL+V. - by Justintr4in - 08-17-2011, 02:49 PM
RE: Post your CTRL+V. - by Mono - 08-17-2011, 04:20 PM
RE: Post your CTRL+V. - by Pondake - 08-18-2011, 12:24 AM
RE: Post your CTRL+V. - by Charge - 08-18-2011, 04:47 AM
RE: Post your CTRL+V. - by Mono - 08-18-2011, 05:00 AM
RE: Post your CTRL+V. - by angusburrito - 08-19-2011, 04:09 AM
RE: Post your CTRL+V. - by Wheelz - 08-19-2011, 08:26 PM
RE: Post your CTRL+V. - by #Nix - 08-25-2011, 11:11 PM
RE: Post your CTRL+V. - by -Necrome- - 08-26-2011, 04:09 PM
RE: Post your CTRL+V. - by Beautiful - 08-29-2011, 08:40 PM
RE: Post your CTRL+V. - by Prominent - 08-30-2011, 10:36 AM
RE: Post your CTRL+V. - by Mark Zuckerberg - 09-01-2011, 01:49 AM
RE: Post your CTRL+V. - by +devilpsn - 09-01-2011, 09:27 AM
RE: Post your CTRL+V. - by alabama - 09-03-2011, 04:29 PM
RE: Post your CTRL+V. - by 3D™ - 09-03-2011, 05:10 PM
RE: Post your CTRL+V. - by Mark Zuckerberg - 09-03-2011, 05:23 PM
RE: Post your CTRL+V. - by χтяємє™ - 09-07-2011, 02:24 AM
RE: Post your CTRL+V. - by _Un!corn - 09-07-2011, 04:29 AM
RE: Post your CTRL+V. - by AceInfinity - 09-07-2011, 05:09 AM
RE: Post your CTRL+V. - by Ipwnedx - 09-07-2011, 05:26 AM
RE: Post your CTRL+V. - by +devilpsn - 09-07-2011, 06:18 AM
RE: Post your CTRL+V. - by Artiex™ - 09-11-2011, 06:31 AM
RE: Post your CTRL+V. - by Swaganomics - 09-11-2011, 10:36 AM
RE: Post your CTRL+V. - by Muted - 09-11-2011, 10:46 AM
RE: Post your CTRL+V. - by Godly™ - 09-14-2011, 09:19 PM
RE: Post your CTRL+V. - by Artiex™ - 09-15-2011, 02:52 PM
RE: Post your CTRL+V. - by Phantom - 09-30-2011, 02:06 AM
RE: Post your CTRL+V. - by D3xus - 09-30-2011, 04:25 AM
RE: Post your CTRL+V. - by Ixam - 10-03-2011, 07:46 AM
RE: Post your CTRL+V. - by ☯ Gabriel ☯ - 10-03-2011, 09:08 AM
RE: Post your CTRL+V. - by Mark Zuckerberg - 10-03-2011, 01:20 PM
RE: Post your CTRL+V. - by FireMonkeyFun - 10-03-2011, 05:16 PM
RE: Post your CTRL+V. - by Infested Terran - 10-03-2011, 10:05 PM
RE: Post your CTRL+V. - by ๖ۣۜDunsparth - 10-13-2011, 07:34 PM
RE: Post your CTRL+V. - by alabama - 10-14-2011, 03:34 PM
RE: Post your CTRL+V. - by sge2d - 10-14-2011, 03:51 PM
RE: Post your CTRL+V. - by solarlawn - 11-03-2011, 02:01 AM
RE: Post your CTRL+V. - by Arron XR - 11-03-2011, 06:05 AM
RE: Post your CTRL+V. - by Prince - 11-03-2011, 06:21 AM
RE: Post your CTRL+V. - by Renowned - 11-03-2011, 07:34 AM
RE: Post your CTRL+V. - by Party - 11-03-2011, 12:09 PM
RE: Post your CTRL+V. - by Immoral - 11-03-2011, 09:48 PM
RE: Post your CTRL+V. - by williamjacks123 - 11-04-2011, 05:00 AM
RE: Post your CTRL+V. - by HF~Legend - 11-13-2011, 04:41 PM
RE: Post your CTRL+V. - by AlbinoShadow - 11-14-2011, 06:16 AM
RE: Post your CTRL+V. - by iMoney - 11-14-2011, 06:44 AM
RE: Post your CTRL+V. - by Caffeine - 11-14-2011, 11:00 AM
RE: Post your CTRL+V. - by Grin - 11-14-2011, 12:40 PM
RE: Post your CTRL+V. - by D3xus - 11-14-2011, 03:41 PM
RE: Post your CTRL+V. - by remixedcat - 11-14-2011, 07:33 PM
RE: Post your CTRL+V. - by milopeach - 11-19-2011, 04:45 AM
RE: Post your CTRL+V. - by Ignite. - 11-19-2011, 07:24 AM
RE: Post your CTRL+V. - by D3xus - 11-19-2011, 07:43 AM
RE: Post your CTRL+V. - by Graveee - 11-19-2011, 08:30 AM
RE: Post your CTRL+V. - by remixedcat - 11-19-2011, 09:48 AM
RE: Post your CTRL+V. - by thanasis2028 - 11-19-2011, 11:46 AM
RE: Post your CTRL+V. - by remixedcat - 11-19-2011, 03:25 PM
RE: Post your CTRL+V. - by n00bikscube - 11-24-2011, 09:34 PM
RE: Post your CTRL+V. - by Epeolatry - 12-18-2011, 02:42 AM
RE: Post your CTRL+V. - by Graveee - 12-18-2011, 02:51 AM
RE: Post your CTRL+V. - by Tim Joe - 12-18-2011, 10:45 AM
RE: Post your CTRL+V. - by System Meltdown - 12-18-2011, 02:16 PM
RE: Post your CTRL+V. - by Strafeness - 12-18-2011, 03:24 PM
RE: Post your CTRL+V. - by OVO™ - 12-18-2011, 03:39 PM
RE: Post your CTRL+V. - by v11 - 12-18-2011, 10:59 PM
RE: Post your CTRL+V. - by Made - 12-19-2011, 12:53 PM
RE: Post your CTRL+V. - by DaUB3R - 12-21-2011, 11:03 AM
RE: Post your CTRL+V. - by Clones - 12-27-2011, 05:29 PM
RE: Post your CTRL+V. - by Toxic Injection - 12-28-2011, 11:06 PM
RE: Post your CTRL+V. - by Zelda™ - 12-29-2011, 11:38 AM
RE: Post your CTRL+V. - by MineCrack - 01-02-2012, 07:16 PM
RE: Post your CTRL+V. - by Elite User - 01-06-2012, 12:16 PM
RE: Post your CTRL+V. - by Untitled - 01-08-2012, 04:46 PM
RE: Post your CTRL+V. - by Yellows - 01-08-2012, 05:02 PM
RE: Post your CTRL+V. - by SoulCake. - 01-08-2012, 05:03 PM
RE: Post your CTRL+V. - by Yellows - 01-08-2012, 05:11 PM
RE: Post your CTRL+V. - by SoulCake. - 01-08-2012, 05:14 PM
RE: Post your CTRL+V. - by .Legacy. - 01-08-2012, 06:02 PM
RE: Post your CTRL+V. - by Stevo - 01-08-2012, 07:34 PM
RE: Post your CTRL+V. - by haXton- - 01-14-2012, 12:16 PM
RE: Post your CTRL+V. - by Techie. - 01-15-2012, 12:36 AM
RE: Post your CTRL+V. - by Death Disturbance - 01-21-2012, 05:04 PM
RE: Post your CTRL+V. - by Đymatize - 01-27-2012, 08:28 PM
RE: Post your CTRL+V. - by Retribute - 02-06-2012, 08:12 PM
RE: Post your CTRL+V. - by iRun - 02-12-2012, 03:25 PM
RE: Post your CTRL+V. - by Load - 02-12-2012, 03:30 PM
RE: Post your CTRL+V. - by Dashie - 02-12-2012, 05:01 PM
RE: Post your CTRL+V. - by Crystal - 02-13-2012, 09:20 AM
RE: Post your CTRL+V. - by §ynHax™ - 02-16-2012, 03:38 PM
RE: Post your CTRL+V. - by HFAnarchy - 02-17-2012, 12:05 PM
RE: Post your CTRL+V. - by Goop - 02-19-2012, 02:05 AM
RE: Post your CTRL+V. - by Purple Haze - 02-19-2012, 10:48 PM
RE: Post your CTRL+V. - by Diabolic - 05-18-2012, 08:25 AM
RE: Post your CTRL+V. - by Tay - 05-27-2012, 03:11 PM
RE: Post your CTRL+V. - by Deity - 05-27-2012, 04:28 PM
RE: Post your CTRL+V. - by Deity - 05-29-2012, 03:37 PM
RE: Post your CTRL+V. - by AceInfinity - 06-01-2012, 08:08 PM
RE: Post your CTRL+V. - by playzzzz - 06-11-2012, 10:09 AM
RE: Post your CTRL+V. - by Grin - 06-11-2012, 11:27 AM
RE: Post your CTRL+V. - by Uzi - 06-11-2012, 12:09 PM
RE: Post your CTRL+V. - by Monetize™ - 06-11-2012, 12:30 PM
RE: Post your CTRL+V. - by Diabolic - 06-26-2012, 07:00 PM
RE: Post your CTRL+V. - by Toxic Injection - 06-29-2012, 05:47 PM
RE: Post your CTRL+V. - by Grin - 06-29-2012, 05:49 PM
RE: Post your CTRL+V. - by Mercury - 06-30-2012, 09:41 AM
RE: Post your CTRL+V. - by Grin - 06-30-2012, 07:49 PM
RE: Post your CTRL+V. - by Akai - 07-01-2012, 04:08 PM
RE: Post your CTRL+V. - by EMÍÑËM ® - 07-05-2012, 02:30 AM
RE: Post your CTRL+V. - by Dolan. - 08-12-2012, 05:14 AM
RE: Post your CTRL+V. - by Cubs - 08-13-2012, 12:58 PM
RE: Post your CTRL+V. - by AceInfinity - 08-21-2012, 10:34 PM
RE: Post your CTRL+V. - by Ceanko - 08-23-2012, 11:09 AM
RE: Post your CTRL+V. - by norBATman - 08-27-2012, 05:45 AM
RE: Post your CTRL+V. - by ONeShoT - 09-01-2012, 09:39 PM
RE: Post your CTRL+V. - by Mugetsu. - 09-06-2012, 07:09 PM
RE: Post your CTRL+V. - by rattlesnake™ - 09-07-2012, 05:26 AM
RE: Post your CTRL+V. - by Feir - 09-07-2012, 08:05 AM
RE: Post your CTRL+V. - by DeHaterZ - 09-10-2012, 10:29 PM
RE: Post your CTRL+V. - by XDarkCoder - 09-29-2012, 04:49 AM
RE: Post your CTRL+V. - by Cubs - 09-29-2012, 06:38 AM
RE: Post your CTRL+V. - by Bat Wang - 10-01-2012, 07:53 PM
RE: Post your CTRL+V. - by leoiker - 10-10-2012, 12:27 PM
RE: Post your CTRL+V. - by Siberian - 10-21-2012, 10:18 PM
RE: Post your CTRL+V. - by L-Carnitine - 12-15-2012, 10:50 AM
RE: Post your CTRL+V. - by Ponygon - 12-20-2012, 07:27 PM
RE: Post your CTRL+V. - by Pippo - 01-02-2013, 09:33 PM
RE: Post your CTRL+V. - by Dr.Cooper - 01-04-2013, 04:04 AM
RE: Post your CTRL+V. - by Pacman - 01-08-2013, 05:48 PM
RE: Post your CTRL+V. - by Cubs - 01-08-2013, 09:20 PM
RE: Post your CTRL+V. - by chasejjj - 01-24-2013, 09:24 AM
RE: Post your CTRL+V. - by Sensual - 03-04-2013, 08:47 AM
RE: Post your CTRL+V. - by Stay Plural - 03-04-2013, 09:53 PM
RE: Post your CTRL+V. - by Cubs - 03-05-2013, 08:55 AM
RE: Post your CTRL+V. - by iDyxl - 10-10-2013, 12:02 PM
RE: Post your CTRL+V. - by Mohatu - 10-10-2013, 12:04 PM
RE: Post your CTRL+V. - by Matthew - 01-01-2014, 02:57 PM
RE: Post your CTRL+V. - by Positive - 01-14-2014, 02:08 PM
RE: Post your CTRL+V. - by Diabolic - 01-14-2014, 06:42 PM
RE: Post your CTRL+V. - by xadamxk - 10-09-2014, 11:19 AM
RE: Post your CTRL+V. - by D3xus - 10-09-2014, 11:24 AM
RE: Post your CTRL+V. - by Eternal. - 10-09-2014, 01:45 PM
RE: Post your CTRL+V. - by Bro? - 10-09-2014, 09:30 PM
I NEED HELP - by heisenburger7 - 07-10-2018, 06:54 AM

Forum Jump:


Users browsing this thread: 24 Guest(s)