@@ -0,0 +1,237 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Demo : MonoBehaviour
{
public AudioSource audioSource;

//jump
public AudioClip[] jumpSounds;
public Sprite[] playerSprites;
public GameObject player;
public SpriteRenderer playerSpriteRenderer;
private float playerGravity;
private float gravityMulti = 15;
private int jumpSoundIndex;

//explosion
public AudioClip[] explosionSounds;
public Sprite[] explosionSprites;
public SpriteRenderer explosionSpriteRenderer;
private int explosionSpriteIndex;
private int explosionSoundIndex;
private bool aniExplosion;
private float aniExplosionDelay;

//coin
public AudioClip[] coinSounds;
public Sprite[] coinSprites;
public SpriteRenderer coinSpriteRenderer;
private int coinSpriteIndex;
private int coinSoundIndex;
private bool aniCoin;
private float aniCoinDelay;

//power up
public AudioClip[] powerUpSounds;
public Sprite[] powerUpSprites;
public SpriteRenderer powerUpSpriteRenderer;
private int powerUpSoundIndex;
private bool aniPowerUp;
private float aniPowerUpDelay;

//game over
public AudioClip[] gameOverSounds;
public Sprite[] gameOverSprites;
public SpriteRenderer gameOverSpriteRenderer;
public GameObject gameOverGo;
private bool aniGameOver;
private float aniGameOverDelay;
private float gameOverGravity;
private float gameOverGravityMulti = 25;
private int gameOverSoundIndex;

//laser
public AudioClip[] laserSounds;
public GameObject laserPrefab;
public Transform laserSpawnPosition;
private int laserSoundIndex;
private List<GameObject> laserGameObjects = new List<GameObject>();

public void Update()
{
//game over
if (aniGameOver)
{
gameOverGravity -= gameOverGravityMulti * Time.deltaTime;
if (gameOverGravity < -12)
gameOverGravity = -12;

Vector3 losePosition = gameOverGo.transform.position + Vector3.up * gameOverGravity * Time.deltaTime;
gameOverGo.transform.position = losePosition;
gameOverGo.transform.eulerAngles += Vector3.forward * 15 * Time.deltaTime;

aniGameOverDelay -= Time.deltaTime;
if (aniGameOverDelay < 0)
{
gameOverSpriteRenderer.sprite = gameOverSprites[0];
gameOverGo.transform.position = new Vector3(gameOverGo.transform.position.x, 0, gameOverGo.transform.position.z);
gameOverGo.transform.eulerAngles = Vector3.zero;

aniGameOver = false;
}
}
if (Input.GetKeyDown(KeyCode.Alpha3) && !aniGameOver)
{
gameOverSpriteRenderer.sprite = gameOverSprites[1];
gameOverGravity = 9;
aniGameOverDelay = 2;
aniGameOver = true;

audioSource.PlayOneShot(gameOverSounds[gameOverSoundIndex]);
gameOverSoundIndex++;
if (gameOverSoundIndex == 30)
gameOverSoundIndex = 0;
}


//power up
if (aniPowerUp)
{
aniPowerUpDelay -= Time.deltaTime;
if (aniPowerUpDelay < 0)
{
powerUpSpriteRenderer.sprite = powerUpSprites[0];
aniPowerUp = false;
}
}
if (Input.GetKeyDown(KeyCode.Alpha2) && !aniPowerUp)
{
aniPowerUp = true;
powerUpSpriteRenderer.sprite = powerUpSprites[1];
aniPowerUpDelay = .75f;

audioSource.PlayOneShot(powerUpSounds[powerUpSoundIndex]);
powerUpSoundIndex++;
if (powerUpSoundIndex == 30)
powerUpSoundIndex = 0;
}

//coin
if (aniCoin)
{
aniCoinDelay -= Time.deltaTime;
if (aniCoinDelay < 0)
{
aniCoinDelay = .05f;

coinSpriteIndex++;
if (coinSpriteIndex == coinSprites.Length)
{
aniCoin = false;
coinSpriteRenderer.sprite = coinSprites[0];
}
else
coinSpriteRenderer.sprite = coinSprites[coinSpriteIndex];
}
}
if (Input.GetKeyDown(KeyCode.Alpha5) && !aniCoin)
{
aniCoin = true;
coinSpriteIndex = -1;

audioSource.PlayOneShot(coinSounds[coinSoundIndex]);
coinSoundIndex++;
if (coinSoundIndex == 30)
coinSoundIndex = 0;
}

//explosion
if (aniExplosion)
{
aniExplosionDelay -= Time.deltaTime;
if (aniExplosionDelay<0)
{
aniExplosionDelay = .1f;

explosionSpriteIndex++;
if (explosionSpriteIndex == explosionSprites.Length)
{
aniExplosion = false;
explosionSpriteRenderer.sprite = null;
}
else
explosionSpriteRenderer.sprite = explosionSprites[explosionSpriteIndex];
}
}
if (Input.GetKeyDown(KeyCode.Alpha6) && !aniExplosion)
{
aniExplosion = true;
explosionSpriteIndex = -1;

audioSource.PlayOneShot(explosionSounds[explosionSoundIndex]);
explosionSoundIndex++;
if (explosionSoundIndex == 30)
explosionSoundIndex = 0;
}

//jump
playerGravity -= gravityMulti * Time.deltaTime;
if (playerGravity < -3)
playerGravity = -3;

if (player.transform.position.y != 0)
playerSpriteRenderer.sprite = playerSprites[1];
else
playerSpriteRenderer.sprite = playerSprites[0];

if (Input.GetKey(KeyCode.Alpha1) && player.transform.position.y == 0)
{
player.transform.position += Vector3.up * 0.01f;

playerGravity = 5;

audioSource.PlayOneShot(jumpSounds[jumpSoundIndex]);

jumpSoundIndex++;
if (jumpSoundIndex == 30)
jumpSoundIndex = 0;
}

Vector3 playerPosition = player.transform.position + Vector3.up * playerGravity * Time.deltaTime;

if (playerPosition.y < 0)
playerPosition = new Vector3(player.transform.position.x, 0, player.transform.position.z);

player.transform.position = playerPosition;

//laser
laserGameObjects.RemoveAll(item => item == null);
if (laserGameObjects.Count > 0)
{
for (int i = 0; i < laserGameObjects.Count; i++)
{
if (!laserGameObjects[i].GetComponent<SpriteRenderer>().isVisible)
{
Destroy(laserGameObjects[i]);
}
else
{
laserGameObjects[i].transform.position += laserSpawnPosition.up * 12 * Time.deltaTime;
}
}
}
if (Input.GetKeyDown(KeyCode.Alpha4))
{
GameObject go = Instantiate(laserPrefab, laserSpawnPosition.position, laserSpawnPosition.rotation) as GameObject;
laserGameObjects.Add(go);

audioSource.PlayOneShot(laserSounds[laserSoundIndex]);

laserSoundIndex++;
if (laserSoundIndex == 30)
laserSoundIndex = 0;
}
}
}

Large diffs are not rendered by default.

Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@@ -0,0 +1,88 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1001 &100100000
Prefab:
m_ObjectHideFlags: 1
serializedVersion: 2
m_Modification:
m_TransformParent: {fileID: 0}
m_Modifications: []
m_RemovedComponents: []
m_SourcePrefab: {fileID: 0}
m_RootGameObject: {fileID: 1095540354930030}
m_IsPrefabAsset: 1
--- !u!1 &1095540354930030
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
serializedVersion: 6
m_Component:
- component: {fileID: 4099649062644770}
- component: {fileID: 212215388193860312}
m_Layer: 0
m_Name: Laser Prefab
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!4 &4099649062644770
Transform:
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1095540354930030}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: -4.01, y: -1.61, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_Children: []
m_Father: {fileID: 0}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!212 &212215388193860312
SpriteRenderer:
m_ObjectHideFlags: 1
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInternal: {fileID: 100100000}
m_GameObject: {fileID: 1095540354930030}
m_Enabled: 1
m_CastShadows: 0
m_ReceiveShadows: 0
m_DynamicOccludee: 1
m_MotionVectors: 1
m_LightProbeUsage: 0
m_ReflectionProbeUsage: 0
m_RenderingLayerMask: 4294967295
m_Materials:
- {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0}
m_StaticBatchInfo:
firstSubMesh: 0
subMeshCount: 0
m_StaticBatchRoot: {fileID: 0}
m_ProbeAnchor: {fileID: 0}
m_LightProbeVolumeOverride: {fileID: 0}
m_ScaleInLightmap: 1
m_PreserveUVs: 0
m_IgnoreNormalsForChartDetection: 0
m_ImportantGI: 0
m_StitchLightmapSeams: 0
m_SelectedEditorRenderState: 0
m_MinimumChartSize: 4
m_AutoUVMaxDistance: 0.5
m_AutoUVMaxAngle: 89
m_LightmapParameters: {fileID: 0}
m_SortingLayerID: 0
m_SortingLayer: 0
m_SortingOrder: 0
m_Sprite: {fileID: 21300000, guid: d527f46cfc441e84a8a2ddd70ee38aa5, type: 3}
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_FlipX: 0
m_FlipY: 0
m_DrawMode: 0
m_Size: {x: 1, y: 1}
m_AdaptiveModeThreshold: 0.5
m_SpriteTileMode: 0
m_WasSpriteAssigned: 1
m_MaskInteraction: 0
m_SpriteSortPoint: 0
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

Large diffs are not rendered by default.

@@ -16,7 +16,7 @@ MonoBehaviour:
x: 0
y: 42.666668
width: 1280
height: 647
height: 637
m_ShowMode: 4
m_Title:
m_RootView: {fileID: 4}
@@ -37,9 +37,9 @@ MonoBehaviour:
m_Position:
serializedVersion: 2
x: 0
y: 398
y: 391
width: 206
height: 199
height: 196
m_MinSize: {x: 104, y: 121}
m_MaxSize: {x: 4004, y: 4021}
m_ActualView: {fileID: 14}
@@ -63,14 +63,14 @@ MonoBehaviour:
- {fileID: 2}
m_Position:
serializedVersion: 2
x: 550
x: 554
y: 0
width: 206
height: 597
height: 587
m_MinSize: {x: 204, y: 342}
m_MaxSize: {x: 4004, y: 8042}
vertical: 1
controlID: 84
controlID: 1712
--- !u!114 &4
MonoBehaviour:
m_ObjectHideFlags: 52
@@ -91,7 +91,7 @@ MonoBehaviour:
x: 0
y: 0
width: 1280
height: 647
height: 637
m_MinSize: {x: 950, y: 300}
m_MaxSize: {x: 10000, y: 10000}
--- !u!114 &5
@@ -136,11 +136,11 @@ MonoBehaviour:
x: 0
y: 30
width: 1280
height: 597
height: 587
m_MinSize: {x: 917, y: 442}
m_MaxSize: {x: 22012, y: 10021}
vertical: 0
controlID: 105
controlID: 9
--- !u!114 &7
MonoBehaviour:
m_ObjectHideFlags: 52
@@ -156,7 +156,7 @@ MonoBehaviour:
m_Position:
serializedVersion: 2
x: 0
y: 627
y: 617
width: 1280
height: 20
m_MinSize: {x: 0, y: 0}
@@ -179,12 +179,12 @@ MonoBehaviour:
serializedVersion: 2
x: 0
y: 0
width: 550
height: 597
width: 554
height: 587
m_MinSize: {x: 202, y: 442}
m_MaxSize: {x: 4002, y: 8042}
vertical: 1
controlID: 106
controlID: 105
--- !u!114 &9
MonoBehaviour:
m_ObjectHideFlags: 52
@@ -202,7 +202,7 @@ MonoBehaviour:
x: 0
y: 0
width: 206
height: 398
height: 391
m_MinSize: {x: 204, y: 221}
m_MaxSize: {x: 4004, y: 4021}
m_ActualView: {fileID: 15}
@@ -224,10 +224,10 @@ MonoBehaviour:
m_Children: []
m_Position:
serializedVersion: 2
x: 756
x: 760
y: 0
width: 237
height: 597
width: 234
height: 587
m_MinSize: {x: 234, y: 271}
m_MaxSize: {x: 10004, y: 10021}
m_ActualView: {fileID: 17}
@@ -249,10 +249,10 @@ MonoBehaviour:
m_Children: []
m_Position:
serializedVersion: 2
x: 993
x: 994
y: 0
width: 287
height: 597
width: 286
height: 587
m_MinSize: {x: 277, y: 71}
m_MaxSize: {x: 4002, y: 4021}
m_ActualView: {fileID: 16}
@@ -276,8 +276,8 @@ MonoBehaviour:
serializedVersion: 2
x: 0
y: 0
width: 550
height: 221
width: 554
height: 301
m_MinSize: {x: 202, y: 221}
m_MaxSize: {x: 4002, y: 4021}
m_ActualView: {fileID: 19}
@@ -300,9 +300,9 @@ MonoBehaviour:
m_Position:
serializedVersion: 2
x: 0
y: 221
width: 550
height: 376
y: 301
width: 554
height: 286
m_MinSize: {x: 202, y: 221}
m_MaxSize: {x: 4002, y: 4021}
m_ActualView: {fileID: 18}
@@ -330,10 +330,10 @@ MonoBehaviour:
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 552
y: 490
x: 556
y: 483.33334
width: 202
height: 178
height: 175
m_PersistentViewDataDictionary: {fileID: 0}
--- !u!114 &15
MonoBehaviour:
@@ -355,16 +355,16 @@ MonoBehaviour:
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 552
x: 556
y: 92
width: 202
height: 377
height: 370
m_PersistentViewDataDictionary: {fileID: 0}
m_TreeViewState:
scrollPos: {x: 0, y: 0}
m_SelectedIDs: 9eafffff
m_LastClickedID: -20578
m_ExpandedIDs: e6fbffff00000000
m_SelectedIDs: 6c3f0000
m_LastClickedID: 16236
m_ExpandedIDs: bcc0feffaad4feffe6fbffff00000000c23d0000303e0000
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
@@ -408,10 +408,10 @@ MonoBehaviour:
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 995.3334
x: 996
y: 92
width: 285
height: 576
width: 284
height: 566
m_PersistentViewDataDictionary: {fileID: 0}
m_ObjectsLockedBeforeSerialization: []
m_InstanceIDsLockedBeforeSerialization:
@@ -442,10 +442,10 @@ MonoBehaviour:
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 758
x: 762
y: 92
width: 233
height: 576
width: 230
height: 566
m_PersistentViewDataDictionary: {fileID: 0}
m_SearchFilter:
m_NameFilter:
@@ -459,34 +459,34 @@ MonoBehaviour:
m_ShowAllHits: 0
m_SearchArea: 1
m_Folders:
- Assets/Scripts
- Assets/Scripts/UI
m_ViewMode: 1
m_StartGridSize: 64
m_LastFolders:
- Assets/Scripts
- Assets/Scripts/UI
m_LastFoldersGridSize: -1
m_LastProjectPath: C:\work\git\color2d\colors_2d
m_LastProjectPath: C:\Users\Sabugo\Documents\GitHub\color2d\colors_2d
m_LockTracker:
m_IsLocked: 0
m_FolderTreeState:
scrollPos: {x: 0, y: 0}
m_SelectedIDs: a22b0000
m_LastClickedID: 11170
m_ExpandedIDs: 00000000e829000000ca9a3b
m_SelectedIDs: 782a0000
m_LastClickedID: 10872
m_ExpandedIDs: 00000000f62900000c2d0000122d0000c62d0000e22d000000ca9a3b
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
m_OriginalName:
m_Name: UI
m_OriginalName: UI
m_EditFieldRect:
serializedVersion: 2
x: 0
y: 0
width: 0
height: 0
m_UserData: 0
m_UserData: 10872
m_IsWaitingForDelay: 0
m_IsRenaming: 0
m_OriginalEventType: 11
m_OriginalEventType: 0
m_IsRenamingFilename: 1
m_ClientGUIView: {fileID: 10}
m_SearchString:
@@ -500,7 +500,7 @@ MonoBehaviour:
scrollPos: {x: 0, y: 0}
m_SelectedIDs:
m_LastClickedID: 0
m_ExpandedIDs: 00000000e8290000
m_ExpandedIDs: 00000000f62900000c2d0000122d0000c62d0000e22d0000
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
@@ -527,7 +527,7 @@ MonoBehaviour:
m_ListAreaState:
m_SelectedInstanceIDs:
m_LastClickedInstanceID: 0
m_HadKeyboardFocusLastEvent: 0
m_HadKeyboardFocusLastEvent: 1
m_ExpandedInstanceIDs:
m_RenameOverlay:
m_UserAcceptedRename: 0
@@ -576,9 +576,9 @@ MonoBehaviour:
m_Pos:
serializedVersion: 2
x: 0
y: 313.33334
width: 548
height: 355
y: 393.33334
width: 552
height: 265
m_PersistentViewDataDictionary: {fileID: 0}
m_MaximizeOnPlay: 0
m_Gizmos: 0
@@ -590,10 +590,10 @@ MonoBehaviour:
m_VRangeLocked: 0
hZoomLockedByDefault: 0
vZoomLockedByDefault: 0
m_HBaseRangeMin: -274
m_HBaseRangeMax: 274
m_VBaseRangeMin: -169
m_VBaseRangeMax: 169
m_HBaseRangeMin: -276
m_HBaseRangeMax: 276
m_VBaseRangeMin: -124
m_VBaseRangeMax: 124
m_HAllowExceedBaseRangeMin: 1
m_HAllowExceedBaseRangeMax: 1
m_VAllowExceedBaseRangeMin: 1
@@ -611,25 +611,25 @@ MonoBehaviour:
serializedVersion: 2
x: 0
y: 17
width: 548
height: 338
width: 552
height: 248
m_Scale: {x: 1, y: 1}
m_Translation: {x: 274, y: 169}
m_Translation: {x: 276, y: 124}
m_MarginLeft: 0
m_MarginRight: 0
m_MarginTop: 0
m_MarginBottom: 0
m_LastShownAreaInsideMargins:
serializedVersion: 2
x: -274
y: -169
width: 548
height: 338
x: -276
y: -124
width: 552
height: 248
m_MinimalGUI: 1
m_defaultScale: 1
m_TargetTexture: {fileID: 0}
m_CurrentColorSpace: 0
m_LastWindowPixelSize: {x: 822, y: 532.5}
m_LastWindowPixelSize: {x: 828, y: 397.5}
m_ClearInEditMode: 1
m_NoCameraWarning: 1
m_LowResolutionForAspectRatios: 01000000000100000100
@@ -656,18 +656,18 @@ MonoBehaviour:
serializedVersion: 2
x: 0
y: 92
width: 548
height: 200
width: 552
height: 280
m_PersistentViewDataDictionary: {fileID: 0}
m_SceneLighting: 1
lastFramingTime: 4773.376760128966
lastFramingTime: 0
m_2DMode: 1
m_isRotationLocked: 0
m_AudioPlay: 0
m_Position:
m_Target: {x: -1.1766013, y: 2.0926583, z: 0.08365345}
m_Target: {x: -4.2644253, y: -2.4904728, z: -0.48004523}
speed: 2
m_Value: {x: -1.1766013, y: 2.0926583, z: 0.08365345}
m_Value: {x: -4.2644253, y: -2.4904728, z: -0.48004523}
m_RenderMode: 0
m_CameraMode:
drawMode: 0
@@ -699,9 +699,9 @@ MonoBehaviour:
speed: 2
m_Value: {x: 0, y: 0, z: 0, w: 1}
m_Size:
m_Target: 16.02419
m_Target: 57.953045
speed: 2
m_Value: 16.02419
m_Value: 57.953045
m_Ortho:
m_Target: 1
speed: 2

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
08d5e2c976122e00.08d5e2c91f0c5900
08d5ed6e88cb3f00.08d5ed6e2f631000
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN +0 Bytes (100%) colors_2d/Library/ScriptMapper
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN +48 Bytes (100%) colors_2d/Library/expandedItems
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.