diff --git a/Assets/Scripts/Achieve.cs b/Assets/Scripts/Achieve.cs index 6659423..d61b869 100644 --- a/Assets/Scripts/Achieve.cs +++ b/Assets/Scripts/Achieve.cs @@ -25,11 +25,13 @@ public class Achieve : MonoBehaviour { public static void UnlockAchievement(Achievement achievementId) { +#if UNITY_ANDROID if (PlayGamesPlatform.Instance.IsAuthenticated() && AchievementIds.ContainsKey(achievementId)) { Social.ReportProgress(AchievementIds[achievementId], 100, (bool success) => { // handle success or failure }); } +#endif } } diff --git a/Assets/Scripts/GameOver.cs b/Assets/Scripts/GameOver.cs index 810ca42..5a22878 100644 --- a/Assets/Scripts/GameOver.cs +++ b/Assets/Scripts/GameOver.cs @@ -21,6 +21,7 @@ void Awake () playMusic = menuUI.GetComponent(); sceneToStart = menuUI.GetComponent().sceneToStart; } +#if UNITY_ANDROID GameObject GPObject = GameObject.Find("GooglePlayManager"); if(GPObject != null) { @@ -28,6 +29,7 @@ void Awake () GPM = GPObject.GetComponent(); GPM.UpdateUI(loggedIn); } +#endif } // Use this for initialization diff --git a/Assets/Scripts/GooglePlayLogin.cs b/Assets/Scripts/GooglePlayLogin.cs index 8409eb3..de7d8ff 100644 --- a/Assets/Scripts/GooglePlayLogin.cs +++ b/Assets/Scripts/GooglePlayLogin.cs @@ -11,6 +11,7 @@ public class GooglePlayLogin : MonoBehaviour { private void Start() { +#if UNITY_ANDROID if(Social.Active.GetType() == typeof(PlayGamesPlatform) && Social.localUser.authenticated) { gameObject.GetComponent().sprite = LoggedInImage; @@ -19,6 +20,7 @@ private void Start() { gameObject.GetComponent().sprite = LoggedOutImage; } +#endif } public void Activate() diff --git a/Assets/Scripts/GooglePlayManager.cs b/Assets/Scripts/GooglePlayManager.cs index f2bea00..f5a9d1b 100644 --- a/Assets/Scripts/GooglePlayManager.cs +++ b/Assets/Scripts/GooglePlayManager.cs @@ -11,6 +11,7 @@ public class GooglePlayManager : MonoBehaviour void Start() { +#if UNITY_ANDROID if (Application.platform == RuntimePlatform.Android) { #if UNITY_EDITOR @@ -25,10 +26,12 @@ void Start() LogIn(); } } +#endif } public void ToggleLogin() { +#if UNITY_ANDROID if(Social.Active.GetType() == typeof(PlayGamesPlatform) && Social.localUser.authenticated) { OnLogOut(); @@ -37,6 +40,7 @@ public void ToggleLogin() { LogIn(); } +#endif } /// @@ -75,7 +79,9 @@ public void OnShowAchievements() /// public void OnShowLeaderBoard() { - ((PlayGamesPlatform)Social.Active).ShowLeaderboardUI(leaderboard); // Show current (Active) leaderboard +#if UNITY_ANDROID + ((PlayGamesPlatform)Social.Active).ShowLeaderboardUI(leaderboard); // Show current (Active) leaderboard +#endif } /// @@ -104,13 +110,15 @@ public void OnAddScoreToLeaderBoard(int score) /// public void OnLogOut() { - ((PlayGamesPlatform)Social.Active).SignOut(); +#if UNITY_ANDROID + ((PlayGamesPlatform)Social.Active).SignOut(); PlayerPrefs.SetInt("UseGooglePlayGames", 0); PlayerPrefs.Save(); UpdateUI(false); - } +#endif + } public void UpdateUI(bool loggedIn) { diff --git a/Greeter.Editor.csproj b/Greeter.Editor.csproj index 7eabb72..ff2f4a5 100644 --- a/Greeter.Editor.csproj +++ b/Greeter.Editor.csproj @@ -15,7 +15,7 @@ Unity Full v3.5 Editor:5 - Android:13 + StandaloneWindows64:19 5.5.0f3 4 @@ -27,7 +27,7 @@ Temp\UnityVS_obj\Debug\ prompt 4 - DEBUG;TRACE;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_5_0;UNITY_5_5;UNITY_5;UNITY_ANALYTICS;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_GENERICS;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_SPRITERENDERER_FLIPPING;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_RAKNET;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_WEBCAM;ENABLE_WWW;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_HUB;ENABLE_CLOUD_PROJECT_ID;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_METRICS;ENABLE_EDITOR_METRICS_CACHING;INCLUDE_DYNAMIC_GI;INCLUDE_GI;PLATFORM_SUPPORTS_MONO;INCLUDE_PUBNUB;ENABLE_PLAYMODE_TESTS_RUNNER;ENABLE_SCRIPTING_NEW_CSHARP_COMPILER;UNITY_ANDROID;ENABLE_SUBSTANCE;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_UNITYWEBREQUEST;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;PLATFORM_SUPPORTS_ADS_ID;UNITY_CAN_SHOW_SPLASH_SCREEN;ENABLE_VIDEO;ENABLE_VR;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;UNITY_TEAM_LICENSE;ENABLE_VSTU + DEBUG;TRACE;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_5_0;UNITY_5_5;UNITY_5;UNITY_64;UNITY_ANALYTICS;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_DUCK_TYPING;ENABLE_GENERICS;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_SPRITERENDERER_FLIPPING;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_RAKNET;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_WEBCAM;ENABLE_WWW;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_HUB;ENABLE_CLOUD_PROJECT_ID;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_METRICS;ENABLE_EDITOR_METRICS_CACHING;INCLUDE_DYNAMIC_GI;INCLUDE_GI;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;INCLUDE_PUBNUB;ENABLE_PLAYMODE_TESTS_RUNNER;ENABLE_SCRIPTING_NEW_CSHARP_COMPILER;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_SUBSTANCE;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_UNITYWEBREQUEST;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_EVENT_QUEUE;ENABLE_CLUSTERINPUT;ENABLE_VIDEO;ENABLE_VR;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;UNITY_TEAM_LICENSE;ENABLE_VSTU false @@ -37,7 +37,7 @@ Temp\UnityVS_obj\Release\ prompt 4 - TRACE;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_5_0;UNITY_5_5;UNITY_5;UNITY_ANALYTICS;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_GENERICS;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_SPRITERENDERER_FLIPPING;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_RAKNET;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_WEBCAM;ENABLE_WWW;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_HUB;ENABLE_CLOUD_PROJECT_ID;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_METRICS;ENABLE_EDITOR_METRICS_CACHING;INCLUDE_DYNAMIC_GI;INCLUDE_GI;PLATFORM_SUPPORTS_MONO;INCLUDE_PUBNUB;ENABLE_PLAYMODE_TESTS_RUNNER;ENABLE_SCRIPTING_NEW_CSHARP_COMPILER;UNITY_ANDROID;ENABLE_SUBSTANCE;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_UNITYWEBREQUEST;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;PLATFORM_SUPPORTS_ADS_ID;UNITY_CAN_SHOW_SPLASH_SCREEN;ENABLE_VIDEO;ENABLE_VR;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;UNITY_TEAM_LICENSE;ENABLE_VSTU + TRACE;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_5_0;UNITY_5_5;UNITY_5;UNITY_64;UNITY_ANALYTICS;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_DUCK_TYPING;ENABLE_GENERICS;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_SPRITERENDERER_FLIPPING;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_RAKNET;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_WEBCAM;ENABLE_WWW;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_HUB;ENABLE_CLOUD_PROJECT_ID;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_METRICS;ENABLE_EDITOR_METRICS_CACHING;INCLUDE_DYNAMIC_GI;INCLUDE_GI;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;INCLUDE_PUBNUB;ENABLE_PLAYMODE_TESTS_RUNNER;ENABLE_SCRIPTING_NEW_CSHARP_COMPILER;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_SUBSTANCE;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_UNITYWEBREQUEST;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_EVENT_QUEUE;ENABLE_CLUSTERINPUT;ENABLE_VIDEO;ENABLE_VR;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;UNITY_TEAM_LICENSE;ENABLE_VSTU false @@ -55,6 +55,9 @@ Library\UnityAssemblies\UnityEditor.dll + + Library\UnityAssemblies\UnityEngine.Advertisements.dll + Library\UnityAssemblies\UnityEditor.Advertisements.dll @@ -97,6 +100,9 @@ Library\UnityAssemblies\UnityEngine.HoloLens.dll + + Library\UnityAssemblies\UnityEngine.Purchasing.dll + Library\UnityAssemblies\UnityEditor.VR.dll diff --git a/Greeter.csproj b/Greeter.csproj index a9c3d70..d30b73f 100644 --- a/Greeter.csproj +++ b/Greeter.csproj @@ -15,7 +15,7 @@ Unity Subset v3.5 Game:1 - Android:13 + StandaloneWindows64:19 5.5.0f3 4 @@ -27,7 +27,7 @@ Temp\UnityVS_obj\Debug\ prompt 4 - DEBUG;TRACE;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_5_0;UNITY_5_5;UNITY_5;UNITY_ANALYTICS;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_GENERICS;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_SPRITERENDERER_FLIPPING;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_RAKNET;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_WEBCAM;ENABLE_WWW;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_HUB;ENABLE_CLOUD_PROJECT_ID;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_METRICS;ENABLE_EDITOR_METRICS_CACHING;INCLUDE_DYNAMIC_GI;INCLUDE_GI;PLATFORM_SUPPORTS_MONO;INCLUDE_PUBNUB;ENABLE_PLAYMODE_TESTS_RUNNER;ENABLE_SCRIPTING_NEW_CSHARP_COMPILER;UNITY_ANDROID;ENABLE_SUBSTANCE;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_UNITYWEBREQUEST;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;PLATFORM_SUPPORTS_ADS_ID;UNITY_CAN_SHOW_SPLASH_SCREEN;ENABLE_VIDEO;ENABLE_VR;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;UNITY_TEAM_LICENSE;ENABLE_VSTU + DEBUG;TRACE;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_5_0;UNITY_5_5;UNITY_5;UNITY_64;UNITY_ANALYTICS;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_DUCK_TYPING;ENABLE_GENERICS;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_SPRITERENDERER_FLIPPING;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_RAKNET;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_WEBCAM;ENABLE_WWW;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_HUB;ENABLE_CLOUD_PROJECT_ID;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_METRICS;ENABLE_EDITOR_METRICS_CACHING;INCLUDE_DYNAMIC_GI;INCLUDE_GI;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;INCLUDE_PUBNUB;ENABLE_PLAYMODE_TESTS_RUNNER;ENABLE_SCRIPTING_NEW_CSHARP_COMPILER;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_SUBSTANCE;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_UNITYWEBREQUEST;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_EVENT_QUEUE;ENABLE_CLUSTERINPUT;ENABLE_VIDEO;ENABLE_VR;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;UNITY_TEAM_LICENSE;ENABLE_VSTU false @@ -37,7 +37,7 @@ Temp\UnityVS_obj\Release\ prompt 4 - TRACE;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_5_0;UNITY_5_5;UNITY_5;UNITY_ANALYTICS;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_GENERICS;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_SPRITERENDERER_FLIPPING;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_RAKNET;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_WEBCAM;ENABLE_WWW;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_HUB;ENABLE_CLOUD_PROJECT_ID;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_METRICS;ENABLE_EDITOR_METRICS_CACHING;INCLUDE_DYNAMIC_GI;INCLUDE_GI;PLATFORM_SUPPORTS_MONO;INCLUDE_PUBNUB;ENABLE_PLAYMODE_TESTS_RUNNER;ENABLE_SCRIPTING_NEW_CSHARP_COMPILER;UNITY_ANDROID;ENABLE_SUBSTANCE;UNITY_ANDROID_API;ENABLE_EGL;ENABLE_NETWORK;ENABLE_RUNTIME_GI;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_UNITYWEBREQUEST;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;PLATFORM_SUPPORTS_ADS_ID;UNITY_CAN_SHOW_SPLASH_SCREEN;ENABLE_VIDEO;ENABLE_VR;ENABLE_UNITYADS_RUNTIME;UNITY_UNITYADS_API;ENABLE_MONO;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;UNITY_TEAM_LICENSE;ENABLE_VSTU + TRACE;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_5_0;UNITY_5_5;UNITY_5;UNITY_64;UNITY_ANALYTICS;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_DUCK_TYPING;ENABLE_GENERICS;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_SPRITERENDERER_FLIPPING;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_RAKNET;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_WEBCAM;ENABLE_WWW;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_HUB;ENABLE_CLOUD_PROJECT_ID;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_METRICS;ENABLE_EDITOR_METRICS_CACHING;INCLUDE_DYNAMIC_GI;INCLUDE_GI;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;INCLUDE_PUBNUB;ENABLE_PLAYMODE_TESTS_RUNNER;ENABLE_SCRIPTING_NEW_CSHARP_COMPILER;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_SUBSTANCE;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_UNITYWEBREQUEST;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_EVENT_QUEUE;ENABLE_CLUSTERINPUT;ENABLE_VIDEO;ENABLE_VR;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;ENABLE_PROFILER;DEBUG;TRACE;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;UNITY_TEAM_LICENSE;ENABLE_VSTU false @@ -52,6 +52,9 @@ Library\UnityAssemblies\UnityEngine.dll + + Library\UnityAssemblies\UnityEngine.Advertisements.dll + Library\UnityAssemblies\UnityEngine.UI.dll @@ -67,6 +70,9 @@ Library\UnityAssemblies\UnityEngine.HoloLens.dll + + Library\UnityAssemblies\UnityEngine.Purchasing.dll + Library\UnityAssemblies\UnityEngine.VR.dll diff --git a/Library/AssetImportState b/Library/AssetImportState index 0477844..634542a 100644 --- a/Library/AssetImportState +++ b/Library/AssetImportState @@ -1 +1 @@ -13;589824;2304;0;0 \ No newline at end of file +19;0;6;0;0 \ No newline at end of file diff --git a/Library/Collab/CollabSnapshot_d4f7d3b9-9b56-4132-a49d-9fe9519154de.txt b/Library/Collab/CollabSnapshot_d4f7d3b9-9b56-4132-a49d-9fe9519154de.txt index f5fec2a..75c80f6 100644 --- a/Library/Collab/CollabSnapshot_d4f7d3b9-9b56-4132-a49d-9fe9519154de.txt +++ b/Library/Collab/CollabSnapshot_d4f7d3b9-9b56-4132-a49d-9fe9519154de.txt @@ -1 +1 @@ -{"entries":[{"path":"Assets/GPGSIds.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ef4f3ae5d5ab62eb43ef178fea967bab","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ef4f3ae5d5ab62eb43ef178fea967bab?name=GPGSIds.cs","size":1456},{"path":"Assets/GPGSIds.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"7842e91674a3cba86ccda4a5d66cdc38","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7842e91674a3cba86ccda4a5d66cdc38?name=GPGSIds.cs.meta","size":263},{"path":"Assets/Game Jam Template.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"4e3ff4d8277fea6c0b48960b38760da6","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4e3ff4d8277fea6c0b48960b38760da6?name=Game+Jam+Template.meta","size":193},{"path":"Assets/Game Jam Template/Animation.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"caa07e7206e6d2ae2c8f14d77647a1ef","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/caa07e7206e6d2ae2c8f14d77647a1ef?name=Animation.meta","size":193},{"path":"Assets/Game Jam Template/Animation/FadeImageController.controller","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"08cc0cefa782fad9044bf8753bc140bf","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/08cc0cefa782fad9044bf8753bc140bf?name=FadeImageController.controller","size":3249},{"path":"Assets/Game Jam Template/Animation/FadeImageController.controller.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"86c82e40cd0d90782cdd6a087e42e90f","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/86c82e40cd0d90782cdd6a087e42e90f?name=FadeImageController.controller.meta","size":181},{"path":"Assets/Game Jam Template/Animation/FadeMenuAlpha.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"0d5ed7d4161b30a47481b3fbbaa1efac","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0d5ed7d4161b30a47481b3fbbaa1efac?name=FadeMenuAlpha.anim","size":2020},{"path":"Assets/Game Jam Template/Animation/FadeMenuAlpha.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"99765e4c602b6686a32016d258c93cd9","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/99765e4c602b6686a32016d258c93cd9?name=FadeMenuAlpha.anim.meta","size":181},{"path":"Assets/Game Jam Template/Animation/FadeToColor.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"587ab13fc35c96c11d43896f4a9d877a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/587ab13fc35c96c11d43896f4a9d877a?name=FadeToColor.anim","size":2383},{"path":"Assets/Game Jam Template/Animation/FadeToColor.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"5f53ab0f0c170f9e6906e785d0791dd5","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/5f53ab0f0c170f9e6906e785d0791dd5?name=FadeToColor.anim.meta","size":181},{"path":"Assets/Game Jam Template/Animation/MenuPanel.controller","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ffc785a2db2ad92b704865ab90b8a5fa","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ffc785a2db2ad92b704865ab90b8a5fa?name=MenuPanel.controller","size":3541},{"path":"Assets/Game Jam Template/Animation/MenuPanel.controller.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"2d49702918141d6870b7465ecdf138f9","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2d49702918141d6870b7465ecdf138f9?name=MenuPanel.controller.meta","size":181},{"path":"Assets/Game Jam Template/Audio.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"990b31dfdbafb60c8b0ffba2f33aa864","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/990b31dfdbafb60c8b0ffba2f33aa864?name=Audio.meta","size":193},{"path":"Assets/Game Jam Template/Audio/MasterMixer.mixer","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"5c99dfd8abe298ec16ae1bec9c902b4a","state":32,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/5c99dfd8abe298ec16ae1bec9c902b4a?name=MasterMixer.mixer","size":3968},{"path":"Assets/Game Jam Template/Audio/MasterMixer.mixer.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"6c61182e2da123fe456b0379e17a2f6a","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6c61182e2da123fe456b0379e17a2f6a?name=MasterMixer.mixer.meta","size":181},{"path":"Assets/Game Jam Template/Fonts.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"2b5a55f6cb9ebbaabd6703bed0c64231","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2b5a55f6cb9ebbaabd6703bed0c64231?name=Fonts.meta","size":193},{"path":"Assets/Game Jam Template/Fonts/OpenSans.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a3287527f5ae2abbc8947f25b5296342","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a3287527f5ae2abbc8947f25b5296342?name=OpenSans.meta","size":193},{"path":"Assets/Game Jam Template/Fonts/OpenSans/License!.txt","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"d273d63619c9aeaf15cdaf76422c4f87","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d273d63619c9aeaf15cdaf76422c4f87?name=License%21.txt","size":11560},{"path":"Assets/Game Jam Template/Fonts/OpenSans/License!.txt.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"f67302b277f1c99a10dd0c2182bf70a3","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f67302b277f1c99a10dd0c2182bf70a3?name=License%21.txt.meta","size":113},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSans-ExtraBold.ttf","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8bac22ed4fd7c8a30536be18e2984f84","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8bac22ed4fd7c8a30536be18e2984f84?name=OpenSans-ExtraBold.ttf","size":222584},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSans-ExtraBold.ttf.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"7253aba019b9e377d7a05ba028381d82","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7253aba019b9e377d7a05ba028381d82?name=OpenSans-ExtraBold.ttf.meta","size":387},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSansBold.ttf","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"50145685042b4df07a1fd19957275b81","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/50145685042b4df07a1fd19957275b81?name=OpenSansBold.ttf","size":224592},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSansBold.ttf.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"02c958ba12a0f8db824f9a372817df79","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/02c958ba12a0f8db824f9a372817df79?name=OpenSansBold.ttf.meta","size":321},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSansLight.ttf","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"1bf71be111189e76987a4bb9b3115cb7","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1bf71be111189e76987a4bb9b3115cb7?name=OpenSansLight.ttf","size":222412},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSansLight.ttf.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"6a1bd646e33a4bd5a781b8f7e6e449f2","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6a1bd646e33a4bd5a781b8f7e6e449f2?name=OpenSansLight.ttf.meta","size":321},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSansRegular.ttf","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"629a55a7e793da068dc580d184cc0e31","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/629a55a7e793da068dc580d184cc0e31?name=OpenSansRegular.ttf","size":217360},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSansRegular.ttf.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"24fab0afdcfba2a952920914be8d7e71","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/24fab0afdcfba2a952920914be8d7e71?name=OpenSansRegular.ttf.meta","size":321},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSansSemibold.ttf","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"33f225b8f5f7d6b34a0926f58f96c1e9","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/33f225b8f5f7d6b34a0926f58f96c1e9?name=OpenSansSemibold.ttf","size":221328},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSansSemibold.ttf.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"388c87f9b5f4f7a5a49d5815d8485abb","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/388c87f9b5f4f7a5a49d5815d8485abb?name=OpenSansSemibold.ttf.meta","size":321},{"path":"Assets/Game Jam Template/GameJamTemplateReadMe.txt","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"7f7ded6a00df7e13985729844dcb0e72","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7f7ded6a00df7e13985729844dcb0e72?name=GameJamTemplateReadMe.txt","size":2902},{"path":"Assets/Game Jam Template/GameJamTemplateReadMe.txt.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"223c6cb4718e185e62612a83f8742465","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/223c6cb4718e185e62612a83f8742465?name=GameJamTemplateReadMe.txt.meta","size":179},{"path":"Assets/Game Jam Template/Prefabs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"e1138c1e82e7bbf7571155717711065c","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e1138c1e82e7bbf7571155717711065c?name=Prefabs.meta","size":193},{"path":"Assets/Game Jam Template/Prefabs/EventSystem.prefab","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"0479948bb09e64c7b7d032ef9cc801b9","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0479948bb09e64c7b7d032ef9cc801b9?name=EventSystem.prefab","size":2018},{"path":"Assets/Game Jam Template/Prefabs/EventSystem.prefab.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"87238955b8edd1fe7309f414e4eeb61d","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/87238955b8edd1fe7309f414e4eeb61d?name=EventSystem.prefab.meta","size":181},{"path":"Assets/Game Jam Template/Prefabs/GameOverUI.prefab","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"d3cfb0990da49915c18e97ece8d569d8","state":2,"downloadPath":"","size":53412},{"path":"Assets/Game Jam Template/Prefabs/GameOverUI.prefab.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"1f4fa073a91901a476441412c5f69288","state":32770,"downloadPath":"","size":180},{"path":"Assets/Game Jam Template/Prefabs/MenuUI.prefab","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c7a5fc11084081992c4c2aa4a88245cd","state":2,"downloadPath":"","size":156728},{"path":"Assets/Game Jam Template/Prefabs/MenuUI.prefab.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"6e57b6e74dc3978e8db4ad2857a22427","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6e57b6e74dc3978e8db4ad2857a22427?name=UI.prefab.meta","size":181,"fromPath":"Assets/Game Jam Template/Prefabs/UI.prefab.meta"},{"path":"Assets/Game Jam Template/Scripts.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"b5d61a4f267c773c571640cf3668ba7f","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b5d61a4f267c773c571640cf3668ba7f?name=Scripts.meta","size":193},{"path":"Assets/Game Jam Template/Scripts/DontDestroy.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ef1d6ae02c7464b3437f6ecc5b9b6f70","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ef1d6ae02c7464b3437f6ecc5b9b6f70?name=DontDestroy.cs","size":288},{"path":"Assets/Game Jam Template/Scripts/DontDestroy.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"7e8cb61e496ad9bb5f6d80b26a89c090","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7e8cb61e496ad9bb5f6d80b26a89c090?name=DontDestroy.cs.meta","size":264},{"path":"Assets/Game Jam Template/Scripts/EventSystemChecker.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"fb113520cc43783c445c94c1be264bfe","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fb113520cc43783c445c94c1be264bfe?name=EventSystemChecker.cs","size":1103},{"path":"Assets/Game Jam Template/Scripts/EventSystemChecker.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"bfd953762569d55833e297c410cce114","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bfd953762569d55833e297c410cce114?name=EventSystemChecker.cs.meta","size":264},{"path":"Assets/Game Jam Template/Scripts/Pause.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"d68ced2b2c76bd62233b80cc1132e350","state":2,"downloadPath":"","size":2276},{"path":"Assets/Game Jam Template/Scripts/Pause.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"7aae54df5c7024c59ae725042f999de4","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7aae54df5c7024c59ae725042f999de4?name=Pause.cs.meta","size":264},{"path":"Assets/Game Jam Template/Scripts/PlayMusic.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"964f64cefde1cdd6528ef655f7a3720b","state":2,"downloadPath":"","size":2897},{"path":"Assets/Game Jam Template/Scripts/PlayMusic.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"82efc421ed1afd7c220dd03163881282","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/82efc421ed1afd7c220dd03163881282?name=PlayMusic.cs.meta","size":264},{"path":"Assets/Game Jam Template/Scripts/QuitApplication.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a843a50c47e21cbf5c7feaaeedbd9a9b","state":2,"downloadPath":"","size":333},{"path":"Assets/Game Jam Template/Scripts/QuitApplication.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"6dbc1adf6fbe48194669d4745cc443ae","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6dbc1adf6fbe48194669d4745cc443ae?name=QuitApplication.cs.meta","size":264},{"path":"Assets/Game Jam Template/Scripts/SetAudioLevels.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"705ec70a88d8898cf27c6791f9eafa85","state":2,"downloadPath":"","size":801},{"path":"Assets/Game Jam Template/Scripts/SetAudioLevels.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"b9d5f94edd3acdaed1ce0f61cef20098","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b9d5f94edd3acdaed1ce0f61cef20098?name=SetAudioLevels.cs.meta","size":264},{"path":"Assets/Game Jam Template/Scripts/ShowPanels.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ceec69174d3195aeea9f4c89bc4e42b0","state":2,"downloadPath":"","size":3223},{"path":"Assets/Game Jam Template/Scripts/ShowPanels.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c313170022bd32ef6cf04a05885a119d","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c313170022bd32ef6cf04a05885a119d?name=ShowPanels.cs.meta","size":264},{"path":"Assets/Game Jam Template/Scripts/StartOptions.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"1083703cd0d1152b978b0e83120017ba","state":2,"downloadPath":"","size":4607},{"path":"Assets/Game Jam Template/Scripts/StartOptions.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"7765ff0ca27c687b68ab462885b94ccf","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7765ff0ca27c687b68ab462885b94ccf?name=StartOptions.cs.meta","size":264},{"path":"Assets/GooglePlayGames.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"33fe2584af33ac1bfcb3b3c29741475e","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/33fe2584af33ac1bfcb3b3c29741475e?name=GooglePlayGames.meta","size":107},{"path":"Assets/GooglePlayGames/BasicApi.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"672a3a1c014d8c21f9cda845cbfe3940","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/672a3a1c014d8c21f9cda845cbfe3940?name=BasicApi.meta","size":107},{"path":"Assets/GooglePlayGames/BasicApi/Achievement.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"4bf00b7a492645ce8b032b5282a684da","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4bf00b7a492645ce8b032b5282a684da?name=Achievement.cs","size":7101},{"path":"Assets/GooglePlayGames/BasicApi/Achievement.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c13658d8b62c0eba98e666bcbd5ca37d","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c13658d8b62c0eba98e666bcbd5ca37d?name=Achievement.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/CommonStatusCodes.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"033940dccdea1d693a20ca21aef7e866","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/033940dccdea1d693a20ca21aef7e866?name=CommonStatusCodes.cs","size":3675},{"path":"Assets/GooglePlayGames/BasicApi/CommonStatusCodes.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"edd873a4fd2fe97b22571f3b21d35483","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/edd873a4fd2fe97b22571f3b21d35483?name=CommonStatusCodes.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/CommonTypes.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"53ee9786a5cd7119e09b46146bf2256d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/53ee9786a5cd7119e09b46146bf2256d?name=CommonTypes.cs","size":4790},{"path":"Assets/GooglePlayGames/BasicApi/CommonTypes.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"d7acb57db8e4c393427d7c51dc26a666","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d7acb57db8e4c393427d7c51dc26a666?name=CommonTypes.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/DummyClient.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a45eb874ba28670c81cfaef431c03b7f","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a45eb874ba28670c81cfaef431c03b7f?name=DummyClient.cs","size":18884},{"path":"Assets/GooglePlayGames/BasicApi/DummyClient.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"0676eff20b0c84f3391760f4ecba7c4f","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0676eff20b0c84f3391760f4ecba7c4f?name=DummyClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/Events.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8ac6dae07cac9887252a638dade02845","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8ac6dae07cac9887252a638dade02845?name=Events.meta","size":191},{"path":"Assets/GooglePlayGames/BasicApi/Events/IEvent.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"489e6873b523e04aff8317ebb477ce66","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/489e6873b523e04aff8317ebb477ce66?name=IEvent.cs","size":1942},{"path":"Assets/GooglePlayGames/BasicApi/Events/IEvent.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8f08897dee0e6a96f51210c16d4468d0","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8f08897dee0e6a96f51210c16d4468d0?name=IEvent.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/Events/IEventsClient.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"81d5dce844541be3156fba020eb92ad6","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/81d5dce844541be3156fba020eb92ad6?name=IEventsClient.cs","size":2703},{"path":"Assets/GooglePlayGames/BasicApi/Events/IEventsClient.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"6eed6d0f60bbe61b3fe2e354d7d6f48a","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6eed6d0f60bbe61b3fe2e354d7d6f48a?name=IEventsClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/IPlayGamesClient.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"fa593bc72c23ba42391a6245d88cc22d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fa593bc72c23ba42391a6245d88cc22d?name=IPlayGamesClient.cs","size":17794},{"path":"Assets/GooglePlayGames/BasicApi/IPlayGamesClient.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"9aef353cf097c41b7b4849bc1aa76c58","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9aef353cf097c41b7b4849bc1aa76c58?name=IPlayGamesClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/LeaderboardScoreData.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"f7704076dd8f047b22688587ace74256","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f7704076dd8f047b22688587ace74256?name=LeaderboardScoreData.cs","size":4123},{"path":"Assets/GooglePlayGames/BasicApi/LeaderboardScoreData.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"fb8e892f16eb5093db0142ce2ebb5595","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fb8e892f16eb5093db0142ce2ebb5595?name=LeaderboardScoreData.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a6bd8e471ea1725b71fc4372b2a2b539","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a6bd8e471ea1725b71fc4372b2a2b539?name=Multiplayer.meta","size":150},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/IRealTimeMultiplayerClient.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"30341cb1405fcc13e1f22324eafbc1e3","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/30341cb1405fcc13e1f22324eafbc1e3?name=IRealTimeMultiplayerClient.cs","size":11256},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/IRealTimeMultiplayerClient.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"29e3cd1e22be9a9e31ec4736fa713162","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/29e3cd1e22be9a9e31ec4736fa713162?name=IRealTimeMultiplayerClient.cs.meta","size":178},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/ITurnBasedMultiplayerClient.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"0c9d3c0a29cac0123252a5a965e0dc21","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0c9d3c0a29cac0123252a5a965e0dc21?name=ITurnBasedMultiplayerClient.cs","size":11966},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/ITurnBasedMultiplayerClient.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"56b2cc270e9d248521854aefc5b0c590","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/56b2cc270e9d248521854aefc5b0c590?name=ITurnBasedMultiplayerClient.cs.meta","size":178},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/Invitation.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"df3fdc195266ed827afca6102ad43cca","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/df3fdc195266ed827afca6102ad43cca?name=Invitation.cs","size":3093},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/Invitation.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"022c4817b1af556535b1390ce21da0f1","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/022c4817b1af556535b1390ce21da0f1?name=Invitation.cs.meta","size":178},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/MatchOutcome.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"97b4ed2a009408ef2bb4d353631e1330","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/97b4ed2a009408ef2bb4d353631e1330?name=MatchOutcome.cs","size":4169},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/MatchOutcome.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"4b73aef2f7454b97445cdae5e65e8231","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4b73aef2f7454b97445cdae5e65e8231?name=MatchOutcome.cs.meta","size":178},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/Participant.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"85395581513ddaad67d9032b0bac5ead","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/85395581513ddaad67d9032b0bac5ead?name=Participant.cs","size":5287},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/Participant.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"bbc4f50b3540a9d9a2578481f1564ad8","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bbc4f50b3540a9d9a2578481f1564ad8?name=Participant.cs.meta","size":178},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/Player.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a83e15a01c6a4e6a94a614211702aaac","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a83e15a01c6a4e6a94a614211702aaac?name=Player.cs","size":1349},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/Player.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"7c5fb31049ed7532ef72d02bb88c3ac6","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7c5fb31049ed7532ef72d02bb88c3ac6?name=Player.cs.meta","size":178},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/RealTimeMultiplayerListener.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a296855a50188e822d4f2ead3b3e9a34","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a296855a50188e822d4f2ead3b3e9a34?name=RealTimeMultiplayerListener.cs","size":3212},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/RealTimeMultiplayerListener.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"59978fef1910ce91cc9f537ec73c217b","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/59978fef1910ce91cc9f537ec73c217b?name=RealTimeMultiplayerListener.cs.meta","size":178},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/TurnBasedMatch.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"2acc75a7f7d672e1520faeeb65741baa","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2acc75a7f7d672e1520faeeb65741baa?name=TurnBasedMatch.cs","size":6635},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/TurnBasedMatch.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"866baead77efa5879440471324f82e41","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/866baead77efa5879440471324f82e41?name=TurnBasedMatch.cs.meta","size":178},{"path":"Assets/GooglePlayGames/BasicApi/Nearby.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"91916c567f415312c74d9cb6caa055bd","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/91916c567f415312c74d9cb6caa055bd?name=Nearby.meta","size":191},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/AdvertisingResult.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a07cbf7ac1d4c7edac664c0109c54fa3","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a07cbf7ac1d4c7edac664c0109c54fa3?name=AdvertisingResult.cs","size":1618},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/AdvertisingResult.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"f09cd964b0809e886eb7255f998d1ade","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f09cd964b0809e886eb7255f998d1ade?name=AdvertisingResult.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/ConnectionRequest.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"1130dcec72b58f100fb850ef4365dd5f","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1130dcec72b58f100fb850ef4365dd5f?name=ConnectionRequest.cs","size":1627},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/ConnectionRequest.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8ddc47992a3f806e09ccda086769f920","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8ddc47992a3f806e09ccda086769f920?name=ConnectionRequest.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/ConnectionResponse.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"1289a0199e278dd4db5ab4e27e4fbc36","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1289a0199e278dd4db5ab4e27e4fbc36?name=ConnectionResponse.cs","size":3895},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/ConnectionResponse.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c2bd880f6209c7aa84bcfa5368057d0d","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c2bd880f6209c7aa84bcfa5368057d0d?name=ConnectionResponse.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/DummyNearbyConnectionClient.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"dd3a3dd3b822a2f85ca83f5776795939","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/dd3a3dd3b822a2f85ca83f5776795939?name=DummyNearbyConnectionClient.cs","size":4151},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/DummyNearbyConnectionClient.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"4ed55c33da2ccb783fe4a22684a35984","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4ed55c33da2ccb783fe4a22684a35984?name=DummyNearbyConnectionClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/EndpointDetails.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"cf37519f6b11386c3439db4eebf78be7","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/cf37519f6b11386c3439db4eebf78be7?name=EndpointDetails.cs","size":1846},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/EndpointDetails.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"2eefc8666ce96ffef79489236ece3428","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2eefc8666ce96ffef79489236ece3428?name=EndpointDetails.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/INearbyConnectionClient.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"7f507d638ce0d305271ae29cdf250266","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7f507d638ce0d305271ae29cdf250266?name=INearbyConnectionClient.cs","size":2783},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/INearbyConnectionClient.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"db8b313f36044aabe5090268d5e47247","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/db8b313f36044aabe5090268d5e47247?name=INearbyConnectionClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/NearbyConnectionConfiguration.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"df34430a5f727e2ea11fdd299f76e157","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/df34430a5f727e2ea11fdd299f76e157?name=NearbyConnectionConfiguration.cs","size":1844},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/NearbyConnectionConfiguration.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c015fba698fa3cc09b0dd24c63e3bdf2","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c015fba698fa3cc09b0dd24c63e3bdf2?name=NearbyConnectionConfiguration.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/PlayGamesClientConfiguration.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"bfa3f61731db4fc22da17f6c03dd0f9d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bfa3f61731db4fc22da17f6c03dd0f9d?name=PlayGamesClientConfiguration.cs","size":12336},{"path":"Assets/GooglePlayGames/BasicApi/PlayGamesClientConfiguration.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"87b1426cc5196b43cc4ae3d46ad926a1","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/87b1426cc5196b43cc4ae3d46ad926a1?name=PlayGamesClientConfiguration.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/PlayerStats.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"7a0c75192b5f6a5f21686cda88315074","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7a0c75192b5f6a5f21686cda88315074?name=PlayerStats.cs","size":7987},{"path":"Assets/GooglePlayGames/BasicApi/PlayerStats.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"696c1f3d5ca7f06f8b794bc7db6a7576","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/696c1f3d5ca7f06f8b794bc7db6a7576?name=PlayerStats.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/Quests.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ffb390da94e339c81ac8c7d9f4b59cf7","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ffb390da94e339c81ac8c7d9f4b59cf7?name=Quests.meta","size":191},{"path":"Assets/GooglePlayGames/BasicApi/Quests/IQuest.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"046eeb69cbefb8cc4b78c10344c3d632","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/046eeb69cbefb8cc4b78c10344c3d632?name=IQuest.cs","size":3352},{"path":"Assets/GooglePlayGames/BasicApi/Quests/IQuest.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"81c3eec704ac36af8d273902af9e4cf7","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/81c3eec704ac36af8d273902af9e4cf7?name=IQuest.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/Quests/IQuestMilestone.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c3262b3ec1d6cef0a548576a4f0b749f","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c3262b3ec1d6cef0a548576a4f0b749f?name=IQuestMilestone.cs","size":2649},{"path":"Assets/GooglePlayGames/BasicApi/Quests/IQuestMilestone.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"00b472bd5043cba90c68f17580433e86","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/00b472bd5043cba90c68f17580433e86?name=IQuestMilestone.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/Quests/IQuestsClient.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"2e78d3070d26c71e86da6a87cbecebeb","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2e78d3070d26c71e86da6a87cbecebeb?name=IQuestsClient.cs","size":7137},{"path":"Assets/GooglePlayGames/BasicApi/Quests/IQuestsClient.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a493e6c5e70b57250f8f64ffe24becd0","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a493e6c5e70b57250f8f64ffe24becd0?name=IQuestsClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/SavedGame.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"e18bbbb9a6180a832d45c17db80632e3","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e18bbbb9a6180a832d45c17db80632e3?name=SavedGame.meta","size":191},{"path":"Assets/GooglePlayGames/BasicApi/SavedGame/ISavedGameClient.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a23fa0782414b414ff95dfcf496bd2ef","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a23fa0782414b414ff95dfcf496bd2ef?name=ISavedGameClient.cs","size":20168},{"path":"Assets/GooglePlayGames/BasicApi/SavedGame/ISavedGameClient.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"bd7781fa82aaea9ae3cd308dc15513be","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bd7781fa82aaea9ae3cd308dc15513be?name=ISavedGameClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/SavedGame/ISavedGameMetadata.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"44345638088907f7e271e5aa8455f1a2","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/44345638088907f7e271e5aa8455f1a2?name=ISavedGameMetadata.cs","size":3738},{"path":"Assets/GooglePlayGames/BasicApi/SavedGame/ISavedGameMetadata.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"837f05b5629c34925ccc228db2e4f590","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/837f05b5629c34925ccc228db2e4f590?name=ISavedGameMetadata.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/SavedGame/SavedGameMetadataUpdate.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"92e9651efd8c2035164644e51c93703b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/92e9651efd8c2035164644e51c93703b?name=SavedGameMetadataUpdate.cs","size":4100},{"path":"Assets/GooglePlayGames/BasicApi/SavedGame/SavedGameMetadataUpdate.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"000aab026570a8b7fa2b33bf162182d7","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/000aab026570a8b7fa2b33bf162182d7?name=SavedGameMetadataUpdate.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/ScorePageToken.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"4d241cac1f7171fd9ed2c37a93a05d12","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4d241cac1f7171fd9ed2c37a93a05d12?name=ScorePageToken.cs","size":2155},{"path":"Assets/GooglePlayGames/BasicApi/ScorePageToken.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"bbd76f821e94f2ec22ea07ce5c994e4b","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bbd76f821e94f2ec22ea07ce5c994e4b?name=ScorePageToken.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Editor.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"3410ff21eeb03537794302c1fb954ca1","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3410ff21eeb03537794302c1fb954ca1?name=Editor.meta","size":191},{"path":"Assets/GooglePlayGames/Editor/GPGSAndroidSetupUI.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"0a9ae17b03d527e7e9a9847fcfc9744c","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0a9ae17b03d527e7e9a9847fcfc9744c?name=GPGSAndroidSetupUI.cs","size":16710},{"path":"Assets/GooglePlayGames/Editor/GPGSAndroidSetupUI.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"95a222efd0a666ee6b7c0d3a89b3f6d4","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/95a222efd0a666ee6b7c0d3a89b3f6d4?name=GPGSAndroidSetupUI.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Editor/GPGSDependencies.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"cd8d8bc0dfb6388cce8f499f0ebe783e","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/cd8d8bc0dfb6388cce8f499f0ebe783e?name=GPGSDependencies.cs","size":5748},{"path":"Assets/GooglePlayGames/Editor/GPGSDependencies.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"7d0d93f210606f4f4691f6f6bdd059a2","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7d0d93f210606f4f4691f6f6bdd059a2?name=GPGSDependencies.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Editor/GPGSDocsUI.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"fea339b87d53c25008456d3a47c2def9","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fea339b87d53c25008456d3a47c2def9?name=GPGSDocsUI.cs","size":4956},{"path":"Assets/GooglePlayGames/Editor/GPGSDocsUI.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"42a867dabe6d2b5b9b34edbc4f279e5a","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/42a867dabe6d2b5b9b34edbc4f279e5a?name=GPGSDocsUI.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Editor/GPGSIOSSetupUI.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ba30521fe1386d3823e6b2f410ea9e0b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ba30521fe1386d3823e6b2f410ea9e0b?name=GPGSIOSSetupUI.cs","size":14829},{"path":"Assets/GooglePlayGames/Editor/GPGSIOSSetupUI.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"9e508dbcecb8f02d42eec9906c284016","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9e508dbcecb8f02d42eec9906c284016?name=GPGSIOSSetupUI.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Editor/GPGSPostBuild.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"80bd0e2dd80745582cca3883fc351132","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/80bd0e2dd80745582cca3883fc351132?name=GPGSPostBuild.cs","size":9788},{"path":"Assets/GooglePlayGames/Editor/GPGSPostBuild.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"02fd8cbb60af8d708c2407997553c5ec","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/02fd8cbb60af8d708c2407997553c5ec?name=GPGSPostBuild.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Editor/GPGSProjectSettings.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"08c6210169bc240d2c6a3721df80a75c","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/08c6210169bc240d2c6a3721df80a75c?name=GPGSProjectSettings.cs","size":5140},{"path":"Assets/GooglePlayGames/Editor/GPGSProjectSettings.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"32f6d5f16229820536e125bec36ac9bb","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/32f6d5f16229820536e125bec36ac9bb?name=GPGSProjectSettings.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Editor/GPGSStrings.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"893d45c78bb795fa1109c8215dc6221f","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/893d45c78bb795fa1109c8215dc6221f?name=GPGSStrings.cs","size":13377},{"path":"Assets/GooglePlayGames/Editor/GPGSStrings.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"1ae53ade7992073fe39249b332a71e07","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1ae53ade7992073fe39249b332a71e07?name=GPGSStrings.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Editor/GPGSUpgrader.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ff6ec4dfef8a55e93ef6667536adfdab","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ff6ec4dfef8a55e93ef6667536adfdab?name=GPGSUpgrader.cs","size":18464},{"path":"Assets/GooglePlayGames/Editor/GPGSUpgrader.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"be95bc4ea421687afa3b53b2a5bf8fd4","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/be95bc4ea421687afa3b53b2a5bf8fd4?name=GPGSUpgrader.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Editor/GPGSUtil.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"1326cee95bd286b94097195dc6117e81","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1326cee95bd286b94097195dc6117e81?name=GPGSUtil.cs","size":22660},{"path":"Assets/GooglePlayGames/Editor/GPGSUtil.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"6d77fd458add90fa19e057242439e728","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6d77fd458add90fa19e057242439e728?name=GPGSUtil.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Editor/NearbyConnectionUI.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a45053382c58f1f762af13b84cf3a84a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a45053382c58f1f762af13b84cf3a84a?name=NearbyConnectionUI.cs","size":4229},{"path":"Assets/GooglePlayGames/Editor/NearbyConnectionUI.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"19cef4168bd7a85c746d152c18481ce4","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/19cef4168bd7a85c746d152c18481ce4?name=NearbyConnectionUI.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Editor/PlistBuddyHelper.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c3e56bd14bc7131fa0438f17eb3e1c0f","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c3e56bd14bc7131fa0438f17eb3e1c0f?name=PlistBuddyHelper.cs","size":4500},{"path":"Assets/GooglePlayGames/Editor/PlistBuddyHelper.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"dee65c0b2ed2c1d5f2e4c78adfcc3cc5","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/dee65c0b2ed2c1d5f2e4c78adfcc3cc5?name=PlistBuddyHelper.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Editor/PostprocessBuildPlayer","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"02d7050168ec725ed820983bc25fb00d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/02d7050168ec725ed820983bc25fb00d?name=PostprocessBuildPlayer","size":254},{"path":"Assets/GooglePlayGames/Editor/PostprocessBuildPlayer.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"10b2449a54bf836cc769d67121a45e40","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/10b2449a54bf836cc769d67121a45e40?name=PostprocessBuildPlayer.meta","size":174},{"path":"Assets/GooglePlayGames/Editor/template-AndroidManifest.txt","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"193f3e9f4fb9c7d2be9c5a9161a5327a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/193f3e9f4fb9c7d2be9c5a9161a5327a?name=template-AndroidManifest.txt","size":1267},{"path":"Assets/GooglePlayGames/Editor/template-AndroidManifest.txt.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"50b85ab64a44f7f92373f014aecf1948","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/50b85ab64a44f7f92373f014aecf1948?name=template-AndroidManifest.txt.meta","size":177},{"path":"Assets/GooglePlayGames/Editor/template-Constants.txt","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"1e72b30a390e57a353cc1f7230f3b7c3","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1e72b30a390e57a353cc1f7230f3b7c3?name=template-Constants.txt","size":951},{"path":"Assets/GooglePlayGames/Editor/template-Constants.txt.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"48130b4d6c7bed2b8794ee15c2979de7","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/48130b4d6c7bed2b8794ee15c2979de7?name=template-Constants.txt.meta","size":177},{"path":"Assets/GooglePlayGames/Editor/template-GameInfo.txt","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"87dc3a879e6d11dc9785c2bd2147c5a2","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/87dc3a879e6d11dc9785c2bd2147c5a2?name=template-GameInfo.txt","size":3516},{"path":"Assets/GooglePlayGames/Editor/template-GameInfo.txt.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"546f266dd6b1028dd26717ce99eb4e3d","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/546f266dd6b1028dd26717ce99eb4e3d?name=template-GameInfo.txt.meta","size":177},{"path":"Assets/GooglePlayGames/Editor/xcode.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ffd0c939da9667a4b9b5cbb4bab28b28","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ffd0c939da9667a4b9b5cbb4bab28b28?name=xcode.meta","size":191},{"path":"Assets/GooglePlayGames/Editor/xcode/Elements.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"eb926a0f94ea8b784177ba22c9d69e3c","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/eb926a0f94ea8b784177ba22c9d69e3c?name=Elements.cs","size":3565},{"path":"Assets/GooglePlayGames/Editor/xcode/Elements.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"652e86c178e8e0acfb72c92e8c55e2b3","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/652e86c178e8e0acfb72c92e8c55e2b3?name=Elements.cs.meta","size":178},{"path":"Assets/GooglePlayGames/Editor/xcode/Lexer.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"3cebc5db7bc9335f4574f0f09439840a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3cebc5db7bc9335f4574f0f09439840a?name=Lexer.cs","size":7690},{"path":"Assets/GooglePlayGames/Editor/xcode/Lexer.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"6f8e741ee27927470a2ea8bbe97d3f68","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6f8e741ee27927470a2ea8bbe97d3f68?name=Lexer.cs.meta","size":178},{"path":"Assets/GooglePlayGames/Editor/xcode/Objects.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"5efbf547bae8f68bc90083b75c639feb","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/5efbf547bae8f68bc90083b75c639feb?name=Objects.cs","size":30486},{"path":"Assets/GooglePlayGames/Editor/xcode/Objects.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"58cb9f0120fee8206baed4a8b9f07d95","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/58cb9f0120fee8206baed4a8b9f07d95?name=Objects.cs.meta","size":178},{"path":"Assets/GooglePlayGames/Editor/xcode/PBXProject.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8981fb739a7f4269a079f63ba24c56b8","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8981fb739a7f4269a079f63ba24c56b8?name=PBXProject.cs","size":51173},{"path":"Assets/GooglePlayGames/Editor/xcode/PBXProject.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"d549db045ea424f09b301cf3b406f9fa","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d549db045ea424f09b301cf3b406f9fa?name=PBXProject.cs.meta","size":178},{"path":"Assets/GooglePlayGames/Editor/xcode/Parser.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"11cc7eca6ac9c8869ffea020b597d55f","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/11cc7eca6ac9c8869ffea020b597d55f?name=Parser.cs","size":5806},{"path":"Assets/GooglePlayGames/Editor/xcode/Parser.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"4fc4c2d0b1d9042bfb6a26edc326e3a1","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4fc4c2d0b1d9042bfb6a26edc326e3a1?name=Parser.cs.meta","size":178},{"path":"Assets/GooglePlayGames/Editor/xcode/Sections.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"f6b502491f964d4fdb8cf06406577795","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f6b502491f964d4fdb8cf06406577795?name=Sections.cs","size":4741},{"path":"Assets/GooglePlayGames/Editor/xcode/Sections.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"15ed5807930872fc6873f93c95f96ff2","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/15ed5807930872fc6873f93c95f96ff2?name=Sections.cs.meta","size":178},{"path":"Assets/GooglePlayGames/Editor/xcode/Serializer.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"37c2da7f0cd64a29593929848805460c","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/37c2da7f0cd64a29593929848805460c?name=Serializer.cs","size":10738},{"path":"Assets/GooglePlayGames/Editor/xcode/Serializer.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"b8ccb7714b4425d8e19c2894bb15465c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b8ccb7714b4425d8e19c2894bb15465c?name=Serializer.cs.meta","size":178},{"path":"Assets/GooglePlayGames/Editor/xcode/Utils.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"45d011617a1436787b2a2927d0558539","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/45d011617a1436787b2a2927d0558539?name=Utils.cs","size":14092},{"path":"Assets/GooglePlayGames/Editor/xcode/Utils.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"90630fc112b8be4fc91205a6f6d5e2c2","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/90630fc112b8be4fc91205a6f6d5e2c2?name=Utils.cs.meta","size":178},{"path":"Assets/GooglePlayGames/GameInfo.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"1e3d69156f0565b4d816544957dfaf05","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1e3d69156f0565b4d816544957dfaf05?name=GameInfo.cs","size":3516},{"path":"Assets/GooglePlayGames/GameInfo.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"92db78012d37b470d4819b3eadab787b","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/92db78012d37b470d4819b3eadab787b?name=GameInfo.cs.meta","size":262},{"path":"Assets/GooglePlayGames/ISocialPlatform.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"9a9f0efd4b0cc0d87f8d1b76ba3ffc1b","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9a9f0efd4b0cc0d87f8d1b76ba3ffc1b?name=ISocialPlatform.meta","size":107},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesAchievement.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"9983bb3ddd29b65d775f22c75547aa8a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9983bb3ddd29b65d775f22c75547aa8a?name=PlayGamesAchievement.cs","size":9450},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesAchievement.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"3e9c826c70c2449f9ef5906d4bd41806","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3e9c826c70c2449f9ef5906d4bd41806?name=PlayGamesAchievement.cs.meta","size":178},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesLeaderboard.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"acaf826134feaafcc15f507f3a76f3d6","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/acaf826134feaafcc15f507f3a76f3d6?name=PlayGamesLeaderboard.cs","size":5243},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesLeaderboard.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"f7000cbcedfea16d166dcf54359b645c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f7000cbcedfea16d166dcf54359b645c?name=PlayGamesLeaderboard.cs.meta","size":262},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesLocalUser.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"d5f4cd98aaaa278f9d3535cbddb9fab4","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d5f4cd98aaaa278f9d3535cbddb9fab4?name=PlayGamesLocalUser.cs","size":9320},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesLocalUser.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c888ae2e153a26ce680f22b6e6e4f254","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c888ae2e153a26ce680f22b6e6e4f254?name=PlayGamesLocalUser.cs.meta","size":178},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesPlatform.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"61c044740f03e8ef8f69cb3ad6b28963","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/61c044740f03e8ef8f69cb3ad6b28963?name=PlayGamesPlatform.cs","size":54281},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesPlatform.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"d3633770af663ce1a61fa0f6c6d1d07e","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d3633770af663ce1a61fa0f6c6d1d07e?name=PlayGamesPlatform.cs.meta","size":178},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesScore.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"eb3a89df50566cb4f9b4ac1c06e3b630","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/eb3a89df50566cb4f9b4ac1c06e3b630?name=PlayGamesScore.cs","size":3604},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesScore.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"603660b94ccb9bf35641261dd18f70fd","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/603660b94ccb9bf35641261dd18f70fd?name=PlayGamesScore.cs.meta","size":178},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesUserProfile.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c40eb8f91436aea5346412ab984a1f2e","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c40eb8f91436aea5346412ab984a1f2e?name=PlayGamesUserProfile.cs","size":5233},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesUserProfile.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"fbfd52e7e66f9f9536ac802cd41521ba","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fbfd52e7e66f9f9536ac802cd41521ba?name=PlayGamesUserProfile.cs.meta","size":178},{"path":"Assets/GooglePlayGames/Icons.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"043678e78fd92cece20456f8a5416175","state":2129922,"downloadPath":"","size":192},{"path":"Assets/GooglePlayGames/Icons/games_achievements.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"0e4910cb539f773bb374ba61a023fca0","state":2,"downloadPath":"","size":15144},{"path":"Assets/GooglePlayGames/Icons/games_achievements.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"e6d56c912e3e2b8389c1cf0b7dc0501f","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_achievements_green.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"e4ce4722aa6bc93f8f53680e9d592ddb","state":2,"downloadPath":"","size":15205},{"path":"Assets/GooglePlayGames/Icons/games_achievements_green.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"de4fb32cda6a4e97f1a1cfcd633db761","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_achievements_white.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"f4a5f0e03e5e9db30137e3fab2f35f19","state":2,"downloadPath":"","size":15636},{"path":"Assets/GooglePlayGames/Icons/games_achievements_white.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"460be91f80c9a904711fb2db26bd27c9","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_controller.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"6c8dc5f89f39deafef76b488d3215b5c","state":2,"downloadPath":"","size":12729},{"path":"Assets/GooglePlayGames/Icons/games_controller.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"6b5128503e8a288b7f78e879eaae2df4","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_controller_grey.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"4ac0cf3978dca98922d2b5f8464928a9","state":2,"downloadPath":"","size":12725},{"path":"Assets/GooglePlayGames/Icons/games_controller_grey.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ecb69c0c613964d82e7185f280dfd4dc","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_controller_white.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"bc43dc87c0d7d5f863cdb2e30938577e","state":2,"downloadPath":"","size":12658},{"path":"Assets/GooglePlayGames/Icons/games_controller_white.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"4b8374a6cbedd457e1af4c6af051cc2d","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_gifts.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"e3f07476620b09b41325a5cda52feb2d","state":2,"downloadPath":"","size":6965},{"path":"Assets/GooglePlayGames/Icons/games_gifts.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"e58ae65ef11c06796c00d19a3fb63070","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_gifts_green.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c4f73aa8d8a86a9139e95b095309333a","state":2,"downloadPath":"","size":6964},{"path":"Assets/GooglePlayGames/Icons/games_gifts_green.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"cc6cc28564b43373a9882745fbb71538","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_gifts_white.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"63595b3b7232d8167f3bff172caa927b","state":2,"downloadPath":"","size":6867},{"path":"Assets/GooglePlayGames/Icons/games_gifts_white.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"22e98d75f668aa75e7aacac4f34b12eb","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_leaderboards.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"9754ca13356c60e4a07343339ecc802f","state":2,"downloadPath":"","size":10825},{"path":"Assets/GooglePlayGames/Icons/games_leaderboards.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"7734055d66c9cbb1920190942ee36bb9","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_leaderboards_green.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"06c43f049ac24463cc07f6494b47abe9","state":2,"downloadPath":"","size":10825},{"path":"Assets/GooglePlayGames/Icons/games_leaderboards_green.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"4954447ce67f90c85acf6435b9b7a1d3","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_leaderboards_white.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"5c0796736d418753f26d2758e24a1a9e","state":2,"downloadPath":"","size":11158},{"path":"Assets/GooglePlayGames/Icons/games_leaderboards_white.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"6af8f5576e1f976381a79e00b934ae2a","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_matches.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"6907767a8e0858402e6ce91466e566f4","state":2,"downloadPath":"","size":13911},{"path":"Assets/GooglePlayGames/Icons/games_matches.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"174823c0868f80cdb07fadffd7026b01","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_matches_green.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"13d8eab34edbdc60d3cb9f50c84bbf1c","state":2,"downloadPath":"","size":13909},{"path":"Assets/GooglePlayGames/Icons/games_matches_green.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"dd88711b0d55e979e07e76687620e968","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_matches_white.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c90418ac54cf346b2cd79c23071e561a","state":2,"downloadPath":"","size":14460},{"path":"Assets/GooglePlayGames/Icons/games_matches_white.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"879e677ba3b1590aa9f767843c36a4e5","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_quests_green.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a0c055cefc87953d67e21f11699e673d","state":2,"downloadPath":"","size":9807},{"path":"Assets/GooglePlayGames/Icons/games_quests_green.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8a547dfe5d6079765c3709d94c69824d","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_quests_grey.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c15002c5db964b698d7fbccc391bb1bf","state":2,"downloadPath":"","size":9799},{"path":"Assets/GooglePlayGames/Icons/games_quests_grey.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"4181dfda5027b97668af0a0b96d4f7ee","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_quests_white.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"f5c44ef53676301313a2b3ad2beab627","state":2,"downloadPath":"","size":10008},{"path":"Assets/GooglePlayGames/Icons/games_quests_white.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"e119b6b5c6f3dea303905a33401b564c","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_savedgames_green.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c7f36db0a7719a02a75611d737db1076","state":2,"downloadPath":"","size":7990},{"path":"Assets/GooglePlayGames/Icons/games_savedgames_green.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"2ccda2b563bc665a3096756dfcb2f6ce","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_savedgames_grey.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"86cd775bcdf42050f4d7568868245e8d","state":2,"downloadPath":"","size":7980},{"path":"Assets/GooglePlayGames/Icons/games_savedgames_grey.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"cd34a49f07681dda6b34a9c97126bcfa","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_savedgames_white.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"612d5e9f9b0e7290b8fc578bbbd464f0","state":2,"downloadPath":"","size":7878},{"path":"Assets/GooglePlayGames/Icons/games_savedgames_white.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"dc69f13527f0f1b19820ac3b959cf395","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/OurUtils.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a4cc749ffd15a6b3585eabfe588089d7","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a4cc749ffd15a6b3585eabfe588089d7?name=OurUtils.meta","size":107},{"path":"Assets/GooglePlayGames/OurUtils/Logger.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"1ffb6d1f4f1b26c00bac3a6dc2bb50d9","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1ffb6d1f4f1b26c00bac3a6dc2bb50d9?name=Logger.cs","size":2546},{"path":"Assets/GooglePlayGames/OurUtils/Logger.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"4bc4a18e90c4cab225bdea03ad125c3c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4bc4a18e90c4cab225bdea03ad125c3c?name=Logger.cs.meta","size":178},{"path":"Assets/GooglePlayGames/OurUtils/Misc.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a0901adaf518b6149e438201772dfd44","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a0901adaf518b6149e438201772dfd44?name=Misc.cs","size":2672},{"path":"Assets/GooglePlayGames/OurUtils/Misc.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"737781822153ec0e35971e7dd5a02602","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/737781822153ec0e35971e7dd5a02602?name=Misc.cs.meta","size":178},{"path":"Assets/GooglePlayGames/OurUtils/PlatformUtils.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"31256a38661beb4e62a30c9c6a0a2f5b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/31256a38661beb4e62a30c9c6a0a2f5b?name=PlatformUtils.cs","size":1994},{"path":"Assets/GooglePlayGames/OurUtils/PlatformUtils.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ded5d5c2b6386dd738ed4f8400aae9e7","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ded5d5c2b6386dd738ed4f8400aae9e7?name=PlatformUtils.cs.meta","size":263},{"path":"Assets/GooglePlayGames/OurUtils/PlayGamesHelperObject.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"44382ec8e79d68ea2487339dbe6c000c","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/44382ec8e79d68ea2487339dbe6c000c?name=PlayGamesHelperObject.cs","size":6995},{"path":"Assets/GooglePlayGames/OurUtils/PlayGamesHelperObject.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"6a082ab9dc3ee6c0051d640b98f5839b","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6a082ab9dc3ee6c0051d640b98f5839b?name=PlayGamesHelperObject.cs.meta","size":178},{"path":"Assets/GooglePlayGames/Platforms.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c3ccf3fca2af6d6e52d53b0f0762d861","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c3ccf3fca2af6d6e52d53b0f0762d861?name=Platforms.meta","size":107},{"path":"Assets/GooglePlayGames/Platforms/Android.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"731581cc808572e00b0d7407d68d537b","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/731581cc808572e00b0d7407d68d537b?name=Android.meta","size":191},{"path":"Assets/GooglePlayGames/Platforms/Android/AndroidClient.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"4a59ab2304c28d8221f825b4d0e66640","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4a59ab2304c28d8221f825b4d0e66640?name=AndroidClient.cs","size":7675},{"path":"Assets/GooglePlayGames/Platforms/Android/AndroidClient.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c5d214c4e84848d296a3044aa57d90bd","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c5d214c4e84848d296a3044aa57d90bd?name=AndroidClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Android/AndroidTokenClient.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"e10460d07cf6aec642f74c6f27042fd5","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e10460d07cf6aec642f74c6f27042fd5?name=AndroidTokenClient.cs","size":15582},{"path":"Assets/GooglePlayGames/Platforms/Android/AndroidTokenClient.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"97f45fdb4a8f1194f1a2101a7fcde7a5","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/97f45fdb4a8f1194f1a2101a7fcde7a5?name=AndroidTokenClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Android/Developers.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"597c8631b833a77c0f1e9296f2288fe7","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/597c8631b833a77c0f1e9296f2288fe7?name=Developers.meta","size":191},{"path":"Assets/GooglePlayGames/Platforms/Android/Developers/JavaInterfaceProxy.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ddab153c9b92f203fd13d5c22458ae28","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ddab153c9b92f203fd13d5c22458ae28?name=JavaInterfaceProxy.cs","size":952},{"path":"Assets/GooglePlayGames/Platforms/Android/Developers/JavaInterfaceProxy.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a4d58534cdffb77b1e549adf7b44ccc1","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a4d58534cdffb77b1e549adf7b44ccc1?name=JavaInterfaceProxy.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Android/Developers/JavaObjWrapper.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"98aed1f8de551121f1324558f449fadb","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/98aed1f8de551121f1324558f449fadb?name=JavaObjWrapper.cs","size":15584},{"path":"Assets/GooglePlayGames/Platforms/Android/Developers/JavaObjWrapper.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"fbfa8e610a1cf3d7f018cfc26cbc617e","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fbfa8e610a1cf3d7f018cfc26cbc617e?name=JavaObjWrapper.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ded8f452621616dbdc5a698e720d446d","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ded8f452621616dbdc5a698e720d446d?name=Gms.meta","size":191},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"d7d15f1419fcfed490a567e495d884ed","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d7d15f1419fcfed490a567e495d884ed?name=Common.meta","size":191},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"97ee04a056e6fd217e7d6e038e747632","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/97ee04a056e6fd217e7d6e038e747632?name=Api.meta","size":191},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/GoogleApiClient.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"fc455ecfdcc333ea6b747339894f83ec","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fc455ecfdcc333ea6b747339894f83ec?name=GoogleApiClient.cs","size":5506},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/GoogleApiClient.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"f9ff313fb5a49f3e1b8d37fe0f7e8df8","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f9ff313fb5a49f3e1b8d37fe0f7e8df8?name=GoogleApiClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/PendingResult.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"23a1a5ce2e83574a937c2116879b8f75","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/23a1a5ce2e83574a937c2116879b8f75?name=PendingResult.cs","size":2427},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/PendingResult.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"1c65490e287e14e7c104f02f7c83818a","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1c65490e287e14e7c104f02f7c83818a?name=PendingResult.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/Result.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"594f08b548dba7a3e968ae4b5defb4f7","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/594f08b548dba7a3e968ae4b5defb4f7?name=Result.cs","size":985},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/Result.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"0869b84ba653a572b95a62d6443ce695","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0869b84ba653a572b95a62d6443ce695?name=Result.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/ResultCallback.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"9309ad5c68d8582e7e32da73f848ecf9","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9309ad5c68d8582e7e32da73f848ecf9?name=ResultCallback.cs","size":1039},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/ResultCallback.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"cc2165fe1758b4730c5a44d07b6e2002","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/cc2165fe1758b4730c5a44d07b6e2002?name=ResultCallback.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/ResultCallbackProxy.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ae80853be473485712d2e28e1b4afff2","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ae80853be473485712d2e28e1b4afff2?name=ResultCallbackProxy.cs","size":2169},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/ResultCallbackProxy.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"7117c42a44faf5b4cd7872a56fedf4cf","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7117c42a44faf5b4cd7872a56fedf4cf?name=ResultCallbackProxy.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/Status.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"fa7f7361b346c08ec2775a76927a24b1","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fa7f7361b346c08ec2775a76927a24b1?name=Status.cs","size":4391},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/Status.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"e633309f9b46288381f08ea0ecc2c20c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e633309f9b46288381f08ea0ecc2c20c?name=Status.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/ConnectionResult.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"26aa1239d3baf2c0929ac67f6fcbe146","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/26aa1239d3baf2c0929ac67f6fcbe146?name=ConnectionResult.cs","size":7975},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/ConnectionResult.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"16f9b99aebb8c683604e42be088bf49d","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/16f9b99aebb8c683604e42be088bf49d?name=ConnectionResult.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"070c5bb589111c9134f045634a289fd5","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/070c5bb589111c9134f045634a289fd5?name=Games.meta","size":191},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Games.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"3dfb9b4a29c713a290b6df8e74d958cd","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3dfb9b4a29c713a290b6df8e74d958cd?name=Games.cs","size":7935},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Games.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"e71af140e0e718ccddc5dd68b56cb479","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e71af140e0e718ccddc5dd68b56cb479?name=Games.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"d6404ad515d3c8408bd47c11f43538b7","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d6404ad515d3c8408bd47c11f43538b7?name=Stats.meta","size":191},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/LoadPlayerStatsResultObject.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a3a2cbabf5c8ffa1602fb1ee98e9e9af","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a3a2cbabf5c8ffa1602fb1ee98e9e9af?name=LoadPlayerStatsResultObject.cs","size":1742},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/LoadPlayerStatsResultObject.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"715818ae357260c44d72ee521ddf283e","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/715818ae357260c44d72ee521ddf283e?name=LoadPlayerStatsResultObject.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/PlayerStats.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"14a5b4431b2ab326716e833d68b11f13","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/14a5b4431b2ab326716e833d68b11f13?name=PlayerStats.cs","size":1346},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/PlayerStats.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"b6dea4a16bdcb0b3587e23214b506724","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b6dea4a16bdcb0b3587e23214b506724?name=PlayerStats.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/PlayerStatsObject.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"051d46f14f506927080c74ffa106fd32","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/051d46f14f506927080c74ffa106fd32?name=PlayerStatsObject.cs","size":3148},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/PlayerStatsObject.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"037d790c0daa49b29483cdbfbe28f83f","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/037d790c0daa49b29483cdbfbe28f83f?name=PlayerStatsObject.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/Stats.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"2a33df4d1f30986090fa298a6ea98e56","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2a33df4d1f30986090fa298a6ea98e56?name=Stats.cs","size":1230},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/Stats.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"83bbe99ae3058e93b3338e419de523a8","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/83bbe99ae3058e93b3338e419de523a8?name=Stats.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/StatsObject.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"2e3cb5b7504490004d3d556e476fcacb","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2e3cb5b7504490004d3d556e476fcacb?name=StatsObject.cs","size":1644},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/StatsObject.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"33dab91f8fbe5cb70c01091cd39213e6","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/33dab91f8fbe5cb70c01091cd39213e6?name=StatsObject.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/IClientImpl.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"99d2012ca436e120b4390fa3976c7341","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/99d2012ca436e120b4390fa3976c7341?name=IClientImpl.cs","size":1249},{"path":"Assets/GooglePlayGames/Platforms/IClientImpl.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"6133df87a8ff10c16df461cb0fef863e","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6133df87a8ff10c16df461cb0fef863e?name=IClientImpl.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/IOS.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"9a3521b6d43cbd4c3d5ec7834161ad53","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9a3521b6d43cbd4c3d5ec7834161ad53?name=IOS.meta","size":191},{"path":"Assets/GooglePlayGames/Platforms/IOS/IOSClient.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"36473828544bb11fd1d1cc014137c43c","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/36473828544bb11fd1d1cc014137c43c?name=IOSClient.cs","size":2290},{"path":"Assets/GooglePlayGames/Platforms/IOS/IOSClient.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"501a156e5bbd216a9781ebd192aa799f","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/501a156e5bbd216a9781ebd192aa799f?name=IOSClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/IOS/IOSTokenClient.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"80b700f3e33c54e355b1cff210e036ec","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/80b700f3e33c54e355b1cff210e036ec?name=IOSTokenClient.cs","size":4589},{"path":"Assets/GooglePlayGames/Platforms/IOS/IOSTokenClient.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"6891e604132d0a9c2815b789f0f3b499","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6891e604132d0a9c2815b789f0f3b499?name=IOSTokenClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"2f045c4b6c250e25d933c7586a232d69","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2f045c4b6c250e25d933c7586a232d69?name=Native.meta","size":191},{"path":"Assets/GooglePlayGames/Platforms/Native/CallbackUtils.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"3ee3ae52ed0eab46fc60480cc1e67bff","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3ee3ae52ed0eab46fc60480cc1e67bff?name=CallbackUtils.cs","size":2089},{"path":"Assets/GooglePlayGames/Platforms/Native/CallbackUtils.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"aed86a712f98b545174598a2d28de616","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/aed86a712f98b545174598a2d28de616?name=CallbackUtils.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/ConversionUtils.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"15ffd847350a96462192a89a8681d91d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/15ffd847350a96462192a89a8681d91d?name=ConversionUtils.cs","size":4870},{"path":"Assets/GooglePlayGames/Platforms/Native/ConversionUtils.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"75b43d37bdd7b5a678c423b19a0d2297","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/75b43d37bdd7b5a678c423b19a0d2297?name=ConversionUtils.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"f4c248687b76c3046322755c2f163d66","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f4c248687b76c3046322755c2f163d66?name=Cwrapper.meta","size":191},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Achievement.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"2a2f0d1e6e534f7fec9bcdbd4672b7cc","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2a2f0d1e6e534f7fec9bcdbd4672b7cc?name=Achievement.cs","size":3837},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Achievement.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"777eb0c9683b0fcbb54dc7243e98b09e","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/777eb0c9683b0fcbb54dc7243e98b09e?name=Achievement.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/AchievementManager.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"b24ef4eb7708abd27a08456873e5b298","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b24ef4eb7708abd27a08456873e5b298?name=AchievementManager.cs","size":4784},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/AchievementManager.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"00fcd6ccb8d5540a0909b13fa22d619a","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/00fcd6ccb8d5540a0909b13fa22d619a?name=AchievementManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/AndroidPlatformConfiguration.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"01547e3433d7f50b180746cf587fa667","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/01547e3433d7f50b180746cf587fa667?name=AndroidPlatformConfiguration.cs","size":3075},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/AndroidPlatformConfiguration.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"25df0ffe16ea57125304a0c255852386","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/25df0ffe16ea57125304a0c255852386?name=AndroidPlatformConfiguration.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Builder.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"f8cd304da016a7d9ede5c19bf82c90f6","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f8cd304da016a7d9ede5c19bf82c90f6?name=Builder.cs","size":5852},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Builder.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"f00bf7f1d3bc8fe17560e4f8c16d274c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f00bf7f1d3bc8fe17560e4f8c16d274c?name=Builder.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/CommonErrorStatus.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"669b11c30b7d5e39eaf12eed616894bc","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/669b11c30b7d5e39eaf12eed616894bc?name=CommonErrorStatus.cs","size":3307},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/CommonErrorStatus.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"cd8488523bbe525041303925d9433b09","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/cd8488523bbe525041303925d9433b09?name=CommonErrorStatus.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/EndpointDiscoveryListenerHelper.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"6a0bb1d830c83857d9689469a7f6ca29","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6a0bb1d830c83857d9689469a7f6ca29?name=EndpointDiscoveryListenerHelper.cs","size":2401},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/EndpointDiscoveryListenerHelper.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"43fd867c477b3f317863403271f40ead","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/43fd867c477b3f317863403271f40ead?name=EndpointDiscoveryListenerHelper.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Event.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"b5857d32152f94a007de99ee58064113","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b5857d32152f94a007de99ee58064113?name=Event.cs","size":2792},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Event.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"093566d24c04081e1bd630d4fda726b5","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/093566d24c04081e1bd630d4fda726b5?name=Event.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/EventManager.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"9e0b1cfc54e6973ae81feeb446029dd4","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9e0b1cfc54e6973ae81feeb446029dd4?name=EventManager.cs","size":3411},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/EventManager.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"f76b2125ffba3a86f539141b8f80c127","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f76b2125ffba3a86f539141b8f80c127?name=EventManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/GameServices.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8890b667f9715927791517ee02c686d9","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8890b667f9715927791517ee02c686d9?name=GameServices.cs","size":3282},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/GameServices.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"5ded113be209184968360e253fe680fc","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/5ded113be209184968360e253fe680fc?name=GameServices.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/InternalHooks.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8ad69370ec2d6f89cf0c93111ebbd267","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8ad69370ec2d6f89cf0c93111ebbd267?name=InternalHooks.cs","size":1235},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/InternalHooks.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a07a8fc5a1d9e6c5eeeeee2bd15bc6e8","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a07a8fc5a1d9e6c5eeeeee2bd15bc6e8?name=InternalHooks.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/IosPlatformConfiguration.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a95288aa9f42c834f3300c38d31e1050","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a95288aa9f42c834f3300c38d31e1050?name=IosPlatformConfiguration.cs","size":1677},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/IosPlatformConfiguration.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"752d15da11bed3e93589de444d16591d","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/752d15da11bed3e93589de444d16591d?name=IosPlatformConfiguration.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Leaderboard.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"7797b711c6feabbc26b7ac70a47fa759","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7797b711c6feabbc26b7ac70a47fa759?name=Leaderboard.cs","size":2262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Leaderboard.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"64f3d664151d68ab06891aae8885d61c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/64f3d664151d68ab06891aae8885d61c?name=Leaderboard.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/LeaderboardManager.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"4e8b26a03a0f85f24a228318eeef4766","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4e8b26a03a0f85f24a228318eeef4766?name=LeaderboardManager.cs","size":9405},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/LeaderboardManager.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"d49d60e97c9bcca73efc12a1f71e084c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d49d60e97c9bcca73efc12a1f71e084c?name=LeaderboardManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/MessageListenerHelper.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"d382a7c76b9f88e0a5e86a851567159d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d382a7c76b9f88e0a5e86a851567159d?name=MessageListenerHelper.cs","size":2459},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/MessageListenerHelper.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"6c653a3e1bedbb370a4b2e4b52e7f0c0","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6c653a3e1bedbb370a4b2e4b52e7f0c0?name=MessageListenerHelper.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/MultiplayerInvitation.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"66a0edb52156483cba118ce9b95e63b7","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/66a0edb52156483cba118ce9b95e63b7?name=MultiplayerInvitation.cs","size":3010},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/MultiplayerInvitation.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"7542988b94edf470b3e6ff809aecea08","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7542988b94edf470b3e6ff809aecea08?name=MultiplayerInvitation.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/MultiplayerParticipant.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8999b66cfad62566ce9531781e3177fe","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8999b66cfad62566ce9531781e3177fe?name=MultiplayerParticipant.cs","size":3661},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/MultiplayerParticipant.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"663c6ad4588667e465373aee75b9191e","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/663c6ad4588667e465373aee75b9191e?name=MultiplayerParticipant.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnectionTypes.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"1087b21ed0d3ea380d17a4b1e99a574e","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1087b21ed0d3ea380d17a4b1e99a574e?name=NearbyConnectionTypes.cs","size":6376},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnectionTypes.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"47d7801da5f8f3614879c6431abfeba6","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/47d7801da5f8f3614879c6431abfeba6?name=NearbyConnectionTypes.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnections.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ed7b8ab69f864393489bb08114094dad","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ed7b8ab69f864393489bb08114094dad?name=NearbyConnections.cs","size":5432},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnections.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"7201996d554a1bcdfa7f2bcd0d5cf268","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7201996d554a1bcdfa7f2bcd0d5cf268?name=NearbyConnections.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnectionsBuilder.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"0dbd8dc3da1741bb0696f3bb345dc1fc","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0dbd8dc3da1741bb0696f3bb345dc1fc?name=NearbyConnectionsBuilder.cs","size":3003},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnectionsBuilder.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"515817ba84585acd84fcdfe6a59805cb","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/515817ba84585acd84fcdfe6a59805cb?name=NearbyConnectionsBuilder.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnectionsStatus.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c80c0e698dd848450ab732508c16840d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c80c0e698dd848450ab732508c16840d?name=NearbyConnectionsStatus.cs","size":1115},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnectionsStatus.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"109f59104a5eed3043036a320f1ccf20","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/109f59104a5eed3043036a320f1ccf20?name=NearbyConnectionsStatus.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/ParticipantResults.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"4931223d9be365d59aec64c05e2d0797","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4931223d9be365d59aec64c05e2d0797?name=ParticipantResults.cs","size":2436},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/ParticipantResults.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"29ef2786bcb9969ccf1d8c69b2132a39","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/29ef2786bcb9969ccf1d8c69b2132a39?name=ParticipantResults.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Player.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"d7f52669b97ba33c26e47f844f4c633d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d7f52669b97ba33c26e47f844f4c633d?name=Player.cs","size":3101},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Player.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"d920604ee0a16ced5419cf1b2e6bac09","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d920604ee0a16ced5419cf1b2e6bac09?name=Player.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/PlayerManager.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"1f3f80941d0f0714ce943581b0b2e94c","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1f3f80941d0f0714ce943581b0b2e94c?name=PlayerManager.cs","size":5116},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/PlayerManager.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c00c36a41267e475396056dd7bd2037a","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c00c36a41267e475396056dd7bd2037a?name=PlayerManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/PlayerStats.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ddcc1170b233ce4a87a2ac2837ef613f","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ddcc1170b233ce4a87a2ac2837ef613f?name=PlayerStats.cs","size":4056},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/PlayerStats.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"9eee84009b8962d20eb841f6ffa5d6f7","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9eee84009b8962d20eb841f6ffa5d6f7?name=PlayerStats.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Quest.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"45d2d89ec260a77cfb4eead7b09fce60","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/45d2d89ec260a77cfb4eead7b09fce60?name=Quest.cs","size":3580},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Quest.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"5ca75fbccb1718090b577a8379fede93","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/5ca75fbccb1718090b577a8379fede93?name=Quest.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/QuestManager.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"68495627fbd60cefe5da6bc2bff5bd4b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/68495627fbd60cefe5da6bc2bff5bd4b?name=QuestManager.cs","size":7241},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/QuestManager.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a9a37f3ff4e44b3198aab390ea6785cb","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a9a37f3ff4e44b3198aab390ea6785cb?name=QuestManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/QuestMilestone.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"85fed03fc882a696e323effb7aed729d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/85fed03fc882a696e323effb7aed729d?name=QuestMilestone.cs","size":3105},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/QuestMilestone.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"3dd609747ed69dc2f5a86bcbe1f27e12","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3dd609747ed69dc2f5a86bcbe1f27e12?name=QuestMilestone.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeEventListenerHelper.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"9fdbeb1bfa4b546719d5ef198c3ef0f6","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9fdbeb1bfa4b546719d5ef198c3ef0f6?name=RealTimeEventListenerHelper.cs","size":4693},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeEventListenerHelper.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"0011f10e9d65b3e2d87f3c18cf73aa7f","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0011f10e9d65b3e2d87f3c18cf73aa7f?name=RealTimeEventListenerHelper.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeMultiplayerManager.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"57c1a9e639548cadf386f3f28a0bf80a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/57c1a9e639548cadf386f3f28a0bf80a?name=RealTimeMultiplayerManager.cs","size":9604},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeMultiplayerManager.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"d919d705c3e22eb5d4e05c2b16c407cf","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d919d705c3e22eb5d4e05c2b16c407cf?name=RealTimeMultiplayerManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeRoom.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"2e674e32978e1c3d3f3e4ee0415f3bbc","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2e674e32978e1c3d3f3e4ee0415f3bbc?name=RealTimeRoom.cs","size":3337},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeRoom.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"d4754f6418bfcd89564617577786ca53","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d4754f6418bfcd89564617577786ca53?name=RealTimeRoom.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeRoomConfig.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"9be2cc03314e71a0d203fd158fe68282","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9be2cc03314e71a0d203fd158fe68282?name=RealTimeRoomConfig.cs","size":2580},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeRoomConfig.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"802b50dbf9fe609f2d9537fe5b49cc0b","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/802b50dbf9fe609f2d9537fe5b49cc0b?name=RealTimeRoomConfig.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeRoomConfigBuilder.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"7a7c64d1ee94969cd9f70927e15e4b41","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7a7c64d1ee94969cd9f70927e15e4b41?name=RealTimeRoomConfigBuilder.cs","size":2920},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeRoomConfigBuilder.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"94a115393382c28eb0a8ba803d87ca7f","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/94a115393382c28eb0a8ba803d87ca7f?name=RealTimeRoomConfigBuilder.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Score.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"33d4c60081046120830dfe7ac11260e3","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/33d4c60081046120830dfe7ac11260e3?name=Score.cs","size":1844},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Score.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"2fe4c6a8b44491a645a2cda7bfeb8cfd","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2fe4c6a8b44491a645a2cda7bfeb8cfd?name=Score.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/ScorePage.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"f40db89b4020068bbb8c268550d6efca","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f40db89b4020068bbb8c268550d6efca?name=ScorePage.cs","size":4887},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/ScorePage.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"03598530d77cdd75dc7d36033c264257","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/03598530d77cdd75dc7d36033c264257?name=ScorePage.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/ScoreSummary.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"aaa77184b0f3f8817baa64de9d4f8296","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/aaa77184b0f3f8817baa64de9d4f8296?name=ScoreSummary.cs","size":2339},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/ScoreSummary.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"fd2c7a94293f11d22f47ec121ba0b309","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fd2c7a94293f11d22f47ec121ba0b309?name=ScoreSummary.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Sentinels.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ab585d4c5900f4cdfaf4f3c5553b36f5","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ab585d4c5900f4cdfaf4f3c5553b36f5?name=Sentinels.cs","size":1061},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Sentinels.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"733bb275edd20856d98b3dd5765dcf76","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/733bb275edd20856d98b3dd5765dcf76?name=Sentinels.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotManager.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"cb23f393a145bdbb7f1b3b12b882d3ae","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/cb23f393a145bdbb7f1b3b12b882d3ae?name=SnapshotManager.cs","size":8597},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotManager.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"4fc611a94a8cfb2a4e4c35885e2cc559","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4fc611a94a8cfb2a4e4c35885e2cc559?name=SnapshotManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotMetadata.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"b4a0cfdebc688a46c4c9229627fbdcba","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b4a0cfdebc688a46c4c9229627fbdcba?name=SnapshotMetadata.cs","size":2687},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotMetadata.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"b4dead9d7eeba6447e696c55da323b68","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b4dead9d7eeba6447e696c55da323b68?name=SnapshotMetadata.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotMetadataChange.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"f0a8917c559e14123ca5c1651e01bd1e","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f0a8917c559e14123ca5c1651e01bd1e?name=SnapshotMetadataChange.cs","size":2686},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotMetadataChange.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"b6e682c465c47b1359875ae7060d19f9","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b6e682c465c47b1359875ae7060d19f9?name=SnapshotMetadataChange.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotMetadataChangeBuilder.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"b27ac86a4e5c9e0a39594c0de9457aa8","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b27ac86a4e5c9e0a39594c0de9457aa8?name=SnapshotMetadataChangeBuilder.cs","size":2232},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotMetadataChangeBuilder.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"4e4885881f2f91e4f92e63c9f0993faa","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4e4885881f2f91e4f92e63c9f0993faa?name=SnapshotMetadataChangeBuilder.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/StatsManager.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ce25b78870b100cdf65282241300ff5b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ce25b78870b100cdf65282241300ff5b?name=StatsManager.cs","size":2043},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/StatsManager.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"da8d5c0927f96364d00b17182d81bd4d","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/da8d5c0927f96364d00b17182d81bd4d?name=StatsManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Status.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"2aa4e80607d80e8c6fe6d3d71a28fa0b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2aa4e80607d80e8c6fe6d3d71a28fa0b?name=Status.cs","size":3451},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Status.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"4cf0c68da5fefb3fbbf9e2304304c822","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4cf0c68da5fefb3fbbf9e2304304c822?name=Status.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SymbolLocation.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"58a4773c40f6835513b35521a27cb8f6","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/58a4773c40f6835513b35521a27cb8f6?name=SymbolLocation.cs","size":1038},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SymbolLocation.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"df9d9e3213637c97f4c2ee231174259b","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/df9d9e3213637c97f4c2ee231174259b?name=SymbolLocation.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMatch.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"aac232d6ea6cf941b72b96126b114560","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/aac232d6ea6cf941b72b96126b114560?name=TurnBasedMatch.cs","size":5947},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMatch.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a0e8925d93ade94e86f8012f6d7095d9","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a0e8925d93ade94e86f8012f6d7095d9?name=TurnBasedMatch.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMatchConfig.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"5bfcb6e52a3e70451a4790a849655082","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/5bfcb6e52a3e70451a4790a849655082?name=TurnBasedMatchConfig.cs","size":2599},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMatchConfig.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ae00090dc382a7cd438f1f3b36188f00","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ae00090dc382a7cd438f1f3b36188f00?name=TurnBasedMatchConfig.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMatchConfigBuilder.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8792df944fd95b7371cb75781c0ccc00","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8792df944fd95b7371cb75781c0ccc00?name=TurnBasedMatchConfigBuilder.cs","size":2924},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMatchConfigBuilder.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"93b4bfa538a25e478fc1954592aea29f","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/93b4bfa538a25e478fc1954592aea29f?name=TurnBasedMatchConfigBuilder.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMultiplayerManager.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"0390ef01eae99dcb368c81f22538407a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0390ef01eae99dcb368c81f22538407a?name=TurnBasedMultiplayerManager.cs","size":13308},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMultiplayerManager.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"6c7ed418799bf886a0d74cf5e87a2f60","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6c7ed418799bf886a0d74cf5e87a2f60?name=TurnBasedMultiplayerManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Types.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"d9a041972d90f0363b620b46e772d31b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d9a041972d90f0363b620b46e772d31b?name=Types.cs","size":3939},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Types.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"48ef37ba2d68c7ceb4de725fb73f7e11","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/48ef37ba2d68c7ceb4de725fb73f7e11?name=Types.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/JavaUtils.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"0b26ad8ca92d82e6efa9f810aa9b3923","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0b26ad8ca92d82e6efa9f810aa9b3923?name=JavaUtils.cs","size":2659},{"path":"Assets/GooglePlayGames/Platforms/Native/JavaUtils.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"7260fbd12d3caeae061beb41459015fe","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7260fbd12d3caeae061beb41459015fe?name=JavaUtils.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeClient.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"4f4de88ef16398e13ef3ee3c9a55ff3a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4f4de88ef16398e13ef3ee3c9a55ff3a?name=NativeClient.cs","size":47593},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeClient.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"e413765368d70215ec8b5d05464a55bd","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e413765368d70215ec8b5d05464a55bd?name=NativeClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeEventClient.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"2cdc5cf4fc26f0c7c17db47666eabb02","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2cdc5cf4fc26f0c7c17db47666eabb02?name=NativeEventClient.cs","size":3299},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeEventClient.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"cccf4691d140eb6fe74a7fe95b58456c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/cccf4691d140eb6fe74a7fe95b58456c?name=NativeEventClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeNearbyConnectionClientFactory.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"44ed33a83bc0f18671122ffeaeef4374","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/44ed33a83bc0f18671122ffeaeef4374?name=NativeNearbyConnectionClientFactory.cs","size":2986},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeNearbyConnectionClientFactory.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"6bf900a6747ea71f31d948afcf7ff490","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6bf900a6747ea71f31d948afcf7ff490?name=NativeNearbyConnectionClientFactory.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeNearbyConnectionsClient.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"d0a183b573b19b1d8db3c885865ac647","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d0a183b573b19b1d8db3c885865ac647?name=NativeNearbyConnectionsClient.cs","size":11504},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeNearbyConnectionsClient.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8674d81e6b70dd3023f68c3bb0d7f28c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8674d81e6b70dd3023f68c3bb0d7f28c?name=NativeNearbyConnectionsClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeQuestClient.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c08ac3be4f24500c6f7896da2a50757d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c08ac3be4f24500c6f7896da2a50757d?name=NativeQuestClient.cs","size":11135},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeQuestClient.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"54eaf1e5bd55bd1ffd0078cb6c9f12be","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/54eaf1e5bd55bd1ffd0078cb6c9f12be?name=NativeQuestClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeRealtimeMultiplayerClient.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"0c365901fe32a38ef2847021ce2965e8","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0c365901fe32a38ef2847021ce2965e8?name=NativeRealtimeMultiplayerClient.cs","size":56419},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeRealtimeMultiplayerClient.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"2adc2ca50c57fffea301f74703af86ab","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2adc2ca50c57fffea301f74703af86ab?name=NativeRealtimeMultiplayerClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeSavedGameClient.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"18c0e035a9acb09563cf7fa28562bbf1","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/18c0e035a9acb09563cf7fa28562bbf1?name=NativeSavedGameClient.cs","size":26599},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeSavedGameClient.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"3dc832ad9ef5111489a4d96c38e65158","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3dc832ad9ef5111489a4d96c38e65158?name=NativeSavedGameClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeTurnBasedMultiplayerClient.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"912ff80b683e4cc11a7da0f132044095","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/912ff80b683e4cc11a7da0f132044095?name=NativeTurnBasedMultiplayerClient.cs","size":23411},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeTurnBasedMultiplayerClient.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"dea59c2adc89af7ebb38f5309fcd0b90","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/dea59c2adc89af7ebb38f5309fcd0b90?name=NativeTurnBasedMultiplayerClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"e3b8699adad64fa6e167b85dc932b38d","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e3b8699adad64fa6e167b85dc932b38d?name=PInvoke.meta","size":191},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/AchievementManager.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"590099f747dd6916322985fcd8ca83f6","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/590099f747dd6916322985fcd8ca83f6?name=AchievementManager.cs","size":6726},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/AchievementManager.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"bb385737f8601884a85a8b4f19c75b8a","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bb385737f8601884a85a8b4f19c75b8a?name=AchievementManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/AndroidPlatformConfiguration.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"663947ae9ab025cd097fbd9cb20404e9","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/663947ae9ab025cd097fbd9cb20404e9?name=AndroidPlatformConfiguration.cs","size":2253},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/AndroidPlatformConfiguration.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"4a17217427b6e4f71d70f5927b0bfd0b","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4a17217427b6e4f71d70f5927b0bfd0b?name=AndroidPlatformConfiguration.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/BaseReferenceHolder.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"4ac187e156bc5ee42e2b7cbdb9d4b2fe","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4ac187e156bc5ee42e2b7cbdb9d4b2fe?name=BaseReferenceHolder.cs","size":2764},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/BaseReferenceHolder.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ee1c413814f94bf6b44d759d70834ee6","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ee1c413814f94bf6b44d759d70834ee6?name=BaseReferenceHolder.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/Callbacks.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"16f8a28311b162a8fc9e526a4afbca69","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/16f8a28311b162a8fc9e526a4afbca69?name=Callbacks.cs","size":8529},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/Callbacks.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"2bd23e03b3024791d9c82cb243dbdb82","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2bd23e03b3024791d9c82cb243dbdb82?name=Callbacks.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/EventManager.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a174550e2082a5d7cb4ff6f76e82c454","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a174550e2082a5d7cb4ff6f76e82c454?name=EventManager.cs","size":5357},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/EventManager.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"97383ad32ea5b13a8b15bb761e87ad2f","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/97383ad32ea5b13a8b15bb761e87ad2f?name=EventManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/GameServices.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"e5e33e12b3f9ba5a74d6a7284ad0d855","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e5e33e12b3f9ba5a74d6a7284ad0d855?name=GameServices.cs","size":4176},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/GameServices.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"fdee8d2108dbd19ef81dba952c2d5aae","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fdee8d2108dbd19ef81dba952c2d5aae?name=GameServices.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/GameServicesBuilder.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"3af2f845979a3782da99da71203cceab","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3af2f845979a3782da99da71203cceab?name=GameServicesBuilder.cs","size":7711},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/GameServicesBuilder.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"bbb3aae2b02839ba1155d60953e1e73f","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bbb3aae2b02839ba1155d60953e1e73f?name=GameServicesBuilder.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/IosPlatformConfiguration.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"15e5f59cba3e56265aa1db73c33db84d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/15e5f59cba3e56265aa1db73c33db84d?name=IosPlatformConfiguration.cs","size":1658},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/IosPlatformConfiguration.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"512857c39f13a4e4efe200c1e41c0843","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/512857c39f13a4e4efe200c1e41c0843?name=IosPlatformConfiguration.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/LeaderboardManager.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"4a54d224127e5ffd0feb96083d96a5fd","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4a54d224127e5ffd0feb96083d96a5fd?name=LeaderboardManager.cs","size":14562},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/LeaderboardManager.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"06b7537d20080ab3280d2bc8ce405631","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/06b7537d20080ab3280d2bc8ce405631?name=LeaderboardManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/MultiplayerInvitation.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"5f2b83ee685ba4e1dce4014eec27f068","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/5f2b83ee685ba4e1dce4014eec27f068?name=MultiplayerInvitation.cs","size":3950},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/MultiplayerInvitation.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a55c18700e8496895870527028795e38","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a55c18700e8496895870527028795e38?name=MultiplayerInvitation.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/MultiplayerParticipant.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"b9d810e1cde652a4a8a01c6b1d59e431","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b9d810e1cde652a4a8a01c6b1d59e431?name=MultiplayerParticipant.cs","size":4489},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/MultiplayerParticipant.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"f677cf65edb922fd3b6e70c97afae0ce","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f677cf65edb922fd3b6e70c97afae0ce?name=MultiplayerParticipant.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeAchievement.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"f4faeb01200b3996c8e48754b9f17b4c","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f4faeb01200b3996c8e48754b9f17b4c?name=NativeAchievement.cs","size":4537},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeAchievement.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"6c7ebaf1f35f7c8fdf338106c334465f","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6c7ebaf1f35f7c8fdf338106c334465f?name=NativeAchievement.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeAppIdentifier.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"6d9579ad662d48bff1326b134f8025d5","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6d9579ad662d48bff1326b134f8025d5?name=NativeAppIdentifier.cs","size":1879},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeAppIdentifier.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"78f5b271142a3f8c5c6bd1b0b0ea4fc3","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/78f5b271142a3f8c5c6bd1b0b0ea4fc3?name=NativeAppIdentifier.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeConnectionRequest.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"503b7d3c12ea30b1a68cdef6ce9bedda","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/503b7d3c12ea30b1a68cdef6ce9bedda?name=NativeConnectionRequest.cs","size":2982},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeConnectionRequest.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"137469b4f889935b333a52956586b77c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/137469b4f889935b333a52956586b77c?name=NativeConnectionRequest.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeConnectionResponse.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"56f846bd8a36f5d622caafff5fa810dc","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/56f846bd8a36f5d622caafff5fa810dc?name=NativeConnectionResponse.cs","size":3578},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeConnectionResponse.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"3832dc854089896776c61505045a0e03","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3832dc854089896776c61505045a0e03?name=NativeConnectionResponse.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeEndpointDetails.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"40341ded84d34379850a0c7fa35921e6","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/40341ded84d34379850a0c7fa35921e6?name=NativeEndpointDetails.cs","size":2625},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeEndpointDetails.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"3c2281ab3d7df82ee0d40d20631b46b9","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3c2281ab3d7df82ee0d40d20631b46b9?name=NativeEndpointDetails.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeEndpointDiscoveryListenerHelper.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"60d9e963170ee7e94d448e8b1fc296a9","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/60d9e963170ee7e94d448e8b1fc296a9?name=NativeEndpointDiscoveryListenerHelper.cs","size":3467},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeEndpointDiscoveryListenerHelper.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"1fd224525f642c4b85a50910183f539a","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1fd224525f642c4b85a50910183f539a?name=NativeEndpointDiscoveryListenerHelper.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeEvent.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a66083cb59908818cf24b65c58ccfe03","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a66083cb59908818cf24b65c58ccfe03?name=NativeEvent.cs","size":3520},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeEvent.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c7f2efdfee97576b0e1ea04beabe7bb7","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c7f2efdfee97576b0e1ea04beabe7bb7?name=NativeEvent.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeLeaderboard.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"262b0faeb1d8627debfcc95da52bbcde","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/262b0faeb1d8627debfcc95da52bbcde?name=NativeLeaderboard.cs","size":1673},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeLeaderboard.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ddeabc4028914fb23834a6e54ead93b7","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ddeabc4028914fb23834a6e54ead93b7?name=NativeLeaderboard.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeMessageListenerHelper.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"10b8526bc132ba4c3678425bfa15c48d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/10b8526bc132ba4c3678425bfa15c48d?name=NativeMessageListenerHelper.cs","size":3895},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeMessageListenerHelper.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"5967bb5b0598c5ac2b8e8caf4adbc752","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/5967bb5b0598c5ac2b8e8caf4adbc752?name=NativeMessageListenerHelper.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativePlayer.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"7d7394764821623eda0320773ba76a05","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7d7394764821623eda0320773ba76a05?name=NativePlayer.cs","size":2084},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativePlayer.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a9cecc649b6e079d3f224d82aae69946","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a9cecc649b6e079d3f224d82aae69946?name=NativePlayer.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativePlayerStats.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a5a9c4f13e0f4876a9ce712c9b512f57","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a5a9c4f13e0f4876a9ce712c9b512f57?name=NativePlayerStats.cs","size":4048},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativePlayerStats.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"bcd68fc9f0560851e56df8b3a3bdc1a8","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bcd68fc9f0560851e56df8b3a3bdc1a8?name=NativePlayerStats.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeQuest.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"53ef720a556cb8bbc6d10b53d3196ffb","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/53ef720a556cb8bbc6d10b53d3196ffb?name=NativeQuest.cs","size":5524},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeQuest.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"be5c84954e723f907ac67eab124ea47e","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/be5c84954e723f907ac67eab124ea47e?name=NativeQuest.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeQuestMilestone.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"d3bbe771f7fdbe9e70d185b1b2fb7edd","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d3bbe771f7fdbe9e70d185b1b2fb7edd?name=NativeQuestMilestone.cs","size":4239},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeQuestMilestone.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"6688591874dce707b13fc8f3b5a27cdb","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6688591874dce707b13fc8f3b5a27cdb?name=NativeQuestMilestone.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeRealTimeRoom.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"cbb592a2811e655b22626b71f887305f","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/cbb592a2811e655b22626b71f887305f?name=NativeRealTimeRoom.cs","size":2463},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeRealTimeRoom.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"3b87273949d1072a398abe2e5f3056db","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3b87273949d1072a398abe2e5f3056db?name=NativeRealTimeRoom.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScore.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"063986b6f7e03694a7b5a337dfcf8149","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/063986b6f7e03694a7b5a337dfcf8149?name=NativeScore.cs","size":2819},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScore.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a374787de9edf9d7d070f545c436048d","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a374787de9edf9d7d070f545c436048d?name=NativeScore.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScoreEntry.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"e215aa50af54f8f942f8907943caba42","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e215aa50af54f8f942f8907943caba42?name=NativeScoreEntry.cs","size":2542},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScoreEntry.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"77b8f001749db6364effc29ab2e9ebf5","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/77b8f001749db6364effc29ab2e9ebf5?name=NativeScoreEntry.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScorePage.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a4b9b9174027010bab209e7dbc8f638e","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a4b9b9174027010bab209e7dbc8f638e?name=NativeScorePage.cs","size":3612},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScorePage.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8717230490d752344230066cac9d85a3","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8717230490d752344230066cac9d85a3?name=NativeScorePage.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScorePageToken.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"5f3cb4489b0b6335a3bae3659c1bba0f","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/5f3cb4489b0b6335a3bae3659c1bba0f?name=NativeScorePageToken.cs","size":1251},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScorePageToken.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"343a7a87c20df8b605bb0c4924549b4a","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/343a7a87c20df8b605bb0c4924549b4a?name=NativeScorePageToken.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScoreSummary.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a803efb960d459bbf80dc3991957282b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a803efb960d459bbf80dc3991957282b?name=NativeScoreSummary.cs","size":1798},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScoreSummary.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"5cc899fef2bf4dead76ed92287bd622b","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/5cc899fef2bf4dead76ed92287bd622b?name=NativeScoreSummary.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeSnapshotMetadata.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"b57cb994dbd039852eee78d942274b13","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b57cb994dbd039852eee78d942274b13?name=NativeSnapshotMetadata.cs","size":3662},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeSnapshotMetadata.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"7ae90b444929c41ba376fe8d44dd5d93","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7ae90b444929c41ba376fe8d44dd5d93?name=NativeSnapshotMetadata.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeSnapshotMetadataChange.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8192b6b11ea7b37e6341b8d1baf0ada9","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8192b6b11ea7b37e6341b8d1baf0ada9?name=NativeSnapshotMetadataChange.cs","size":3064},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeSnapshotMetadataChange.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8cb00093d6cadd8fef678f9292ae4c32","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8cb00093d6cadd8fef678f9292ae4c32?name=NativeSnapshotMetadataChange.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeStartAdvertisingResult.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"b7ef5c002841c425f96d4f59e3b8fd53","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b7ef5c002841c425f96d4f59e3b8fd53?name=NativeStartAdvertisingResult.cs","size":2260},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeStartAdvertisingResult.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"3c0d3acba970b18f603e886a2ce32ee5","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3c0d3acba970b18f603e886a2ce32ee5?name=NativeStartAdvertisingResult.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeTurnBasedMatch.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c4fdecbef6c27ad5904afdc04196adc3","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c4fdecbef6c27ad5904afdc04196adc3?name=NativeTurnBasedMatch.cs","size":9271},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeTurnBasedMatch.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"3813522474752c898f6e6d5e0b678e7a","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3813522474752c898f6e6d5e0b678e7a?name=NativeTurnBasedMatch.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NearbyConnectionsManager.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"7221599109f3fd189ac39deabc39bb09","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7221599109f3fd189ac39deabc39bb09?name=NearbyConnectionsManager.cs","size":8708},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NearbyConnectionsManager.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"546304960d12951cdba024580272d1a9","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/546304960d12951cdba024580272d1a9?name=NearbyConnectionsManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NearbyConnectionsManagerBuilder.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a4996df4da6118bd0262b135f7ce30f6","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a4996df4da6118bd0262b135f7ce30f6?name=NearbyConnectionsManagerBuilder.cs","size":3545},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NearbyConnectionsManagerBuilder.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"9b7bcf9319d769b8ef5f9cc8e386b231","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9b7bcf9319d769b8ef5f9cc8e386b231?name=NearbyConnectionsManagerBuilder.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/PInvokeUtilities.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"e6813947947d4e167a29ca1c93a44969","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e6813947947d4e167a29ca1c93a44969?name=PInvokeUtilities.cs","size":4250},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/PInvokeUtilities.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"593edcaed4bc47cd5709cf99e3533b8a","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/593edcaed4bc47cd5709cf99e3533b8a?name=PInvokeUtilities.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/ParticipantResults.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"9b1d4cb975da8cc17d4eb05d65606fd4","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9b1d4cb975da8cc17d4eb05d65606fd4?name=ParticipantResults.cs","size":2246},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/ParticipantResults.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"f10bb03c6eaf76e25228ec68ea7b81c2","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f10bb03c6eaf76e25228ec68ea7b81c2?name=ParticipantResults.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/PlatformConfiguration.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"e4c2bc89929f4384cbee90e88ef6f577","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e4c2bc89929f4384cbee90e88ef6f577?name=PlatformConfiguration.cs","size":1136},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/PlatformConfiguration.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a7e1ca1805044a3b191edf37577e07fe","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a7e1ca1805044a3b191edf37577e07fe?name=PlatformConfiguration.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/PlayerManager.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"038b848e195af89c9589e0213f079b9b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/038b848e195af89c9589e0213f079b9b?name=PlayerManager.cs","size":9079},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/PlayerManager.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8ac63595d10ce3797bdcfee2583afbce","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8ac63595d10ce3797bdcfee2583afbce?name=PlayerManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/PlayerSelectUIResponse.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"b9315d73c1930bf14bb208079d7032e3","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b9315d73c1930bf14bb208079d7032e3?name=PlayerSelectUIResponse.cs","size":3089},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/PlayerSelectUIResponse.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"1b748d83d566caba473d1fe5e06b9e07","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1b748d83d566caba473d1fe5e06b9e07?name=PlayerSelectUIResponse.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/QuestManager.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"466b77a90ec7ae67c345fbbff9f9e3f1","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/466b77a90ec7ae67c345fbbff9f9e3f1?name=QuestManager.cs","size":13061},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/QuestManager.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"13454c1c72ec0ea401d07e3e84dbb524","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/13454c1c72ec0ea401d07e3e84dbb524?name=QuestManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/RealTimeEventListenerHelper.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"b8201726f5b4ed5bde44f9258be12233","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b8201726f5b4ed5bde44f9258be12233?name=RealTimeEventListenerHelper.cs","size":9632},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/RealTimeEventListenerHelper.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ff80a29a0e42dc7648807420ff6e142e","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ff80a29a0e42dc7648807420ff6e142e?name=RealTimeEventListenerHelper.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/RealtimeManager.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"5d77bad740bad45c205c0a903dd894c3","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/5d77bad740bad45c205c0a903dd894c3?name=RealtimeManager.cs","size":14947},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/RealtimeManager.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"85f1431895f80b7940d5da2dae6ab746","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/85f1431895f80b7940d5da2dae6ab746?name=RealtimeManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/RealtimeRoomConfig.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"12f18a5c998c0a9145ab5e45dc5948a3","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/12f18a5c998c0a9145ab5e45dc5948a3?name=RealtimeRoomConfig.cs","size":1644},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/RealtimeRoomConfig.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"4f33f0b75d938be9aa6f26e1d56ab417","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4f33f0b75d938be9aa6f26e1d56ab417?name=RealtimeRoomConfig.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/RealtimeRoomConfigBuilder.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ce9b6c5d6f70b6a3233d48e119e31e18","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ce9b6c5d6f70b6a3233d48e119e31e18?name=RealtimeRoomConfigBuilder.cs","size":3208},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/RealtimeRoomConfigBuilder.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"b2bedfb0555974550de5ff6cbb6a072c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b2bedfb0555974550de5ff6cbb6a072c?name=RealtimeRoomConfigBuilder.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/SnapshotManager.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"e53daf9bade397a9cf5ff17ee389a722","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e53daf9bade397a9cf5ff17ee389a722?name=SnapshotManager.cs","size":14530},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/SnapshotManager.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"f6f11b5a01e40861e09d9affe0922044","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f6f11b5a01e40861e09d9affe0922044?name=SnapshotManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/StatsManager.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"aaac9076d5bc59b533d9aeeb762a01eb","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/aaac9076d5bc59b533d9aeeb762a01eb?name=StatsManager.cs","size":3059},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/StatsManager.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"d1084889bf23d0d2433f5e61d5da5042","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d1084889bf23d0d2433f5e61d5da5042?name=StatsManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/TurnBasedManager.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a2ab53172f4ec013f55d98c4ce3c7762","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a2ab53172f4ec013f55d98c4ce3c7762?name=TurnBasedManager.cs","size":17000},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/TurnBasedManager.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"72595a51d6f7c1e837d6e6d959cf6e67","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/72595a51d6f7c1e837d6e6d959cf6e67?name=TurnBasedManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/TurnBasedMatchConfig.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c484f01d13d33549c70e175851dd4264","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c484f01d13d33549c70e175851dd4264?name=TurnBasedMatchConfig.cs","size":2525},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/TurnBasedMatchConfig.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"1cdf0a753f6902a743624b0a74f4f024","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1cdf0a753f6902a743624b0a74f4f024?name=TurnBasedMatchConfig.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/TurnBasedMatchConfigBuilder.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"b10ea1c0f79596eaba6faf57e58da14b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b10ea1c0f79596eaba6faf57e58da14b?name=TurnBasedMatchConfigBuilder.cs","size":3113},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/TurnBasedMatchConfigBuilder.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"0aa484c0f703bf2546a108576033d89c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0aa484c0f703bf2546a108576033d89c?name=TurnBasedMatchConfigBuilder.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/UnsupportedSavedGamesClient.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"66da6b0006119409d1c862c8f684193a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/66da6b0006119409d1c862c8f684193a?name=UnsupportedSavedGamesClient.cs","size":3179},{"path":"Assets/GooglePlayGames/Platforms/Native/UnsupportedSavedGamesClient.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"b9a3c4d72c7ca3d43b53bcde26667e44","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b9a3c4d72c7ca3d43b53bcde26667e44?name=UnsupportedSavedGamesClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/NearbyConnectionClientFactory.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"bd72f14f31090a83ef9c7923f92b2724","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bd72f14f31090a83ef9c7923f92b2724?name=NearbyConnectionClientFactory.cs","size":2774},{"path":"Assets/GooglePlayGames/Platforms/NearbyConnectionClientFactory.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c76b4b39116ff18fc66c6e3f416073dd","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c76b4b39116ff18fc66c6e3f416073dd?name=NearbyConnectionClientFactory.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/PlayGamesClientFactory.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c4b366a6b76097f54b5e25aaceacd5d6","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c4b366a6b76097f54b5e25aaceacd5d6?name=PlayGamesClientFactory.cs","size":2045},{"path":"Assets/GooglePlayGames/Platforms/PlayGamesClientFactory.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"101c96abc52bce7886d8999e0d40aba5","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/101c96abc52bce7886d8999e0d40aba5?name=PlayGamesClientFactory.cs.meta","size":178},{"path":"Assets/GooglePlayGames/Platforms/TokenClient.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"84b9cfcef5ed7ade3492e2838ea24103","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/84b9cfcef5ed7ade3492e2838ea24103?name=TokenClient.cs","size":2332},{"path":"Assets/GooglePlayGames/Platforms/TokenClient.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"bbc51312d4bf6dc45084b801fa738387","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bbc51312d4bf6dc45084b801fa738387?name=TokenClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/PluginVersion.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"2f0c7f866d388990a2ab50e1e8add40b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2f0c7f866d388990a2ab50e1e8add40b?name=PluginVersion.cs","size":1834},{"path":"Assets/GooglePlayGames/PluginVersion.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"42f8011ed5d5e47163096d268c28a3a8","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/42f8011ed5d5e47163096d268c28a3a8?name=PluginVersion.cs.meta","size":178},{"path":"Assets/PlayServicesResolver.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"bfcf6ada29c3849f50098f0659e5785a","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bfcf6ada29c3849f50098f0659e5785a?name=PlayServicesResolver.meta","size":191},{"path":"Assets/PlayServicesResolver/Editor.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"1fa874a09f9ccadfd39309c708656a41","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1fa874a09f9ccadfd39309c708656a41?name=Editor.meta","size":191},{"path":"Assets/PlayServicesResolver/Editor/Google.IOSResolver.dll","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"9f3ab331bdbb49616f3b291125a4c9c5","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9f3ab331bdbb49616f3b291125a4c9c5?name=Google.IOSResolver.dll","size":23552},{"path":"Assets/PlayServicesResolver/Editor/Google.IOSResolver.dll.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"3292f19c263d390de1d961bee2a90204","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3292f19c263d390de1d961bee2a90204?name=Google.IOSResolver.dll.meta","size":530},{"path":"Assets/PlayServicesResolver/Editor/Google.JarResolver.dll","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"35df9d5301e3a0137676c2b7af0fb770","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/35df9d5301e3a0137676c2b7af0fb770?name=Google.JarResolver.dll","size":54784},{"path":"Assets/PlayServicesResolver/Editor/Google.JarResolver.dll.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c1ae0b6726805db4503e5511303c6037","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c1ae0b6726805db4503e5511303c6037?name=Google.JarResolver.dll.meta","size":530},{"path":"Assets/PlayServicesResolver/Editor/Google.VersionHandler.dll","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"4c8769000f10c4002c211fdf8c45b3a6","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4c8769000f10c4002c211fdf8c45b3a6?name=Google.VersionHandler.dll","size":23040},{"path":"Assets/PlayServicesResolver/Editor/Google.VersionHandler.dll.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"1b588e935e36271683edd4e34cebb9cf","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1b588e935e36271683edd4e34cebb9cf?name=Google.VersionHandler.dll.meta","size":529},{"path":"Assets/PlayServicesResolver/Editor/play-services-resolver.txt","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"bd1641839743415a15da1ace8732e631","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bd1641839743415a15da1ace8732e631?name=play-services-resolver.txt","size":180},{"path":"Assets/PlayServicesResolver/Editor/play-services-resolver.txt.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"bcb23ba2f829d10467b04db45c153509","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bcb23ba2f829d10467b04db45c153509?name=play-services-resolver.txt.meta","size":221},{"path":"Assets/Plugins.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"d27141b151d469a8264e9ff382e6981f","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d27141b151d469a8264e9ff382e6981f?name=Plugins.meta","size":192},{"path":"Assets/Plugins/Android.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"5acce9b91a6fc65fdaf9e60d4a4a5675","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/5acce9b91a6fc65fdaf9e60d4a4a5675?name=Android.meta","size":192},{"path":"Assets/Plugins/Android/MainLibProj.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"cc4999751818fddcb036702386e83604","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/cc4999751818fddcb036702386e83604?name=MainLibProj.meta","size":387},{"path":"Assets/Plugins/Android/MainLibProj/AndroidManifest.xml","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c0f26e27b1da6f9af5a5f67e4698d076","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c0f26e27b1da6f9af5a5f67e4698d076?name=AndroidManifest.xml","size":1236},{"path":"Assets/Plugins/Android/MainLibProj/AndroidManifest.xml.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"d34c95e74325d49dcc6e9b5bcbde1ed3","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d34c95e74325d49dcc6e9b5bcbde1ed3?name=AndroidManifest.xml.meta","size":178},{"path":"Assets/Plugins/Android/MainLibProj/libs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"71feb8a4c32cd2f3abebdc671027c57b","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/71feb8a4c32cd2f3abebdc671027c57b?name=libs.meta","size":107},{"path":"Assets/Plugins/Android/MainLibProj/libs/play-games-plugin-support.jar","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"2c2f1a3662a3a1bc9e0b1780c8dd5138","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2c2f1a3662a3a1bc9e0b1780c8dd5138?name=play-games-plugin-support.jar","size":13578},{"path":"Assets/Plugins/Android/MainLibProj/libs/play-games-plugin-support.jar.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"e7ae9ff8436850de3fca6f04574aaef4","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e7ae9ff8436850de3fca6f04574aaef4?name=play-games-plugin-support.jar.meta","size":174},{"path":"Assets/Plugins/Android/MainLibProj/project.properties","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"bece06172d0596e1f15cd61935851d87","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bece06172d0596e1f15cd61935851d87?name=project.properties","size":39},{"path":"Assets/Plugins/Android/MainLibProj/project.properties.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"e0164a203a562bbac747092110f1c89c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e0164a203a562bbac747092110f1c89c?name=project.properties.meta","size":90},{"path":"Assets/Plugins/Android/libs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"b59b82366f31634e7f956fff026b2b9b","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b59b82366f31634e7f956fff026b2b9b?name=libs.meta","size":191},{"path":"Assets/Plugins/Android/libs/armeabi-v7a.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"1e4dc62f4aba6fd805ae20331413de2f","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1e4dc62f4aba6fd805ae20331413de2f?name=armeabi-v7a.meta","size":191},{"path":"Assets/Plugins/Android/libs/armeabi-v7a/libgpg.so","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"bb7417380e9310ed6296ce2af51eff3a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bb7417380e9310ed6296ce2af51eff3a?name=libgpg.so","size":1323968},{"path":"Assets/Plugins/Android/libs/armeabi-v7a/libgpg.so.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"b94cb675066547500413d7c9978a25bf","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b94cb675066547500413d7c9978a25bf?name=libgpg.so.meta","size":476},{"path":"Assets/Plugins/Android/libs/x86.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"cfc1e531355894ea280bfdc481b051de","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/cfc1e531355894ea280bfdc481b051de?name=x86.meta","size":191},{"path":"Assets/Plugins/Android/libs/x86/libgpg.so","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a697ebc589452db4a1acf3bcd5db60b2","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a697ebc589452db4a1acf3bcd5db60b2?name=libgpg.so","size":2298660},{"path":"Assets/Plugins/Android/libs/x86/libgpg.so.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8b558b8849dbb773846f68a3b4a0c23c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8b558b8849dbb773846f68a3b4a0c23c?name=libgpg.so.meta","size":474},{"path":"Assets/Plugins/Android/play-services-auth-10.0.1.aar","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"3fda7de334c420e1cfb847db2328096b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3fda7de334c420e1cfb847db2328096b?name=play-services-auth-10.0.1.aar","size":74878},{"path":"Assets/Plugins/Android/play-services-auth-10.0.1.aar.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"d9404285fca36a7f5f3348468a45f48e","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d9404285fca36a7f5f3348468a45f48e?name=play-services-auth-10.0.1.aar.meta","size":461},{"path":"Assets/Plugins/Android/play-services-auth-base-10.0.1.aar","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"1df42455ec3ae0d3723faadd26e4b0c9","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1df42455ec3ae0d3723faadd26e4b0c9?name=play-services-auth-base-10.0.1.aar","size":57390},{"path":"Assets/Plugins/Android/play-services-auth-base-10.0.1.aar.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"2bbdd258d2598670bee568d530b011d5","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2bbdd258d2598670bee568d530b011d5?name=play-services-auth-base-10.0.1.aar.meta","size":461},{"path":"Assets/Plugins/Android/play-services-base-10.0.1.aar","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"f02be27d964d4f41c675ad6a80efb0a6","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f02be27d964d4f41c675ad6a80efb0a6?name=play-services-base-10.0.1.aar","size":462733},{"path":"Assets/Plugins/Android/play-services-base-10.0.1.aar.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c5dc1323c0f8672a42505086dd5f2623","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c5dc1323c0f8672a42505086dd5f2623?name=play-services-base-10.0.1.aar.meta","size":461},{"path":"Assets/Plugins/Android/play-services-basement-10.0.1.aar","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"10df71889235a2040f67d36bc1982576","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/10df71889235a2040f67d36bc1982576?name=play-services-basement-10.0.1.aar","size":341364},{"path":"Assets/Plugins/Android/play-services-basement-10.0.1.aar.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"7ca7fca6e46b426be15a7565bde3ada1","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7ca7fca6e46b426be15a7565bde3ada1?name=play-services-basement-10.0.1.aar.meta","size":461},{"path":"Assets/Plugins/Android/play-services-drive-10.0.1.aar","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"2bc05f67337eef71d054f3b3aaf06753","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2bc05f67337eef71d054f3b3aaf06753?name=play-services-drive-10.0.1.aar","size":362804},{"path":"Assets/Plugins/Android/play-services-drive-10.0.1.aar.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"449919d825448c408f0ec8fd7bcc8116","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/449919d825448c408f0ec8fd7bcc8116?name=play-services-drive-10.0.1.aar.meta","size":461},{"path":"Assets/Plugins/Android/play-services-games-10.0.1.aar","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"fe817a580fece7fea406bc92688881b1","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fe817a580fece7fea406bc92688881b1?name=play-services-games-10.0.1.aar","size":557817},{"path":"Assets/Plugins/Android/play-services-games-10.0.1.aar.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"207a3c3e5ba14d698e18d2053e40de7f","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/207a3c3e5ba14d698e18d2053e40de7f?name=play-services-games-10.0.1.aar.meta","size":461},{"path":"Assets/Plugins/Android/play-services-nearby-10.0.1.aar","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"0af01ae35dffb226de0d1efdff0b12ee","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0af01ae35dffb226de0d1efdff0b12ee?name=play-services-nearby-10.0.1.aar","size":159662},{"path":"Assets/Plugins/Android/play-services-nearby-10.0.1.aar.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"7b2767bf449eae200f3c56415f9fd87a","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7b2767bf449eae200f3c56415f9fd87a?name=play-services-nearby-10.0.1.aar.meta","size":461},{"path":"Assets/Plugins/Android/play-services-tasks-10.0.1.aar","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"6429a6d3675699e7caed6c45fa2ddf93","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6429a6d3675699e7caed6c45fa2ddf93?name=play-services-tasks-10.0.1.aar","size":20718},{"path":"Assets/Plugins/Android/play-services-tasks-10.0.1.aar.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"2bab032b90d0973fcb2fa386a02ab803","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2bab032b90d0973fcb2fa386a02ab803?name=play-services-tasks-10.0.1.aar.meta","size":461},{"path":"Assets/Plugins/Android/support-annotations-24.0.0.jar","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"77e1c455954dbd4549f6bf37eb13d536","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/77e1c455954dbd4549f6bf37eb13d536?name=support-annotations-24.0.0.jar","size":21786},{"path":"Assets/Plugins/Android/support-annotations-24.0.0.jar.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8c66f730d50f325a88e7041deaa04442","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8c66f730d50f325a88e7041deaa04442?name=support-annotations-24.0.0.jar.meta","size":461},{"path":"Assets/Plugins/Android/support-v4-24.0.0.aar","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"f60946f0390083e0eb935592b1708d76","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f60946f0390083e0eb935592b1708d76?name=support-v4-24.0.0.aar","size":1313066},{"path":"Assets/Plugins/Android/support-v4-24.0.0.aar.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"2aa4cc22418f8e319750e2613adcb1e9","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2aa4cc22418f8e319750e2613adcb1e9?name=support-v4-24.0.0.aar.meta","size":461},{"path":"Assets/Plugins/iOS.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8980c186a0936ffc8ee5b1366627b839","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8980c186a0936ffc8ee5b1366627b839?name=iOS.meta","size":191},{"path":"Assets/Plugins/iOS/GPGSAppController.h","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"aa0b046afee102dc7ef5e901afd72484","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/aa0b046afee102dc7ef5e901afd72484?name=GPGSAppController.h","size":768},{"path":"Assets/Plugins/iOS/GPGSAppController.h.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"4663cd47a0f7996e70850bcae7719452","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4663cd47a0f7996e70850bcae7719452?name=GPGSAppController.h.meta","size":456},{"path":"Assets/Plugins/iOS/GPGSAppController.mm","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"541d9966c291a664aa594a24dc65a535","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/541d9966c291a664aa594a24dc65a535?name=GPGSAppController.mm","size":6612},{"path":"Assets/Plugins/iOS/GPGSAppController.mm.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ec88d26c7f8d3fcb4e8b96a397c0730c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ec88d26c7f8d3fcb4e8b96a397c0730c?name=GPGSAppController.mm.meta","size":456},{"path":"Assets/Prefabs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"cdf2d94123583f9587d1753fb9e60e2f","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/cdf2d94123583f9587d1753fb9e60e2f?name=Prefabs.meta","size":201},{"path":"Assets/Prefabs/Customer.prefab","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"47b6e34320f43d9ba8d3a357e7502597","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/47b6e34320f43d9ba8d3a357e7502597?name=Customer.prefab","size":4770},{"path":"Assets/Prefabs/Customer.prefab.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"1aaa4ff4b7f56e606e38b4451f5df249","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1aaa4ff4b7f56e606e38b4451f5df249?name=Customer.prefab.meta","size":188},{"path":"Assets/Prefabs/SpawnPoint.prefab","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a03f4c2f75dbdf0afe91463abe5926a0","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a03f4c2f75dbdf0afe91463abe5926a0?name=SpawnPoint.prefab","size":1529},{"path":"Assets/Prefabs/SpawnPoint.prefab.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"6181232c6b31578741fd5e6070144d81","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6181232c6b31578741fd5e6070144d81?name=SpawnPoint.prefab.meta","size":188},{"path":"Assets/Prefabs/Wall.prefab","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"58c133b40b252364d0abc319283ae2cd","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/58c133b40b252364d0abc319283ae2cd?name=Wall.prefab","size":2724},{"path":"Assets/Prefabs/Wall.prefab.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"0b6dd04d95c944ec7ff28a981bf2e5a0","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0b6dd04d95c944ec7ff28a981bf2e5a0?name=Wall.prefab.meta","size":180},{"path":"Assets/Resources.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"62e10294520059fcfa5889d2f305d890","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/62e10294520059fcfa5889d2f305d890?name=Resources.meta","size":192},{"path":"Assets/Resources/Sounds.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"bac81a481ef5dc5693428e99f15961ca","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bac81a481ef5dc5693428e99f15961ca?name=Sounds.meta","size":192},{"path":"Assets/Resources/Sounds/WLCM Final.ogg","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"08c54430f24be6f58aa9703e5f228139","state":2,"downloadPath":"","size":3244245},{"path":"Assets/Resources/Sounds/WLCM Final.ogg.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"6d135cb8396ecdf2b459833a408a62d0","state":32770,"downloadPath":"","size":463},{"path":"Assets/Resources/Sounds/Welcome-Game Over 2.wav","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8c16f7df6a820b972ba74ee61f5fd47a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8c16f7df6a820b972ba74ee61f5fd47a?name=Welcome-Game+Over+2.wav","size":477118},{"path":"Assets/Resources/Sounds/Welcome-Game Over 2.wav.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"90aaf5b82a3ec5a37e252e8bc010e1a3","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/90aaf5b82a3ec5a37e252e8bc010e1a3?name=Welcome-Game+Over+2.wav.meta","size":463},{"path":"Assets/Resources/Sounds/voice1.wav","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"209f6f1e7e8c6c43b2bb44561322883a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/209f6f1e7e8c6c43b2bb44561322883a?name=voice1.wav","size":427254},{"path":"Assets/Resources/Sounds/voice1.wav.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8f3e03d71fc03188ccb1dfb774dcbfb1","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8f3e03d71fc03188ccb1dfb774dcbfb1?name=voice1.wav.meta","size":463},{"path":"Assets/Resources/Sounds/voice2.wav","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"7be5b09ea01f0d4f6177f433c05061c9","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7be5b09ea01f0d4f6177f433c05061c9?name=voice2.wav","size":271580},{"path":"Assets/Resources/Sounds/voice2.wav.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"11dc5c52f33b55cab7c52df490ea7ab8","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/11dc5c52f33b55cab7c52df490ea7ab8?name=voice2.wav.meta","size":463},{"path":"Assets/Resources/Sounds/voice3.wav","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"424f65a36d304d767b836fbffcee32ef","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/424f65a36d304d767b836fbffcee32ef?name=voice3.wav","size":561288},{"path":"Assets/Resources/Sounds/voice3.wav.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"9fe4d9a0db7b3b1fda69b5efd81861de","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9fe4d9a0db7b3b1fda69b5efd81861de?name=voice3.wav.meta","size":463},{"path":"Assets/Resources/Sounds/voice4.wav","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"696878d96102d766517e9eed21e5d3f3","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/696878d96102d766517e9eed21e5d3f3?name=voice4.wav","size":427482},{"path":"Assets/Resources/Sounds/voice4.wav.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"6c2ad8d1fa9e4eab94839b40e2fcc3e3","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6c2ad8d1fa9e4eab94839b40e2fcc3e3?name=voice4.wav.meta","size":463},{"path":"Assets/Resources/Sounds/voice5.wav","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"1613bcc2fe4b48e2635e964ec5fbf14a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1613bcc2fe4b48e2635e964ec5fbf14a?name=voice5.wav","size":427230},{"path":"Assets/Resources/Sounds/voice5.wav.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"17d4749d4131924528db0f9ad43b7ca2","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/17d4749d4131924528db0f9ad43b7ca2?name=voice5.wav.meta","size":463},{"path":"Assets/Resources/Sounds/voice6.wav","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"45a0849b847d8f2101ae84e0cb0e4adc","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/45a0849b847d8f2101ae84e0cb0e4adc?name=voice6.wav","size":622446},{"path":"Assets/Resources/Sounds/voice6.wav.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"3e49eba6bc32f92e4dd28e51aafd931f","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3e49eba6bc32f92e4dd28e51aafd931f?name=voice6.wav.meta","size":463},{"path":"Assets/Resources/Splash.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"fb158b3e5b0df4797c06d4ba3a92b85a","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fb158b3e5b0df4797c06d4ba3a92b85a?name=Splash.meta","size":192},{"path":"Assets/Resources/Splash/GreeterPortraitSplash.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"510a81005f8658d96fbd513bb9bcb4cc","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/510a81005f8658d96fbd513bb9bcb4cc?name=GreeterPortraitSplash.png","size":18079},{"path":"Assets/Resources/Splash/GreeterPortraitSplash.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"3082fce8dbb863902616a173ae752952","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3082fce8dbb863902616a173ae752952?name=GreeterPortraitSplash.png.meta","size":1474},{"path":"Assets/Resources/Splash/GreeterSplash_1366x768.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"fc06eea586f4fe25a601674263cc9b3d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fc06eea586f4fe25a601674263cc9b3d?name=GreeterSplash_1366x768.png","size":20893},{"path":"Assets/Resources/Splash/GreeterSplash_1366x768.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"b380a8a9d83fcfa5c7e723772eb6ad13","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b380a8a9d83fcfa5c7e723772eb6ad13?name=GreeterSplash_1366x768.png.meta","size":1474},{"path":"Assets/Resources/Sprites.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"81a1e46182d2cc993e46d25d8a62f470","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/81a1e46182d2cc993e46d25d8a62f470?name=Sprites.meta","size":192},{"path":"Assets/Resources/Sprites/Customer.controller","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"9024583ad8b88e8bc35fba4f13b69f52","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9024583ad8b88e8bc35fba4f13b69f52?name=Customer.controller","size":5892},{"path":"Assets/Resources/Sprites/Customer.controller.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"04ff07180513a54f39fa80046da17d66","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/04ff07180513a54f39fa80046da17d66?name=Customer.controller.meta","size":180},{"path":"Assets/Resources/Sprites/Customer10.overrideController","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"7c812dbf4151a29093cd97c381d0a5fe","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7c812dbf4151a29093cd97c381d0a5fe?name=Customer10.overrideController","size":818},{"path":"Assets/Resources/Sprites/Customer10.overrideController.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ecd532acdfe5cfa6fdfb97783cea6a38","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ecd532acdfe5cfa6fdfb97783cea6a38?name=Customer10.overrideController.meta","size":180},{"path":"Assets/Resources/Sprites/Customer11.overrideController","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ad0f45403d022d739608eefb603a5c06","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ad0f45403d022d739608eefb603a5c06?name=Customer11.overrideController","size":818},{"path":"Assets/Resources/Sprites/Customer11.overrideController.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"227bcc32f52ddf11690afec583fc54e5","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/227bcc32f52ddf11690afec583fc54e5?name=Customer11.overrideController.meta","size":180},{"path":"Assets/Resources/Sprites/Customer12.overrideController","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"42ecc706afb9c0e74284607baf9e0337","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/42ecc706afb9c0e74284607baf9e0337?name=Customer12.overrideController","size":818},{"path":"Assets/Resources/Sprites/Customer12.overrideController.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"27ce73445170f6628bb250417fef7dd2","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/27ce73445170f6628bb250417fef7dd2?name=Customer12.overrideController.meta","size":180},{"path":"Assets/Resources/Sprites/Customer13.overrideController","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"227e64a1a2447c60711c861e4cbe054c","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/227e64a1a2447c60711c861e4cbe054c?name=Customer13.overrideController","size":818},{"path":"Assets/Resources/Sprites/Customer13.overrideController.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"f7fb1a11e6a49df9eb1f9498f3734a51","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f7fb1a11e6a49df9eb1f9498f3734a51?name=Customer13.overrideController.meta","size":180},{"path":"Assets/Resources/Sprites/Customer14.overrideController","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"55f8832366f39c75081fb22878540a33","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/55f8832366f39c75081fb22878540a33?name=Customer14.overrideController","size":818},{"path":"Assets/Resources/Sprites/Customer14.overrideController.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"bc6460775b0e51ad888664179946e54a","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bc6460775b0e51ad888664179946e54a?name=Customer14.overrideController.meta","size":180},{"path":"Assets/Resources/Sprites/Customer15.overrideController","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"09ca0a200d29d603fc5a68e55e0ce99d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/09ca0a200d29d603fc5a68e55e0ce99d?name=Customer15.overrideController","size":818},{"path":"Assets/Resources/Sprites/Customer15.overrideController.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c79b294886c52bca5895c6d15effab06","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c79b294886c52bca5895c6d15effab06?name=Customer15.overrideController.meta","size":180},{"path":"Assets/Resources/Sprites/Customer16.overrideController","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ff418df9462d165721a2b930acbd329b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ff418df9462d165721a2b930acbd329b?name=Customer16.overrideController","size":818},{"path":"Assets/Resources/Sprites/Customer16.overrideController.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"87e7ad2d78443bb52e87c1d7f0d5afcb","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/87e7ad2d78443bb52e87c1d7f0d5afcb?name=Customer16.overrideController.meta","size":180},{"path":"Assets/Resources/Sprites/Customer17.overrideController","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"f4e855b29bf837de491d496e455932c8","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f4e855b29bf837de491d496e455932c8?name=Customer17.overrideController","size":818},{"path":"Assets/Resources/Sprites/Customer17.overrideController.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"df4be3b101b76ac6dd55df82dbf87cc1","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/df4be3b101b76ac6dd55df82dbf87cc1?name=Customer17.overrideController.meta","size":180},{"path":"Assets/Resources/Sprites/Customer2.overrideController","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"900b65f7d179c6985de32ea9b71d3801","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/900b65f7d179c6985de32ea9b71d3801?name=Customer2.overrideController","size":817},{"path":"Assets/Resources/Sprites/Customer2.overrideController.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"30eafd2a1290c328096c28b0f3d76eea","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/30eafd2a1290c328096c28b0f3d76eea?name=Customer2.overrideController.meta","size":180},{"path":"Assets/Resources/Sprites/Customer3.overrideController","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"fc4e8b451d4becae36c995b56382ba02","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fc4e8b451d4becae36c995b56382ba02?name=Customer3.overrideController","size":817},{"path":"Assets/Resources/Sprites/Customer3.overrideController.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"33ce30d37e8aad613ca824a753e9ea6d","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/33ce30d37e8aad613ca824a753e9ea6d?name=Customer3.overrideController.meta","size":180},{"path":"Assets/Resources/Sprites/Customer4.overrideController","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"e9441663d2b1fd4aa25bbb5fb3527902","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e9441663d2b1fd4aa25bbb5fb3527902?name=Customer4.overrideController","size":817},{"path":"Assets/Resources/Sprites/Customer4.overrideController.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"5546f95b5dba8e605c01f347406adf7f","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/5546f95b5dba8e605c01f347406adf7f?name=Customer4.overrideController.meta","size":180},{"path":"Assets/Resources/Sprites/Customer5.overrideController","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"342916a99375d386efdcf832db8cf566","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/342916a99375d386efdcf832db8cf566?name=Customer5.overrideController","size":817},{"path":"Assets/Resources/Sprites/Customer5.overrideController.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"b4343f3535db1ed5b956713cc239de58","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b4343f3535db1ed5b956713cc239de58?name=Customer5.overrideController.meta","size":180},{"path":"Assets/Resources/Sprites/Customer6.overrideController","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"779e024ff684aa75cf2559ee780b2265","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/779e024ff684aa75cf2559ee780b2265?name=Customer6.overrideController","size":817},{"path":"Assets/Resources/Sprites/Customer6.overrideController.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"79ba5f1ebbd6f1e8ad52390bc1f3d0af","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/79ba5f1ebbd6f1e8ad52390bc1f3d0af?name=Customer6.overrideController.meta","size":180},{"path":"Assets/Resources/Sprites/Customer7.overrideController","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"48501ac60b479251cbc50d3650f028da","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/48501ac60b479251cbc50d3650f028da?name=Customer7.overrideController","size":817},{"path":"Assets/Resources/Sprites/Customer7.overrideController.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ed198a8131e4cf8d461725d7e00f138f","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ed198a8131e4cf8d461725d7e00f138f?name=Customer7.overrideController.meta","size":180},{"path":"Assets/Resources/Sprites/Customer8.overrideController","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"4d990b3c05b2aaf75c83290cf30d2c7f","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4d990b3c05b2aaf75c83290cf30d2c7f?name=Customer8.overrideController","size":817},{"path":"Assets/Resources/Sprites/Customer8.overrideController.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"b13d592256541dcc5c0a2333bc53402d","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b13d592256541dcc5c0a2333bc53402d?name=Customer8.overrideController.meta","size":180},{"path":"Assets/Resources/Sprites/Customer9.overrideController","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"32eb36844bc3caeba2a1dfc9c5674f8b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/32eb36844bc3caeba2a1dfc9c5674f8b?name=Customer9.overrideController","size":817},{"path":"Assets/Resources/Sprites/Customer9.overrideController.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a5315ffc0b47238ba74808378b3af09d","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a5315ffc0b47238ba74808378b3af09d?name=Customer9.overrideController.meta","size":180},{"path":"Assets/Resources/Sprites/FiredGuy 1.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c925d4a0b915633c0e67872db0245a4a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c925d4a0b915633c0e67872db0245a4a?name=FiredGuy+1.png","size":506},{"path":"Assets/Resources/Sprites/FiredGuy 1.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"fa1c76608a57f24b6585f9bcead01249","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fa1c76608a57f24b6585f9bcead01249?name=FiredGuy+1.png.meta","size":1673},{"path":"Assets/Resources/Sprites/Floor2.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"3e7cb26ec0c1066cdf2cc01ccca9b326","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3e7cb26ec0c1066cdf2cc01ccca9b326?name=Floor2.png","size":2031},{"path":"Assets/Resources/Sprites/Floor2.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"1eadd9918304be1b52d9ab90a25b9256","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1eadd9918304be1b52d9ab90a25b9256?name=Floor2.png.meta","size":1674},{"path":"Assets/Resources/Sprites/Materials.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"30b3662515d9d42ed30fd034a7441033","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/30b3662515d9d42ed30fd034a7441033?name=Materials.meta","size":192},{"path":"Assets/Resources/Sprites/Materials/Floor 1.mat","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8ef1c17035b3119de40e3ee83657c5a7","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8ef1c17035b3119de40e3ee83657c5a7?name=Floor+1.mat","size":658},{"path":"Assets/Resources/Sprites/Materials/Floor 1.mat.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"13e52eabcda25982a96cd2493e737d7b","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/13e52eabcda25982a96cd2493e737d7b?name=Floor+1.mat.meta","size":180},{"path":"Assets/Resources/Sprites/Materials/Floor.mat","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a2114c561d4e51cc592e1dc148c51bef","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a2114c561d4e51cc592e1dc148c51bef?name=Floor.mat","size":2889},{"path":"Assets/Resources/Sprites/Materials/Floor.mat.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"e1b8f9014eced15bdbe9c221c5ef7cc2","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e1b8f9014eced15bdbe9c221c5ef7cc2?name=Floor.mat.meta","size":180},{"path":"Assets/Resources/Sprites/Materials/Floor2.mat","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8633ce4c58708b205a039b4c99a4afb0","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8633ce4c58708b205a039b4c99a4afb0?name=Floor2.mat","size":657},{"path":"Assets/Resources/Sprites/Materials/Floor2.mat.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c62add82988fc7054631a838f77eab94","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c62add82988fc7054631a838f77eab94?name=Floor2.mat.meta","size":180},{"path":"Assets/Resources/Sprites/Materials/Wall 1.mat","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"e0694c74c0ac7fde704d028f554bbc34","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e0694c74c0ac7fde704d028f554bbc34?name=Wall+1.mat","size":657},{"path":"Assets/Resources/Sprites/Materials/Wall 1.mat.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"78fa06eee2d25816864fe8978ac6dcc6","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/78fa06eee2d25816864fe8978ac6dcc6?name=Wall+1.mat.meta","size":180},{"path":"Assets/Resources/Sprites/Materials/Wall.mat","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c731ebc28580d91103e2822f0f950f6c","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c731ebc28580d91103e2822f0f950f6c?name=Wall.mat","size":2897},{"path":"Assets/Resources/Sprites/Materials/Wall.mat.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"30945511fdeee8eaefe76a78a3b272df","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/30945511fdeee8eaefe76a78a3b272df?name=Wall.mat.meta","size":180},{"path":"Assets/Resources/Sprites/Materials/Wall2.mat","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"4439c3eec22749e7d2dda3e4e7ef2a5e","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4439c3eec22749e7d2dda3e4e7ef2a5e?name=Wall2.mat","size":656},{"path":"Assets/Resources/Sprites/Materials/Wall2.mat.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"d21f320d2bb5253a4fc41b50e57318de","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d21f320d2bb5253a4fc41b50e57318de?name=Wall2.mat.meta","size":180},{"path":"Assets/Resources/Sprites/Materials/Wall3.mat","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8cc5e9893421a199a442d9f51b290547","state":2,"downloadPath":"","size":3128},{"path":"Assets/Resources/Sprites/Materials/Wall3.mat.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"6cccc8bd54adc5f8020e6e978b6c27aa","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6cccc8bd54adc5f8020e6e978b6c27aa?name=Wall3.mat.meta","size":180},{"path":"Assets/Resources/Sprites/Player.controller","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"5d2b26464821ed67ee548e35d950d9ab","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/5d2b26464821ed67ee548e35d950d9ab?name=Player.controller","size":7109},{"path":"Assets/Resources/Sprites/Player.controller.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"3019b65114105cdb19e7b58cde850daf","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3019b65114105cdb19e7b58cde850daf?name=Player.controller.meta","size":180},{"path":"Assets/Resources/Sprites/Player.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"d7d87d5b8979442271069e6c19725e6f","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d7d87d5b8979442271069e6c19725e6f?name=Player.png","size":584},{"path":"Assets/Resources/Sprites/Player.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"7c0821d562b30885083fdc900a7494d5","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7c0821d562b30885083fdc900a7494d5?name=Player.png.meta","size":3870},{"path":"Assets/Resources/Sprites/PlayerIcon.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"438f2685eb05b5724c74931a80a11c6d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/438f2685eb05b5724c74931a80a11c6d?name=PlayerIcon.png","size":6800},{"path":"Assets/Resources/Sprites/PlayerIcon.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"0564ecbee4d6f8684351a0f336ecc27d","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0564ecbee4d6f8684351a0f336ecc27d?name=PlayerIcon.png.meta","size":2069},{"path":"Assets/Resources/Sprites/Player_Idle.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"e1e03b53557b3cf9302ffb3e152e7404","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e1e03b53557b3cf9302ffb3e152e7404?name=Player_Idle.anim","size":1861},{"path":"Assets/Resources/Sprites/Player_Idle.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"7106b89be1f3b4a71e6b59b679e073f0","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7106b89be1f3b4a71e6b59b679e073f0?name=Player_Idle.anim.meta","size":180},{"path":"Assets/Resources/Sprites/Player_Walk.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"32625b96daef2daea375410672fbf7ab","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/32625b96daef2daea375410672fbf7ab?name=Player_Walk.anim","size":1861},{"path":"Assets/Resources/Sprites/Player_Walk.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"f96a4c0e8a1273dfc3c7a5c53dee0c32","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f96a4c0e8a1273dfc3c7a5c53dee0c32?name=Player_Walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/Player_Wave.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"32f6b495d7181d3cf664cee893f35a8a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/32f6b495d7181d3cf664cee893f35a8a?name=Player_Wave.anim","size":1861},{"path":"Assets/Resources/Sprites/Player_Wave.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"f7d9f5dba9b6740bc0f6e304ea247ebc","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f7d9f5dba9b6740bc0f6e304ea247ebc?name=Player_Wave.anim.meta","size":180},{"path":"Assets/Resources/Sprites/SatisfactionBar.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"d3c97308c2b80e965c6aceb7e310833f","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d3c97308c2b80e965c6aceb7e310833f?name=SatisfactionBar.png","size":2017},{"path":"Assets/Resources/Sprites/SatisfactionBar.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"81b1c992eedead392d6ca434a9d00d09","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/81b1c992eedead392d6ca434a9d00d09?name=SatisfactionBar.png.meta","size":2069},{"path":"Assets/Resources/Sprites/Wall3.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c71331b42a41396dfeb7a1212f91cca8","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c71331b42a41396dfeb7a1212f91cca8?name=Wall3.png","size":11829},{"path":"Assets/Resources/Sprites/Wall3.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ffce5faf63af9a827d11608ac3401baa","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ffce5faf63af9a827d11608ac3401baa?name=Wall3.png.meta","size":1673},{"path":"Assets/Resources/Sprites/person_01.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a8075612a3a8fb546516976a396ee4bb","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a8075612a3a8fb546516976a396ee4bb?name=person_01.png","size":522},{"path":"Assets/Resources/Sprites/person_01.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"452aa841f156723f3a8d2ba3a917ffdc","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/452aa841f156723f3a8d2ba3a917ffdc?name=person_01.png.meta","size":3278},{"path":"Assets/Resources/Sprites/person_01_shake.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"e9b9476443227c03495a0815a451d1a7","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e9b9476443227c03495a0815a451d1a7?name=person_01_shake.anim","size":1865},{"path":"Assets/Resources/Sprites/person_01_shake.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"27ec876e1fb2b05d0e634904da106461","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/27ec876e1fb2b05d0e634904da106461?name=person_01_shake.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_01_walk.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"1599200258e8baa83a3f40ec333029ec","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1599200258e8baa83a3f40ec333029ec?name=person_01_walk.anim","size":1864},{"path":"Assets/Resources/Sprites/person_01_walk.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"d494a2de8aef42b5dce24448b5a46732","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d494a2de8aef42b5dce24448b5a46732?name=person_01_walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_01_wave.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8f99e25f6eecb7809506adcae0085d96","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8f99e25f6eecb7809506adcae0085d96?name=person_01_wave.anim","size":1864},{"path":"Assets/Resources/Sprites/person_01_wave.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"be243c992b1f5948ecbd45916e8020bb","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/be243c992b1f5948ecbd45916e8020bb?name=person_01_wave.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_02.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"1a93e6d42afcf5c03cba07b50eba1ab4","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1a93e6d42afcf5c03cba07b50eba1ab4?name=person_02.png","size":558},{"path":"Assets/Resources/Sprites/person_02.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"951fc7844e94e39bcd18a1fd7f3a20a6","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/951fc7844e94e39bcd18a1fd7f3a20a6?name=person_02.png.meta","size":3478},{"path":"Assets/Resources/Sprites/person_02_shake.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8ec4b61a764a5541beb994a94ff56236","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8ec4b61a764a5541beb994a94ff56236?name=person_02_shake.anim","size":1865},{"path":"Assets/Resources/Sprites/person_02_shake.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a3fe73f1f863540e935e3e468a8aa76b","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a3fe73f1f863540e935e3e468a8aa76b?name=person_02_shake.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_02_walk.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"241b10035e08112027d7e50c500620c1","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/241b10035e08112027d7e50c500620c1?name=person_02_walk.anim","size":1864},{"path":"Assets/Resources/Sprites/person_02_walk.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"22d07bfc4e5f77fcb50b8ae93228c2c8","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/22d07bfc4e5f77fcb50b8ae93228c2c8?name=person_02_walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_02_wave.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ff78ae56771a590ea93c35e9c5c6f92f","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ff78ae56771a590ea93c35e9c5c6f92f?name=person_02_wave.anim","size":1864},{"path":"Assets/Resources/Sprites/person_02_wave.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"bcc101756226e0213686fdadec8ab358","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bcc101756226e0213686fdadec8ab358?name=person_02_wave.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_03.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"abb62098e9e5b80267e8a463be7b9bcd","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/abb62098e9e5b80267e8a463be7b9bcd?name=person_03.png","size":506},{"path":"Assets/Resources/Sprites/person_03.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"77008882e6b9ea8f5cc10505746b7b9f","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/77008882e6b9ea8f5cc10505746b7b9f?name=person_03.png.meta","size":3280},{"path":"Assets/Resources/Sprites/person_03_shake.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"aab5774090a31096ce96eca4b209669a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/aab5774090a31096ce96eca4b209669a?name=person_03_shake.anim","size":1865},{"path":"Assets/Resources/Sprites/person_03_shake.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8422c56a78cbf2663ab458e2ecb5202d","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8422c56a78cbf2663ab458e2ecb5202d?name=person_03_shake.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_03_walk.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8c143fdf173f0cb8e2c419a98cf002c5","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8c143fdf173f0cb8e2c419a98cf002c5?name=person_03_walk.anim","size":1864},{"path":"Assets/Resources/Sprites/person_03_walk.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a5a96a60e0d8adbad4236f1858544465","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a5a96a60e0d8adbad4236f1858544465?name=person_03_walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_03_wave.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"71fc1c7243d54626ba0bcaa52623ce9a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/71fc1c7243d54626ba0bcaa52623ce9a?name=person_03_wave.anim","size":1864},{"path":"Assets/Resources/Sprites/person_03_wave.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"f4b9308815ea40e786a12d148a8dfcdf","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f4b9308815ea40e786a12d148a8dfcdf?name=person_03_wave.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_04.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"17fc7b9e462fc11d87a069e29f12a04f","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/17fc7b9e462fc11d87a069e29f12a04f?name=person_04.png","size":399},{"path":"Assets/Resources/Sprites/person_04.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"3e01095124239d6369dc0bbebf71c683","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3e01095124239d6369dc0bbebf71c683?name=person_04.png.meta","size":3280},{"path":"Assets/Resources/Sprites/person_04_shake.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ff593224c78d43ed596ad34001dc69ec","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ff593224c78d43ed596ad34001dc69ec?name=person_04_shake.anim","size":1865},{"path":"Assets/Resources/Sprites/person_04_shake.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"107518342f3edf3db041ac6fcf9b8bb6","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/107518342f3edf3db041ac6fcf9b8bb6?name=person_04_shake.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_04_walk.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"b935ab489b8fcf37af406d1faf4807eb","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b935ab489b8fcf37af406d1faf4807eb?name=person_04_walk.anim","size":1864},{"path":"Assets/Resources/Sprites/person_04_walk.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"65f15ae17f4a96bbdd209a0d612c7e49","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/65f15ae17f4a96bbdd209a0d612c7e49?name=person_04_walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_04_wave.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"f4f48a026c1a52bad39a14c54fc83cc9","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f4f48a026c1a52bad39a14c54fc83cc9?name=person_04_wave.anim","size":1864},{"path":"Assets/Resources/Sprites/person_04_wave.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"9cdb7ebf888650ed09f3fc1fb1cbda2e","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9cdb7ebf888650ed09f3fc1fb1cbda2e?name=person_04_wave.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_05.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"9e362476875c314a327f1242fa527b81","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9e362476875c314a327f1242fa527b81?name=person_05.png","size":399},{"path":"Assets/Resources/Sprites/person_05.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"831f8e5dec3999c2f9217f0e1f10ed42","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/831f8e5dec3999c2f9217f0e1f10ed42?name=person_05.png.meta","size":3280},{"path":"Assets/Resources/Sprites/person_05_shake.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8b9e895081c19cadf1cf86d608ae0832","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8b9e895081c19cadf1cf86d608ae0832?name=person_05_shake.anim","size":1865},{"path":"Assets/Resources/Sprites/person_05_shake.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"0c17f23d980890cb83259c6c8fba24c6","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0c17f23d980890cb83259c6c8fba24c6?name=person_05_shake.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_05_walk.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a695cdd430b394480377f452c8f9afb8","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a695cdd430b394480377f452c8f9afb8?name=person_05_walk.anim","size":1864},{"path":"Assets/Resources/Sprites/person_05_walk.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"fdeb0d057ca670938a15de035595b4fe","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fdeb0d057ca670938a15de035595b4fe?name=person_05_walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_05_wave.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"dee32015775ca2ae2b069bc5b7f36416","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/dee32015775ca2ae2b069bc5b7f36416?name=person_05_wave.anim","size":1864},{"path":"Assets/Resources/Sprites/person_05_wave.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"97e23d3b990322372042aa954b0365d7","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/97e23d3b990322372042aa954b0365d7?name=person_05_wave.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_06.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"6f3363ca18fb5b9b78ffe196da338f2d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6f3363ca18fb5b9b78ffe196da338f2d?name=person_06.png","size":377},{"path":"Assets/Resources/Sprites/person_06.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"6a2f443f1427dbd18259756c3f92579d","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6a2f443f1427dbd18259756c3f92579d?name=person_06.png.meta","size":3280},{"path":"Assets/Resources/Sprites/person_06_shake.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"1544570ac12b23ed5a1810276da3c9fd","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1544570ac12b23ed5a1810276da3c9fd?name=person_06_shake.anim","size":1865},{"path":"Assets/Resources/Sprites/person_06_shake.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"5817fae50af360f75f0ffa0dc4fc304a","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/5817fae50af360f75f0ffa0dc4fc304a?name=person_06_shake.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_06_walk.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"2321c92e44f8e0a4c9ab6a516187c717","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2321c92e44f8e0a4c9ab6a516187c717?name=person_06_walk.anim","size":1864},{"path":"Assets/Resources/Sprites/person_06_walk.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8d4ce5464e74873c5c655558adc62133","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8d4ce5464e74873c5c655558adc62133?name=person_06_walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_06_wave.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ca4b24d2d984aefb1c0132445e95cfaa","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ca4b24d2d984aefb1c0132445e95cfaa?name=person_06_wave.anim","size":1864},{"path":"Assets/Resources/Sprites/person_06_wave.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"58a30cec5d8540c03aade1ec509f5a7a","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/58a30cec5d8540c03aade1ec509f5a7a?name=person_06_wave.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_07.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"4ff3832efd1ec62bec70996061b18191","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4ff3832efd1ec62bec70996061b18191?name=person_07.png","size":537},{"path":"Assets/Resources/Sprites/person_07.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ae125473d54fcf33655988e8f5a971e1","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ae125473d54fcf33655988e8f5a971e1?name=person_07.png.meta","size":3280},{"path":"Assets/Resources/Sprites/person_07_shake.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8888d7d09125b64fc4b327806cfecdba","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8888d7d09125b64fc4b327806cfecdba?name=person_07_shake.anim","size":1865},{"path":"Assets/Resources/Sprites/person_07_shake.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"336b4ec189bcb9eecf4293ed1b326809","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/336b4ec189bcb9eecf4293ed1b326809?name=person_07_shake.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_07_walk.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"fa756ee16cb5a1b9eaad490866c501d6","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fa756ee16cb5a1b9eaad490866c501d6?name=person_07_walk.anim","size":1864},{"path":"Assets/Resources/Sprites/person_07_walk.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ba5919543630618428c5dd40a3065adf","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ba5919543630618428c5dd40a3065adf?name=person_07_walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_07_wave.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"2dd8b19983f0f14a37a599b65b8261dc","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2dd8b19983f0f14a37a599b65b8261dc?name=person_07_wave.anim","size":1864},{"path":"Assets/Resources/Sprites/person_07_wave.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"60dd9aeac425825d3a4ebd4f952b7e3c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/60dd9aeac425825d3a4ebd4f952b7e3c?name=person_07_wave.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_08.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"366fb8e0839f8170ebdf17a597754ae3","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/366fb8e0839f8170ebdf17a597754ae3?name=person_08.png","size":379},{"path":"Assets/Resources/Sprites/person_08.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"12fb5cb9e4b90424e67e7d6f851e4731","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/12fb5cb9e4b90424e67e7d6f851e4731?name=person_08.png.meta","size":3280},{"path":"Assets/Resources/Sprites/person_08_shake.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"5fbb6d1df0a4d2a4a6a3d1cf1a837e5d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/5fbb6d1df0a4d2a4a6a3d1cf1a837e5d?name=person_08_shake.anim","size":1865},{"path":"Assets/Resources/Sprites/person_08_shake.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ba19c345b3b3bc3f5bf4a7cc66542be6","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ba19c345b3b3bc3f5bf4a7cc66542be6?name=person_08_shake.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_08_walk.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"763eab24f91bb53c7c5d0341205c0021","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/763eab24f91bb53c7c5d0341205c0021?name=person_08_walk.anim","size":1864},{"path":"Assets/Resources/Sprites/person_08_walk.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"474db84f7f972983209806128365db90","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/474db84f7f972983209806128365db90?name=person_08_walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_08_wave.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"d59908b6a94ddd3bd503d4aff80414da","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d59908b6a94ddd3bd503d4aff80414da?name=person_08_wave.anim","size":1864},{"path":"Assets/Resources/Sprites/person_08_wave.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"e30eff8153f784ae86588b9874d70f26","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e30eff8153f784ae86588b9874d70f26?name=person_08_wave.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_09.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"b3a47319dc4c0778a1cf416d1e92ded7","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b3a47319dc4c0778a1cf416d1e92ded7?name=person_09.png","size":410},{"path":"Assets/Resources/Sprites/person_09.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c412c57d84f3af6be07c1a71f3835110","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c412c57d84f3af6be07c1a71f3835110?name=person_09.png.meta","size":3280},{"path":"Assets/Resources/Sprites/person_09_shake.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"60fb071ae7f1b3c21fce9a35389e552d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/60fb071ae7f1b3c21fce9a35389e552d?name=person_09_shake.anim","size":1865},{"path":"Assets/Resources/Sprites/person_09_shake.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"52455908846cf5e9edc6c4af14b2f583","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/52455908846cf5e9edc6c4af14b2f583?name=person_09_shake.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_09_walk.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ff18c2a4ccc5decbbcc18c95fbdcf0a0","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ff18c2a4ccc5decbbcc18c95fbdcf0a0?name=person_09_walk.anim","size":1864},{"path":"Assets/Resources/Sprites/person_09_walk.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"17816989cbe2d1dc771aabfd35a46f58","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/17816989cbe2d1dc771aabfd35a46f58?name=person_09_walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_09_wave.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"acfce7c3d08ac8e1c96da31690cfdaae","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/acfce7c3d08ac8e1c96da31690cfdaae?name=person_09_wave.anim","size":1864},{"path":"Assets/Resources/Sprites/person_09_wave.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"9976beaca754da7ecdb79c888368d94e","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9976beaca754da7ecdb79c888368d94e?name=person_09_wave.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_10.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"2fb402f44b366b25d57935b72cfa1b31","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2fb402f44b366b25d57935b72cfa1b31?name=person_10.png","size":386},{"path":"Assets/Resources/Sprites/person_10.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"32b39a6869674374144d577289388d03","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/32b39a6869674374144d577289388d03?name=person_10.png.meta","size":3280},{"path":"Assets/Resources/Sprites/person_10_shake.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"23361766ef78e79f1bdf58f791daafac","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/23361766ef78e79f1bdf58f791daafac?name=person_10_shake.anim","size":1865},{"path":"Assets/Resources/Sprites/person_10_shake.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"43ee0b30799b2d6f80ac58410be779d1","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/43ee0b30799b2d6f80ac58410be779d1?name=person_10_shake.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_10_walk.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"d05c5292222993e5529ba754b1fdee17","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d05c5292222993e5529ba754b1fdee17?name=person_10_walk.anim","size":1864},{"path":"Assets/Resources/Sprites/person_10_walk.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"16d6e3aaae8b8d532f70e8957899fd12","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/16d6e3aaae8b8d532f70e8957899fd12?name=person_10_walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_10_wave.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"dbc539dce7781a5d575e810cb4518390","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/dbc539dce7781a5d575e810cb4518390?name=person_10_wave.anim","size":1864},{"path":"Assets/Resources/Sprites/person_10_wave.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a91846ef8d8d285b73b8a08c6f7eb9c9","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a91846ef8d8d285b73b8a08c6f7eb9c9?name=person_10_wave.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_11.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"fb5b91c8e2565f0c0e98614b6f3573e7","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fb5b91c8e2565f0c0e98614b6f3573e7?name=person_11.png","size":551},{"path":"Assets/Resources/Sprites/person_11.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"1771272068a14e15511d357318951a9d","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1771272068a14e15511d357318951a9d?name=person_11.png.meta","size":3280},{"path":"Assets/Resources/Sprites/person_11_shake.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"266714bdff749c9dc990ed6098cba2d0","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/266714bdff749c9dc990ed6098cba2d0?name=person_11_shake.anim","size":1865},{"path":"Assets/Resources/Sprites/person_11_shake.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"e31d3a15211088b3b289b0f09250fd93","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e31d3a15211088b3b289b0f09250fd93?name=person_11_shake.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_11_walk.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c52d8d6a4bcebb41e70c838cc684e2fb","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c52d8d6a4bcebb41e70c838cc684e2fb?name=person_11_walk.anim","size":1864},{"path":"Assets/Resources/Sprites/person_11_walk.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"52a1d412be9c17f80eee92c218b8f1c8","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/52a1d412be9c17f80eee92c218b8f1c8?name=person_11_walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_11_wave.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ecca0f4613ce2ed3eb5da918d6b5ac9b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ecca0f4613ce2ed3eb5da918d6b5ac9b?name=person_11_wave.anim","size":1864},{"path":"Assets/Resources/Sprites/person_11_wave.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"094a3612ed1f8c215bda7a5ed2af2943","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/094a3612ed1f8c215bda7a5ed2af2943?name=person_11_wave.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_12.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ececea8177c751996317bbff8ed4172b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ececea8177c751996317bbff8ed4172b?name=person_12.png","size":387},{"path":"Assets/Resources/Sprites/person_12.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a1e52d46c37c5d604e92d9709daf21d6","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a1e52d46c37c5d604e92d9709daf21d6?name=person_12.png.meta","size":3280},{"path":"Assets/Resources/Sprites/person_12_shake.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"45d687decf2aee24270177f4742a6edd","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/45d687decf2aee24270177f4742a6edd?name=person_12_shake.anim","size":1865},{"path":"Assets/Resources/Sprites/person_12_shake.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"4e4eec794576c2383a46dd7903670504","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4e4eec794576c2383a46dd7903670504?name=person_12_shake.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_12_walk.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"1a5d35163e624877674453598a82d740","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1a5d35163e624877674453598a82d740?name=person_12_walk.anim","size":1864},{"path":"Assets/Resources/Sprites/person_12_walk.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"66d6444c19ca44834b4b0139b91fc930","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/66d6444c19ca44834b4b0139b91fc930?name=person_12_walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_12_wave.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"57c9298075dde5fef0d5f87f2546df17","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/57c9298075dde5fef0d5f87f2546df17?name=person_12_wave.anim","size":1864},{"path":"Assets/Resources/Sprites/person_12_wave.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"dd92e65fc1d11dd6b730ce8713bf8bc7","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/dd92e65fc1d11dd6b730ce8713bf8bc7?name=person_12_wave.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_13.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"561bf59ecf9c8e03269fa92b4a38f2ca","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/561bf59ecf9c8e03269fa92b4a38f2ca?name=person_13.png","size":513},{"path":"Assets/Resources/Sprites/person_13.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a24aeefef7e2bdb94742aa0cb0c9e6d5","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a24aeefef7e2bdb94742aa0cb0c9e6d5?name=person_13.png.meta","size":3280},{"path":"Assets/Resources/Sprites/person_13_shake.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"f4686b388d4adaefe3a5eb0c63483d5b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f4686b388d4adaefe3a5eb0c63483d5b?name=person_13_shake.anim","size":1865},{"path":"Assets/Resources/Sprites/person_13_shake.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"fa165634a40892a78f743432e2358820","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fa165634a40892a78f743432e2358820?name=person_13_shake.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_13_walk.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"bfeb212c3c0c3f49286daeaf6bc0a18b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bfeb212c3c0c3f49286daeaf6bc0a18b?name=person_13_walk.anim","size":1864},{"path":"Assets/Resources/Sprites/person_13_walk.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"90efc4f696a11940942c887649151fdf","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/90efc4f696a11940942c887649151fdf?name=person_13_walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_13_wave.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8161a08e9477245a687a1c94304812e4","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8161a08e9477245a687a1c94304812e4?name=person_13_wave.anim","size":1864},{"path":"Assets/Resources/Sprites/person_13_wave.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"e60fb06247882a7c8ffec4c62358c963","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e60fb06247882a7c8ffec4c62358c963?name=person_13_wave.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_14.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a90d61af4e5047da14a92d445d2bcad9","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a90d61af4e5047da14a92d445d2bcad9?name=person_14.png","size":385},{"path":"Assets/Resources/Sprites/person_14.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"9630a4c1e3dd96ac6cbb133fb2fed474","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9630a4c1e3dd96ac6cbb133fb2fed474?name=person_14.png.meta","size":3478},{"path":"Assets/Resources/Sprites/person_14_shake.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"420a86803909545dbdb658c39ca1bfe3","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/420a86803909545dbdb658c39ca1bfe3?name=person_14_shake.anim","size":1865},{"path":"Assets/Resources/Sprites/person_14_shake.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"876513a0f1d0d977fa0827baaaf9f072","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/876513a0f1d0d977fa0827baaaf9f072?name=person_14_shake.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_14_shake.controller","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"2c7216c1c525b4ef683a027b9aad22fa","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2c7216c1c525b4ef683a027b9aad22fa?name=person_14_shake.controller","size":270},{"path":"Assets/Resources/Sprites/person_14_shake.controller.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"1a1540abe67355f2bc13ca60fe73dc13","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1a1540abe67355f2bc13ca60fe73dc13?name=person_14_shake.controller.meta","size":180},{"path":"Assets/Resources/Sprites/person_14_stand.controller","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"cb6c54edb829611e752d8fcfdead7e14","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/cb6c54edb829611e752d8fcfdead7e14?name=person_14_stand.controller","size":270},{"path":"Assets/Resources/Sprites/person_14_stand.controller.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"4f77a17cab1efbe1a823b932ca44d8e7","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4f77a17cab1efbe1a823b932ca44d8e7?name=person_14_stand.controller.meta","size":180},{"path":"Assets/Resources/Sprites/person_14_walk.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"87e711383438aa3c3ac040150f22f163","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/87e711383438aa3c3ac040150f22f163?name=person_14_walk.anim","size":1864},{"path":"Assets/Resources/Sprites/person_14_walk.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"780f5fd6b69ee4ff10d356cba3c69d1f","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/780f5fd6b69ee4ff10d356cba3c69d1f?name=person_14_walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_14_walk1.controller","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"501a0a4bd97759cd89cc7fa5d2973aab","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/501a0a4bd97759cd89cc7fa5d2973aab?name=person_14_walk1.controller","size":270},{"path":"Assets/Resources/Sprites/person_14_walk1.controller.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"5d88f6df23b23a34253f4992fbe3defd","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/5d88f6df23b23a34253f4992fbe3defd?name=person_14_walk1.controller.meta","size":180},{"path":"Assets/Resources/Sprites/person_14_wave.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"9b8697a9183f0bf99744daea9763e671","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9b8697a9183f0bf99744daea9763e671?name=person_14_wave.anim","size":1864},{"path":"Assets/Resources/Sprites/person_14_wave.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"1e05a4b69e7bd3a2f132930aefcc40fb","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1e05a4b69e7bd3a2f132930aefcc40fb?name=person_14_wave.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_15.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"94fdd3d76215bbca5e86e24c9e16c8db","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/94fdd3d76215bbca5e86e24c9e16c8db?name=person_15.png","size":558},{"path":"Assets/Resources/Sprites/person_15.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"d9a562bb8cd6a52053c99bce1e499e42","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d9a562bb8cd6a52053c99bce1e499e42?name=person_15.png.meta","size":3478},{"path":"Assets/Resources/Sprites/person_15_shake.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"17ba48535827e7184aa659b2df9e6a80","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/17ba48535827e7184aa659b2df9e6a80?name=person_15_shake.anim","size":1865},{"path":"Assets/Resources/Sprites/person_15_shake.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"7f3ae054360e3fe325d8e2e70672f3f5","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7f3ae054360e3fe325d8e2e70672f3f5?name=person_15_shake.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_15_shake.controller","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c8cb80f93288b7b134d65f2c635245fd","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c8cb80f93288b7b134d65f2c635245fd?name=person_15_shake.controller","size":270},{"path":"Assets/Resources/Sprites/person_15_shake.controller.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"2658d61d19d393bdc271a54e1897aa66","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2658d61d19d393bdc271a54e1897aa66?name=person_15_shake.controller.meta","size":180},{"path":"Assets/Resources/Sprites/person_15_stand.controller","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"35db37c7238137e57b12f8acb0c08a1b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/35db37c7238137e57b12f8acb0c08a1b?name=person_15_stand.controller","size":270},{"path":"Assets/Resources/Sprites/person_15_stand.controller.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"55b4973413d212978fd87c5b1c480a9b","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/55b4973413d212978fd87c5b1c480a9b?name=person_15_stand.controller.meta","size":180},{"path":"Assets/Resources/Sprites/person_15_walk.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"d66c6aff1cbd1e643a0ecc6dc5ea24d8","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d66c6aff1cbd1e643a0ecc6dc5ea24d8?name=person_15_walk.anim","size":1864},{"path":"Assets/Resources/Sprites/person_15_walk.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"b7bdc35c0cbcfb1899ff780d0d7f8f75","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b7bdc35c0cbcfb1899ff780d0d7f8f75?name=person_15_walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_15_walk1.controller","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"23a9f4d2debc84b6995f3f3cc668fd8f","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/23a9f4d2debc84b6995f3f3cc668fd8f?name=person_15_walk1.controller","size":270},{"path":"Assets/Resources/Sprites/person_15_walk1.controller.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"345c5dfc1e8527df52a8d186160944f7","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/345c5dfc1e8527df52a8d186160944f7?name=person_15_walk1.controller.meta","size":180},{"path":"Assets/Resources/Sprites/person_15_wave.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"25db4efcc9a710fc4afba232be8b169c","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/25db4efcc9a710fc4afba232be8b169c?name=person_15_wave.anim","size":1864},{"path":"Assets/Resources/Sprites/person_15_wave.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"47df6cc252c7f6fce9841ef7a9d79e70","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/47df6cc252c7f6fce9841ef7a9d79e70?name=person_15_wave.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_16.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"de2492e12928400fef30e7cff457472a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/de2492e12928400fef30e7cff457472a?name=person_16.png","size":420},{"path":"Assets/Resources/Sprites/person_16.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"683d726904ae6edca201bc97a1fe9e56","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/683d726904ae6edca201bc97a1fe9e56?name=person_16.png.meta","size":3478},{"path":"Assets/Resources/Sprites/person_16_shake.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"eeb2d371f2e1763ba330b0482848cf0a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/eeb2d371f2e1763ba330b0482848cf0a?name=person_16_shake.anim","size":1865},{"path":"Assets/Resources/Sprites/person_16_shake.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"e0fe18e0c52544664d3cde16ed35538c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e0fe18e0c52544664d3cde16ed35538c?name=person_16_shake.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_16_walk.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"0ceccd50da31095932ebaefc74228e1a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0ceccd50da31095932ebaefc74228e1a?name=person_16_walk.anim","size":1864},{"path":"Assets/Resources/Sprites/person_16_walk.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"1a41769a310dc5dd3b13e291c98c66b7","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1a41769a310dc5dd3b13e291c98c66b7?name=person_16_walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_16_wave.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"f43eaae2198ac5863e8dfb2d9f4425b5","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f43eaae2198ac5863e8dfb2d9f4425b5?name=person_16_wave.anim","size":1864},{"path":"Assets/Resources/Sprites/person_16_wave.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"acc699db06bb74a5315af534077631ec","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/acc699db06bb74a5315af534077631ec?name=person_16_wave.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_17.png","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"456d2a7d26d562e909c09035f3529268","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/456d2a7d26d562e909c09035f3529268?name=person_17.png","size":377},{"path":"Assets/Resources/Sprites/person_17.png.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"41d0382a7e723fcc755d72a97ccbe604","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/41d0382a7e723fcc755d72a97ccbe604?name=person_17.png.meta","size":3478},{"path":"Assets/Resources/Sprites/person_17_shake.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"6a5614cc8ef0d94d7fdf4c5d4747d3c2","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6a5614cc8ef0d94d7fdf4c5d4747d3c2?name=person_17_shake.anim","size":1865},{"path":"Assets/Resources/Sprites/person_17_shake.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"66bbab1bda2ccc2f17575b6878eee17b","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/66bbab1bda2ccc2f17575b6878eee17b?name=person_17_shake.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_17_walk.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"eb96d1eb99a7a77adc1ca444c8375209","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/eb96d1eb99a7a77adc1ca444c8375209?name=person_17_walk.anim","size":1864},{"path":"Assets/Resources/Sprites/person_17_walk.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"b66b9d8b13c29a1c5fef619935a85645","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b66b9d8b13c29a1c5fef619935a85645?name=person_17_walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_17_wave.anim","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"d0dd5c7b14fcb19d4595a261f5b2c98f","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d0dd5c7b14fcb19d4595a261f5b2c98f?name=person_17_wave.anim","size":1864},{"path":"Assets/Resources/Sprites/person_17_wave.anim.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"eb1a021e0f3487db1f101b6789be7f6a","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/eb1a021e0f3487db1f101b6789be7f6a?name=person_17_wave.anim.meta","size":180},{"path":"Assets/Scenes.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"b8eabfdb8aeb471090a1f3e5e3bf9ad9","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b8eabfdb8aeb471090a1f3e5e3bf9ad9?name=Scenes.meta","size":201},{"path":"Assets/Scenes/AnimTest.unity","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"7486517e73004fdd0c62e0aa70274145","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7486517e73004fdd0c62e0aa70274145?name=AnimTest.unity","size":12669},{"path":"Assets/Scenes/AnimTest.unity.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"07998c13f3c08d773d29726e5758748a","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/07998c13f3c08d773d29726e5758748a?name=AnimTest.unity.meta","size":175},{"path":"Assets/Scenes/GameOver.unity","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"00127e87a773b438da7b0fb5c88568fd","state":2,"downloadPath":"","size":10248},{"path":"Assets/Scenes/GameOver.unity.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"7b633661a0fe2d5f7b4c37992d956ba4","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7b633661a0fe2d5f7b4c37992d956ba4?name=GameOver.unity.meta","size":175},{"path":"Assets/Scenes/Menu.unity","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"7c680c43695129695868296d27f5908d","state":2,"downloadPath":"","size":179770},{"path":"Assets/Scenes/Menu.unity.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"b6c1911dce4a3391651f9983c04a8b6c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b6c1911dce4a3391651f9983c04a8b6c?name=Menu.unity.meta","size":175},{"path":"Assets/Scenes/Scene0.unity","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"6ff967b3d856dd1d18576aaa35a9dae0","state":2,"downloadPath":"","size":66372},{"path":"Assets/Scenes/Scene0.unity.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"d4d7d45a3286ec169bbca62bb39b078f","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d4d7d45a3286ec169bbca62bb39b078f?name=Scene0.unity.meta","size":183},{"path":"Assets/Scripts.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ba181f585ecc575d003033757387e126","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ba181f585ecc575d003033757387e126?name=Scripts.meta","size":201},{"path":"Assets/Scripts/Achieve.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"7547341e03aedd1e351ddc76ca2b9c1e","state":2,"downloadPath":"","size":1026},{"path":"Assets/Scripts/Achieve.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"f11c64ad821d23fd5b53a6fd458e788b","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f11c64ad821d23fd5b53a6fd458e788b?name=Achieve.cs.meta","size":263},{"path":"Assets/Scripts/AndroidOnly.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"73d4ecf4692db9a5bf0a42eee615b31a","state":2,"downloadPath":"","size":235},{"path":"Assets/Scripts/AndroidOnly.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"bd84ec9cc7a939f6f1c92e01a526057e","state":32770,"downloadPath":"","size":275},{"path":"Assets/Scripts/Customer.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"6bd08d4aa49b349cb065eb76e8287da3","state":2,"downloadPath":"","size":3290},{"path":"Assets/Scripts/Customer.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"7148073b74c04a7977ab3f2cac60fec1","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7148073b74c04a7977ab3f2cac60fec1?name=Customer.cs.meta","size":275},{"path":"Assets/Scripts/GameController.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8215821aa215078395e02c3e34167d89","state":2,"downloadPath":"","size":2223},{"path":"Assets/Scripts/GameController.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"80f693375b10306d36ffb186b5f582d1","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/80f693375b10306d36ffb186b5f582d1?name=GameController.cs.meta","size":275},{"path":"Assets/Scripts/GameOver.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"d82444aca4326f3e19279dc53a7b22f4","state":2,"downloadPath":"","size":1745},{"path":"Assets/Scripts/GameOver.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"7767f83c52e732ff54164ca7f081d01d","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7767f83c52e732ff54164ca7f081d01d?name=GameOver.cs.meta","size":263},{"path":"Assets/Scripts/GooglePlayLogin.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"6f344ffe06f9f11d1ea665508fafa7e4","state":2,"downloadPath":"","size":708},{"path":"Assets/Scripts/GooglePlayLogin.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8830cf586c24a24531d63c6f5a77c650","state":32770,"downloadPath":"","size":263},{"path":"Assets/Scripts/GooglePlayManager.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"668eb6340e10a1e948276ea19d0d59d6","state":2,"downloadPath":"","size":3276},{"path":"Assets/Scripts/GooglePlayManager.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8f12e6418eed8a2479dfcda320604d4d","state":32770,"downloadPath":"","size":0},{"path":"Assets/Scripts/InputManager.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"84060ccea03891b6074dfd04ea3e91f5","state":2,"downloadPath":"","size":3522},{"path":"Assets/Scripts/InputManager.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8de520d4fed48ba7c058d9981dd5e4bb","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8de520d4fed48ba7c058d9981dd5e4bb?name=InputManager.cs.meta","size":263},{"path":"Assets/Scripts/Player_Actions.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c00cf090389472ba5bbe78a41f0c5c21","state":2,"downloadPath":"","size":7626},{"path":"Assets/Scripts/Player_Actions.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"6a2a026b5d04152d6ff6803a4e17bb40","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6a2a026b5d04152d6ff6803a4e17bb40?name=Player_Actions.cs.meta","size":263},{"path":"Assets/Scripts/NoAndroid.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ae7f106668206467c4674b15eb92757a","state":2,"downloadPath":"","size":234},{"path":"Assets/Scripts/NoAndroid.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"5e72eb2114086c41d5145acc39941aa0","state":32770,"downloadPath":"","size":263},{"path":"Assets/Scripts/SpawnTimer.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"e11668d276e20eb4d42a77b34e61b56e","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e11668d276e20eb4d42a77b34e61b56e?name=SpawnTimer.cs","size":1539},{"path":"Assets/Scripts/SpawnTimer.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"3b85cad829389144c50f3188c5825826","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3b85cad829389144c50f3188c5825826?name=SpawnTimer.cs.meta","size":275},{"path":"Assets/Scripts/Spawner.cs","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ab0af1e037b15fdda6aabb544cfceee7","state":2,"downloadPath":"","size":3039},{"path":"Assets/Scripts/Spawner.cs.meta","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"c77976bd1e8f5998ef0bb06ffb89219b","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c77976bd1e8f5998ef0bb06ffb89219b?name=Spawner.cs.meta","size":376},{"path":"ProjectSettings/AudioManager.asset","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"9e51fac3aaa92a6c91f2e831ead1e873","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9e51fac3aaa92a6c91f2e831ead1e873?name=AudioManager.asset","size":328},{"path":"ProjectSettings/ClusterInputManager.asset","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"b1d0f114f4024863e4f8524801ee50dc","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b1d0f114f4024863e4f8524801ee50dc?name=ClusterInputManager.asset","size":114},{"path":"ProjectSettings/DynamicsManager.asset","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"3da9655119fbb9b91c1f0000db8db1f2","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3da9655119fbb9b91c1f0000db8db1f2?name=DynamicsManager.asset","size":715},{"path":"ProjectSettings/EditorBuildSettings.asset","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"77a5655fa2685a2303a98c0b958bb204","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/77a5655fa2685a2303a98c0b958bb204?name=EditorBuildSettings.asset","size":291},{"path":"ProjectSettings/EditorSettings.asset","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"b180acd5439ad835dac189ebd954c457","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b180acd5439ad835dac189ebd954c457?name=EditorSettings.asset","size":405},{"path":"ProjectSettings/GraphicsSettings.asset","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"90ea28d08cbc932ef7677d820c8792cd","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/90ea28d08cbc932ef7677d820c8792cd?name=GraphicsSettings.asset","size":2221},{"path":"ProjectSettings/InputManager.asset","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"ca91550943d66f92a950242da0b38982","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ca91550943d66f92a950242da0b38982?name=InputManager.asset","size":5793},{"path":"ProjectSettings/NavMeshAreas.asset","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"28db53f957dec18c9ba0383f31c53f6c","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/28db53f957dec18c9ba0383f31c53f6c?name=NavMeshAreas.asset","size":894},{"path":"ProjectSettings/NetworkManager.asset","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a41c11593b9425a3e844680d2da92529","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a41c11593b9425a3e844680d2da92529?name=NetworkManager.asset","size":151},{"path":"ProjectSettings/Physics2DSettings.asset","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"b5b27c8b9d74f2d16101e8cfce35f149","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b5b27c8b9d74f2d16101e8cfce35f149?name=Physics2DSettings.asset","size":1330},{"path":"ProjectSettings/ProjectSettings.asset","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"962a0ebd854f2b689dd4779ed45938ed","state":2,"downloadPath":"","size":13753},{"path":"ProjectSettings/ProjectVersion.txt","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"8f8cbb10301976e45e44f8dc82134de7","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8f8cbb10301976e45e44f8dc82134de7?name=ProjectVersion.txt","size":25},{"path":"ProjectSettings/QualitySettings.asset","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"0bae7b17a96bf7861fa9d5a18b0abe0f","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0bae7b17a96bf7861fa9d5a18b0abe0f?name=QualitySettings.asset","size":4490},{"path":"ProjectSettings/TagManager.asset","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"715a924f089e3f92b50b91e47b6eb371","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/715a924f089e3f92b50b91e47b6eb371?name=TagManager.asset","size":522},{"path":"ProjectSettings/TimeManager.asset","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"a4f23c9e1fc6dfd9fc5e206461b5fd7a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a4f23c9e1fc6dfd9fc5e206461b5fd7a?name=TimeManager.asset","size":202},{"path":"ProjectSettings/UnityConnectSettings.asset","revisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","hash":"524bf55095f408d404a9b4f8034819e5","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/524bf55095f408d404a9b4f8034819e5?name=UnityConnectSettings.asset","size":673}],"cache":[{"path":"Assets/GPGSIds.cs","hash":"ef4f3ae5d5ab62eb43ef178fea967bab","datetime":{"high":0,"low":1485282932}},{"path":"Assets/GPGSIds.cs.meta","hash":"7842e91674a3cba86ccda4a5d66cdc38","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template.meta","hash":"4e3ff4d8277fea6c0b48960b38760da6","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Animation.meta","hash":"caa07e7206e6d2ae2c8f14d77647a1ef","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Animation/FadeImageController.controller","hash":"08cc0cefa782fad9044bf8753bc140bf","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Animation/FadeImageController.controller.meta","hash":"86c82e40cd0d90782cdd6a087e42e90f","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Animation/FadeMenuAlpha.anim","hash":"0d5ed7d4161b30a47481b3fbbaa1efac","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Animation/FadeMenuAlpha.anim.meta","hash":"99765e4c602b6686a32016d258c93cd9","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Animation/FadeToColor.anim","hash":"587ab13fc35c96c11d43896f4a9d877a","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Animation/FadeToColor.anim.meta","hash":"5f53ab0f0c170f9e6906e785d0791dd5","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Animation/MenuPanel.controller","hash":"ffc785a2db2ad92b704865ab90b8a5fa","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Animation/MenuPanel.controller.meta","hash":"2d49702918141d6870b7465ecdf138f9","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Audio.meta","hash":"990b31dfdbafb60c8b0ffba2f33aa864","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Audio/MasterMixer.mixer","hash":"5c99dfd8abe298ec16ae1bec9c902b4a","datetime":{"high":0,"low":1485251050}},{"path":"Assets/Game Jam Template/Audio/MasterMixer.mixer.meta","hash":"6c61182e2da123fe456b0379e17a2f6a","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Audio/Music.meta","hash":"492830bf36443608ff1064ead882b009","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Audio/Music/intro_music_gjt.aif","hash":"2039c63e70d12b99555e5912c19d9b3f","datetime":{"high":0,"low":1485130073}},{"path":"Assets/Game Jam Template/Audio/Music/intro_music_gjt.aif.meta","hash":"54e7685393eb18a3e907bf101d29372a","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Fonts.meta","hash":"2b5a55f6cb9ebbaabd6703bed0c64231","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Fonts/OpenSans.meta","hash":"a3287527f5ae2abbc8947f25b5296342","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Fonts/OpenSans/License!.txt","hash":"d273d63619c9aeaf15cdaf76422c4f87","datetime":{"high":0,"low":1485130073}},{"path":"Assets/Game Jam Template/Fonts/OpenSans/License!.txt.meta","hash":"f67302b277f1c99a10dd0c2182bf70a3","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSans-ExtraBold.ttf","hash":"8bac22ed4fd7c8a30536be18e2984f84","datetime":{"high":0,"low":1485130073}},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSans-ExtraBold.ttf.meta","hash":"7253aba019b9e377d7a05ba028381d82","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSansBold.ttf","hash":"50145685042b4df07a1fd19957275b81","datetime":{"high":0,"low":1485130073}},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSansBold.ttf.meta","hash":"02c958ba12a0f8db824f9a372817df79","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSansLight.ttf","hash":"1bf71be111189e76987a4bb9b3115cb7","datetime":{"high":0,"low":1485130073}},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSansLight.ttf.meta","hash":"6a1bd646e33a4bd5a781b8f7e6e449f2","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSansRegular.ttf","hash":"629a55a7e793da068dc580d184cc0e31","datetime":{"high":0,"low":1485130073}},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSansRegular.ttf.meta","hash":"24fab0afdcfba2a952920914be8d7e71","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSansSemibold.ttf","hash":"33f225b8f5f7d6b34a0926f58f96c1e9","datetime":{"high":0,"low":1485130073}},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSansSemibold.ttf.meta","hash":"388c87f9b5f4f7a5a49d5815d8485abb","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/GameJamTemplateReadMe.txt","hash":"7f7ded6a00df7e13985729844dcb0e72","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/GameJamTemplateReadMe.txt.meta","hash":"223c6cb4718e185e62612a83f8742465","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Prefabs.meta","hash":"e1138c1e82e7bbf7571155717711065c","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Prefabs/EventSystem.prefab","hash":"0479948bb09e64c7b7d032ef9cc801b9","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Prefabs/EventSystem.prefab.meta","hash":"87238955b8edd1fe7309f414e4eeb61d","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Prefabs/GameOverUI.prefab","hash":"d3cfb0990da49915c18e97ece8d569d8","datetime":{"high":0,"low":1485301787}},{"path":"Assets/Game Jam Template/Prefabs/GameOverUI.prefab.meta","hash":"1f4fa073a91901a476441412c5f69288","datetime":{"high":0,"low":1485301660}},{"path":"Assets/Game Jam Template/Prefabs/MenuUI.prefab","hash":"c7a5fc11084081992c4c2aa4a88245cd","fromPath":"Assets/Game Jam Template/Prefabs/UI.prefab","datetime":{"high":0,"low":1485305088}},{"path":"Assets/Game Jam Template/Prefabs/MenuUI.prefab.meta","hash":"6e57b6e74dc3978e8db4ad2857a22427","fromPath":"Assets/Game Jam Template/Prefabs/UI.prefab.meta","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Scripts.meta","hash":"b5d61a4f267c773c571640cf3668ba7f","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Scripts/DontDestroy.cs","hash":"ef1d6ae02c7464b3437f6ecc5b9b6f70","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Scripts/DontDestroy.cs.meta","hash":"7e8cb61e496ad9bb5f6d80b26a89c090","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Scripts/EventSystemChecker.cs","hash":"fb113520cc43783c445c94c1be264bfe","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Scripts/EventSystemChecker.cs.meta","hash":"bfd953762569d55833e297c410cce114","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Scripts/Pause.cs","hash":"d68ced2b2c76bd62233b80cc1132e350","datetime":{"high":0,"low":1485293205}},{"path":"Assets/Game Jam Template/Scripts/Pause.cs.meta","hash":"7aae54df5c7024c59ae725042f999de4","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Scripts/PlayMusic.cs","hash":"964f64cefde1cdd6528ef655f7a3720b","datetime":{"high":0,"low":1485286633}},{"path":"Assets/Game Jam Template/Scripts/PlayMusic.cs.meta","hash":"82efc421ed1afd7c220dd03163881282","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Scripts/QuitApplication.cs","hash":"a843a50c47e21cbf5c7feaaeedbd9a9b","datetime":{"high":0,"low":1485300380}},{"path":"Assets/Game Jam Template/Scripts/QuitApplication.cs.meta","hash":"6dbc1adf6fbe48194669d4745cc443ae","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Scripts/SetAudioLevels.cs","hash":"705ec70a88d8898cf27c6791f9eafa85","datetime":{"high":0,"low":1485302690}},{"path":"Assets/Game Jam Template/Scripts/SetAudioLevels.cs.meta","hash":"b9d5f94edd3acdaed1ce0f61cef20098","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Scripts/ShowPanels.cs","hash":"ceec69174d3195aeea9f4c89bc4e42b0","datetime":{"high":0,"low":1485306609}},{"path":"Assets/Game Jam Template/Scripts/ShowPanels.cs.meta","hash":"c313170022bd32ef6cf04a05885a119d","datetime":{"high":0,"low":1485133431}},{"path":"Assets/Game Jam Template/Scripts/StartOptions.cs","hash":"1083703cd0d1152b978b0e83120017ba","datetime":{"high":0,"low":1485257599}},{"path":"Assets/Game Jam Template/Scripts/StartOptions.cs.meta","hash":"7765ff0ca27c687b68ab462885b94ccf","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames.meta","hash":"33fe2584af33ac1bfcb3b3c29741475e","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi.meta","hash":"672a3a1c014d8c21f9cda845cbfe3940","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Achievement.cs","hash":"4bf00b7a492645ce8b032b5282a684da","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Achievement.cs.meta","hash":"c13658d8b62c0eba98e666bcbd5ca37d","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/CommonStatusCodes.cs","hash":"033940dccdea1d693a20ca21aef7e866","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/CommonStatusCodes.cs.meta","hash":"edd873a4fd2fe97b22571f3b21d35483","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/CommonTypes.cs","hash":"53ee9786a5cd7119e09b46146bf2256d","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/CommonTypes.cs.meta","hash":"d7acb57db8e4c393427d7c51dc26a666","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/DummyClient.cs","hash":"a45eb874ba28670c81cfaef431c03b7f","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/DummyClient.cs.meta","hash":"0676eff20b0c84f3391760f4ecba7c4f","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Events.meta","hash":"8ac6dae07cac9887252a638dade02845","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Events/IEvent.cs","hash":"489e6873b523e04aff8317ebb477ce66","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Events/IEvent.cs.meta","hash":"8f08897dee0e6a96f51210c16d4468d0","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Events/IEventsClient.cs","hash":"81d5dce844541be3156fba020eb92ad6","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Events/IEventsClient.cs.meta","hash":"6eed6d0f60bbe61b3fe2e354d7d6f48a","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/IPlayGamesClient.cs","hash":"fa593bc72c23ba42391a6245d88cc22d","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/IPlayGamesClient.cs.meta","hash":"9aef353cf097c41b7b4849bc1aa76c58","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/LeaderboardScoreData.cs","hash":"f7704076dd8f047b22688587ace74256","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/LeaderboardScoreData.cs.meta","hash":"fb8e892f16eb5093db0142ce2ebb5595","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer.meta","hash":"a6bd8e471ea1725b71fc4372b2a2b539","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/IRealTimeMultiplayerClient.cs","hash":"30341cb1405fcc13e1f22324eafbc1e3","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/IRealTimeMultiplayerClient.cs.meta","hash":"29e3cd1e22be9a9e31ec4736fa713162","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/ITurnBasedMultiplayerClient.cs","hash":"0c9d3c0a29cac0123252a5a965e0dc21","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/ITurnBasedMultiplayerClient.cs.meta","hash":"56b2cc270e9d248521854aefc5b0c590","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/Invitation.cs","hash":"df3fdc195266ed827afca6102ad43cca","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/Invitation.cs.meta","hash":"022c4817b1af556535b1390ce21da0f1","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/MatchOutcome.cs","hash":"97b4ed2a009408ef2bb4d353631e1330","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/MatchOutcome.cs.meta","hash":"4b73aef2f7454b97445cdae5e65e8231","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/Participant.cs","hash":"85395581513ddaad67d9032b0bac5ead","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/Participant.cs.meta","hash":"bbc4f50b3540a9d9a2578481f1564ad8","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/Player.cs","hash":"a83e15a01c6a4e6a94a614211702aaac","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/Player.cs.meta","hash":"7c5fb31049ed7532ef72d02bb88c3ac6","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/RealTimeMultiplayerListener.cs","hash":"a296855a50188e822d4f2ead3b3e9a34","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/RealTimeMultiplayerListener.cs.meta","hash":"59978fef1910ce91cc9f537ec73c217b","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/TurnBasedMatch.cs","hash":"2acc75a7f7d672e1520faeeb65741baa","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/TurnBasedMatch.cs.meta","hash":"866baead77efa5879440471324f82e41","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Nearby.meta","hash":"91916c567f415312c74d9cb6caa055bd","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/AdvertisingResult.cs","hash":"a07cbf7ac1d4c7edac664c0109c54fa3","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/AdvertisingResult.cs.meta","hash":"f09cd964b0809e886eb7255f998d1ade","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/ConnectionRequest.cs","hash":"1130dcec72b58f100fb850ef4365dd5f","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/ConnectionRequest.cs.meta","hash":"8ddc47992a3f806e09ccda086769f920","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/ConnectionResponse.cs","hash":"1289a0199e278dd4db5ab4e27e4fbc36","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/ConnectionResponse.cs.meta","hash":"c2bd880f6209c7aa84bcfa5368057d0d","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/DummyNearbyConnectionClient.cs","hash":"dd3a3dd3b822a2f85ca83f5776795939","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/DummyNearbyConnectionClient.cs.meta","hash":"4ed55c33da2ccb783fe4a22684a35984","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/EndpointDetails.cs","hash":"cf37519f6b11386c3439db4eebf78be7","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/EndpointDetails.cs.meta","hash":"2eefc8666ce96ffef79489236ece3428","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/INearbyConnectionClient.cs","hash":"7f507d638ce0d305271ae29cdf250266","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/INearbyConnectionClient.cs.meta","hash":"db8b313f36044aabe5090268d5e47247","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/NearbyConnectionConfiguration.cs","hash":"df34430a5f727e2ea11fdd299f76e157","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/NearbyConnectionConfiguration.cs.meta","hash":"c015fba698fa3cc09b0dd24c63e3bdf2","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/PlayGamesClientConfiguration.cs","hash":"bfa3f61731db4fc22da17f6c03dd0f9d","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/PlayGamesClientConfiguration.cs.meta","hash":"87b1426cc5196b43cc4ae3d46ad926a1","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/PlayerStats.cs","hash":"7a0c75192b5f6a5f21686cda88315074","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/PlayerStats.cs.meta","hash":"696c1f3d5ca7f06f8b794bc7db6a7576","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/Quests.meta","hash":"ffb390da94e339c81ac8c7d9f4b59cf7","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/Quests/IQuest.cs","hash":"046eeb69cbefb8cc4b78c10344c3d632","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/Quests/IQuest.cs.meta","hash":"81c3eec704ac36af8d273902af9e4cf7","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/Quests/IQuestMilestone.cs","hash":"c3262b3ec1d6cef0a548576a4f0b749f","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/Quests/IQuestMilestone.cs.meta","hash":"00b472bd5043cba90c68f17580433e86","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/Quests/IQuestsClient.cs","hash":"2e78d3070d26c71e86da6a87cbecebeb","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/Quests/IQuestsClient.cs.meta","hash":"a493e6c5e70b57250f8f64ffe24becd0","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/SavedGame.meta","hash":"e18bbbb9a6180a832d45c17db80632e3","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/SavedGame/ISavedGameClient.cs","hash":"a23fa0782414b414ff95dfcf496bd2ef","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/SavedGame/ISavedGameClient.cs.meta","hash":"bd7781fa82aaea9ae3cd308dc15513be","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/SavedGame/ISavedGameMetadata.cs","hash":"44345638088907f7e271e5aa8455f1a2","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/SavedGame/ISavedGameMetadata.cs.meta","hash":"837f05b5629c34925ccc228db2e4f590","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/SavedGame/SavedGameMetadataUpdate.cs","hash":"92e9651efd8c2035164644e51c93703b","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/SavedGame/SavedGameMetadataUpdate.cs.meta","hash":"000aab026570a8b7fa2b33bf162182d7","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/ScorePageToken.cs","hash":"4d241cac1f7171fd9ed2c37a93a05d12","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/ScorePageToken.cs.meta","hash":"bbd76f821e94f2ec22ea07ce5c994e4b","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor.meta","hash":"3410ff21eeb03537794302c1fb954ca1","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor/GPGSAndroidSetupUI.cs","hash":"0a9ae17b03d527e7e9a9847fcfc9744c","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor/GPGSAndroidSetupUI.cs.meta","hash":"95a222efd0a666ee6b7c0d3a89b3f6d4","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor/GPGSDependencies.cs","hash":"cd8d8bc0dfb6388cce8f499f0ebe783e","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor/GPGSDependencies.cs.meta","hash":"7d0d93f210606f4f4691f6f6bdd059a2","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor/GPGSDocsUI.cs","hash":"fea339b87d53c25008456d3a47c2def9","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor/GPGSDocsUI.cs.meta","hash":"42a867dabe6d2b5b9b34edbc4f279e5a","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor/GPGSIOSSetupUI.cs","hash":"ba30521fe1386d3823e6b2f410ea9e0b","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor/GPGSIOSSetupUI.cs.meta","hash":"9e508dbcecb8f02d42eec9906c284016","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor/GPGSPostBuild.cs","hash":"80bd0e2dd80745582cca3883fc351132","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor/GPGSPostBuild.cs.meta","hash":"02fd8cbb60af8d708c2407997553c5ec","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor/GPGSProjectSettings.cs","hash":"08c6210169bc240d2c6a3721df80a75c","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor/GPGSProjectSettings.cs.meta","hash":"32f6d5f16229820536e125bec36ac9bb","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor/GPGSStrings.cs","hash":"893d45c78bb795fa1109c8215dc6221f","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor/GPGSStrings.cs.meta","hash":"1ae53ade7992073fe39249b332a71e07","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor/GPGSUpgrader.cs","hash":"ff6ec4dfef8a55e93ef6667536adfdab","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/GPGSUpgrader.cs.meta","hash":"be95bc4ea421687afa3b53b2a5bf8fd4","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor/GPGSUtil.cs","hash":"1326cee95bd286b94097195dc6117e81","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor/GPGSUtil.cs.meta","hash":"6d77fd458add90fa19e057242439e728","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/NearbyConnectionUI.cs","hash":"a45053382c58f1f762af13b84cf3a84a","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/NearbyConnectionUI.cs.meta","hash":"19cef4168bd7a85c746d152c18481ce4","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/PlistBuddyHelper.cs","hash":"c3e56bd14bc7131fa0438f17eb3e1c0f","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/PlistBuddyHelper.cs.meta","hash":"dee65c0b2ed2c1d5f2e4c78adfcc3cc5","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/PostprocessBuildPlayer","hash":"02d7050168ec725ed820983bc25fb00d","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/PostprocessBuildPlayer.meta","hash":"10b2449a54bf836cc769d67121a45e40","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/template-AndroidManifest.txt","hash":"193f3e9f4fb9c7d2be9c5a9161a5327a","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/template-AndroidManifest.txt.meta","hash":"50b85ab64a44f7f92373f014aecf1948","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/template-Constants.txt","hash":"1e72b30a390e57a353cc1f7230f3b7c3","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/template-Constants.txt.meta","hash":"48130b4d6c7bed2b8794ee15c2979de7","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/template-GameInfo.txt","hash":"87dc3a879e6d11dc9785c2bd2147c5a2","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/template-GameInfo.txt.meta","hash":"546f266dd6b1028dd26717ce99eb4e3d","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/xcode.meta","hash":"ffd0c939da9667a4b9b5cbb4bab28b28","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/xcode/Elements.cs","hash":"eb926a0f94ea8b784177ba22c9d69e3c","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/xcode/Elements.cs.meta","hash":"652e86c178e8e0acfb72c92e8c55e2b3","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/xcode/Lexer.cs","hash":"3cebc5db7bc9335f4574f0f09439840a","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/xcode/Lexer.cs.meta","hash":"6f8e741ee27927470a2ea8bbe97d3f68","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/xcode/Objects.cs","hash":"5efbf547bae8f68bc90083b75c639feb","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/xcode/Objects.cs.meta","hash":"58cb9f0120fee8206baed4a8b9f07d95","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/xcode/PBXProject.cs","hash":"8981fb739a7f4269a079f63ba24c56b8","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/xcode/PBXProject.cs.meta","hash":"d549db045ea424f09b301cf3b406f9fa","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/xcode/Parser.cs","hash":"11cc7eca6ac9c8869ffea020b597d55f","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/xcode/Parser.cs.meta","hash":"4fc4c2d0b1d9042bfb6a26edc326e3a1","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/xcode/Sections.cs","hash":"f6b502491f964d4fdb8cf06406577795","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/xcode/Sections.cs.meta","hash":"15ed5807930872fc6873f93c95f96ff2","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/xcode/Serializer.cs","hash":"37c2da7f0cd64a29593929848805460c","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/xcode/Serializer.cs.meta","hash":"b8ccb7714b4425d8e19c2894bb15465c","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/xcode/Utils.cs","hash":"45d011617a1436787b2a2927d0558539","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/xcode/Utils.cs.meta","hash":"90630fc112b8be4fc91205a6f6d5e2c2","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/GameInfo.cs","hash":"1e3d69156f0565b4d816544957dfaf05","datetime":{"high":0,"low":1485282934}},{"path":"Assets/GooglePlayGames/GameInfo.cs.meta","hash":"92db78012d37b470d4819b3eadab787b","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/ISocialPlatform.meta","hash":"9a9f0efd4b0cc0d87f8d1b76ba3ffc1b","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesAchievement.cs","hash":"9983bb3ddd29b65d775f22c75547aa8a","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesAchievement.cs.meta","hash":"3e9c826c70c2449f9ef5906d4bd41806","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesLeaderboard.cs","hash":"acaf826134feaafcc15f507f3a76f3d6","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesLeaderboard.cs.meta","hash":"f7000cbcedfea16d166dcf54359b645c","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesLocalUser.cs","hash":"d5f4cd98aaaa278f9d3535cbddb9fab4","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesLocalUser.cs.meta","hash":"c888ae2e153a26ce680f22b6e6e4f254","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesPlatform.cs","hash":"61c044740f03e8ef8f69cb3ad6b28963","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesPlatform.cs.meta","hash":"d3633770af663ce1a61fa0f6c6d1d07e","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesScore.cs","hash":"eb3a89df50566cb4f9b4ac1c06e3b630","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesScore.cs.meta","hash":"603660b94ccb9bf35641261dd18f70fd","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesUserProfile.cs","hash":"c40eb8f91436aea5346412ab984a1f2e","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesUserProfile.cs.meta","hash":"fbfd52e7e66f9f9536ac802cd41521ba","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Icons.meta","hash":"043678e78fd92cece20456f8a5416175","datetime":{"high":0,"low":1485294549}},{"path":"Assets/GooglePlayGames/Icons/games_achievements.png","hash":"0e4910cb539f773bb374ba61a023fca0","datetime":{"high":0,"low":1394053122}},{"path":"Assets/GooglePlayGames/Icons/games_achievements.png.meta","hash":"e6d56c912e3e2b8389c1cf0b7dc0501f","datetime":{"high":0,"low":1485294552}},{"path":"Assets/GooglePlayGames/Icons/games_achievements_green.png","hash":"e4ce4722aa6bc93f8f53680e9d592ddb","datetime":{"high":0,"low":1394053006}},{"path":"Assets/GooglePlayGames/Icons/games_achievements_green.png.meta","hash":"de4fb32cda6a4e97f1a1cfcd633db761","datetime":{"high":0,"low":1485294550}},{"path":"Assets/GooglePlayGames/Icons/games_achievements_white.png","hash":"f4a5f0e03e5e9db30137e3fab2f35f19","datetime":{"high":0,"low":1394053132}},{"path":"Assets/GooglePlayGames/Icons/games_achievements_white.png.meta","hash":"460be91f80c9a904711fb2db26bd27c9","datetime":{"high":0,"low":1485294553}},{"path":"Assets/GooglePlayGames/Icons/games_gifts.png","hash":"e3f07476620b09b41325a5cda52feb2d","datetime":{"high":0,"low":1394053152}},{"path":"Assets/GooglePlayGames/Icons/games_gifts.png.meta","hash":"e58ae65ef11c06796c00d19a3fb63070","datetime":{"high":0,"low":1485294554}},{"path":"Assets/GooglePlayGames/Icons/games_gifts_green.png","hash":"c4f73aa8d8a86a9139e95b095309333a","datetime":{"high":0,"low":1394053172}},{"path":"Assets/GooglePlayGames/Icons/games_gifts_green.png.meta","hash":"cc6cc28564b43373a9882745fbb71538","datetime":{"high":0,"low":1485294549}},{"path":"Assets/GooglePlayGames/Icons/games_gifts_white.png","hash":"63595b3b7232d8167f3bff172caa927b","datetime":{"high":0,"low":1394053160}},{"path":"Assets/GooglePlayGames/Icons/games_gifts_white.png.meta","hash":"22e98d75f668aa75e7aacac4f34b12eb","datetime":{"high":0,"low":1485294555}},{"path":"Assets/GooglePlayGames/Icons/games_leaderboards.png","hash":"9754ca13356c60e4a07343339ecc802f","datetime":{"high":0,"low":1394053050}},{"path":"Assets/GooglePlayGames/Icons/games_leaderboards.png.meta","hash":"7734055d66c9cbb1920190942ee36bb9","datetime":{"high":0,"low":1485294551}},{"path":"Assets/GooglePlayGames/Icons/games_leaderboards_green.png","hash":"06c43f049ac24463cc07f6494b47abe9","datetime":{"high":0,"low":1394053070}},{"path":"Assets/GooglePlayGames/Icons/games_leaderboards_green.png.meta","hash":"4954447ce67f90c85acf6435b9b7a1d3","datetime":{"high":0,"low":1485294555}},{"path":"Assets/GooglePlayGames/Icons/games_leaderboards_white.png","hash":"5c0796736d418753f26d2758e24a1a9e","datetime":{"high":0,"low":1394053060}},{"path":"Assets/GooglePlayGames/Icons/games_leaderboards_white.png.meta","hash":"6af8f5576e1f976381a79e00b934ae2a","datetime":{"high":0,"low":1485294554}},{"path":"Assets/GooglePlayGames/Icons/games_controller.png","hash":"6c8dc5f89f39deafef76b488d3215b5c","datetime":{"high":0,"low":1394053080}},{"path":"Assets/GooglePlayGames/Icons/games_controller.png.meta","hash":"6b5128503e8a288b7f78e879eaae2df4","datetime":{"high":0,"low":1485294554}},{"path":"Assets/GooglePlayGames/Icons/games_controller_grey.png","hash":"4ac0cf3978dca98922d2b5f8464928a9","datetime":{"high":0,"low":1394053110}},{"path":"Assets/GooglePlayGames/Icons/games_controller_grey.png.meta","hash":"ecb69c0c613964d82e7185f280dfd4dc","datetime":{"high":0,"low":1485294551}},{"path":"Assets/GooglePlayGames/Icons/games_controller_white.png","hash":"bc43dc87c0d7d5f863cdb2e30938577e","datetime":{"high":0,"low":1394053092}},{"path":"Assets/GooglePlayGames/Icons/games_controller_white.png.meta","hash":"4b8374a6cbedd457e1af4c6af051cc2d","datetime":{"high":0,"low":1485294551}},{"path":"Assets/GooglePlayGames/Icons/games_matches.png","hash":"6907767a8e0858402e6ce91466e566f4","datetime":{"high":0,"low":1394053142}},{"path":"Assets/GooglePlayGames/Icons/games_matches.png.meta","hash":"174823c0868f80cdb07fadffd7026b01","datetime":{"high":0,"low":1485294550}},{"path":"Assets/GooglePlayGames/Icons/games_matches_green.png","hash":"13d8eab34edbdc60d3cb9f50c84bbf1c","datetime":{"high":0,"low":1394053040}},{"path":"Assets/GooglePlayGames/Icons/games_matches_green.png.meta","hash":"dd88711b0d55e979e07e76687620e968","datetime":{"high":0,"low":1485294550}},{"path":"Assets/GooglePlayGames/Icons/games_matches_white.png","hash":"c90418ac54cf346b2cd79c23071e561a","datetime":{"high":0,"low":1394053030}},{"path":"Assets/GooglePlayGames/Icons/games_matches_white.png.meta","hash":"879e677ba3b1590aa9f767843c36a4e5","datetime":{"high":0,"low":1485294553}},{"path":"Assets/GooglePlayGames/Icons/games_quests_green.png","hash":"a0c055cefc87953d67e21f11699e673d","datetime":{"high":0,"low":1405436942}},{"path":"Assets/GooglePlayGames/Icons/games_quests_green.png.meta","hash":"8a547dfe5d6079765c3709d94c69824d","datetime":{"high":0,"low":1485294552}},{"path":"Assets/GooglePlayGames/Icons/games_quests_grey.png","hash":"c15002c5db964b698d7fbccc391bb1bf","datetime":{"high":0,"low":1405436914}},{"path":"Assets/GooglePlayGames/Icons/games_quests_grey.png.meta","hash":"4181dfda5027b97668af0a0b96d4f7ee","datetime":{"high":0,"low":1485294555}},{"path":"Assets/GooglePlayGames/Icons/games_quests_white.png","hash":"f5c44ef53676301313a2b3ad2beab627","datetime":{"high":0,"low":1405436972}},{"path":"Assets/GooglePlayGames/Icons/games_quests_white.png.meta","hash":"e119b6b5c6f3dea303905a33401b564c","datetime":{"high":0,"low":1485294553}},{"path":"Assets/GooglePlayGames/Icons/games_savedgames_green.png","hash":"c7f36db0a7719a02a75611d737db1076","datetime":{"high":0,"low":1405437132}},{"path":"Assets/GooglePlayGames/Icons/games_savedgames_green.png.meta","hash":"2ccda2b563bc665a3096756dfcb2f6ce","datetime":{"high":0,"low":1485294552}},{"path":"Assets/GooglePlayGames/Icons/games_savedgames_grey.png","hash":"86cd775bcdf42050f4d7568868245e8d","datetime":{"high":0,"low":1405437092}},{"path":"Assets/GooglePlayGames/Icons/games_savedgames_grey.png.meta","hash":"cd34a49f07681dda6b34a9c97126bcfa","datetime":{"high":0,"low":1485294549}},{"path":"Assets/GooglePlayGames/Icons/games_savedgames_white.png","hash":"612d5e9f9b0e7290b8fc578bbbd464f0","datetime":{"high":0,"low":1405437176}},{"path":"Assets/GooglePlayGames/Icons/games_savedgames_white.png.meta","hash":"dc69f13527f0f1b19820ac3b959cf395","datetime":{"high":0,"low":1485294553}},{"path":"Assets/GooglePlayGames/OurUtils.meta","hash":"a4cc749ffd15a6b3585eabfe588089d7","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/OurUtils/Logger.cs","hash":"1ffb6d1f4f1b26c00bac3a6dc2bb50d9","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/OurUtils/Logger.cs.meta","hash":"4bc4a18e90c4cab225bdea03ad125c3c","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/OurUtils/Misc.cs","hash":"a0901adaf518b6149e438201772dfd44","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/OurUtils/Misc.cs.meta","hash":"737781822153ec0e35971e7dd5a02602","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/OurUtils/PlatformUtils.cs","hash":"31256a38661beb4e62a30c9c6a0a2f5b","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/OurUtils/PlatformUtils.cs.meta","hash":"ded5d5c2b6386dd738ed4f8400aae9e7","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/OurUtils/PlayGamesHelperObject.cs","hash":"44382ec8e79d68ea2487339dbe6c000c","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/OurUtils/PlayGamesHelperObject.cs.meta","hash":"6a082ab9dc3ee6c0051d640b98f5839b","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms.meta","hash":"c3ccf3fca2af6d6e52d53b0f0762d861","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android.meta","hash":"731581cc808572e00b0d7407d68d537b","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/AndroidClient.cs","hash":"4a59ab2304c28d8221f825b4d0e66640","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/AndroidClient.cs.meta","hash":"c5d214c4e84848d296a3044aa57d90bd","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/AndroidTokenClient.cs","hash":"e10460d07cf6aec642f74c6f27042fd5","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/AndroidTokenClient.cs.meta","hash":"97f45fdb4a8f1194f1a2101a7fcde7a5","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Developers.meta","hash":"597c8631b833a77c0f1e9296f2288fe7","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Developers/JavaInterfaceProxy.cs","hash":"ddab153c9b92f203fd13d5c22458ae28","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Developers/JavaInterfaceProxy.cs.meta","hash":"a4d58534cdffb77b1e549adf7b44ccc1","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Developers/JavaObjWrapper.cs","hash":"98aed1f8de551121f1324558f449fadb","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Developers/JavaObjWrapper.cs.meta","hash":"fbfa8e610a1cf3d7f018cfc26cbc617e","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms.meta","hash":"ded8f452621616dbdc5a698e720d446d","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common.meta","hash":"d7d15f1419fcfed490a567e495d884ed","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api.meta","hash":"97ee04a056e6fd217e7d6e038e747632","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/GoogleApiClient.cs","hash":"fc455ecfdcc333ea6b747339894f83ec","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/GoogleApiClient.cs.meta","hash":"f9ff313fb5a49f3e1b8d37fe0f7e8df8","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/PendingResult.cs","hash":"23a1a5ce2e83574a937c2116879b8f75","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/PendingResult.cs.meta","hash":"1c65490e287e14e7c104f02f7c83818a","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/Result.cs","hash":"594f08b548dba7a3e968ae4b5defb4f7","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/Result.cs.meta","hash":"0869b84ba653a572b95a62d6443ce695","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/ResultCallback.cs","hash":"9309ad5c68d8582e7e32da73f848ecf9","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/ResultCallback.cs.meta","hash":"cc2165fe1758b4730c5a44d07b6e2002","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/ResultCallbackProxy.cs","hash":"ae80853be473485712d2e28e1b4afff2","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/ResultCallbackProxy.cs.meta","hash":"7117c42a44faf5b4cd7872a56fedf4cf","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/Status.cs","hash":"fa7f7361b346c08ec2775a76927a24b1","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/Status.cs.meta","hash":"e633309f9b46288381f08ea0ecc2c20c","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/ConnectionResult.cs","hash":"26aa1239d3baf2c0929ac67f6fcbe146","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/ConnectionResult.cs.meta","hash":"16f9b99aebb8c683604e42be088bf49d","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games.meta","hash":"070c5bb589111c9134f045634a289fd5","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Games.cs","hash":"3dfb9b4a29c713a290b6df8e74d958cd","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Games.cs.meta","hash":"e71af140e0e718ccddc5dd68b56cb479","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats.meta","hash":"d6404ad515d3c8408bd47c11f43538b7","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/LoadPlayerStatsResultObject.cs","hash":"a3a2cbabf5c8ffa1602fb1ee98e9e9af","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/LoadPlayerStatsResultObject.cs.meta","hash":"715818ae357260c44d72ee521ddf283e","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/PlayerStats.cs","hash":"14a5b4431b2ab326716e833d68b11f13","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/PlayerStats.cs.meta","hash":"b6dea4a16bdcb0b3587e23214b506724","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/PlayerStatsObject.cs","hash":"051d46f14f506927080c74ffa106fd32","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/PlayerStatsObject.cs.meta","hash":"037d790c0daa49b29483cdbfbe28f83f","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/Stats.cs","hash":"2a33df4d1f30986090fa298a6ea98e56","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/Stats.cs.meta","hash":"83bbe99ae3058e93b3338e419de523a8","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/StatsObject.cs","hash":"2e3cb5b7504490004d3d556e476fcacb","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/StatsObject.cs.meta","hash":"33dab91f8fbe5cb70c01091cd39213e6","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/IClientImpl.cs","hash":"99d2012ca436e120b4390fa3976c7341","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/IClientImpl.cs.meta","hash":"6133df87a8ff10c16df461cb0fef863e","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/IOS.meta","hash":"9a3521b6d43cbd4c3d5ec7834161ad53","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/IOS/IOSClient.cs","hash":"36473828544bb11fd1d1cc014137c43c","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/IOS/IOSClient.cs.meta","hash":"501a156e5bbd216a9781ebd192aa799f","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/IOS/IOSTokenClient.cs","hash":"80b700f3e33c54e355b1cff210e036ec","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/IOS/IOSTokenClient.cs.meta","hash":"6891e604132d0a9c2815b789f0f3b499","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native.meta","hash":"2f045c4b6c250e25d933c7586a232d69","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/CallbackUtils.cs","hash":"3ee3ae52ed0eab46fc60480cc1e67bff","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/CallbackUtils.cs.meta","hash":"aed86a712f98b545174598a2d28de616","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/ConversionUtils.cs","hash":"15ffd847350a96462192a89a8681d91d","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/ConversionUtils.cs.meta","hash":"75b43d37bdd7b5a678c423b19a0d2297","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper.meta","hash":"f4c248687b76c3046322755c2f163d66","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Achievement.cs","hash":"2a2f0d1e6e534f7fec9bcdbd4672b7cc","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Achievement.cs.meta","hash":"777eb0c9683b0fcbb54dc7243e98b09e","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/AchievementManager.cs","hash":"b24ef4eb7708abd27a08456873e5b298","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/AchievementManager.cs.meta","hash":"00fcd6ccb8d5540a0909b13fa22d619a","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/AndroidPlatformConfiguration.cs","hash":"01547e3433d7f50b180746cf587fa667","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/AndroidPlatformConfiguration.cs.meta","hash":"25df0ffe16ea57125304a0c255852386","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Builder.cs","hash":"f8cd304da016a7d9ede5c19bf82c90f6","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Builder.cs.meta","hash":"f00bf7f1d3bc8fe17560e4f8c16d274c","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/CommonErrorStatus.cs","hash":"669b11c30b7d5e39eaf12eed616894bc","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/CommonErrorStatus.cs.meta","hash":"cd8488523bbe525041303925d9433b09","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/EndpointDiscoveryListenerHelper.cs","hash":"6a0bb1d830c83857d9689469a7f6ca29","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/EndpointDiscoveryListenerHelper.cs.meta","hash":"43fd867c477b3f317863403271f40ead","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Event.cs","hash":"b5857d32152f94a007de99ee58064113","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Event.cs.meta","hash":"093566d24c04081e1bd630d4fda726b5","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/EventManager.cs","hash":"9e0b1cfc54e6973ae81feeb446029dd4","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/EventManager.cs.meta","hash":"f76b2125ffba3a86f539141b8f80c127","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/GameServices.cs","hash":"8890b667f9715927791517ee02c686d9","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/GameServices.cs.meta","hash":"5ded113be209184968360e253fe680fc","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/InternalHooks.cs","hash":"8ad69370ec2d6f89cf0c93111ebbd267","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/InternalHooks.cs.meta","hash":"a07a8fc5a1d9e6c5eeeeee2bd15bc6e8","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/IosPlatformConfiguration.cs","hash":"a95288aa9f42c834f3300c38d31e1050","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/IosPlatformConfiguration.cs.meta","hash":"752d15da11bed3e93589de444d16591d","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Leaderboard.cs","hash":"7797b711c6feabbc26b7ac70a47fa759","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Leaderboard.cs.meta","hash":"64f3d664151d68ab06891aae8885d61c","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/LeaderboardManager.cs","hash":"4e8b26a03a0f85f24a228318eeef4766","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/LeaderboardManager.cs.meta","hash":"d49d60e97c9bcca73efc12a1f71e084c","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/MessageListenerHelper.cs","hash":"d382a7c76b9f88e0a5e86a851567159d","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/MessageListenerHelper.cs.meta","hash":"6c653a3e1bedbb370a4b2e4b52e7f0c0","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/MultiplayerInvitation.cs","hash":"66a0edb52156483cba118ce9b95e63b7","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/MultiplayerInvitation.cs.meta","hash":"7542988b94edf470b3e6ff809aecea08","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/MultiplayerParticipant.cs","hash":"8999b66cfad62566ce9531781e3177fe","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/MultiplayerParticipant.cs.meta","hash":"663c6ad4588667e465373aee75b9191e","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnectionTypes.cs","hash":"1087b21ed0d3ea380d17a4b1e99a574e","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnectionTypes.cs.meta","hash":"47d7801da5f8f3614879c6431abfeba6","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnections.cs","hash":"ed7b8ab69f864393489bb08114094dad","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnections.cs.meta","hash":"7201996d554a1bcdfa7f2bcd0d5cf268","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnectionsBuilder.cs","hash":"0dbd8dc3da1741bb0696f3bb345dc1fc","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnectionsBuilder.cs.meta","hash":"515817ba84585acd84fcdfe6a59805cb","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnectionsStatus.cs","hash":"c80c0e698dd848450ab732508c16840d","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnectionsStatus.cs.meta","hash":"109f59104a5eed3043036a320f1ccf20","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/ParticipantResults.cs","hash":"4931223d9be365d59aec64c05e2d0797","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/ParticipantResults.cs.meta","hash":"29ef2786bcb9969ccf1d8c69b2132a39","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Player.cs","hash":"d7f52669b97ba33c26e47f844f4c633d","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Player.cs.meta","hash":"d920604ee0a16ced5419cf1b2e6bac09","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/PlayerManager.cs","hash":"1f3f80941d0f0714ce943581b0b2e94c","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/PlayerManager.cs.meta","hash":"c00c36a41267e475396056dd7bd2037a","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/PlayerStats.cs","hash":"ddcc1170b233ce4a87a2ac2837ef613f","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/PlayerStats.cs.meta","hash":"9eee84009b8962d20eb841f6ffa5d6f7","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Quest.cs","hash":"45d2d89ec260a77cfb4eead7b09fce60","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Quest.cs.meta","hash":"5ca75fbccb1718090b577a8379fede93","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/QuestManager.cs","hash":"68495627fbd60cefe5da6bc2bff5bd4b","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/QuestManager.cs.meta","hash":"a9a37f3ff4e44b3198aab390ea6785cb","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/QuestMilestone.cs","hash":"85fed03fc882a696e323effb7aed729d","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/QuestMilestone.cs.meta","hash":"3dd609747ed69dc2f5a86bcbe1f27e12","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeEventListenerHelper.cs","hash":"9fdbeb1bfa4b546719d5ef198c3ef0f6","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeEventListenerHelper.cs.meta","hash":"0011f10e9d65b3e2d87f3c18cf73aa7f","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeMultiplayerManager.cs","hash":"57c1a9e639548cadf386f3f28a0bf80a","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeMultiplayerManager.cs.meta","hash":"d919d705c3e22eb5d4e05c2b16c407cf","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeRoom.cs","hash":"2e674e32978e1c3d3f3e4ee0415f3bbc","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeRoom.cs.meta","hash":"d4754f6418bfcd89564617577786ca53","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeRoomConfig.cs","hash":"9be2cc03314e71a0d203fd158fe68282","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeRoomConfig.cs.meta","hash":"802b50dbf9fe609f2d9537fe5b49cc0b","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeRoomConfigBuilder.cs","hash":"7a7c64d1ee94969cd9f70927e15e4b41","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeRoomConfigBuilder.cs.meta","hash":"94a115393382c28eb0a8ba803d87ca7f","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Score.cs","hash":"33d4c60081046120830dfe7ac11260e3","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Score.cs.meta","hash":"2fe4c6a8b44491a645a2cda7bfeb8cfd","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/ScorePage.cs","hash":"f40db89b4020068bbb8c268550d6efca","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/ScorePage.cs.meta","hash":"03598530d77cdd75dc7d36033c264257","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/ScoreSummary.cs","hash":"aaa77184b0f3f8817baa64de9d4f8296","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/ScoreSummary.cs.meta","hash":"fd2c7a94293f11d22f47ec121ba0b309","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Sentinels.cs","hash":"ab585d4c5900f4cdfaf4f3c5553b36f5","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Sentinels.cs.meta","hash":"733bb275edd20856d98b3dd5765dcf76","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotManager.cs","hash":"cb23f393a145bdbb7f1b3b12b882d3ae","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotManager.cs.meta","hash":"4fc611a94a8cfb2a4e4c35885e2cc559","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotMetadata.cs","hash":"b4a0cfdebc688a46c4c9229627fbdcba","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotMetadata.cs.meta","hash":"b4dead9d7eeba6447e696c55da323b68","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotMetadataChange.cs","hash":"f0a8917c559e14123ca5c1651e01bd1e","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotMetadataChange.cs.meta","hash":"b6e682c465c47b1359875ae7060d19f9","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotMetadataChangeBuilder.cs","hash":"b27ac86a4e5c9e0a39594c0de9457aa8","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotMetadataChangeBuilder.cs.meta","hash":"4e4885881f2f91e4f92e63c9f0993faa","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/StatsManager.cs","hash":"ce25b78870b100cdf65282241300ff5b","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/StatsManager.cs.meta","hash":"da8d5c0927f96364d00b17182d81bd4d","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Status.cs","hash":"2aa4e80607d80e8c6fe6d3d71a28fa0b","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Status.cs.meta","hash":"4cf0c68da5fefb3fbbf9e2304304c822","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SymbolLocation.cs","hash":"58a4773c40f6835513b35521a27cb8f6","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SymbolLocation.cs.meta","hash":"df9d9e3213637c97f4c2ee231174259b","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMatch.cs","hash":"aac232d6ea6cf941b72b96126b114560","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMatch.cs.meta","hash":"a0e8925d93ade94e86f8012f6d7095d9","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMatchConfig.cs","hash":"5bfcb6e52a3e70451a4790a849655082","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMatchConfig.cs.meta","hash":"ae00090dc382a7cd438f1f3b36188f00","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMatchConfigBuilder.cs","hash":"8792df944fd95b7371cb75781c0ccc00","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMatchConfigBuilder.cs.meta","hash":"93b4bfa538a25e478fc1954592aea29f","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMultiplayerManager.cs","hash":"0390ef01eae99dcb368c81f22538407a","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMultiplayerManager.cs.meta","hash":"6c7ed418799bf886a0d74cf5e87a2f60","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Types.cs","hash":"d9a041972d90f0363b620b46e772d31b","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Types.cs.meta","hash":"48ef37ba2d68c7ceb4de725fb73f7e11","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/JavaUtils.cs","hash":"0b26ad8ca92d82e6efa9f810aa9b3923","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/JavaUtils.cs.meta","hash":"7260fbd12d3caeae061beb41459015fe","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeClient.cs","hash":"4f4de88ef16398e13ef3ee3c9a55ff3a","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeClient.cs.meta","hash":"e413765368d70215ec8b5d05464a55bd","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeEventClient.cs","hash":"2cdc5cf4fc26f0c7c17db47666eabb02","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeEventClient.cs.meta","hash":"cccf4691d140eb6fe74a7fe95b58456c","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeNearbyConnectionClientFactory.cs","hash":"44ed33a83bc0f18671122ffeaeef4374","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeNearbyConnectionClientFactory.cs.meta","hash":"6bf900a6747ea71f31d948afcf7ff490","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeNearbyConnectionsClient.cs","hash":"d0a183b573b19b1d8db3c885865ac647","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeNearbyConnectionsClient.cs.meta","hash":"8674d81e6b70dd3023f68c3bb0d7f28c","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeQuestClient.cs","hash":"c08ac3be4f24500c6f7896da2a50757d","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeQuestClient.cs.meta","hash":"54eaf1e5bd55bd1ffd0078cb6c9f12be","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeRealtimeMultiplayerClient.cs","hash":"0c365901fe32a38ef2847021ce2965e8","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeRealtimeMultiplayerClient.cs.meta","hash":"2adc2ca50c57fffea301f74703af86ab","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeSavedGameClient.cs","hash":"18c0e035a9acb09563cf7fa28562bbf1","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeSavedGameClient.cs.meta","hash":"3dc832ad9ef5111489a4d96c38e65158","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeTurnBasedMultiplayerClient.cs","hash":"912ff80b683e4cc11a7da0f132044095","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeTurnBasedMultiplayerClient.cs.meta","hash":"dea59c2adc89af7ebb38f5309fcd0b90","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke.meta","hash":"e3b8699adad64fa6e167b85dc932b38d","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/AchievementManager.cs","hash":"590099f747dd6916322985fcd8ca83f6","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/AchievementManager.cs.meta","hash":"bb385737f8601884a85a8b4f19c75b8a","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/AndroidPlatformConfiguration.cs","hash":"663947ae9ab025cd097fbd9cb20404e9","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/AndroidPlatformConfiguration.cs.meta","hash":"4a17217427b6e4f71d70f5927b0bfd0b","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/BaseReferenceHolder.cs","hash":"4ac187e156bc5ee42e2b7cbdb9d4b2fe","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/BaseReferenceHolder.cs.meta","hash":"ee1c413814f94bf6b44d759d70834ee6","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/Callbacks.cs","hash":"16f8a28311b162a8fc9e526a4afbca69","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/Callbacks.cs.meta","hash":"2bd23e03b3024791d9c82cb243dbdb82","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/EventManager.cs","hash":"a174550e2082a5d7cb4ff6f76e82c454","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/EventManager.cs.meta","hash":"97383ad32ea5b13a8b15bb761e87ad2f","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/GameServices.cs","hash":"e5e33e12b3f9ba5a74d6a7284ad0d855","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/GameServices.cs.meta","hash":"fdee8d2108dbd19ef81dba952c2d5aae","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/GameServicesBuilder.cs","hash":"3af2f845979a3782da99da71203cceab","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/GameServicesBuilder.cs.meta","hash":"bbb3aae2b02839ba1155d60953e1e73f","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/IosPlatformConfiguration.cs","hash":"15e5f59cba3e56265aa1db73c33db84d","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/IosPlatformConfiguration.cs.meta","hash":"512857c39f13a4e4efe200c1e41c0843","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/LeaderboardManager.cs","hash":"4a54d224127e5ffd0feb96083d96a5fd","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/LeaderboardManager.cs.meta","hash":"06b7537d20080ab3280d2bc8ce405631","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/MultiplayerInvitation.cs","hash":"5f2b83ee685ba4e1dce4014eec27f068","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/MultiplayerInvitation.cs.meta","hash":"a55c18700e8496895870527028795e38","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/MultiplayerParticipant.cs","hash":"b9d810e1cde652a4a8a01c6b1d59e431","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/MultiplayerParticipant.cs.meta","hash":"f677cf65edb922fd3b6e70c97afae0ce","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeAchievement.cs","hash":"f4faeb01200b3996c8e48754b9f17b4c","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeAchievement.cs.meta","hash":"6c7ebaf1f35f7c8fdf338106c334465f","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeAppIdentifier.cs","hash":"6d9579ad662d48bff1326b134f8025d5","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeAppIdentifier.cs.meta","hash":"78f5b271142a3f8c5c6bd1b0b0ea4fc3","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeConnectionRequest.cs","hash":"503b7d3c12ea30b1a68cdef6ce9bedda","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeConnectionRequest.cs.meta","hash":"137469b4f889935b333a52956586b77c","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeConnectionResponse.cs","hash":"56f846bd8a36f5d622caafff5fa810dc","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeConnectionResponse.cs.meta","hash":"3832dc854089896776c61505045a0e03","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeEndpointDetails.cs","hash":"40341ded84d34379850a0c7fa35921e6","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeEndpointDetails.cs.meta","hash":"3c2281ab3d7df82ee0d40d20631b46b9","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeEndpointDiscoveryListenerHelper.cs","hash":"60d9e963170ee7e94d448e8b1fc296a9","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeEndpointDiscoveryListenerHelper.cs.meta","hash":"1fd224525f642c4b85a50910183f539a","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeEvent.cs","hash":"a66083cb59908818cf24b65c58ccfe03","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeEvent.cs.meta","hash":"c7f2efdfee97576b0e1ea04beabe7bb7","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeLeaderboard.cs","hash":"262b0faeb1d8627debfcc95da52bbcde","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeLeaderboard.cs.meta","hash":"ddeabc4028914fb23834a6e54ead93b7","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeMessageListenerHelper.cs","hash":"10b8526bc132ba4c3678425bfa15c48d","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeMessageListenerHelper.cs.meta","hash":"5967bb5b0598c5ac2b8e8caf4adbc752","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativePlayer.cs","hash":"7d7394764821623eda0320773ba76a05","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativePlayer.cs.meta","hash":"a9cecc649b6e079d3f224d82aae69946","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativePlayerStats.cs","hash":"a5a9c4f13e0f4876a9ce712c9b512f57","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativePlayerStats.cs.meta","hash":"bcd68fc9f0560851e56df8b3a3bdc1a8","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeQuest.cs","hash":"53ef720a556cb8bbc6d10b53d3196ffb","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeQuest.cs.meta","hash":"be5c84954e723f907ac67eab124ea47e","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeQuestMilestone.cs","hash":"d3bbe771f7fdbe9e70d185b1b2fb7edd","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeQuestMilestone.cs.meta","hash":"6688591874dce707b13fc8f3b5a27cdb","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeRealTimeRoom.cs","hash":"cbb592a2811e655b22626b71f887305f","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeRealTimeRoom.cs.meta","hash":"3b87273949d1072a398abe2e5f3056db","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScore.cs","hash":"063986b6f7e03694a7b5a337dfcf8149","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScore.cs.meta","hash":"a374787de9edf9d7d070f545c436048d","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScoreEntry.cs","hash":"e215aa50af54f8f942f8907943caba42","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScoreEntry.cs.meta","hash":"77b8f001749db6364effc29ab2e9ebf5","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScorePage.cs","hash":"a4b9b9174027010bab209e7dbc8f638e","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScorePage.cs.meta","hash":"8717230490d752344230066cac9d85a3","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScorePageToken.cs","hash":"5f3cb4489b0b6335a3bae3659c1bba0f","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScorePageToken.cs.meta","hash":"343a7a87c20df8b605bb0c4924549b4a","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScoreSummary.cs","hash":"a803efb960d459bbf80dc3991957282b","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScoreSummary.cs.meta","hash":"5cc899fef2bf4dead76ed92287bd622b","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeSnapshotMetadata.cs","hash":"b57cb994dbd039852eee78d942274b13","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeSnapshotMetadata.cs.meta","hash":"7ae90b444929c41ba376fe8d44dd5d93","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeSnapshotMetadataChange.cs","hash":"8192b6b11ea7b37e6341b8d1baf0ada9","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeSnapshotMetadataChange.cs.meta","hash":"8cb00093d6cadd8fef678f9292ae4c32","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeStartAdvertisingResult.cs","hash":"b7ef5c002841c425f96d4f59e3b8fd53","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeStartAdvertisingResult.cs.meta","hash":"3c0d3acba970b18f603e886a2ce32ee5","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeTurnBasedMatch.cs","hash":"c4fdecbef6c27ad5904afdc04196adc3","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeTurnBasedMatch.cs.meta","hash":"3813522474752c898f6e6d5e0b678e7a","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NearbyConnectionsManager.cs","hash":"7221599109f3fd189ac39deabc39bb09","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NearbyConnectionsManager.cs.meta","hash":"546304960d12951cdba024580272d1a9","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NearbyConnectionsManagerBuilder.cs","hash":"a4996df4da6118bd0262b135f7ce30f6","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NearbyConnectionsManagerBuilder.cs.meta","hash":"9b7bcf9319d769b8ef5f9cc8e386b231","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/PInvokeUtilities.cs","hash":"e6813947947d4e167a29ca1c93a44969","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/PInvokeUtilities.cs.meta","hash":"593edcaed4bc47cd5709cf99e3533b8a","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/ParticipantResults.cs","hash":"9b1d4cb975da8cc17d4eb05d65606fd4","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/ParticipantResults.cs.meta","hash":"f10bb03c6eaf76e25228ec68ea7b81c2","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/PlatformConfiguration.cs","hash":"e4c2bc89929f4384cbee90e88ef6f577","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/PlatformConfiguration.cs.meta","hash":"a7e1ca1805044a3b191edf37577e07fe","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/PlayerManager.cs","hash":"038b848e195af89c9589e0213f079b9b","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/PlayerManager.cs.meta","hash":"8ac63595d10ce3797bdcfee2583afbce","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/PlayerSelectUIResponse.cs","hash":"b9315d73c1930bf14bb208079d7032e3","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/PlayerSelectUIResponse.cs.meta","hash":"1b748d83d566caba473d1fe5e06b9e07","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/QuestManager.cs","hash":"466b77a90ec7ae67c345fbbff9f9e3f1","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/QuestManager.cs.meta","hash":"13454c1c72ec0ea401d07e3e84dbb524","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/RealTimeEventListenerHelper.cs","hash":"b8201726f5b4ed5bde44f9258be12233","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/RealTimeEventListenerHelper.cs.meta","hash":"ff80a29a0e42dc7648807420ff6e142e","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/RealtimeManager.cs","hash":"5d77bad740bad45c205c0a903dd894c3","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/RealtimeManager.cs.meta","hash":"85f1431895f80b7940d5da2dae6ab746","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/RealtimeRoomConfig.cs","hash":"12f18a5c998c0a9145ab5e45dc5948a3","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/RealtimeRoomConfig.cs.meta","hash":"4f33f0b75d938be9aa6f26e1d56ab417","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/RealtimeRoomConfigBuilder.cs","hash":"ce9b6c5d6f70b6a3233d48e119e31e18","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/RealtimeRoomConfigBuilder.cs.meta","hash":"b2bedfb0555974550de5ff6cbb6a072c","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/SnapshotManager.cs","hash":"e53daf9bade397a9cf5ff17ee389a722","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/SnapshotManager.cs.meta","hash":"f6f11b5a01e40861e09d9affe0922044","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/StatsManager.cs","hash":"aaac9076d5bc59b533d9aeeb762a01eb","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/StatsManager.cs.meta","hash":"d1084889bf23d0d2433f5e61d5da5042","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/TurnBasedManager.cs","hash":"a2ab53172f4ec013f55d98c4ce3c7762","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/TurnBasedManager.cs.meta","hash":"72595a51d6f7c1e837d6e6d959cf6e67","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/TurnBasedMatchConfig.cs","hash":"c484f01d13d33549c70e175851dd4264","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/TurnBasedMatchConfig.cs.meta","hash":"1cdf0a753f6902a743624b0a74f4f024","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/TurnBasedMatchConfigBuilder.cs","hash":"b10ea1c0f79596eaba6faf57e58da14b","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/TurnBasedMatchConfigBuilder.cs.meta","hash":"0aa484c0f703bf2546a108576033d89c","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/Platforms/Native/UnsupportedSavedGamesClient.cs","hash":"66da6b0006119409d1c862c8f684193a","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/Platforms/Native/UnsupportedSavedGamesClient.cs.meta","hash":"b9a3c4d72c7ca3d43b53bcde26667e44","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/Platforms/NearbyConnectionClientFactory.cs","hash":"bd72f14f31090a83ef9c7923f92b2724","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/Platforms/NearbyConnectionClientFactory.cs.meta","hash":"c76b4b39116ff18fc66c6e3f416073dd","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/Platforms/PlayGamesClientFactory.cs","hash":"c4b366a6b76097f54b5e25aaceacd5d6","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/Platforms/PlayGamesClientFactory.cs.meta","hash":"101c96abc52bce7886d8999e0d40aba5","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/Platforms/TokenClient.cs","hash":"84b9cfcef5ed7ade3492e2838ea24103","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/Platforms/TokenClient.cs.meta","hash":"bbc51312d4bf6dc45084b801fa738387","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/PluginVersion.cs","hash":"2f0c7f866d388990a2ab50e1e8add40b","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/PluginVersion.cs.meta","hash":"42f8011ed5d5e47163096d268c28a3a8","datetime":{"high":0,"low":1485133440}},{"path":"Assets/PlayServicesResolver.meta","hash":"bfcf6ada29c3849f50098f0659e5785a","datetime":{"high":0,"low":1485133440}},{"path":"Assets/PlayServicesResolver/Editor.meta","hash":"1fa874a09f9ccadfd39309c708656a41","datetime":{"high":0,"low":1485133440}},{"path":"Assets/PlayServicesResolver/Editor/Google.IOSResolver.dll","hash":"9f3ab331bdbb49616f3b291125a4c9c5","fromPath":"Assets/PlayServicesResolver/Editor/Google.IOSResolver_v1.2.9.0.dll","datetime":{"high":0,"low":1485133440}},{"path":"Assets/PlayServicesResolver/Editor/Google.IOSResolver.dll.meta","hash":"3292f19c263d390de1d961bee2a90204","fromPath":"Assets/PlayServicesResolver/Editor/Google.IOSResolver_v1.2.9.0.dll.meta","datetime":{"high":0,"low":1485133440}},{"path":"Assets/PlayServicesResolver/Editor/Google.JarResolver.dll","hash":"35df9d5301e3a0137676c2b7af0fb770","fromPath":"Assets/PlayServicesResolver/Editor/Google.JarResolver_v1.2.9.0.dll","datetime":{"high":0,"low":1485133440}},{"path":"Assets/PlayServicesResolver/Editor/Google.JarResolver.dll.meta","hash":"c1ae0b6726805db4503e5511303c6037","fromPath":"Assets/PlayServicesResolver/Editor/Google.JarResolver_v1.2.9.0.dll.meta","datetime":{"high":0,"low":1485133440}},{"path":"Assets/PlayServicesResolver/Editor/Google.VersionHandler.dll","hash":"4c8769000f10c4002c211fdf8c45b3a6","fromPath":"Assets/PlayServicesResolver/Editor/Google.VersionHandler_v1.2.9.0.dll","datetime":{"high":0,"low":1485133440}},{"path":"Assets/PlayServicesResolver/Editor/Google.VersionHandler.dll.meta","hash":"1b588e935e36271683edd4e34cebb9cf","fromPath":"Assets/PlayServicesResolver/Editor/Google.VersionHandler_v1.2.9.0.dll.meta","datetime":{"high":0,"low":1485133440}},{"path":"Assets/PlayServicesResolver/Editor/play-services-resolver.txt","hash":"bd1641839743415a15da1ace8732e631","fromPath":"Assets/PlayServicesResolver/Editor/play-services-resolver_v1.2.9.0.txt","datetime":{"high":0,"low":1485130075}},{"path":"Assets/PlayServicesResolver/Editor/play-services-resolver.txt.meta","hash":"bcb23ba2f829d10467b04db45c153509","fromPath":"Assets/PlayServicesResolver/Editor/play-services-resolver_v1.2.9.0.txt.meta","datetime":{"high":0,"low":1485133440}},{"path":"Assets/Plugins.meta","hash":"d27141b151d469a8264e9ff382e6981f","datetime":{"high":0,"low":1485133440}},{"path":"Assets/Plugins/Android.meta","hash":"5acce9b91a6fc65fdaf9e60d4a4a5675","datetime":{"high":0,"low":1485133440}},{"path":"Assets/Plugins/Android/MainLibProj.meta","hash":"cc4999751818fddcb036702386e83604","datetime":{"high":0,"low":1485133450}},{"path":"Assets/Plugins/Android/MainLibProj/AndroidManifest.xml","hash":"c0f26e27b1da6f9af5a5f67e4698d076","datetime":{"high":0,"low":1485282934}},{"path":"Assets/Plugins/Android/MainLibProj/AndroidManifest.xml.meta","hash":"d34c95e74325d49dcc6e9b5bcbde1ed3","datetime":{"high":0,"low":1485133440}},{"path":"Assets/Plugins/Android/MainLibProj/libs.meta","hash":"71feb8a4c32cd2f3abebdc671027c57b","datetime":{"high":0,"low":1485133440}},{"path":"Assets/Plugins/Android/MainLibProj/libs/play-games-plugin-support.jar","hash":"2c2f1a3662a3a1bc9e0b1780c8dd5138","datetime":{"high":0,"low":1485130075}},{"path":"Assets/Plugins/Android/MainLibProj/libs/play-games-plugin-support.jar.meta","hash":"e7ae9ff8436850de3fca6f04574aaef4","datetime":{"high":0,"low":1485133440}},{"path":"Assets/Plugins/Android/MainLibProj/project.properties","hash":"bece06172d0596e1f15cd61935851d87","datetime":{"high":0,"low":1485133440}},{"path":"Assets/Plugins/Android/MainLibProj/project.properties.meta","hash":"e0164a203a562bbac747092110f1c89c","datetime":{"high":0,"low":1485133440}},{"path":"Assets/Plugins/Android/libs.meta","hash":"b59b82366f31634e7f956fff026b2b9b","datetime":{"high":0,"low":1485133440}},{"path":"Assets/Plugins/Android/libs/armeabi-v7a.meta","hash":"1e4dc62f4aba6fd805ae20331413de2f","datetime":{"high":0,"low":1485133440}},{"path":"Assets/Plugins/Android/libs/armeabi-v7a/libgpg.so","hash":"bb7417380e9310ed6296ce2af51eff3a","datetime":{"high":0,"low":1485130075}},{"path":"Assets/Plugins/Android/libs/armeabi-v7a/libgpg.so.meta","hash":"b94cb675066547500413d7c9978a25bf","datetime":{"high":0,"low":1485133468}},{"path":"Assets/Plugins/Android/libs/x86.meta","hash":"cfc1e531355894ea280bfdc481b051de","datetime":{"high":0,"low":1485133440}},{"path":"Assets/Plugins/Android/libs/x86/libgpg.so","hash":"a697ebc589452db4a1acf3bcd5db60b2","datetime":{"high":0,"low":1485130075}},{"path":"Assets/Plugins/Android/libs/x86/libgpg.so.meta","hash":"8b558b8849dbb773846f68a3b4a0c23c","datetime":{"high":0,"low":1485133468}},{"path":"Assets/Plugins/Android/play-services-auth-10.0.1.aar","hash":"3fda7de334c420e1cfb847db2328096b","datetime":{"high":0,"low":1485130075}},{"path":"Assets/Plugins/Android/play-services-auth-10.0.1.aar.meta","hash":"d9404285fca36a7f5f3348468a45f48e","datetime":{"high":0,"low":1485133440}},{"path":"Assets/Plugins/Android/play-services-auth-base-10.0.1.aar","hash":"1df42455ec3ae0d3723faadd26e4b0c9","datetime":{"high":0,"low":1485130075}},{"path":"Assets/Plugins/Android/play-services-auth-base-10.0.1.aar.meta","hash":"2bbdd258d2598670bee568d530b011d5","datetime":{"high":0,"low":1485133440}},{"path":"Assets/Plugins/Android/play-services-base-10.0.1.aar","hash":"f02be27d964d4f41c675ad6a80efb0a6","datetime":{"high":0,"low":1485130075}},{"path":"Assets/Plugins/Android/play-services-base-10.0.1.aar.meta","hash":"c5dc1323c0f8672a42505086dd5f2623","datetime":{"high":0,"low":1485133440}},{"path":"Assets/Plugins/Android/play-services-basement-10.0.1.aar","hash":"10df71889235a2040f67d36bc1982576","datetime":{"high":0,"low":1485130075}},{"path":"Assets/Plugins/Android/play-services-basement-10.0.1.aar.meta","hash":"7ca7fca6e46b426be15a7565bde3ada1","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Plugins/Android/play-services-drive-10.0.1.aar","hash":"2bc05f67337eef71d054f3b3aaf06753","datetime":{"high":0,"low":1485130075}},{"path":"Assets/Plugins/Android/play-services-drive-10.0.1.aar.meta","hash":"449919d825448c408f0ec8fd7bcc8116","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Plugins/Android/play-services-games-10.0.1.aar","hash":"fe817a580fece7fea406bc92688881b1","datetime":{"high":0,"low":1485130075}},{"path":"Assets/Plugins/Android/play-services-games-10.0.1.aar.meta","hash":"207a3c3e5ba14d698e18d2053e40de7f","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Plugins/Android/play-services-nearby-10.0.1.aar","hash":"0af01ae35dffb226de0d1efdff0b12ee","datetime":{"high":0,"low":1485130075}},{"path":"Assets/Plugins/Android/play-services-nearby-10.0.1.aar.meta","hash":"7b2767bf449eae200f3c56415f9fd87a","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Plugins/Android/play-services-tasks-10.0.1.aar","hash":"6429a6d3675699e7caed6c45fa2ddf93","datetime":{"high":0,"low":1485130075}},{"path":"Assets/Plugins/Android/play-services-tasks-10.0.1.aar.meta","hash":"2bab032b90d0973fcb2fa386a02ab803","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Plugins/Android/support-annotations-24.0.0.jar","hash":"77e1c455954dbd4549f6bf37eb13d536","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Plugins/Android/support-annotations-24.0.0.jar.meta","hash":"8c66f730d50f325a88e7041deaa04442","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Plugins/Android/support-v4-24.0.0.aar","hash":"f60946f0390083e0eb935592b1708d76","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Plugins/Android/support-v4-24.0.0.aar.meta","hash":"2aa4cc22418f8e319750e2613adcb1e9","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Plugins/iOS.meta","hash":"8980c186a0936ffc8ee5b1366627b839","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Plugins/iOS/GPGSAppController.h","hash":"aa0b046afee102dc7ef5e901afd72484","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Plugins/iOS/GPGSAppController.h.meta","hash":"4663cd47a0f7996e70850bcae7719452","datetime":{"high":0,"low":1485133468}},{"path":"Assets/Plugins/iOS/GPGSAppController.mm","hash":"541d9966c291a664aa594a24dc65a535","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Plugins/iOS/GPGSAppController.mm.meta","hash":"ec88d26c7f8d3fcb4e8b96a397c0730c","datetime":{"high":0,"low":1485133464}},{"path":"Assets/Prefabs.meta","hash":"cdf2d94123583f9587d1753fb9e60e2f","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Prefabs/Customer.prefab","hash":"47b6e34320f43d9ba8d3a357e7502597","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Prefabs/Customer.prefab.meta","hash":"1aaa4ff4b7f56e606e38b4451f5df249","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Prefabs/SpawnPoint.prefab","hash":"a03f4c2f75dbdf0afe91463abe5926a0","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Prefabs/SpawnPoint.prefab.meta","hash":"6181232c6b31578741fd5e6070144d81","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Prefabs/Wall.prefab","hash":"58c133b40b252364d0abc319283ae2cd","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Prefabs/Wall.prefab.meta","hash":"0b6dd04d95c944ec7ff28a981bf2e5a0","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources.meta","hash":"62e10294520059fcfa5889d2f305d890","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sounds.meta","hash":"bac81a481ef5dc5693428e99f15961ca","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sounds/WLCM Final.ogg","hash":"08c54430f24be6f58aa9703e5f228139","datetime":{"high":0,"low":1485287585}},{"path":"Assets/Resources/Sounds/WLCM Final.ogg.meta","hash":"6d135cb8396ecdf2b459833a408a62d0","datetime":{"high":0,"low":1485287616}},{"path":"Assets/Resources/Sounds/Welcome-Game Over 2.wav","hash":"8c16f7df6a820b972ba74ee61f5fd47a","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sounds/Welcome-Game Over 2.wav.meta","hash":"90aaf5b82a3ec5a37e252e8bc010e1a3","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sounds/voice1.wav","hash":"209f6f1e7e8c6c43b2bb44561322883a","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sounds/voice1.wav.meta","hash":"8f3e03d71fc03188ccb1dfb774dcbfb1","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sounds/voice2.wav","hash":"7be5b09ea01f0d4f6177f433c05061c9","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sounds/voice2.wav.meta","hash":"11dc5c52f33b55cab7c52df490ea7ab8","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sounds/voice3.wav","hash":"424f65a36d304d767b836fbffcee32ef","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sounds/voice3.wav.meta","hash":"9fe4d9a0db7b3b1fda69b5efd81861de","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sounds/voice4.wav","hash":"696878d96102d766517e9eed21e5d3f3","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sounds/voice4.wav.meta","hash":"6c2ad8d1fa9e4eab94839b40e2fcc3e3","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sounds/voice5.wav","hash":"1613bcc2fe4b48e2635e964ec5fbf14a","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sounds/voice5.wav.meta","hash":"17d4749d4131924528db0f9ad43b7ca2","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sounds/voice6.wav","hash":"45a0849b847d8f2101ae84e0cb0e4adc","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sounds/voice6.wav.meta","hash":"3e49eba6bc32f92e4dd28e51aafd931f","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Splash.meta","hash":"fb158b3e5b0df4797c06d4ba3a92b85a","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Splash/GreeterPortraitSplash.png","hash":"510a81005f8658d96fbd513bb9bcb4cc","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Splash/GreeterPortraitSplash.png.meta","hash":"3082fce8dbb863902616a173ae752952","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Splash/GreeterSplash_1366x768.png","hash":"fc06eea586f4fe25a601674263cc9b3d","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Splash/GreeterSplash_1366x768.png.meta","hash":"b380a8a9d83fcfa5c7e723772eb6ad13","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites.meta","hash":"81a1e46182d2cc993e46d25d8a62f470","fromPath":"Assets/Sprites.meta","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer.controller","hash":"9024583ad8b88e8bc35fba4f13b69f52","fromPath":"Assets/Sprites/Customer.controller","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer.controller.meta","hash":"04ff07180513a54f39fa80046da17d66","fromPath":"Assets/Sprites/Customer.controller.meta","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer10.overrideController","hash":"7c812dbf4151a29093cd97c381d0a5fe","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer10.overrideController.meta","hash":"ecd532acdfe5cfa6fdfb97783cea6a38","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer11.overrideController","hash":"ad0f45403d022d739608eefb603a5c06","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer11.overrideController.meta","hash":"227bcc32f52ddf11690afec583fc54e5","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer12.overrideController","hash":"42ecc706afb9c0e74284607baf9e0337","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer12.overrideController.meta","hash":"27ce73445170f6628bb250417fef7dd2","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer13.overrideController","hash":"227e64a1a2447c60711c861e4cbe054c","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer13.overrideController.meta","hash":"f7fb1a11e6a49df9eb1f9498f3734a51","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer14.overrideController","hash":"55f8832366f39c75081fb22878540a33","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer14.overrideController.meta","hash":"bc6460775b0e51ad888664179946e54a","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer15.overrideController","hash":"09ca0a200d29d603fc5a68e55e0ce99d","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer15.overrideController.meta","hash":"c79b294886c52bca5895c6d15effab06","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer16.overrideController","hash":"ff418df9462d165721a2b930acbd329b","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer16.overrideController.meta","hash":"87e7ad2d78443bb52e87c1d7f0d5afcb","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer17.overrideController","hash":"f4e855b29bf837de491d496e455932c8","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer17.overrideController.meta","hash":"df4be3b101b76ac6dd55df82dbf87cc1","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer2.overrideController","hash":"900b65f7d179c6985de32ea9b71d3801","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer2.overrideController.meta","hash":"30eafd2a1290c328096c28b0f3d76eea","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Customer3.overrideController","hash":"fc4e8b451d4becae36c995b56382ba02","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Customer3.overrideController.meta","hash":"33ce30d37e8aad613ca824a753e9ea6d","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Customer4.overrideController","hash":"e9441663d2b1fd4aa25bbb5fb3527902","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Customer4.overrideController.meta","hash":"5546f95b5dba8e605c01f347406adf7f","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Customer5.overrideController","hash":"342916a99375d386efdcf832db8cf566","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Customer5.overrideController.meta","hash":"b4343f3535db1ed5b956713cc239de58","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Customer6.overrideController","hash":"779e024ff684aa75cf2559ee780b2265","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Customer6.overrideController.meta","hash":"79ba5f1ebbd6f1e8ad52390bc1f3d0af","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Customer7.overrideController","hash":"48501ac60b479251cbc50d3650f028da","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Customer7.overrideController.meta","hash":"ed198a8131e4cf8d461725d7e00f138f","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Customer8.overrideController","hash":"4d990b3c05b2aaf75c83290cf30d2c7f","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Customer8.overrideController.meta","hash":"b13d592256541dcc5c0a2333bc53402d","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Customer9.overrideController","hash":"32eb36844bc3caeba2a1dfc9c5674f8b","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Customer9.overrideController.meta","hash":"a5315ffc0b47238ba74808378b3af09d","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/FiredGuy 1.png","hash":"c925d4a0b915633c0e67872db0245a4a","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/FiredGuy 1.png.meta","hash":"fa1c76608a57f24b6585f9bcead01249","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Floor2.png","hash":"3e7cb26ec0c1066cdf2cc01ccca9b326","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/Floor2.png.meta","hash":"1eadd9918304be1b52d9ab90a25b9256","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Materials.meta","hash":"30b3662515d9d42ed30fd034a7441033","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Materials/Floor 1.mat","hash":"8ef1c17035b3119de40e3ee83657c5a7","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Materials/Floor 1.mat.meta","hash":"13e52eabcda25982a96cd2493e737d7b","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Materials/Floor.mat","hash":"a2114c561d4e51cc592e1dc148c51bef","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Materials/Floor.mat.meta","hash":"e1b8f9014eced15bdbe9c221c5ef7cc2","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Materials/Floor2.mat","hash":"8633ce4c58708b205a039b4c99a4afb0","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Materials/Floor2.mat.meta","hash":"c62add82988fc7054631a838f77eab94","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Materials/Wall 1.mat","hash":"e0694c74c0ac7fde704d028f554bbc34","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Materials/Wall 1.mat.meta","hash":"78fa06eee2d25816864fe8978ac6dcc6","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Materials/Wall.mat","hash":"c731ebc28580d91103e2822f0f950f6c","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Materials/Wall.mat.meta","hash":"30945511fdeee8eaefe76a78a3b272df","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Materials/Wall2.mat","hash":"4439c3eec22749e7d2dda3e4e7ef2a5e","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Materials/Wall2.mat.meta","hash":"d21f320d2bb5253a4fc41b50e57318de","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Materials/Wall3.mat","hash":"8cc5e9893421a199a442d9f51b290547","datetime":{"high":0,"low":1485265218}},{"path":"Assets/Resources/Sprites/Materials/Wall3.mat.meta","hash":"6cccc8bd54adc5f8020e6e978b6c27aa","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Player.controller","hash":"5d2b26464821ed67ee548e35d950d9ab","fromPath":"Assets/Sprites/Player.controller","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Player.controller.meta","hash":"3019b65114105cdb19e7b58cde850daf","fromPath":"Assets/Sprites/Player.controller.meta","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Player.png","hash":"d7d87d5b8979442271069e6c19725e6f","fromPath":"Assets/Sprites/Player.png","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/Player.png.meta","hash":"7c0821d562b30885083fdc900a7494d5","fromPath":"Assets/Sprites/Player.png.meta","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/PlayerIcon.png","hash":"438f2685eb05b5724c74931a80a11c6d","datetime":{"high":0,"low":1485134358}},{"path":"Assets/Resources/Sprites/PlayerIcon.png.meta","hash":"0564ecbee4d6f8684351a0f336ecc27d","datetime":{"high":0,"low":1485136432}},{"path":"Assets/Resources/Sprites/Player_Idle.anim","hash":"e1e03b53557b3cf9302ffb3e152e7404","fromPath":"Assets/Sprites/Player_Idle.anim","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Player_Idle.anim.meta","hash":"7106b89be1f3b4a71e6b59b679e073f0","fromPath":"Assets/Sprites/Player_Idle.anim.meta","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Player_Walk.anim","hash":"32625b96daef2daea375410672fbf7ab","fromPath":"Assets/Sprites/Player_Walk.anim","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Player_Walk.anim.meta","hash":"f96a4c0e8a1273dfc3c7a5c53dee0c32","fromPath":"Assets/Sprites/Player_Walk.anim.meta","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/Player_Wave.anim","hash":"32f6b495d7181d3cf664cee893f35a8a","fromPath":"Assets/Sprites/Player_Wave.anim","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Player_Wave.anim.meta","hash":"f7d9f5dba9b6740bc0f6e304ea247ebc","fromPath":"Assets/Sprites/Player_Wave.anim.meta","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/SatisfactionBar.png","hash":"d3c97308c2b80e965c6aceb7e310833f","datetime":{"high":0,"low":1485135113}},{"path":"Assets/Resources/Sprites/SatisfactionBar.png.meta","hash":"81b1c992eedead392d6ca434a9d00d09","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/Wall3.png","hash":"c71331b42a41396dfeb7a1212f91cca8","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/Wall3.png.meta","hash":"ffce5faf63af9a827d11608ac3401baa","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/person_01.png","hash":"a8075612a3a8fb546516976a396ee4bb","fromPath":"Assets/Sprites/person_01.png","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/person_01.png.meta","hash":"452aa841f156723f3a8d2ba3a917ffdc","fromPath":"Assets/Sprites/person_01.png.meta","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/person_01_shake.anim","hash":"e9b9476443227c03495a0815a451d1a7","fromPath":"Assets/Sprites/person_01_shake.anim","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/person_01_shake.anim.meta","hash":"27ec876e1fb2b05d0e634904da106461","fromPath":"Assets/Sprites/person_01_shake.anim.meta","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_01_walk.anim","hash":"1599200258e8baa83a3f40ec333029ec","fromPath":"Assets/Sprites/person_01_walk.anim","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_01_walk.anim.meta","hash":"d494a2de8aef42b5dce24448b5a46732","fromPath":"Assets/Sprites/person_01_walk.anim.meta","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_01_wave.anim","hash":"8f99e25f6eecb7809506adcae0085d96","fromPath":"Assets/Sprites/person_01_wave.anim","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_01_wave.anim.meta","hash":"be243c992b1f5948ecbd45916e8020bb","fromPath":"Assets/Sprites/person_01_wave.anim.meta","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_02.png","hash":"1a93e6d42afcf5c03cba07b50eba1ab4","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/person_02.png.meta","hash":"951fc7844e94e39bcd18a1fd7f3a20a6","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_02_shake.anim","hash":"8ec4b61a764a5541beb994a94ff56236","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_02_shake.anim.meta","hash":"a3fe73f1f863540e935e3e468a8aa76b","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_02_walk.anim","hash":"241b10035e08112027d7e50c500620c1","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_02_walk.anim.meta","hash":"22d07bfc4e5f77fcb50b8ae93228c2c8","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_02_wave.anim","hash":"ff78ae56771a590ea93c35e9c5c6f92f","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_02_wave.anim.meta","hash":"bcc101756226e0213686fdadec8ab358","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_03.png","hash":"abb62098e9e5b80267e8a463be7b9bcd","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/person_03.png.meta","hash":"77008882e6b9ea8f5cc10505746b7b9f","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_03_shake.anim","hash":"aab5774090a31096ce96eca4b209669a","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_03_shake.anim.meta","hash":"8422c56a78cbf2663ab458e2ecb5202d","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_03_walk.anim","hash":"8c143fdf173f0cb8e2c419a98cf002c5","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_03_walk.anim.meta","hash":"a5a96a60e0d8adbad4236f1858544465","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_03_wave.anim","hash":"71fc1c7243d54626ba0bcaa52623ce9a","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_03_wave.anim.meta","hash":"f4b9308815ea40e786a12d148a8dfcdf","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_04.png","hash":"17fc7b9e462fc11d87a069e29f12a04f","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/person_04.png.meta","hash":"3e01095124239d6369dc0bbebf71c683","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_04_shake.anim","hash":"ff593224c78d43ed596ad34001dc69ec","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_04_shake.anim.meta","hash":"107518342f3edf3db041ac6fcf9b8bb6","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_04_walk.anim","hash":"b935ab489b8fcf37af406d1faf4807eb","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_04_walk.anim.meta","hash":"65f15ae17f4a96bbdd209a0d612c7e49","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_04_wave.anim","hash":"f4f48a026c1a52bad39a14c54fc83cc9","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_04_wave.anim.meta","hash":"9cdb7ebf888650ed09f3fc1fb1cbda2e","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_05.png","hash":"9e362476875c314a327f1242fa527b81","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/person_05.png.meta","hash":"831f8e5dec3999c2f9217f0e1f10ed42","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_05_shake.anim","hash":"8b9e895081c19cadf1cf86d608ae0832","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_05_shake.anim.meta","hash":"0c17f23d980890cb83259c6c8fba24c6","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_05_walk.anim","hash":"a695cdd430b394480377f452c8f9afb8","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_05_walk.anim.meta","hash":"fdeb0d057ca670938a15de035595b4fe","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_05_wave.anim","hash":"dee32015775ca2ae2b069bc5b7f36416","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_05_wave.anim.meta","hash":"97e23d3b990322372042aa954b0365d7","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_06.png","hash":"6f3363ca18fb5b9b78ffe196da338f2d","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/person_06.png.meta","hash":"6a2f443f1427dbd18259756c3f92579d","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_06_shake.anim","hash":"1544570ac12b23ed5a1810276da3c9fd","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_06_shake.anim.meta","hash":"5817fae50af360f75f0ffa0dc4fc304a","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_06_walk.anim","hash":"2321c92e44f8e0a4c9ab6a516187c717","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_06_walk.anim.meta","hash":"8d4ce5464e74873c5c655558adc62133","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_06_wave.anim","hash":"ca4b24d2d984aefb1c0132445e95cfaa","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_06_wave.anim.meta","hash":"58a30cec5d8540c03aade1ec509f5a7a","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_07.png","hash":"4ff3832efd1ec62bec70996061b18191","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/person_07.png.meta","hash":"ae125473d54fcf33655988e8f5a971e1","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_07_shake.anim","hash":"8888d7d09125b64fc4b327806cfecdba","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_07_shake.anim.meta","hash":"336b4ec189bcb9eecf4293ed1b326809","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_07_walk.anim","hash":"fa756ee16cb5a1b9eaad490866c501d6","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_07_walk.anim.meta","hash":"ba5919543630618428c5dd40a3065adf","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_07_wave.anim","hash":"2dd8b19983f0f14a37a599b65b8261dc","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_07_wave.anim.meta","hash":"60dd9aeac425825d3a4ebd4f952b7e3c","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_08.png","hash":"366fb8e0839f8170ebdf17a597754ae3","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/person_08.png.meta","hash":"12fb5cb9e4b90424e67e7d6f851e4731","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_08_shake.anim","hash":"5fbb6d1df0a4d2a4a6a3d1cf1a837e5d","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_08_shake.anim.meta","hash":"ba19c345b3b3bc3f5bf4a7cc66542be6","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_08_walk.anim","hash":"763eab24f91bb53c7c5d0341205c0021","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_08_walk.anim.meta","hash":"474db84f7f972983209806128365db90","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_08_wave.anim","hash":"d59908b6a94ddd3bd503d4aff80414da","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_08_wave.anim.meta","hash":"e30eff8153f784ae86588b9874d70f26","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_09.png","hash":"b3a47319dc4c0778a1cf416d1e92ded7","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/person_09.png.meta","hash":"c412c57d84f3af6be07c1a71f3835110","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_09_shake.anim","hash":"60fb071ae7f1b3c21fce9a35389e552d","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_09_shake.anim.meta","hash":"52455908846cf5e9edc6c4af14b2f583","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_09_walk.anim","hash":"ff18c2a4ccc5decbbcc18c95fbdcf0a0","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_09_walk.anim.meta","hash":"17816989cbe2d1dc771aabfd35a46f58","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_09_wave.anim","hash":"acfce7c3d08ac8e1c96da31690cfdaae","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_09_wave.anim.meta","hash":"9976beaca754da7ecdb79c888368d94e","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_10.png","hash":"2fb402f44b366b25d57935b72cfa1b31","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/person_10.png.meta","hash":"32b39a6869674374144d577289388d03","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_10_shake.anim","hash":"23361766ef78e79f1bdf58f791daafac","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_10_shake.anim.meta","hash":"43ee0b30799b2d6f80ac58410be779d1","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_10_walk.anim","hash":"d05c5292222993e5529ba754b1fdee17","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_10_walk.anim.meta","hash":"16d6e3aaae8b8d532f70e8957899fd12","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_10_wave.anim","hash":"dbc539dce7781a5d575e810cb4518390","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_10_wave.anim.meta","hash":"a91846ef8d8d285b73b8a08c6f7eb9c9","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_11.png","hash":"fb5b91c8e2565f0c0e98614b6f3573e7","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/person_11.png.meta","hash":"1771272068a14e15511d357318951a9d","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_11_shake.anim","hash":"266714bdff749c9dc990ed6098cba2d0","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_11_shake.anim.meta","hash":"e31d3a15211088b3b289b0f09250fd93","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_11_walk.anim","hash":"c52d8d6a4bcebb41e70c838cc684e2fb","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_11_walk.anim.meta","hash":"52a1d412be9c17f80eee92c218b8f1c8","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_11_wave.anim","hash":"ecca0f4613ce2ed3eb5da918d6b5ac9b","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_11_wave.anim.meta","hash":"094a3612ed1f8c215bda7a5ed2af2943","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_12.png","hash":"ececea8177c751996317bbff8ed4172b","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/person_12.png.meta","hash":"a1e52d46c37c5d604e92d9709daf21d6","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_12_shake.anim","hash":"45d687decf2aee24270177f4742a6edd","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_12_shake.anim.meta","hash":"4e4eec794576c2383a46dd7903670504","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_12_walk.anim","hash":"1a5d35163e624877674453598a82d740","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_12_walk.anim.meta","hash":"66d6444c19ca44834b4b0139b91fc930","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_12_wave.anim","hash":"57c9298075dde5fef0d5f87f2546df17","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_12_wave.anim.meta","hash":"dd92e65fc1d11dd6b730ce8713bf8bc7","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_13.png","hash":"561bf59ecf9c8e03269fa92b4a38f2ca","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/person_13.png.meta","hash":"a24aeefef7e2bdb94742aa0cb0c9e6d5","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_13_shake.anim","hash":"f4686b388d4adaefe3a5eb0c63483d5b","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_13_shake.anim.meta","hash":"fa165634a40892a78f743432e2358820","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_13_walk.anim","hash":"bfeb212c3c0c3f49286daeaf6bc0a18b","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_13_walk.anim.meta","hash":"90efc4f696a11940942c887649151fdf","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_13_wave.anim","hash":"8161a08e9477245a687a1c94304812e4","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_13_wave.anim.meta","hash":"e60fb06247882a7c8ffec4c62358c963","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_14.png","hash":"a90d61af4e5047da14a92d445d2bcad9","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/person_14.png.meta","hash":"9630a4c1e3dd96ac6cbb133fb2fed474","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_14_shake.anim","hash":"420a86803909545dbdb658c39ca1bfe3","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_14_shake.anim.meta","hash":"876513a0f1d0d977fa0827baaaf9f072","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_14_shake.controller","hash":"2c7216c1c525b4ef683a027b9aad22fa","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_14_shake.controller.meta","hash":"1a1540abe67355f2bc13ca60fe73dc13","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_14_stand.controller","hash":"cb6c54edb829611e752d8fcfdead7e14","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_14_stand.controller.meta","hash":"4f77a17cab1efbe1a823b932ca44d8e7","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_14_walk.anim","hash":"87e711383438aa3c3ac040150f22f163","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_14_walk.anim.meta","hash":"780f5fd6b69ee4ff10d356cba3c69d1f","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_14_walk1.controller","hash":"501a0a4bd97759cd89cc7fa5d2973aab","datetime":{"high":0,"low":1485133446}},{"path":"Assets/Resources/Sprites/person_14_walk1.controller.meta","hash":"5d88f6df23b23a34253f4992fbe3defd","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_14_wave.anim","hash":"9b8697a9183f0bf99744daea9763e671","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_14_wave.anim.meta","hash":"1e05a4b69e7bd3a2f132930aefcc40fb","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_15.png","hash":"94fdd3d76215bbca5e86e24c9e16c8db","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/person_15.png.meta","hash":"d9a562bb8cd6a52053c99bce1e499e42","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_15_shake.anim","hash":"17ba48535827e7184aa659b2df9e6a80","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_15_shake.anim.meta","hash":"7f3ae054360e3fe325d8e2e70672f3f5","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_15_shake.controller","hash":"c8cb80f93288b7b134d65f2c635245fd","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_15_shake.controller.meta","hash":"2658d61d19d393bdc271a54e1897aa66","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_15_stand.controller","hash":"35db37c7238137e57b12f8acb0c08a1b","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_15_stand.controller.meta","hash":"55b4973413d212978fd87c5b1c480a9b","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_15_walk.anim","hash":"d66c6aff1cbd1e643a0ecc6dc5ea24d8","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_15_walk.anim.meta","hash":"b7bdc35c0cbcfb1899ff780d0d7f8f75","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_15_walk1.controller","hash":"23a9f4d2debc84b6995f3f3cc668fd8f","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_15_walk1.controller.meta","hash":"345c5dfc1e8527df52a8d186160944f7","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_15_wave.anim","hash":"25db4efcc9a710fc4afba232be8b169c","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_15_wave.anim.meta","hash":"47df6cc252c7f6fce9841ef7a9d79e70","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_16.png","hash":"de2492e12928400fef30e7cff457472a","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/person_16.png.meta","hash":"683d726904ae6edca201bc97a1fe9e56","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_16_shake.anim","hash":"eeb2d371f2e1763ba330b0482848cf0a","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_16_shake.anim.meta","hash":"e0fe18e0c52544664d3cde16ed35538c","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_16_walk.anim","hash":"0ceccd50da31095932ebaefc74228e1a","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_16_walk.anim.meta","hash":"1a41769a310dc5dd3b13e291c98c66b7","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_16_wave.anim","hash":"f43eaae2198ac5863e8dfb2d9f4425b5","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_16_wave.anim.meta","hash":"acc699db06bb74a5315af534077631ec","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_17.png","hash":"456d2a7d26d562e909c09035f3529268","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/person_17.png.meta","hash":"41d0382a7e723fcc755d72a97ccbe604","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_17_shake.anim","hash":"6a5614cc8ef0d94d7fdf4c5d4747d3c2","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_17_shake.anim.meta","hash":"66bbab1bda2ccc2f17575b6878eee17b","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_17_walk.anim","hash":"eb96d1eb99a7a77adc1ca444c8375209","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_17_walk.anim.meta","hash":"b66b9d8b13c29a1c5fef619935a85645","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_17_wave.anim","hash":"d0dd5c7b14fcb19d4595a261f5b2c98f","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_17_wave.anim.meta","hash":"eb1a021e0f3487db1f101b6789be7f6a","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Scenes.meta","hash":"b8eabfdb8aeb471090a1f3e5e3bf9ad9","datetime":{"high":0,"low":1485130077}},{"path":"Assets/Scenes/AnimTest.unity","hash":"7486517e73004fdd0c62e0aa70274145","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Scenes/AnimTest.unity.meta","hash":"07998c13f3c08d773d29726e5758748a","datetime":{"high":0,"low":1485133446}},{"path":"Assets/Scenes/GameOver.unity","hash":"00127e87a773b438da7b0fb5c88568fd","datetime":{"high":0,"low":1485301800}},{"path":"Assets/Scenes/GameOver.unity.meta","hash":"7b633661a0fe2d5f7b4c37992d956ba4","datetime":{"high":0,"low":1485249641}},{"path":"Assets/Scenes/Menu.unity","hash":"7c680c43695129695868296d27f5908d","datetime":{"high":0,"low":1485306629}},{"path":"Assets/Scenes/Menu.unity.meta","hash":"b6c1911dce4a3391651f9983c04a8b6c","datetime":{"high":0,"low":1485250048}},{"path":"Assets/Scenes/Scene0.unity","hash":"6ff967b3d856dd1d18576aaa35a9dae0","datetime":{"high":0,"low":1485290486}},{"path":"Assets/Scenes/Scene0.unity.meta","hash":"d4d7d45a3286ec169bbca62bb39b078f","datetime":{"high":0,"low":1485130077}},{"path":"Assets/Scripts.meta","hash":"ba181f585ecc575d003033757387e126","datetime":{"high":0,"low":1485130077}},{"path":"Assets/Scripts/Achieve.cs","hash":"7547341e03aedd1e351ddc76ca2b9c1e","fromPath":"Assets/Achieve.cs","datetime":{"high":0,"low":1485248621}},{"path":"Assets/Scripts/Achieve.cs.meta","hash":"f11c64ad821d23fd5b53a6fd458e788b","fromPath":"Assets/Achieve.cs.meta","datetime":{"high":0,"low":1485175118}},{"path":"Assets/Scripts/AndroidOnly.cs","hash":"73d4ecf4692db9a5bf0a42eee615b31a","datetime":{"high":0,"low":1485306523}},{"path":"Assets/Scripts/AndroidOnly.cs.meta","hash":"bd84ec9cc7a939f6f1c92e01a526057e","datetime":{"high":0,"low":1485304888}},{"path":"Assets/Scripts/Customer.cs","hash":"6bd08d4aa49b349cb065eb76e8287da3","datetime":{"high":0,"low":1485290331}},{"path":"Assets/Scripts/Customer.cs.meta","hash":"7148073b74c04a7977ab3f2cac60fec1","datetime":{"high":0,"low":1485130077}},{"path":"Assets/Scripts/GameController.cs","hash":"8215821aa215078395e02c3e34167d89","datetime":{"high":0,"low":1485282113}},{"path":"Assets/Scripts/GameController.cs.meta","hash":"80f693375b10306d36ffb186b5f582d1","datetime":{"high":0,"low":1485130077}},{"path":"Assets/Scripts/GameOver.cs","hash":"d82444aca4326f3e19279dc53a7b22f4","datetime":{"high":0,"low":1485301755}},{"path":"Assets/Scripts/GameOver.cs.meta","hash":"7767f83c52e732ff54164ca7f081d01d","datetime":{"high":0,"low":1485133446}},{"path":"Assets/Scripts/GooglePlayLogin.cs","hash":"6f344ffe06f9f11d1ea665508fafa7e4","fromPath":"Assets/GooglePlayLogin.cs","datetime":{"high":0,"low":1485300613}},{"path":"Assets/Scripts/GooglePlayLogin.cs.meta","hash":"8830cf586c24a24531d63c6f5a77c650","fromPath":"Assets/GooglePlayLogin.cs.meta","datetime":{"high":0,"low":1485295020}},{"path":"Assets/Scripts/GooglePlayManager.cs","hash":"668eb6340e10a1e948276ea19d0d59d6","fromPath":"Assets/Scripts/GooglePlayServices.cs","datetime":{"high":0,"low":1485301601}},{"path":"Assets/Scripts/GooglePlayManager.cs.meta","hash":"8f12e6418eed8a2479dfcda320604d4d","fromPath":"Assets/Scripts/GooglePlayServices.cs.meta","datetime":{"high":0,"low":1485133446}},{"path":"Assets/Scripts/InputManager.cs","hash":"84060ccea03891b6074dfd04ea3e91f5","fromPath":"Assets/InputManager.cs","datetime":{"high":0,"low":1485292955}},{"path":"Assets/Scripts/InputManager.cs.meta","hash":"8de520d4fed48ba7c058d9981dd5e4bb","fromPath":"Assets/InputManager.cs.meta","datetime":{"high":0,"low":1485133446}},{"path":"Assets/Scripts/Player_Actions.cs","hash":"c00cf090389472ba5bbe78a41f0c5c21","datetime":{"high":0,"low":1485284542}},{"path":"Assets/Scripts/Player_Actions.cs.meta","hash":"6a2a026b5d04152d6ff6803a4e17bb40","datetime":{"high":0,"low":1485133446}},{"path":"Assets/Scripts/NoAndroid.cs","hash":"ae7f106668206467c4674b15eb92757a","datetime":{"high":0,"low":1485305415}},{"path":"Assets/Scripts/NoAndroid.cs.meta","hash":"5e72eb2114086c41d5145acc39941aa0","datetime":{"high":0,"low":1485300420}},{"path":"Assets/Scripts/SpawnTimer.cs","hash":"e11668d276e20eb4d42a77b34e61b56e","datetime":{"high":0,"low":1485130077}},{"path":"Assets/Scripts/SpawnTimer.cs.meta","hash":"3b85cad829389144c50f3188c5825826","datetime":{"high":0,"low":1485130077}},{"path":"Assets/Scripts/Spawner.cs","hash":"ab0af1e037b15fdda6aabb544cfceee7","datetime":{"high":0,"low":1485264856}},{"path":"Assets/Scripts/Spawner.cs.meta","hash":"c77976bd1e8f5998ef0bb06ffb89219b","datetime":{"high":0,"low":1485130077}},{"path":"ProjectSettings/AudioManager.asset","hash":"9e51fac3aaa92a6c91f2e831ead1e873","datetime":{"high":0,"low":1485133446}},{"path":"ProjectSettings/ClusterInputManager.asset","hash":"b1d0f114f4024863e4f8524801ee50dc","datetime":{"high":0,"low":1485133446}},{"path":"ProjectSettings/DynamicsManager.asset","hash":"3da9655119fbb9b91c1f0000db8db1f2","datetime":{"high":0,"low":1485133446}},{"path":"ProjectSettings/EditorBuildSettings.asset","hash":"77a5655fa2685a2303a98c0b958bb204","datetime":{"high":0,"low":1485133446}},{"path":"ProjectSettings/EditorSettings.asset","hash":"b180acd5439ad835dac189ebd954c457","datetime":{"high":0,"low":1485133446}},{"path":"ProjectSettings/GraphicsSettings.asset","hash":"90ea28d08cbc932ef7677d820c8792cd","datetime":{"high":0,"low":1485138979}},{"path":"ProjectSettings/InputManager.asset","hash":"ca91550943d66f92a950242da0b38982","datetime":{"high":0,"low":1485133446}},{"path":"ProjectSettings/NavMeshAreas.asset","hash":"28db53f957dec18c9ba0383f31c53f6c","datetime":{"high":0,"low":1485133446}},{"path":"ProjectSettings/NetworkManager.asset","hash":"a41c11593b9425a3e844680d2da92529","datetime":{"high":0,"low":1485133446}},{"path":"ProjectSettings/Physics2DSettings.asset","hash":"b5b27c8b9d74f2d16101e8cfce35f149","datetime":{"high":0,"low":1485133446}},{"path":"ProjectSettings/ProjectSettings.asset","hash":"962a0ebd854f2b689dd4779ed45938ed","datetime":{"high":0,"low":1485307686}},{"path":"ProjectSettings/ProjectVersion.txt","hash":"8f8cbb10301976e45e44f8dc82134de7","datetime":{"high":0,"low":1485304835}},{"path":"ProjectSettings/QualitySettings.asset","hash":"0bae7b17a96bf7861fa9d5a18b0abe0f","datetime":{"high":0,"low":1485133446}},{"path":"ProjectSettings/TagManager.asset","hash":"715a924f089e3f92b50b91e47b6eb371","datetime":{"high":0,"low":1485304184}},{"path":"ProjectSettings/TimeManager.asset","hash":"a4f23c9e1fc6dfd9fc5e206461b5fd7a","datetime":{"high":0,"low":1485133446}},{"path":"ProjectSettings/UnityConnectSettings.asset","hash":"524bf55095f408d404a9b4f8034819e5","datetime":{"high":0,"low":1485133446}}],"revisions":{"currRevisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3","headRevisionID":"0f408f6dd320dea03e0f53977cfda464fe2f1dc3"},"updateState":{"currTransactionID":""},"conflicts":[]} \ No newline at end of file +{"entries":[{"path":"Assets/GPGSIds.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ef4f3ae5d5ab62eb43ef178fea967bab","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ef4f3ae5d5ab62eb43ef178fea967bab?name=GPGSIds.cs","size":1456},{"path":"Assets/GPGSIds.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"7842e91674a3cba86ccda4a5d66cdc38","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7842e91674a3cba86ccda4a5d66cdc38?name=GPGSIds.cs.meta","size":263},{"path":"Assets/Game Jam Template.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"4e3ff4d8277fea6c0b48960b38760da6","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4e3ff4d8277fea6c0b48960b38760da6?name=Game+Jam+Template.meta","size":193},{"path":"Assets/Game Jam Template/Animation.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"caa07e7206e6d2ae2c8f14d77647a1ef","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/caa07e7206e6d2ae2c8f14d77647a1ef?name=Animation.meta","size":193},{"path":"Assets/Game Jam Template/Animation/FadeImageController.controller","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"08cc0cefa782fad9044bf8753bc140bf","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/08cc0cefa782fad9044bf8753bc140bf?name=FadeImageController.controller","size":3249},{"path":"Assets/Game Jam Template/Animation/FadeImageController.controller.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"86c82e40cd0d90782cdd6a087e42e90f","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/86c82e40cd0d90782cdd6a087e42e90f?name=FadeImageController.controller.meta","size":181},{"path":"Assets/Game Jam Template/Animation/FadeMenuAlpha.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"0d5ed7d4161b30a47481b3fbbaa1efac","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0d5ed7d4161b30a47481b3fbbaa1efac?name=FadeMenuAlpha.anim","size":2020},{"path":"Assets/Game Jam Template/Animation/FadeMenuAlpha.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"99765e4c602b6686a32016d258c93cd9","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/99765e4c602b6686a32016d258c93cd9?name=FadeMenuAlpha.anim.meta","size":181},{"path":"Assets/Game Jam Template/Animation/FadeToColor.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"587ab13fc35c96c11d43896f4a9d877a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/587ab13fc35c96c11d43896f4a9d877a?name=FadeToColor.anim","size":2383},{"path":"Assets/Game Jam Template/Animation/FadeToColor.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"5f53ab0f0c170f9e6906e785d0791dd5","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/5f53ab0f0c170f9e6906e785d0791dd5?name=FadeToColor.anim.meta","size":181},{"path":"Assets/Game Jam Template/Animation/MenuPanel.controller","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ffc785a2db2ad92b704865ab90b8a5fa","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ffc785a2db2ad92b704865ab90b8a5fa?name=MenuPanel.controller","size":3541},{"path":"Assets/Game Jam Template/Animation/MenuPanel.controller.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"2d49702918141d6870b7465ecdf138f9","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2d49702918141d6870b7465ecdf138f9?name=MenuPanel.controller.meta","size":181},{"path":"Assets/Game Jam Template/Audio.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"990b31dfdbafb60c8b0ffba2f33aa864","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/990b31dfdbafb60c8b0ffba2f33aa864?name=Audio.meta","size":193},{"path":"Assets/Game Jam Template/Audio/MasterMixer.mixer","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"5c99dfd8abe298ec16ae1bec9c902b4a","state":32,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/5c99dfd8abe298ec16ae1bec9c902b4a?name=MasterMixer.mixer","size":3968},{"path":"Assets/Game Jam Template/Audio/MasterMixer.mixer.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"6c61182e2da123fe456b0379e17a2f6a","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6c61182e2da123fe456b0379e17a2f6a?name=MasterMixer.mixer.meta","size":181},{"path":"Assets/Game Jam Template/Fonts.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"2b5a55f6cb9ebbaabd6703bed0c64231","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2b5a55f6cb9ebbaabd6703bed0c64231?name=Fonts.meta","size":193},{"path":"Assets/Game Jam Template/Fonts/OpenSans.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a3287527f5ae2abbc8947f25b5296342","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a3287527f5ae2abbc8947f25b5296342?name=OpenSans.meta","size":193},{"path":"Assets/Game Jam Template/Fonts/OpenSans/License!.txt","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"d273d63619c9aeaf15cdaf76422c4f87","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d273d63619c9aeaf15cdaf76422c4f87?name=License%21.txt","size":11560},{"path":"Assets/Game Jam Template/Fonts/OpenSans/License!.txt.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"f67302b277f1c99a10dd0c2182bf70a3","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f67302b277f1c99a10dd0c2182bf70a3?name=License%21.txt.meta","size":113},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSans-ExtraBold.ttf","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8bac22ed4fd7c8a30536be18e2984f84","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8bac22ed4fd7c8a30536be18e2984f84?name=OpenSans-ExtraBold.ttf","size":222584},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSans-ExtraBold.ttf.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"7253aba019b9e377d7a05ba028381d82","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7253aba019b9e377d7a05ba028381d82?name=OpenSans-ExtraBold.ttf.meta","size":387},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSansBold.ttf","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"50145685042b4df07a1fd19957275b81","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/50145685042b4df07a1fd19957275b81?name=OpenSansBold.ttf","size":224592},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSansBold.ttf.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"02c958ba12a0f8db824f9a372817df79","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/02c958ba12a0f8db824f9a372817df79?name=OpenSansBold.ttf.meta","size":321},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSansLight.ttf","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"1bf71be111189e76987a4bb9b3115cb7","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1bf71be111189e76987a4bb9b3115cb7?name=OpenSansLight.ttf","size":222412},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSansLight.ttf.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"6a1bd646e33a4bd5a781b8f7e6e449f2","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6a1bd646e33a4bd5a781b8f7e6e449f2?name=OpenSansLight.ttf.meta","size":321},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSansRegular.ttf","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"629a55a7e793da068dc580d184cc0e31","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/629a55a7e793da068dc580d184cc0e31?name=OpenSansRegular.ttf","size":217360},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSansRegular.ttf.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"24fab0afdcfba2a952920914be8d7e71","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/24fab0afdcfba2a952920914be8d7e71?name=OpenSansRegular.ttf.meta","size":321},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSansSemibold.ttf","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"33f225b8f5f7d6b34a0926f58f96c1e9","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/33f225b8f5f7d6b34a0926f58f96c1e9?name=OpenSansSemibold.ttf","size":221328},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSansSemibold.ttf.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"388c87f9b5f4f7a5a49d5815d8485abb","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/388c87f9b5f4f7a5a49d5815d8485abb?name=OpenSansSemibold.ttf.meta","size":321},{"path":"Assets/Game Jam Template/GameJamTemplateReadMe.txt","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"7f7ded6a00df7e13985729844dcb0e72","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7f7ded6a00df7e13985729844dcb0e72?name=GameJamTemplateReadMe.txt","size":2902},{"path":"Assets/Game Jam Template/GameJamTemplateReadMe.txt.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"223c6cb4718e185e62612a83f8742465","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/223c6cb4718e185e62612a83f8742465?name=GameJamTemplateReadMe.txt.meta","size":179},{"path":"Assets/Game Jam Template/Prefabs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"e1138c1e82e7bbf7571155717711065c","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e1138c1e82e7bbf7571155717711065c?name=Prefabs.meta","size":193},{"path":"Assets/Game Jam Template/Prefabs/EventSystem.prefab","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"0479948bb09e64c7b7d032ef9cc801b9","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0479948bb09e64c7b7d032ef9cc801b9?name=EventSystem.prefab","size":2018},{"path":"Assets/Game Jam Template/Prefabs/EventSystem.prefab.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"87238955b8edd1fe7309f414e4eeb61d","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/87238955b8edd1fe7309f414e4eeb61d?name=EventSystem.prefab.meta","size":181},{"path":"Assets/Game Jam Template/Prefabs/GameOverUI.prefab","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"d3cfb0990da49915c18e97ece8d569d8","state":2,"downloadPath":"","size":53412},{"path":"Assets/Game Jam Template/Prefabs/GameOverUI.prefab.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"1f4fa073a91901a476441412c5f69288","state":32770,"downloadPath":"","size":180},{"path":"Assets/Game Jam Template/Prefabs/MenuUI.prefab","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c7a5fc11084081992c4c2aa4a88245cd","state":2,"downloadPath":"","size":156728},{"path":"Assets/Game Jam Template/Prefabs/MenuUI.prefab.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"6e57b6e74dc3978e8db4ad2857a22427","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6e57b6e74dc3978e8db4ad2857a22427?name=UI.prefab.meta","size":181,"fromPath":"Assets/Game Jam Template/Prefabs/UI.prefab.meta"},{"path":"Assets/Game Jam Template/Scripts.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"b5d61a4f267c773c571640cf3668ba7f","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b5d61a4f267c773c571640cf3668ba7f?name=Scripts.meta","size":193},{"path":"Assets/Game Jam Template/Scripts/DontDestroy.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ef1d6ae02c7464b3437f6ecc5b9b6f70","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ef1d6ae02c7464b3437f6ecc5b9b6f70?name=DontDestroy.cs","size":288},{"path":"Assets/Game Jam Template/Scripts/DontDestroy.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"7e8cb61e496ad9bb5f6d80b26a89c090","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7e8cb61e496ad9bb5f6d80b26a89c090?name=DontDestroy.cs.meta","size":264},{"path":"Assets/Game Jam Template/Scripts/EventSystemChecker.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"fb113520cc43783c445c94c1be264bfe","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fb113520cc43783c445c94c1be264bfe?name=EventSystemChecker.cs","size":1103},{"path":"Assets/Game Jam Template/Scripts/EventSystemChecker.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"bfd953762569d55833e297c410cce114","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bfd953762569d55833e297c410cce114?name=EventSystemChecker.cs.meta","size":264},{"path":"Assets/Game Jam Template/Scripts/Pause.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"d68ced2b2c76bd62233b80cc1132e350","state":2,"downloadPath":"","size":2276},{"path":"Assets/Game Jam Template/Scripts/Pause.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"7aae54df5c7024c59ae725042f999de4","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7aae54df5c7024c59ae725042f999de4?name=Pause.cs.meta","size":264},{"path":"Assets/Game Jam Template/Scripts/PlayMusic.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"964f64cefde1cdd6528ef655f7a3720b","state":2,"downloadPath":"","size":2897},{"path":"Assets/Game Jam Template/Scripts/PlayMusic.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"82efc421ed1afd7c220dd03163881282","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/82efc421ed1afd7c220dd03163881282?name=PlayMusic.cs.meta","size":264},{"path":"Assets/Game Jam Template/Scripts/QuitApplication.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a843a50c47e21cbf5c7feaaeedbd9a9b","state":2,"downloadPath":"","size":333},{"path":"Assets/Game Jam Template/Scripts/QuitApplication.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"6dbc1adf6fbe48194669d4745cc443ae","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6dbc1adf6fbe48194669d4745cc443ae?name=QuitApplication.cs.meta","size":264},{"path":"Assets/Game Jam Template/Scripts/SetAudioLevels.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"705ec70a88d8898cf27c6791f9eafa85","state":2,"downloadPath":"","size":801},{"path":"Assets/Game Jam Template/Scripts/SetAudioLevels.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"b9d5f94edd3acdaed1ce0f61cef20098","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b9d5f94edd3acdaed1ce0f61cef20098?name=SetAudioLevels.cs.meta","size":264},{"path":"Assets/Game Jam Template/Scripts/ShowPanels.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ceec69174d3195aeea9f4c89bc4e42b0","state":2,"downloadPath":"","size":3223},{"path":"Assets/Game Jam Template/Scripts/ShowPanels.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c313170022bd32ef6cf04a05885a119d","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c313170022bd32ef6cf04a05885a119d?name=ShowPanels.cs.meta","size":264},{"path":"Assets/Game Jam Template/Scripts/StartOptions.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"1083703cd0d1152b978b0e83120017ba","state":2,"downloadPath":"","size":4607},{"path":"Assets/Game Jam Template/Scripts/StartOptions.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"7765ff0ca27c687b68ab462885b94ccf","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7765ff0ca27c687b68ab462885b94ccf?name=StartOptions.cs.meta","size":264},{"path":"Assets/GooglePlayGames.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"33fe2584af33ac1bfcb3b3c29741475e","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/33fe2584af33ac1bfcb3b3c29741475e?name=GooglePlayGames.meta","size":107},{"path":"Assets/GooglePlayGames/BasicApi.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"672a3a1c014d8c21f9cda845cbfe3940","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/672a3a1c014d8c21f9cda845cbfe3940?name=BasicApi.meta","size":107},{"path":"Assets/GooglePlayGames/BasicApi/Achievement.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"4bf00b7a492645ce8b032b5282a684da","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4bf00b7a492645ce8b032b5282a684da?name=Achievement.cs","size":7101},{"path":"Assets/GooglePlayGames/BasicApi/Achievement.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c13658d8b62c0eba98e666bcbd5ca37d","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c13658d8b62c0eba98e666bcbd5ca37d?name=Achievement.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/CommonStatusCodes.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"033940dccdea1d693a20ca21aef7e866","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/033940dccdea1d693a20ca21aef7e866?name=CommonStatusCodes.cs","size":3675},{"path":"Assets/GooglePlayGames/BasicApi/CommonStatusCodes.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"edd873a4fd2fe97b22571f3b21d35483","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/edd873a4fd2fe97b22571f3b21d35483?name=CommonStatusCodes.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/CommonTypes.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"53ee9786a5cd7119e09b46146bf2256d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/53ee9786a5cd7119e09b46146bf2256d?name=CommonTypes.cs","size":4790},{"path":"Assets/GooglePlayGames/BasicApi/CommonTypes.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"d7acb57db8e4c393427d7c51dc26a666","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d7acb57db8e4c393427d7c51dc26a666?name=CommonTypes.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/DummyClient.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a45eb874ba28670c81cfaef431c03b7f","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a45eb874ba28670c81cfaef431c03b7f?name=DummyClient.cs","size":18884},{"path":"Assets/GooglePlayGames/BasicApi/DummyClient.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"0676eff20b0c84f3391760f4ecba7c4f","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0676eff20b0c84f3391760f4ecba7c4f?name=DummyClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/Events.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8ac6dae07cac9887252a638dade02845","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8ac6dae07cac9887252a638dade02845?name=Events.meta","size":191},{"path":"Assets/GooglePlayGames/BasicApi/Events/IEvent.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"489e6873b523e04aff8317ebb477ce66","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/489e6873b523e04aff8317ebb477ce66?name=IEvent.cs","size":1942},{"path":"Assets/GooglePlayGames/BasicApi/Events/IEvent.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8f08897dee0e6a96f51210c16d4468d0","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8f08897dee0e6a96f51210c16d4468d0?name=IEvent.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/Events/IEventsClient.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"81d5dce844541be3156fba020eb92ad6","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/81d5dce844541be3156fba020eb92ad6?name=IEventsClient.cs","size":2703},{"path":"Assets/GooglePlayGames/BasicApi/Events/IEventsClient.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"6eed6d0f60bbe61b3fe2e354d7d6f48a","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6eed6d0f60bbe61b3fe2e354d7d6f48a?name=IEventsClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/IPlayGamesClient.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"fa593bc72c23ba42391a6245d88cc22d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fa593bc72c23ba42391a6245d88cc22d?name=IPlayGamesClient.cs","size":17794},{"path":"Assets/GooglePlayGames/BasicApi/IPlayGamesClient.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"9aef353cf097c41b7b4849bc1aa76c58","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9aef353cf097c41b7b4849bc1aa76c58?name=IPlayGamesClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/LeaderboardScoreData.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"f7704076dd8f047b22688587ace74256","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f7704076dd8f047b22688587ace74256?name=LeaderboardScoreData.cs","size":4123},{"path":"Assets/GooglePlayGames/BasicApi/LeaderboardScoreData.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"fb8e892f16eb5093db0142ce2ebb5595","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fb8e892f16eb5093db0142ce2ebb5595?name=LeaderboardScoreData.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a6bd8e471ea1725b71fc4372b2a2b539","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a6bd8e471ea1725b71fc4372b2a2b539?name=Multiplayer.meta","size":150},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/IRealTimeMultiplayerClient.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"30341cb1405fcc13e1f22324eafbc1e3","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/30341cb1405fcc13e1f22324eafbc1e3?name=IRealTimeMultiplayerClient.cs","size":11256},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/IRealTimeMultiplayerClient.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"29e3cd1e22be9a9e31ec4736fa713162","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/29e3cd1e22be9a9e31ec4736fa713162?name=IRealTimeMultiplayerClient.cs.meta","size":178},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/ITurnBasedMultiplayerClient.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"0c9d3c0a29cac0123252a5a965e0dc21","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0c9d3c0a29cac0123252a5a965e0dc21?name=ITurnBasedMultiplayerClient.cs","size":11966},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/ITurnBasedMultiplayerClient.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"56b2cc270e9d248521854aefc5b0c590","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/56b2cc270e9d248521854aefc5b0c590?name=ITurnBasedMultiplayerClient.cs.meta","size":178},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/Invitation.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"df3fdc195266ed827afca6102ad43cca","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/df3fdc195266ed827afca6102ad43cca?name=Invitation.cs","size":3093},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/Invitation.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"022c4817b1af556535b1390ce21da0f1","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/022c4817b1af556535b1390ce21da0f1?name=Invitation.cs.meta","size":178},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/MatchOutcome.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"97b4ed2a009408ef2bb4d353631e1330","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/97b4ed2a009408ef2bb4d353631e1330?name=MatchOutcome.cs","size":4169},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/MatchOutcome.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"4b73aef2f7454b97445cdae5e65e8231","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4b73aef2f7454b97445cdae5e65e8231?name=MatchOutcome.cs.meta","size":178},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/Participant.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"85395581513ddaad67d9032b0bac5ead","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/85395581513ddaad67d9032b0bac5ead?name=Participant.cs","size":5287},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/Participant.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"bbc4f50b3540a9d9a2578481f1564ad8","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bbc4f50b3540a9d9a2578481f1564ad8?name=Participant.cs.meta","size":178},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/Player.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a83e15a01c6a4e6a94a614211702aaac","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a83e15a01c6a4e6a94a614211702aaac?name=Player.cs","size":1349},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/Player.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"7c5fb31049ed7532ef72d02bb88c3ac6","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7c5fb31049ed7532ef72d02bb88c3ac6?name=Player.cs.meta","size":178},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/RealTimeMultiplayerListener.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a296855a50188e822d4f2ead3b3e9a34","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a296855a50188e822d4f2ead3b3e9a34?name=RealTimeMultiplayerListener.cs","size":3212},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/RealTimeMultiplayerListener.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"59978fef1910ce91cc9f537ec73c217b","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/59978fef1910ce91cc9f537ec73c217b?name=RealTimeMultiplayerListener.cs.meta","size":178},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/TurnBasedMatch.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"2acc75a7f7d672e1520faeeb65741baa","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2acc75a7f7d672e1520faeeb65741baa?name=TurnBasedMatch.cs","size":6635},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/TurnBasedMatch.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"866baead77efa5879440471324f82e41","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/866baead77efa5879440471324f82e41?name=TurnBasedMatch.cs.meta","size":178},{"path":"Assets/GooglePlayGames/BasicApi/Nearby.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"91916c567f415312c74d9cb6caa055bd","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/91916c567f415312c74d9cb6caa055bd?name=Nearby.meta","size":191},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/AdvertisingResult.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a07cbf7ac1d4c7edac664c0109c54fa3","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a07cbf7ac1d4c7edac664c0109c54fa3?name=AdvertisingResult.cs","size":1618},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/AdvertisingResult.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"f09cd964b0809e886eb7255f998d1ade","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f09cd964b0809e886eb7255f998d1ade?name=AdvertisingResult.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/ConnectionRequest.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"1130dcec72b58f100fb850ef4365dd5f","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1130dcec72b58f100fb850ef4365dd5f?name=ConnectionRequest.cs","size":1627},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/ConnectionRequest.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8ddc47992a3f806e09ccda086769f920","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8ddc47992a3f806e09ccda086769f920?name=ConnectionRequest.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/ConnectionResponse.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"1289a0199e278dd4db5ab4e27e4fbc36","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1289a0199e278dd4db5ab4e27e4fbc36?name=ConnectionResponse.cs","size":3895},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/ConnectionResponse.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c2bd880f6209c7aa84bcfa5368057d0d","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c2bd880f6209c7aa84bcfa5368057d0d?name=ConnectionResponse.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/DummyNearbyConnectionClient.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"dd3a3dd3b822a2f85ca83f5776795939","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/dd3a3dd3b822a2f85ca83f5776795939?name=DummyNearbyConnectionClient.cs","size":4151},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/DummyNearbyConnectionClient.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"4ed55c33da2ccb783fe4a22684a35984","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4ed55c33da2ccb783fe4a22684a35984?name=DummyNearbyConnectionClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/EndpointDetails.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"cf37519f6b11386c3439db4eebf78be7","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/cf37519f6b11386c3439db4eebf78be7?name=EndpointDetails.cs","size":1846},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/EndpointDetails.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"2eefc8666ce96ffef79489236ece3428","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2eefc8666ce96ffef79489236ece3428?name=EndpointDetails.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/INearbyConnectionClient.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"7f507d638ce0d305271ae29cdf250266","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7f507d638ce0d305271ae29cdf250266?name=INearbyConnectionClient.cs","size":2783},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/INearbyConnectionClient.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"db8b313f36044aabe5090268d5e47247","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/db8b313f36044aabe5090268d5e47247?name=INearbyConnectionClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/NearbyConnectionConfiguration.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"df34430a5f727e2ea11fdd299f76e157","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/df34430a5f727e2ea11fdd299f76e157?name=NearbyConnectionConfiguration.cs","size":1844},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/NearbyConnectionConfiguration.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c015fba698fa3cc09b0dd24c63e3bdf2","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c015fba698fa3cc09b0dd24c63e3bdf2?name=NearbyConnectionConfiguration.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/PlayGamesClientConfiguration.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"bfa3f61731db4fc22da17f6c03dd0f9d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bfa3f61731db4fc22da17f6c03dd0f9d?name=PlayGamesClientConfiguration.cs","size":12336},{"path":"Assets/GooglePlayGames/BasicApi/PlayGamesClientConfiguration.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"87b1426cc5196b43cc4ae3d46ad926a1","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/87b1426cc5196b43cc4ae3d46ad926a1?name=PlayGamesClientConfiguration.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/PlayerStats.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"7a0c75192b5f6a5f21686cda88315074","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7a0c75192b5f6a5f21686cda88315074?name=PlayerStats.cs","size":7987},{"path":"Assets/GooglePlayGames/BasicApi/PlayerStats.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"696c1f3d5ca7f06f8b794bc7db6a7576","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/696c1f3d5ca7f06f8b794bc7db6a7576?name=PlayerStats.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/Quests.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ffb390da94e339c81ac8c7d9f4b59cf7","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ffb390da94e339c81ac8c7d9f4b59cf7?name=Quests.meta","size":191},{"path":"Assets/GooglePlayGames/BasicApi/Quests/IQuest.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"046eeb69cbefb8cc4b78c10344c3d632","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/046eeb69cbefb8cc4b78c10344c3d632?name=IQuest.cs","size":3352},{"path":"Assets/GooglePlayGames/BasicApi/Quests/IQuest.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"81c3eec704ac36af8d273902af9e4cf7","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/81c3eec704ac36af8d273902af9e4cf7?name=IQuest.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/Quests/IQuestMilestone.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c3262b3ec1d6cef0a548576a4f0b749f","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c3262b3ec1d6cef0a548576a4f0b749f?name=IQuestMilestone.cs","size":2649},{"path":"Assets/GooglePlayGames/BasicApi/Quests/IQuestMilestone.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"00b472bd5043cba90c68f17580433e86","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/00b472bd5043cba90c68f17580433e86?name=IQuestMilestone.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/Quests/IQuestsClient.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"2e78d3070d26c71e86da6a87cbecebeb","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2e78d3070d26c71e86da6a87cbecebeb?name=IQuestsClient.cs","size":7137},{"path":"Assets/GooglePlayGames/BasicApi/Quests/IQuestsClient.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a493e6c5e70b57250f8f64ffe24becd0","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a493e6c5e70b57250f8f64ffe24becd0?name=IQuestsClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/SavedGame.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"e18bbbb9a6180a832d45c17db80632e3","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e18bbbb9a6180a832d45c17db80632e3?name=SavedGame.meta","size":191},{"path":"Assets/GooglePlayGames/BasicApi/SavedGame/ISavedGameClient.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a23fa0782414b414ff95dfcf496bd2ef","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a23fa0782414b414ff95dfcf496bd2ef?name=ISavedGameClient.cs","size":20168},{"path":"Assets/GooglePlayGames/BasicApi/SavedGame/ISavedGameClient.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"bd7781fa82aaea9ae3cd308dc15513be","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bd7781fa82aaea9ae3cd308dc15513be?name=ISavedGameClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/SavedGame/ISavedGameMetadata.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"44345638088907f7e271e5aa8455f1a2","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/44345638088907f7e271e5aa8455f1a2?name=ISavedGameMetadata.cs","size":3738},{"path":"Assets/GooglePlayGames/BasicApi/SavedGame/ISavedGameMetadata.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"837f05b5629c34925ccc228db2e4f590","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/837f05b5629c34925ccc228db2e4f590?name=ISavedGameMetadata.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/SavedGame/SavedGameMetadataUpdate.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"92e9651efd8c2035164644e51c93703b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/92e9651efd8c2035164644e51c93703b?name=SavedGameMetadataUpdate.cs","size":4100},{"path":"Assets/GooglePlayGames/BasicApi/SavedGame/SavedGameMetadataUpdate.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"000aab026570a8b7fa2b33bf162182d7","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/000aab026570a8b7fa2b33bf162182d7?name=SavedGameMetadataUpdate.cs.meta","size":262},{"path":"Assets/GooglePlayGames/BasicApi/ScorePageToken.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"4d241cac1f7171fd9ed2c37a93a05d12","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4d241cac1f7171fd9ed2c37a93a05d12?name=ScorePageToken.cs","size":2155},{"path":"Assets/GooglePlayGames/BasicApi/ScorePageToken.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"bbd76f821e94f2ec22ea07ce5c994e4b","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bbd76f821e94f2ec22ea07ce5c994e4b?name=ScorePageToken.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Editor.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"3410ff21eeb03537794302c1fb954ca1","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3410ff21eeb03537794302c1fb954ca1?name=Editor.meta","size":191},{"path":"Assets/GooglePlayGames/Editor/GPGSAndroidSetupUI.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"0a9ae17b03d527e7e9a9847fcfc9744c","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0a9ae17b03d527e7e9a9847fcfc9744c?name=GPGSAndroidSetupUI.cs","size":16710},{"path":"Assets/GooglePlayGames/Editor/GPGSAndroidSetupUI.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"95a222efd0a666ee6b7c0d3a89b3f6d4","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/95a222efd0a666ee6b7c0d3a89b3f6d4?name=GPGSAndroidSetupUI.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Editor/GPGSDependencies.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"cd8d8bc0dfb6388cce8f499f0ebe783e","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/cd8d8bc0dfb6388cce8f499f0ebe783e?name=GPGSDependencies.cs","size":5748},{"path":"Assets/GooglePlayGames/Editor/GPGSDependencies.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"7d0d93f210606f4f4691f6f6bdd059a2","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7d0d93f210606f4f4691f6f6bdd059a2?name=GPGSDependencies.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Editor/GPGSDocsUI.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"fea339b87d53c25008456d3a47c2def9","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fea339b87d53c25008456d3a47c2def9?name=GPGSDocsUI.cs","size":4956},{"path":"Assets/GooglePlayGames/Editor/GPGSDocsUI.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"42a867dabe6d2b5b9b34edbc4f279e5a","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/42a867dabe6d2b5b9b34edbc4f279e5a?name=GPGSDocsUI.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Editor/GPGSIOSSetupUI.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ba30521fe1386d3823e6b2f410ea9e0b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ba30521fe1386d3823e6b2f410ea9e0b?name=GPGSIOSSetupUI.cs","size":14829},{"path":"Assets/GooglePlayGames/Editor/GPGSIOSSetupUI.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"9e508dbcecb8f02d42eec9906c284016","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9e508dbcecb8f02d42eec9906c284016?name=GPGSIOSSetupUI.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Editor/GPGSPostBuild.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"80bd0e2dd80745582cca3883fc351132","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/80bd0e2dd80745582cca3883fc351132?name=GPGSPostBuild.cs","size":9788},{"path":"Assets/GooglePlayGames/Editor/GPGSPostBuild.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"02fd8cbb60af8d708c2407997553c5ec","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/02fd8cbb60af8d708c2407997553c5ec?name=GPGSPostBuild.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Editor/GPGSProjectSettings.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"08c6210169bc240d2c6a3721df80a75c","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/08c6210169bc240d2c6a3721df80a75c?name=GPGSProjectSettings.cs","size":5140},{"path":"Assets/GooglePlayGames/Editor/GPGSProjectSettings.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"32f6d5f16229820536e125bec36ac9bb","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/32f6d5f16229820536e125bec36ac9bb?name=GPGSProjectSettings.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Editor/GPGSStrings.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"893d45c78bb795fa1109c8215dc6221f","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/893d45c78bb795fa1109c8215dc6221f?name=GPGSStrings.cs","size":13377},{"path":"Assets/GooglePlayGames/Editor/GPGSStrings.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"1ae53ade7992073fe39249b332a71e07","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1ae53ade7992073fe39249b332a71e07?name=GPGSStrings.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Editor/GPGSUpgrader.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ff6ec4dfef8a55e93ef6667536adfdab","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ff6ec4dfef8a55e93ef6667536adfdab?name=GPGSUpgrader.cs","size":18464},{"path":"Assets/GooglePlayGames/Editor/GPGSUpgrader.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"be95bc4ea421687afa3b53b2a5bf8fd4","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/be95bc4ea421687afa3b53b2a5bf8fd4?name=GPGSUpgrader.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Editor/GPGSUtil.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"1326cee95bd286b94097195dc6117e81","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1326cee95bd286b94097195dc6117e81?name=GPGSUtil.cs","size":22660},{"path":"Assets/GooglePlayGames/Editor/GPGSUtil.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"6d77fd458add90fa19e057242439e728","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6d77fd458add90fa19e057242439e728?name=GPGSUtil.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Editor/NearbyConnectionUI.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a45053382c58f1f762af13b84cf3a84a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a45053382c58f1f762af13b84cf3a84a?name=NearbyConnectionUI.cs","size":4229},{"path":"Assets/GooglePlayGames/Editor/NearbyConnectionUI.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"19cef4168bd7a85c746d152c18481ce4","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/19cef4168bd7a85c746d152c18481ce4?name=NearbyConnectionUI.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Editor/PlistBuddyHelper.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c3e56bd14bc7131fa0438f17eb3e1c0f","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c3e56bd14bc7131fa0438f17eb3e1c0f?name=PlistBuddyHelper.cs","size":4500},{"path":"Assets/GooglePlayGames/Editor/PlistBuddyHelper.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"dee65c0b2ed2c1d5f2e4c78adfcc3cc5","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/dee65c0b2ed2c1d5f2e4c78adfcc3cc5?name=PlistBuddyHelper.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Editor/PostprocessBuildPlayer","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"02d7050168ec725ed820983bc25fb00d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/02d7050168ec725ed820983bc25fb00d?name=PostprocessBuildPlayer","size":254},{"path":"Assets/GooglePlayGames/Editor/PostprocessBuildPlayer.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"10b2449a54bf836cc769d67121a45e40","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/10b2449a54bf836cc769d67121a45e40?name=PostprocessBuildPlayer.meta","size":174},{"path":"Assets/GooglePlayGames/Editor/template-AndroidManifest.txt","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"193f3e9f4fb9c7d2be9c5a9161a5327a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/193f3e9f4fb9c7d2be9c5a9161a5327a?name=template-AndroidManifest.txt","size":1267},{"path":"Assets/GooglePlayGames/Editor/template-AndroidManifest.txt.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"50b85ab64a44f7f92373f014aecf1948","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/50b85ab64a44f7f92373f014aecf1948?name=template-AndroidManifest.txt.meta","size":177},{"path":"Assets/GooglePlayGames/Editor/template-Constants.txt","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"1e72b30a390e57a353cc1f7230f3b7c3","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1e72b30a390e57a353cc1f7230f3b7c3?name=template-Constants.txt","size":951},{"path":"Assets/GooglePlayGames/Editor/template-Constants.txt.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"48130b4d6c7bed2b8794ee15c2979de7","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/48130b4d6c7bed2b8794ee15c2979de7?name=template-Constants.txt.meta","size":177},{"path":"Assets/GooglePlayGames/Editor/template-GameInfo.txt","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"87dc3a879e6d11dc9785c2bd2147c5a2","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/87dc3a879e6d11dc9785c2bd2147c5a2?name=template-GameInfo.txt","size":3516},{"path":"Assets/GooglePlayGames/Editor/template-GameInfo.txt.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"546f266dd6b1028dd26717ce99eb4e3d","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/546f266dd6b1028dd26717ce99eb4e3d?name=template-GameInfo.txt.meta","size":177},{"path":"Assets/GooglePlayGames/Editor/xcode.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ffd0c939da9667a4b9b5cbb4bab28b28","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ffd0c939da9667a4b9b5cbb4bab28b28?name=xcode.meta","size":191},{"path":"Assets/GooglePlayGames/Editor/xcode/Elements.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"eb926a0f94ea8b784177ba22c9d69e3c","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/eb926a0f94ea8b784177ba22c9d69e3c?name=Elements.cs","size":3565},{"path":"Assets/GooglePlayGames/Editor/xcode/Elements.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"652e86c178e8e0acfb72c92e8c55e2b3","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/652e86c178e8e0acfb72c92e8c55e2b3?name=Elements.cs.meta","size":178},{"path":"Assets/GooglePlayGames/Editor/xcode/Lexer.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"3cebc5db7bc9335f4574f0f09439840a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3cebc5db7bc9335f4574f0f09439840a?name=Lexer.cs","size":7690},{"path":"Assets/GooglePlayGames/Editor/xcode/Lexer.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"6f8e741ee27927470a2ea8bbe97d3f68","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6f8e741ee27927470a2ea8bbe97d3f68?name=Lexer.cs.meta","size":178},{"path":"Assets/GooglePlayGames/Editor/xcode/Objects.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"5efbf547bae8f68bc90083b75c639feb","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/5efbf547bae8f68bc90083b75c639feb?name=Objects.cs","size":30486},{"path":"Assets/GooglePlayGames/Editor/xcode/Objects.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"58cb9f0120fee8206baed4a8b9f07d95","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/58cb9f0120fee8206baed4a8b9f07d95?name=Objects.cs.meta","size":178},{"path":"Assets/GooglePlayGames/Editor/xcode/PBXProject.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8981fb739a7f4269a079f63ba24c56b8","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8981fb739a7f4269a079f63ba24c56b8?name=PBXProject.cs","size":51173},{"path":"Assets/GooglePlayGames/Editor/xcode/PBXProject.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"d549db045ea424f09b301cf3b406f9fa","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d549db045ea424f09b301cf3b406f9fa?name=PBXProject.cs.meta","size":178},{"path":"Assets/GooglePlayGames/Editor/xcode/Parser.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"11cc7eca6ac9c8869ffea020b597d55f","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/11cc7eca6ac9c8869ffea020b597d55f?name=Parser.cs","size":5806},{"path":"Assets/GooglePlayGames/Editor/xcode/Parser.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"4fc4c2d0b1d9042bfb6a26edc326e3a1","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4fc4c2d0b1d9042bfb6a26edc326e3a1?name=Parser.cs.meta","size":178},{"path":"Assets/GooglePlayGames/Editor/xcode/Sections.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"f6b502491f964d4fdb8cf06406577795","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f6b502491f964d4fdb8cf06406577795?name=Sections.cs","size":4741},{"path":"Assets/GooglePlayGames/Editor/xcode/Sections.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"15ed5807930872fc6873f93c95f96ff2","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/15ed5807930872fc6873f93c95f96ff2?name=Sections.cs.meta","size":178},{"path":"Assets/GooglePlayGames/Editor/xcode/Serializer.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"37c2da7f0cd64a29593929848805460c","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/37c2da7f0cd64a29593929848805460c?name=Serializer.cs","size":10738},{"path":"Assets/GooglePlayGames/Editor/xcode/Serializer.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"b8ccb7714b4425d8e19c2894bb15465c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b8ccb7714b4425d8e19c2894bb15465c?name=Serializer.cs.meta","size":178},{"path":"Assets/GooglePlayGames/Editor/xcode/Utils.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"45d011617a1436787b2a2927d0558539","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/45d011617a1436787b2a2927d0558539?name=Utils.cs","size":14092},{"path":"Assets/GooglePlayGames/Editor/xcode/Utils.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"90630fc112b8be4fc91205a6f6d5e2c2","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/90630fc112b8be4fc91205a6f6d5e2c2?name=Utils.cs.meta","size":178},{"path":"Assets/GooglePlayGames/GameInfo.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"1e3d69156f0565b4d816544957dfaf05","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1e3d69156f0565b4d816544957dfaf05?name=GameInfo.cs","size":3516},{"path":"Assets/GooglePlayGames/GameInfo.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"92db78012d37b470d4819b3eadab787b","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/92db78012d37b470d4819b3eadab787b?name=GameInfo.cs.meta","size":262},{"path":"Assets/GooglePlayGames/ISocialPlatform.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"9a9f0efd4b0cc0d87f8d1b76ba3ffc1b","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9a9f0efd4b0cc0d87f8d1b76ba3ffc1b?name=ISocialPlatform.meta","size":107},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesAchievement.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"9983bb3ddd29b65d775f22c75547aa8a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9983bb3ddd29b65d775f22c75547aa8a?name=PlayGamesAchievement.cs","size":9450},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesAchievement.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"3e9c826c70c2449f9ef5906d4bd41806","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3e9c826c70c2449f9ef5906d4bd41806?name=PlayGamesAchievement.cs.meta","size":178},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesLeaderboard.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"acaf826134feaafcc15f507f3a76f3d6","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/acaf826134feaafcc15f507f3a76f3d6?name=PlayGamesLeaderboard.cs","size":5243},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesLeaderboard.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"f7000cbcedfea16d166dcf54359b645c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f7000cbcedfea16d166dcf54359b645c?name=PlayGamesLeaderboard.cs.meta","size":262},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesLocalUser.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"d5f4cd98aaaa278f9d3535cbddb9fab4","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d5f4cd98aaaa278f9d3535cbddb9fab4?name=PlayGamesLocalUser.cs","size":9320},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesLocalUser.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c888ae2e153a26ce680f22b6e6e4f254","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c888ae2e153a26ce680f22b6e6e4f254?name=PlayGamesLocalUser.cs.meta","size":178},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesPlatform.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"61c044740f03e8ef8f69cb3ad6b28963","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/61c044740f03e8ef8f69cb3ad6b28963?name=PlayGamesPlatform.cs","size":54281},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesPlatform.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"d3633770af663ce1a61fa0f6c6d1d07e","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d3633770af663ce1a61fa0f6c6d1d07e?name=PlayGamesPlatform.cs.meta","size":178},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesScore.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"eb3a89df50566cb4f9b4ac1c06e3b630","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/eb3a89df50566cb4f9b4ac1c06e3b630?name=PlayGamesScore.cs","size":3604},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesScore.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"603660b94ccb9bf35641261dd18f70fd","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/603660b94ccb9bf35641261dd18f70fd?name=PlayGamesScore.cs.meta","size":178},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesUserProfile.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c40eb8f91436aea5346412ab984a1f2e","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c40eb8f91436aea5346412ab984a1f2e?name=PlayGamesUserProfile.cs","size":5233},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesUserProfile.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"fbfd52e7e66f9f9536ac802cd41521ba","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fbfd52e7e66f9f9536ac802cd41521ba?name=PlayGamesUserProfile.cs.meta","size":178},{"path":"Assets/GooglePlayGames/Icons.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"043678e78fd92cece20456f8a5416175","state":2129922,"downloadPath":"","size":192},{"path":"Assets/GooglePlayGames/Icons/games_achievements.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"0e4910cb539f773bb374ba61a023fca0","state":2,"downloadPath":"","size":15144},{"path":"Assets/GooglePlayGames/Icons/games_achievements.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"e6d56c912e3e2b8389c1cf0b7dc0501f","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_achievements_green.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"e4ce4722aa6bc93f8f53680e9d592ddb","state":2,"downloadPath":"","size":15205},{"path":"Assets/GooglePlayGames/Icons/games_achievements_green.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"de4fb32cda6a4e97f1a1cfcd633db761","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_achievements_white.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"f4a5f0e03e5e9db30137e3fab2f35f19","state":2,"downloadPath":"","size":15636},{"path":"Assets/GooglePlayGames/Icons/games_achievements_white.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"460be91f80c9a904711fb2db26bd27c9","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_controller.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"6c8dc5f89f39deafef76b488d3215b5c","state":2,"downloadPath":"","size":12729},{"path":"Assets/GooglePlayGames/Icons/games_controller.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"6b5128503e8a288b7f78e879eaae2df4","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_controller_grey.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"4ac0cf3978dca98922d2b5f8464928a9","state":2,"downloadPath":"","size":12725},{"path":"Assets/GooglePlayGames/Icons/games_controller_grey.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ecb69c0c613964d82e7185f280dfd4dc","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_controller_white.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"bc43dc87c0d7d5f863cdb2e30938577e","state":2,"downloadPath":"","size":12658},{"path":"Assets/GooglePlayGames/Icons/games_controller_white.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"4b8374a6cbedd457e1af4c6af051cc2d","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_gifts.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"e3f07476620b09b41325a5cda52feb2d","state":2,"downloadPath":"","size":6965},{"path":"Assets/GooglePlayGames/Icons/games_gifts.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"e58ae65ef11c06796c00d19a3fb63070","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_gifts_green.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c4f73aa8d8a86a9139e95b095309333a","state":2,"downloadPath":"","size":6964},{"path":"Assets/GooglePlayGames/Icons/games_gifts_green.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"cc6cc28564b43373a9882745fbb71538","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_gifts_white.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"63595b3b7232d8167f3bff172caa927b","state":2,"downloadPath":"","size":6867},{"path":"Assets/GooglePlayGames/Icons/games_gifts_white.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"22e98d75f668aa75e7aacac4f34b12eb","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_leaderboards.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"9754ca13356c60e4a07343339ecc802f","state":2,"downloadPath":"","size":10825},{"path":"Assets/GooglePlayGames/Icons/games_leaderboards.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"7734055d66c9cbb1920190942ee36bb9","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_leaderboards_green.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"06c43f049ac24463cc07f6494b47abe9","state":2,"downloadPath":"","size":10825},{"path":"Assets/GooglePlayGames/Icons/games_leaderboards_green.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"4954447ce67f90c85acf6435b9b7a1d3","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_leaderboards_white.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"5c0796736d418753f26d2758e24a1a9e","state":2,"downloadPath":"","size":11158},{"path":"Assets/GooglePlayGames/Icons/games_leaderboards_white.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"6af8f5576e1f976381a79e00b934ae2a","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_matches.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"6907767a8e0858402e6ce91466e566f4","state":2,"downloadPath":"","size":13911},{"path":"Assets/GooglePlayGames/Icons/games_matches.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"174823c0868f80cdb07fadffd7026b01","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_matches_green.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"13d8eab34edbdc60d3cb9f50c84bbf1c","state":2,"downloadPath":"","size":13909},{"path":"Assets/GooglePlayGames/Icons/games_matches_green.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"dd88711b0d55e979e07e76687620e968","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_matches_white.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c90418ac54cf346b2cd79c23071e561a","state":2,"downloadPath":"","size":14460},{"path":"Assets/GooglePlayGames/Icons/games_matches_white.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"879e677ba3b1590aa9f767843c36a4e5","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_quests_green.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a0c055cefc87953d67e21f11699e673d","state":2,"downloadPath":"","size":9807},{"path":"Assets/GooglePlayGames/Icons/games_quests_green.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8a547dfe5d6079765c3709d94c69824d","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_quests_grey.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c15002c5db964b698d7fbccc391bb1bf","state":2,"downloadPath":"","size":9799},{"path":"Assets/GooglePlayGames/Icons/games_quests_grey.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"4181dfda5027b97668af0a0b96d4f7ee","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_quests_white.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"f5c44ef53676301313a2b3ad2beab627","state":2,"downloadPath":"","size":10008},{"path":"Assets/GooglePlayGames/Icons/games_quests_white.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"e119b6b5c6f3dea303905a33401b564c","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_savedgames_green.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c7f36db0a7719a02a75611d737db1076","state":2,"downloadPath":"","size":7990},{"path":"Assets/GooglePlayGames/Icons/games_savedgames_green.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"2ccda2b563bc665a3096756dfcb2f6ce","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_savedgames_grey.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"86cd775bcdf42050f4d7568868245e8d","state":2,"downloadPath":"","size":7980},{"path":"Assets/GooglePlayGames/Icons/games_savedgames_grey.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"cd34a49f07681dda6b34a9c97126bcfa","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/Icons/games_savedgames_white.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"612d5e9f9b0e7290b8fc578bbbd464f0","state":2,"downloadPath":"","size":7878},{"path":"Assets/GooglePlayGames/Icons/games_savedgames_white.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"dc69f13527f0f1b19820ac3b959cf395","state":32770,"downloadPath":"","size":1474},{"path":"Assets/GooglePlayGames/OurUtils.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a4cc749ffd15a6b3585eabfe588089d7","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a4cc749ffd15a6b3585eabfe588089d7?name=OurUtils.meta","size":107},{"path":"Assets/GooglePlayGames/OurUtils/Logger.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"1ffb6d1f4f1b26c00bac3a6dc2bb50d9","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1ffb6d1f4f1b26c00bac3a6dc2bb50d9?name=Logger.cs","size":2546},{"path":"Assets/GooglePlayGames/OurUtils/Logger.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"4bc4a18e90c4cab225bdea03ad125c3c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4bc4a18e90c4cab225bdea03ad125c3c?name=Logger.cs.meta","size":178},{"path":"Assets/GooglePlayGames/OurUtils/Misc.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a0901adaf518b6149e438201772dfd44","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a0901adaf518b6149e438201772dfd44?name=Misc.cs","size":2672},{"path":"Assets/GooglePlayGames/OurUtils/Misc.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"737781822153ec0e35971e7dd5a02602","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/737781822153ec0e35971e7dd5a02602?name=Misc.cs.meta","size":178},{"path":"Assets/GooglePlayGames/OurUtils/PlatformUtils.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"31256a38661beb4e62a30c9c6a0a2f5b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/31256a38661beb4e62a30c9c6a0a2f5b?name=PlatformUtils.cs","size":1994},{"path":"Assets/GooglePlayGames/OurUtils/PlatformUtils.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ded5d5c2b6386dd738ed4f8400aae9e7","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ded5d5c2b6386dd738ed4f8400aae9e7?name=PlatformUtils.cs.meta","size":263},{"path":"Assets/GooglePlayGames/OurUtils/PlayGamesHelperObject.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"44382ec8e79d68ea2487339dbe6c000c","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/44382ec8e79d68ea2487339dbe6c000c?name=PlayGamesHelperObject.cs","size":6995},{"path":"Assets/GooglePlayGames/OurUtils/PlayGamesHelperObject.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"6a082ab9dc3ee6c0051d640b98f5839b","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6a082ab9dc3ee6c0051d640b98f5839b?name=PlayGamesHelperObject.cs.meta","size":178},{"path":"Assets/GooglePlayGames/Platforms.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c3ccf3fca2af6d6e52d53b0f0762d861","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c3ccf3fca2af6d6e52d53b0f0762d861?name=Platforms.meta","size":107},{"path":"Assets/GooglePlayGames/Platforms/Android.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"731581cc808572e00b0d7407d68d537b","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/731581cc808572e00b0d7407d68d537b?name=Android.meta","size":191},{"path":"Assets/GooglePlayGames/Platforms/Android/AndroidClient.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"4a59ab2304c28d8221f825b4d0e66640","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4a59ab2304c28d8221f825b4d0e66640?name=AndroidClient.cs","size":7675},{"path":"Assets/GooglePlayGames/Platforms/Android/AndroidClient.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c5d214c4e84848d296a3044aa57d90bd","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c5d214c4e84848d296a3044aa57d90bd?name=AndroidClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Android/AndroidTokenClient.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"e10460d07cf6aec642f74c6f27042fd5","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e10460d07cf6aec642f74c6f27042fd5?name=AndroidTokenClient.cs","size":15582},{"path":"Assets/GooglePlayGames/Platforms/Android/AndroidTokenClient.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"97f45fdb4a8f1194f1a2101a7fcde7a5","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/97f45fdb4a8f1194f1a2101a7fcde7a5?name=AndroidTokenClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Android/Developers.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"597c8631b833a77c0f1e9296f2288fe7","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/597c8631b833a77c0f1e9296f2288fe7?name=Developers.meta","size":191},{"path":"Assets/GooglePlayGames/Platforms/Android/Developers/JavaInterfaceProxy.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ddab153c9b92f203fd13d5c22458ae28","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ddab153c9b92f203fd13d5c22458ae28?name=JavaInterfaceProxy.cs","size":952},{"path":"Assets/GooglePlayGames/Platforms/Android/Developers/JavaInterfaceProxy.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a4d58534cdffb77b1e549adf7b44ccc1","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a4d58534cdffb77b1e549adf7b44ccc1?name=JavaInterfaceProxy.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Android/Developers/JavaObjWrapper.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"98aed1f8de551121f1324558f449fadb","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/98aed1f8de551121f1324558f449fadb?name=JavaObjWrapper.cs","size":15584},{"path":"Assets/GooglePlayGames/Platforms/Android/Developers/JavaObjWrapper.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"fbfa8e610a1cf3d7f018cfc26cbc617e","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fbfa8e610a1cf3d7f018cfc26cbc617e?name=JavaObjWrapper.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ded8f452621616dbdc5a698e720d446d","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ded8f452621616dbdc5a698e720d446d?name=Gms.meta","size":191},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"d7d15f1419fcfed490a567e495d884ed","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d7d15f1419fcfed490a567e495d884ed?name=Common.meta","size":191},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"97ee04a056e6fd217e7d6e038e747632","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/97ee04a056e6fd217e7d6e038e747632?name=Api.meta","size":191},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/GoogleApiClient.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"fc455ecfdcc333ea6b747339894f83ec","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fc455ecfdcc333ea6b747339894f83ec?name=GoogleApiClient.cs","size":5506},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/GoogleApiClient.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"f9ff313fb5a49f3e1b8d37fe0f7e8df8","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f9ff313fb5a49f3e1b8d37fe0f7e8df8?name=GoogleApiClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/PendingResult.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"23a1a5ce2e83574a937c2116879b8f75","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/23a1a5ce2e83574a937c2116879b8f75?name=PendingResult.cs","size":2427},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/PendingResult.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"1c65490e287e14e7c104f02f7c83818a","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1c65490e287e14e7c104f02f7c83818a?name=PendingResult.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/Result.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"594f08b548dba7a3e968ae4b5defb4f7","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/594f08b548dba7a3e968ae4b5defb4f7?name=Result.cs","size":985},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/Result.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"0869b84ba653a572b95a62d6443ce695","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0869b84ba653a572b95a62d6443ce695?name=Result.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/ResultCallback.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"9309ad5c68d8582e7e32da73f848ecf9","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9309ad5c68d8582e7e32da73f848ecf9?name=ResultCallback.cs","size":1039},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/ResultCallback.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"cc2165fe1758b4730c5a44d07b6e2002","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/cc2165fe1758b4730c5a44d07b6e2002?name=ResultCallback.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/ResultCallbackProxy.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ae80853be473485712d2e28e1b4afff2","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ae80853be473485712d2e28e1b4afff2?name=ResultCallbackProxy.cs","size":2169},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/ResultCallbackProxy.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"7117c42a44faf5b4cd7872a56fedf4cf","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7117c42a44faf5b4cd7872a56fedf4cf?name=ResultCallbackProxy.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/Status.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"fa7f7361b346c08ec2775a76927a24b1","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fa7f7361b346c08ec2775a76927a24b1?name=Status.cs","size":4391},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/Status.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"e633309f9b46288381f08ea0ecc2c20c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e633309f9b46288381f08ea0ecc2c20c?name=Status.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/ConnectionResult.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"26aa1239d3baf2c0929ac67f6fcbe146","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/26aa1239d3baf2c0929ac67f6fcbe146?name=ConnectionResult.cs","size":7975},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/ConnectionResult.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"16f9b99aebb8c683604e42be088bf49d","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/16f9b99aebb8c683604e42be088bf49d?name=ConnectionResult.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"070c5bb589111c9134f045634a289fd5","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/070c5bb589111c9134f045634a289fd5?name=Games.meta","size":191},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Games.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"3dfb9b4a29c713a290b6df8e74d958cd","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3dfb9b4a29c713a290b6df8e74d958cd?name=Games.cs","size":7935},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Games.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"e71af140e0e718ccddc5dd68b56cb479","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e71af140e0e718ccddc5dd68b56cb479?name=Games.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"d6404ad515d3c8408bd47c11f43538b7","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d6404ad515d3c8408bd47c11f43538b7?name=Stats.meta","size":191},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/LoadPlayerStatsResultObject.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a3a2cbabf5c8ffa1602fb1ee98e9e9af","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a3a2cbabf5c8ffa1602fb1ee98e9e9af?name=LoadPlayerStatsResultObject.cs","size":1742},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/LoadPlayerStatsResultObject.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"715818ae357260c44d72ee521ddf283e","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/715818ae357260c44d72ee521ddf283e?name=LoadPlayerStatsResultObject.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/PlayerStats.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"14a5b4431b2ab326716e833d68b11f13","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/14a5b4431b2ab326716e833d68b11f13?name=PlayerStats.cs","size":1346},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/PlayerStats.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"b6dea4a16bdcb0b3587e23214b506724","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b6dea4a16bdcb0b3587e23214b506724?name=PlayerStats.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/PlayerStatsObject.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"051d46f14f506927080c74ffa106fd32","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/051d46f14f506927080c74ffa106fd32?name=PlayerStatsObject.cs","size":3148},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/PlayerStatsObject.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"037d790c0daa49b29483cdbfbe28f83f","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/037d790c0daa49b29483cdbfbe28f83f?name=PlayerStatsObject.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/Stats.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"2a33df4d1f30986090fa298a6ea98e56","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2a33df4d1f30986090fa298a6ea98e56?name=Stats.cs","size":1230},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/Stats.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"83bbe99ae3058e93b3338e419de523a8","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/83bbe99ae3058e93b3338e419de523a8?name=Stats.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/StatsObject.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"2e3cb5b7504490004d3d556e476fcacb","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2e3cb5b7504490004d3d556e476fcacb?name=StatsObject.cs","size":1644},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/StatsObject.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"33dab91f8fbe5cb70c01091cd39213e6","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/33dab91f8fbe5cb70c01091cd39213e6?name=StatsObject.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/IClientImpl.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"99d2012ca436e120b4390fa3976c7341","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/99d2012ca436e120b4390fa3976c7341?name=IClientImpl.cs","size":1249},{"path":"Assets/GooglePlayGames/Platforms/IClientImpl.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"6133df87a8ff10c16df461cb0fef863e","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6133df87a8ff10c16df461cb0fef863e?name=IClientImpl.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/IOS.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"9a3521b6d43cbd4c3d5ec7834161ad53","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9a3521b6d43cbd4c3d5ec7834161ad53?name=IOS.meta","size":191},{"path":"Assets/GooglePlayGames/Platforms/IOS/IOSClient.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"36473828544bb11fd1d1cc014137c43c","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/36473828544bb11fd1d1cc014137c43c?name=IOSClient.cs","size":2290},{"path":"Assets/GooglePlayGames/Platforms/IOS/IOSClient.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"501a156e5bbd216a9781ebd192aa799f","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/501a156e5bbd216a9781ebd192aa799f?name=IOSClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/IOS/IOSTokenClient.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"80b700f3e33c54e355b1cff210e036ec","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/80b700f3e33c54e355b1cff210e036ec?name=IOSTokenClient.cs","size":4589},{"path":"Assets/GooglePlayGames/Platforms/IOS/IOSTokenClient.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"6891e604132d0a9c2815b789f0f3b499","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6891e604132d0a9c2815b789f0f3b499?name=IOSTokenClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"2f045c4b6c250e25d933c7586a232d69","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2f045c4b6c250e25d933c7586a232d69?name=Native.meta","size":191},{"path":"Assets/GooglePlayGames/Platforms/Native/CallbackUtils.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"3ee3ae52ed0eab46fc60480cc1e67bff","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3ee3ae52ed0eab46fc60480cc1e67bff?name=CallbackUtils.cs","size":2089},{"path":"Assets/GooglePlayGames/Platforms/Native/CallbackUtils.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"aed86a712f98b545174598a2d28de616","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/aed86a712f98b545174598a2d28de616?name=CallbackUtils.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/ConversionUtils.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"15ffd847350a96462192a89a8681d91d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/15ffd847350a96462192a89a8681d91d?name=ConversionUtils.cs","size":4870},{"path":"Assets/GooglePlayGames/Platforms/Native/ConversionUtils.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"75b43d37bdd7b5a678c423b19a0d2297","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/75b43d37bdd7b5a678c423b19a0d2297?name=ConversionUtils.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"f4c248687b76c3046322755c2f163d66","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f4c248687b76c3046322755c2f163d66?name=Cwrapper.meta","size":191},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Achievement.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"2a2f0d1e6e534f7fec9bcdbd4672b7cc","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2a2f0d1e6e534f7fec9bcdbd4672b7cc?name=Achievement.cs","size":3837},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Achievement.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"777eb0c9683b0fcbb54dc7243e98b09e","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/777eb0c9683b0fcbb54dc7243e98b09e?name=Achievement.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/AchievementManager.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"b24ef4eb7708abd27a08456873e5b298","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b24ef4eb7708abd27a08456873e5b298?name=AchievementManager.cs","size":4784},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/AchievementManager.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"00fcd6ccb8d5540a0909b13fa22d619a","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/00fcd6ccb8d5540a0909b13fa22d619a?name=AchievementManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/AndroidPlatformConfiguration.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"01547e3433d7f50b180746cf587fa667","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/01547e3433d7f50b180746cf587fa667?name=AndroidPlatformConfiguration.cs","size":3075},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/AndroidPlatformConfiguration.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"25df0ffe16ea57125304a0c255852386","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/25df0ffe16ea57125304a0c255852386?name=AndroidPlatformConfiguration.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Builder.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"f8cd304da016a7d9ede5c19bf82c90f6","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f8cd304da016a7d9ede5c19bf82c90f6?name=Builder.cs","size":5852},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Builder.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"f00bf7f1d3bc8fe17560e4f8c16d274c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f00bf7f1d3bc8fe17560e4f8c16d274c?name=Builder.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/CommonErrorStatus.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"669b11c30b7d5e39eaf12eed616894bc","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/669b11c30b7d5e39eaf12eed616894bc?name=CommonErrorStatus.cs","size":3307},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/CommonErrorStatus.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"cd8488523bbe525041303925d9433b09","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/cd8488523bbe525041303925d9433b09?name=CommonErrorStatus.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/EndpointDiscoveryListenerHelper.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"6a0bb1d830c83857d9689469a7f6ca29","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6a0bb1d830c83857d9689469a7f6ca29?name=EndpointDiscoveryListenerHelper.cs","size":2401},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/EndpointDiscoveryListenerHelper.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"43fd867c477b3f317863403271f40ead","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/43fd867c477b3f317863403271f40ead?name=EndpointDiscoveryListenerHelper.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Event.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"b5857d32152f94a007de99ee58064113","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b5857d32152f94a007de99ee58064113?name=Event.cs","size":2792},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Event.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"093566d24c04081e1bd630d4fda726b5","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/093566d24c04081e1bd630d4fda726b5?name=Event.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/EventManager.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"9e0b1cfc54e6973ae81feeb446029dd4","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9e0b1cfc54e6973ae81feeb446029dd4?name=EventManager.cs","size":3411},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/EventManager.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"f76b2125ffba3a86f539141b8f80c127","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f76b2125ffba3a86f539141b8f80c127?name=EventManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/GameServices.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8890b667f9715927791517ee02c686d9","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8890b667f9715927791517ee02c686d9?name=GameServices.cs","size":3282},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/GameServices.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"5ded113be209184968360e253fe680fc","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/5ded113be209184968360e253fe680fc?name=GameServices.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/InternalHooks.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8ad69370ec2d6f89cf0c93111ebbd267","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8ad69370ec2d6f89cf0c93111ebbd267?name=InternalHooks.cs","size":1235},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/InternalHooks.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a07a8fc5a1d9e6c5eeeeee2bd15bc6e8","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a07a8fc5a1d9e6c5eeeeee2bd15bc6e8?name=InternalHooks.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/IosPlatformConfiguration.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a95288aa9f42c834f3300c38d31e1050","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a95288aa9f42c834f3300c38d31e1050?name=IosPlatformConfiguration.cs","size":1677},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/IosPlatformConfiguration.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"752d15da11bed3e93589de444d16591d","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/752d15da11bed3e93589de444d16591d?name=IosPlatformConfiguration.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Leaderboard.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"7797b711c6feabbc26b7ac70a47fa759","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7797b711c6feabbc26b7ac70a47fa759?name=Leaderboard.cs","size":2262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Leaderboard.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"64f3d664151d68ab06891aae8885d61c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/64f3d664151d68ab06891aae8885d61c?name=Leaderboard.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/LeaderboardManager.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"4e8b26a03a0f85f24a228318eeef4766","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4e8b26a03a0f85f24a228318eeef4766?name=LeaderboardManager.cs","size":9405},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/LeaderboardManager.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"d49d60e97c9bcca73efc12a1f71e084c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d49d60e97c9bcca73efc12a1f71e084c?name=LeaderboardManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/MessageListenerHelper.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"d382a7c76b9f88e0a5e86a851567159d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d382a7c76b9f88e0a5e86a851567159d?name=MessageListenerHelper.cs","size":2459},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/MessageListenerHelper.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"6c653a3e1bedbb370a4b2e4b52e7f0c0","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6c653a3e1bedbb370a4b2e4b52e7f0c0?name=MessageListenerHelper.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/MultiplayerInvitation.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"66a0edb52156483cba118ce9b95e63b7","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/66a0edb52156483cba118ce9b95e63b7?name=MultiplayerInvitation.cs","size":3010},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/MultiplayerInvitation.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"7542988b94edf470b3e6ff809aecea08","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7542988b94edf470b3e6ff809aecea08?name=MultiplayerInvitation.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/MultiplayerParticipant.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8999b66cfad62566ce9531781e3177fe","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8999b66cfad62566ce9531781e3177fe?name=MultiplayerParticipant.cs","size":3661},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/MultiplayerParticipant.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"663c6ad4588667e465373aee75b9191e","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/663c6ad4588667e465373aee75b9191e?name=MultiplayerParticipant.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnectionTypes.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"1087b21ed0d3ea380d17a4b1e99a574e","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1087b21ed0d3ea380d17a4b1e99a574e?name=NearbyConnectionTypes.cs","size":6376},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnectionTypes.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"47d7801da5f8f3614879c6431abfeba6","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/47d7801da5f8f3614879c6431abfeba6?name=NearbyConnectionTypes.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnections.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ed7b8ab69f864393489bb08114094dad","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ed7b8ab69f864393489bb08114094dad?name=NearbyConnections.cs","size":5432},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnections.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"7201996d554a1bcdfa7f2bcd0d5cf268","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7201996d554a1bcdfa7f2bcd0d5cf268?name=NearbyConnections.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnectionsBuilder.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"0dbd8dc3da1741bb0696f3bb345dc1fc","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0dbd8dc3da1741bb0696f3bb345dc1fc?name=NearbyConnectionsBuilder.cs","size":3003},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnectionsBuilder.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"515817ba84585acd84fcdfe6a59805cb","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/515817ba84585acd84fcdfe6a59805cb?name=NearbyConnectionsBuilder.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnectionsStatus.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c80c0e698dd848450ab732508c16840d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c80c0e698dd848450ab732508c16840d?name=NearbyConnectionsStatus.cs","size":1115},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnectionsStatus.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"109f59104a5eed3043036a320f1ccf20","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/109f59104a5eed3043036a320f1ccf20?name=NearbyConnectionsStatus.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/ParticipantResults.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"4931223d9be365d59aec64c05e2d0797","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4931223d9be365d59aec64c05e2d0797?name=ParticipantResults.cs","size":2436},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/ParticipantResults.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"29ef2786bcb9969ccf1d8c69b2132a39","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/29ef2786bcb9969ccf1d8c69b2132a39?name=ParticipantResults.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Player.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"d7f52669b97ba33c26e47f844f4c633d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d7f52669b97ba33c26e47f844f4c633d?name=Player.cs","size":3101},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Player.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"d920604ee0a16ced5419cf1b2e6bac09","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d920604ee0a16ced5419cf1b2e6bac09?name=Player.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/PlayerManager.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"1f3f80941d0f0714ce943581b0b2e94c","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1f3f80941d0f0714ce943581b0b2e94c?name=PlayerManager.cs","size":5116},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/PlayerManager.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c00c36a41267e475396056dd7bd2037a","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c00c36a41267e475396056dd7bd2037a?name=PlayerManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/PlayerStats.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ddcc1170b233ce4a87a2ac2837ef613f","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ddcc1170b233ce4a87a2ac2837ef613f?name=PlayerStats.cs","size":4056},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/PlayerStats.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"9eee84009b8962d20eb841f6ffa5d6f7","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9eee84009b8962d20eb841f6ffa5d6f7?name=PlayerStats.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Quest.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"45d2d89ec260a77cfb4eead7b09fce60","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/45d2d89ec260a77cfb4eead7b09fce60?name=Quest.cs","size":3580},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Quest.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"5ca75fbccb1718090b577a8379fede93","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/5ca75fbccb1718090b577a8379fede93?name=Quest.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/QuestManager.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"68495627fbd60cefe5da6bc2bff5bd4b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/68495627fbd60cefe5da6bc2bff5bd4b?name=QuestManager.cs","size":7241},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/QuestManager.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a9a37f3ff4e44b3198aab390ea6785cb","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a9a37f3ff4e44b3198aab390ea6785cb?name=QuestManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/QuestMilestone.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"85fed03fc882a696e323effb7aed729d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/85fed03fc882a696e323effb7aed729d?name=QuestMilestone.cs","size":3105},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/QuestMilestone.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"3dd609747ed69dc2f5a86bcbe1f27e12","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3dd609747ed69dc2f5a86bcbe1f27e12?name=QuestMilestone.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeEventListenerHelper.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"9fdbeb1bfa4b546719d5ef198c3ef0f6","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9fdbeb1bfa4b546719d5ef198c3ef0f6?name=RealTimeEventListenerHelper.cs","size":4693},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeEventListenerHelper.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"0011f10e9d65b3e2d87f3c18cf73aa7f","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0011f10e9d65b3e2d87f3c18cf73aa7f?name=RealTimeEventListenerHelper.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeMultiplayerManager.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"57c1a9e639548cadf386f3f28a0bf80a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/57c1a9e639548cadf386f3f28a0bf80a?name=RealTimeMultiplayerManager.cs","size":9604},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeMultiplayerManager.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"d919d705c3e22eb5d4e05c2b16c407cf","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d919d705c3e22eb5d4e05c2b16c407cf?name=RealTimeMultiplayerManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeRoom.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"2e674e32978e1c3d3f3e4ee0415f3bbc","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2e674e32978e1c3d3f3e4ee0415f3bbc?name=RealTimeRoom.cs","size":3337},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeRoom.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"d4754f6418bfcd89564617577786ca53","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d4754f6418bfcd89564617577786ca53?name=RealTimeRoom.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeRoomConfig.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"9be2cc03314e71a0d203fd158fe68282","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9be2cc03314e71a0d203fd158fe68282?name=RealTimeRoomConfig.cs","size":2580},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeRoomConfig.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"802b50dbf9fe609f2d9537fe5b49cc0b","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/802b50dbf9fe609f2d9537fe5b49cc0b?name=RealTimeRoomConfig.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeRoomConfigBuilder.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"7a7c64d1ee94969cd9f70927e15e4b41","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7a7c64d1ee94969cd9f70927e15e4b41?name=RealTimeRoomConfigBuilder.cs","size":2920},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeRoomConfigBuilder.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"94a115393382c28eb0a8ba803d87ca7f","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/94a115393382c28eb0a8ba803d87ca7f?name=RealTimeRoomConfigBuilder.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Score.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"33d4c60081046120830dfe7ac11260e3","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/33d4c60081046120830dfe7ac11260e3?name=Score.cs","size":1844},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Score.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"2fe4c6a8b44491a645a2cda7bfeb8cfd","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2fe4c6a8b44491a645a2cda7bfeb8cfd?name=Score.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/ScorePage.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"f40db89b4020068bbb8c268550d6efca","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f40db89b4020068bbb8c268550d6efca?name=ScorePage.cs","size":4887},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/ScorePage.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"03598530d77cdd75dc7d36033c264257","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/03598530d77cdd75dc7d36033c264257?name=ScorePage.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/ScoreSummary.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"aaa77184b0f3f8817baa64de9d4f8296","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/aaa77184b0f3f8817baa64de9d4f8296?name=ScoreSummary.cs","size":2339},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/ScoreSummary.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"fd2c7a94293f11d22f47ec121ba0b309","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fd2c7a94293f11d22f47ec121ba0b309?name=ScoreSummary.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Sentinels.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ab585d4c5900f4cdfaf4f3c5553b36f5","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ab585d4c5900f4cdfaf4f3c5553b36f5?name=Sentinels.cs","size":1061},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Sentinels.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"733bb275edd20856d98b3dd5765dcf76","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/733bb275edd20856d98b3dd5765dcf76?name=Sentinels.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotManager.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"cb23f393a145bdbb7f1b3b12b882d3ae","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/cb23f393a145bdbb7f1b3b12b882d3ae?name=SnapshotManager.cs","size":8597},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotManager.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"4fc611a94a8cfb2a4e4c35885e2cc559","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4fc611a94a8cfb2a4e4c35885e2cc559?name=SnapshotManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotMetadata.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"b4a0cfdebc688a46c4c9229627fbdcba","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b4a0cfdebc688a46c4c9229627fbdcba?name=SnapshotMetadata.cs","size":2687},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotMetadata.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"b4dead9d7eeba6447e696c55da323b68","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b4dead9d7eeba6447e696c55da323b68?name=SnapshotMetadata.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotMetadataChange.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"f0a8917c559e14123ca5c1651e01bd1e","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f0a8917c559e14123ca5c1651e01bd1e?name=SnapshotMetadataChange.cs","size":2686},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotMetadataChange.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"b6e682c465c47b1359875ae7060d19f9","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b6e682c465c47b1359875ae7060d19f9?name=SnapshotMetadataChange.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotMetadataChangeBuilder.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"b27ac86a4e5c9e0a39594c0de9457aa8","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b27ac86a4e5c9e0a39594c0de9457aa8?name=SnapshotMetadataChangeBuilder.cs","size":2232},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotMetadataChangeBuilder.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"4e4885881f2f91e4f92e63c9f0993faa","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4e4885881f2f91e4f92e63c9f0993faa?name=SnapshotMetadataChangeBuilder.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/StatsManager.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ce25b78870b100cdf65282241300ff5b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ce25b78870b100cdf65282241300ff5b?name=StatsManager.cs","size":2043},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/StatsManager.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"da8d5c0927f96364d00b17182d81bd4d","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/da8d5c0927f96364d00b17182d81bd4d?name=StatsManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Status.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"2aa4e80607d80e8c6fe6d3d71a28fa0b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2aa4e80607d80e8c6fe6d3d71a28fa0b?name=Status.cs","size":3451},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Status.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"4cf0c68da5fefb3fbbf9e2304304c822","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4cf0c68da5fefb3fbbf9e2304304c822?name=Status.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SymbolLocation.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"58a4773c40f6835513b35521a27cb8f6","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/58a4773c40f6835513b35521a27cb8f6?name=SymbolLocation.cs","size":1038},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SymbolLocation.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"df9d9e3213637c97f4c2ee231174259b","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/df9d9e3213637c97f4c2ee231174259b?name=SymbolLocation.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMatch.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"aac232d6ea6cf941b72b96126b114560","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/aac232d6ea6cf941b72b96126b114560?name=TurnBasedMatch.cs","size":5947},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMatch.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a0e8925d93ade94e86f8012f6d7095d9","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a0e8925d93ade94e86f8012f6d7095d9?name=TurnBasedMatch.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMatchConfig.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"5bfcb6e52a3e70451a4790a849655082","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/5bfcb6e52a3e70451a4790a849655082?name=TurnBasedMatchConfig.cs","size":2599},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMatchConfig.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ae00090dc382a7cd438f1f3b36188f00","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ae00090dc382a7cd438f1f3b36188f00?name=TurnBasedMatchConfig.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMatchConfigBuilder.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8792df944fd95b7371cb75781c0ccc00","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8792df944fd95b7371cb75781c0ccc00?name=TurnBasedMatchConfigBuilder.cs","size":2924},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMatchConfigBuilder.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"93b4bfa538a25e478fc1954592aea29f","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/93b4bfa538a25e478fc1954592aea29f?name=TurnBasedMatchConfigBuilder.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMultiplayerManager.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"0390ef01eae99dcb368c81f22538407a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0390ef01eae99dcb368c81f22538407a?name=TurnBasedMultiplayerManager.cs","size":13308},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMultiplayerManager.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"6c7ed418799bf886a0d74cf5e87a2f60","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6c7ed418799bf886a0d74cf5e87a2f60?name=TurnBasedMultiplayerManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Types.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"d9a041972d90f0363b620b46e772d31b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d9a041972d90f0363b620b46e772d31b?name=Types.cs","size":3939},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Types.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"48ef37ba2d68c7ceb4de725fb73f7e11","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/48ef37ba2d68c7ceb4de725fb73f7e11?name=Types.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/JavaUtils.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"0b26ad8ca92d82e6efa9f810aa9b3923","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0b26ad8ca92d82e6efa9f810aa9b3923?name=JavaUtils.cs","size":2659},{"path":"Assets/GooglePlayGames/Platforms/Native/JavaUtils.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"7260fbd12d3caeae061beb41459015fe","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7260fbd12d3caeae061beb41459015fe?name=JavaUtils.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeClient.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"4f4de88ef16398e13ef3ee3c9a55ff3a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4f4de88ef16398e13ef3ee3c9a55ff3a?name=NativeClient.cs","size":47593},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeClient.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"e413765368d70215ec8b5d05464a55bd","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e413765368d70215ec8b5d05464a55bd?name=NativeClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeEventClient.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"2cdc5cf4fc26f0c7c17db47666eabb02","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2cdc5cf4fc26f0c7c17db47666eabb02?name=NativeEventClient.cs","size":3299},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeEventClient.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"cccf4691d140eb6fe74a7fe95b58456c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/cccf4691d140eb6fe74a7fe95b58456c?name=NativeEventClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeNearbyConnectionClientFactory.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"44ed33a83bc0f18671122ffeaeef4374","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/44ed33a83bc0f18671122ffeaeef4374?name=NativeNearbyConnectionClientFactory.cs","size":2986},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeNearbyConnectionClientFactory.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"6bf900a6747ea71f31d948afcf7ff490","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6bf900a6747ea71f31d948afcf7ff490?name=NativeNearbyConnectionClientFactory.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeNearbyConnectionsClient.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"d0a183b573b19b1d8db3c885865ac647","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d0a183b573b19b1d8db3c885865ac647?name=NativeNearbyConnectionsClient.cs","size":11504},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeNearbyConnectionsClient.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8674d81e6b70dd3023f68c3bb0d7f28c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8674d81e6b70dd3023f68c3bb0d7f28c?name=NativeNearbyConnectionsClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeQuestClient.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c08ac3be4f24500c6f7896da2a50757d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c08ac3be4f24500c6f7896da2a50757d?name=NativeQuestClient.cs","size":11135},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeQuestClient.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"54eaf1e5bd55bd1ffd0078cb6c9f12be","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/54eaf1e5bd55bd1ffd0078cb6c9f12be?name=NativeQuestClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeRealtimeMultiplayerClient.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"0c365901fe32a38ef2847021ce2965e8","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0c365901fe32a38ef2847021ce2965e8?name=NativeRealtimeMultiplayerClient.cs","size":56419},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeRealtimeMultiplayerClient.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"2adc2ca50c57fffea301f74703af86ab","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2adc2ca50c57fffea301f74703af86ab?name=NativeRealtimeMultiplayerClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeSavedGameClient.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"18c0e035a9acb09563cf7fa28562bbf1","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/18c0e035a9acb09563cf7fa28562bbf1?name=NativeSavedGameClient.cs","size":26599},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeSavedGameClient.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"3dc832ad9ef5111489a4d96c38e65158","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3dc832ad9ef5111489a4d96c38e65158?name=NativeSavedGameClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeTurnBasedMultiplayerClient.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"912ff80b683e4cc11a7da0f132044095","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/912ff80b683e4cc11a7da0f132044095?name=NativeTurnBasedMultiplayerClient.cs","size":23411},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeTurnBasedMultiplayerClient.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"dea59c2adc89af7ebb38f5309fcd0b90","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/dea59c2adc89af7ebb38f5309fcd0b90?name=NativeTurnBasedMultiplayerClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"e3b8699adad64fa6e167b85dc932b38d","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e3b8699adad64fa6e167b85dc932b38d?name=PInvoke.meta","size":191},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/AchievementManager.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"590099f747dd6916322985fcd8ca83f6","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/590099f747dd6916322985fcd8ca83f6?name=AchievementManager.cs","size":6726},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/AchievementManager.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"bb385737f8601884a85a8b4f19c75b8a","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bb385737f8601884a85a8b4f19c75b8a?name=AchievementManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/AndroidPlatformConfiguration.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"663947ae9ab025cd097fbd9cb20404e9","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/663947ae9ab025cd097fbd9cb20404e9?name=AndroidPlatformConfiguration.cs","size":2253},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/AndroidPlatformConfiguration.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"4a17217427b6e4f71d70f5927b0bfd0b","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4a17217427b6e4f71d70f5927b0bfd0b?name=AndroidPlatformConfiguration.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/BaseReferenceHolder.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"4ac187e156bc5ee42e2b7cbdb9d4b2fe","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4ac187e156bc5ee42e2b7cbdb9d4b2fe?name=BaseReferenceHolder.cs","size":2764},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/BaseReferenceHolder.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ee1c413814f94bf6b44d759d70834ee6","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ee1c413814f94bf6b44d759d70834ee6?name=BaseReferenceHolder.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/Callbacks.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"16f8a28311b162a8fc9e526a4afbca69","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/16f8a28311b162a8fc9e526a4afbca69?name=Callbacks.cs","size":8529},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/Callbacks.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"2bd23e03b3024791d9c82cb243dbdb82","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2bd23e03b3024791d9c82cb243dbdb82?name=Callbacks.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/EventManager.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a174550e2082a5d7cb4ff6f76e82c454","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a174550e2082a5d7cb4ff6f76e82c454?name=EventManager.cs","size":5357},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/EventManager.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"97383ad32ea5b13a8b15bb761e87ad2f","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/97383ad32ea5b13a8b15bb761e87ad2f?name=EventManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/GameServices.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"e5e33e12b3f9ba5a74d6a7284ad0d855","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e5e33e12b3f9ba5a74d6a7284ad0d855?name=GameServices.cs","size":4176},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/GameServices.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"fdee8d2108dbd19ef81dba952c2d5aae","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fdee8d2108dbd19ef81dba952c2d5aae?name=GameServices.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/GameServicesBuilder.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"3af2f845979a3782da99da71203cceab","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3af2f845979a3782da99da71203cceab?name=GameServicesBuilder.cs","size":7711},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/GameServicesBuilder.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"bbb3aae2b02839ba1155d60953e1e73f","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bbb3aae2b02839ba1155d60953e1e73f?name=GameServicesBuilder.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/IosPlatformConfiguration.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"15e5f59cba3e56265aa1db73c33db84d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/15e5f59cba3e56265aa1db73c33db84d?name=IosPlatformConfiguration.cs","size":1658},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/IosPlatformConfiguration.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"512857c39f13a4e4efe200c1e41c0843","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/512857c39f13a4e4efe200c1e41c0843?name=IosPlatformConfiguration.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/LeaderboardManager.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"4a54d224127e5ffd0feb96083d96a5fd","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4a54d224127e5ffd0feb96083d96a5fd?name=LeaderboardManager.cs","size":14562},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/LeaderboardManager.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"06b7537d20080ab3280d2bc8ce405631","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/06b7537d20080ab3280d2bc8ce405631?name=LeaderboardManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/MultiplayerInvitation.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"5f2b83ee685ba4e1dce4014eec27f068","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/5f2b83ee685ba4e1dce4014eec27f068?name=MultiplayerInvitation.cs","size":3950},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/MultiplayerInvitation.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a55c18700e8496895870527028795e38","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a55c18700e8496895870527028795e38?name=MultiplayerInvitation.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/MultiplayerParticipant.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"b9d810e1cde652a4a8a01c6b1d59e431","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b9d810e1cde652a4a8a01c6b1d59e431?name=MultiplayerParticipant.cs","size":4489},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/MultiplayerParticipant.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"f677cf65edb922fd3b6e70c97afae0ce","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f677cf65edb922fd3b6e70c97afae0ce?name=MultiplayerParticipant.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeAchievement.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"f4faeb01200b3996c8e48754b9f17b4c","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f4faeb01200b3996c8e48754b9f17b4c?name=NativeAchievement.cs","size":4537},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeAchievement.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"6c7ebaf1f35f7c8fdf338106c334465f","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6c7ebaf1f35f7c8fdf338106c334465f?name=NativeAchievement.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeAppIdentifier.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"6d9579ad662d48bff1326b134f8025d5","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6d9579ad662d48bff1326b134f8025d5?name=NativeAppIdentifier.cs","size":1879},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeAppIdentifier.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"78f5b271142a3f8c5c6bd1b0b0ea4fc3","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/78f5b271142a3f8c5c6bd1b0b0ea4fc3?name=NativeAppIdentifier.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeConnectionRequest.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"503b7d3c12ea30b1a68cdef6ce9bedda","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/503b7d3c12ea30b1a68cdef6ce9bedda?name=NativeConnectionRequest.cs","size":2982},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeConnectionRequest.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"137469b4f889935b333a52956586b77c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/137469b4f889935b333a52956586b77c?name=NativeConnectionRequest.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeConnectionResponse.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"56f846bd8a36f5d622caafff5fa810dc","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/56f846bd8a36f5d622caafff5fa810dc?name=NativeConnectionResponse.cs","size":3578},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeConnectionResponse.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"3832dc854089896776c61505045a0e03","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3832dc854089896776c61505045a0e03?name=NativeConnectionResponse.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeEndpointDetails.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"40341ded84d34379850a0c7fa35921e6","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/40341ded84d34379850a0c7fa35921e6?name=NativeEndpointDetails.cs","size":2625},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeEndpointDetails.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"3c2281ab3d7df82ee0d40d20631b46b9","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3c2281ab3d7df82ee0d40d20631b46b9?name=NativeEndpointDetails.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeEndpointDiscoveryListenerHelper.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"60d9e963170ee7e94d448e8b1fc296a9","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/60d9e963170ee7e94d448e8b1fc296a9?name=NativeEndpointDiscoveryListenerHelper.cs","size":3467},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeEndpointDiscoveryListenerHelper.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"1fd224525f642c4b85a50910183f539a","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1fd224525f642c4b85a50910183f539a?name=NativeEndpointDiscoveryListenerHelper.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeEvent.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a66083cb59908818cf24b65c58ccfe03","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a66083cb59908818cf24b65c58ccfe03?name=NativeEvent.cs","size":3520},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeEvent.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c7f2efdfee97576b0e1ea04beabe7bb7","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c7f2efdfee97576b0e1ea04beabe7bb7?name=NativeEvent.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeLeaderboard.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"262b0faeb1d8627debfcc95da52bbcde","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/262b0faeb1d8627debfcc95da52bbcde?name=NativeLeaderboard.cs","size":1673},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeLeaderboard.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ddeabc4028914fb23834a6e54ead93b7","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ddeabc4028914fb23834a6e54ead93b7?name=NativeLeaderboard.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeMessageListenerHelper.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"10b8526bc132ba4c3678425bfa15c48d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/10b8526bc132ba4c3678425bfa15c48d?name=NativeMessageListenerHelper.cs","size":3895},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeMessageListenerHelper.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"5967bb5b0598c5ac2b8e8caf4adbc752","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/5967bb5b0598c5ac2b8e8caf4adbc752?name=NativeMessageListenerHelper.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativePlayer.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"7d7394764821623eda0320773ba76a05","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7d7394764821623eda0320773ba76a05?name=NativePlayer.cs","size":2084},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativePlayer.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a9cecc649b6e079d3f224d82aae69946","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a9cecc649b6e079d3f224d82aae69946?name=NativePlayer.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativePlayerStats.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a5a9c4f13e0f4876a9ce712c9b512f57","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a5a9c4f13e0f4876a9ce712c9b512f57?name=NativePlayerStats.cs","size":4048},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativePlayerStats.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"bcd68fc9f0560851e56df8b3a3bdc1a8","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bcd68fc9f0560851e56df8b3a3bdc1a8?name=NativePlayerStats.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeQuest.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"53ef720a556cb8bbc6d10b53d3196ffb","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/53ef720a556cb8bbc6d10b53d3196ffb?name=NativeQuest.cs","size":5524},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeQuest.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"be5c84954e723f907ac67eab124ea47e","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/be5c84954e723f907ac67eab124ea47e?name=NativeQuest.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeQuestMilestone.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"d3bbe771f7fdbe9e70d185b1b2fb7edd","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d3bbe771f7fdbe9e70d185b1b2fb7edd?name=NativeQuestMilestone.cs","size":4239},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeQuestMilestone.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"6688591874dce707b13fc8f3b5a27cdb","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6688591874dce707b13fc8f3b5a27cdb?name=NativeQuestMilestone.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeRealTimeRoom.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"cbb592a2811e655b22626b71f887305f","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/cbb592a2811e655b22626b71f887305f?name=NativeRealTimeRoom.cs","size":2463},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeRealTimeRoom.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"3b87273949d1072a398abe2e5f3056db","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3b87273949d1072a398abe2e5f3056db?name=NativeRealTimeRoom.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScore.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"063986b6f7e03694a7b5a337dfcf8149","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/063986b6f7e03694a7b5a337dfcf8149?name=NativeScore.cs","size":2819},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScore.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a374787de9edf9d7d070f545c436048d","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a374787de9edf9d7d070f545c436048d?name=NativeScore.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScoreEntry.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"e215aa50af54f8f942f8907943caba42","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e215aa50af54f8f942f8907943caba42?name=NativeScoreEntry.cs","size":2542},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScoreEntry.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"77b8f001749db6364effc29ab2e9ebf5","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/77b8f001749db6364effc29ab2e9ebf5?name=NativeScoreEntry.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScorePage.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a4b9b9174027010bab209e7dbc8f638e","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a4b9b9174027010bab209e7dbc8f638e?name=NativeScorePage.cs","size":3612},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScorePage.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8717230490d752344230066cac9d85a3","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8717230490d752344230066cac9d85a3?name=NativeScorePage.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScorePageToken.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"5f3cb4489b0b6335a3bae3659c1bba0f","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/5f3cb4489b0b6335a3bae3659c1bba0f?name=NativeScorePageToken.cs","size":1251},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScorePageToken.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"343a7a87c20df8b605bb0c4924549b4a","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/343a7a87c20df8b605bb0c4924549b4a?name=NativeScorePageToken.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScoreSummary.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a803efb960d459bbf80dc3991957282b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a803efb960d459bbf80dc3991957282b?name=NativeScoreSummary.cs","size":1798},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScoreSummary.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"5cc899fef2bf4dead76ed92287bd622b","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/5cc899fef2bf4dead76ed92287bd622b?name=NativeScoreSummary.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeSnapshotMetadata.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"b57cb994dbd039852eee78d942274b13","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b57cb994dbd039852eee78d942274b13?name=NativeSnapshotMetadata.cs","size":3662},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeSnapshotMetadata.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"7ae90b444929c41ba376fe8d44dd5d93","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7ae90b444929c41ba376fe8d44dd5d93?name=NativeSnapshotMetadata.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeSnapshotMetadataChange.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8192b6b11ea7b37e6341b8d1baf0ada9","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8192b6b11ea7b37e6341b8d1baf0ada9?name=NativeSnapshotMetadataChange.cs","size":3064},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeSnapshotMetadataChange.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8cb00093d6cadd8fef678f9292ae4c32","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8cb00093d6cadd8fef678f9292ae4c32?name=NativeSnapshotMetadataChange.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeStartAdvertisingResult.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"b7ef5c002841c425f96d4f59e3b8fd53","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b7ef5c002841c425f96d4f59e3b8fd53?name=NativeStartAdvertisingResult.cs","size":2260},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeStartAdvertisingResult.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"3c0d3acba970b18f603e886a2ce32ee5","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3c0d3acba970b18f603e886a2ce32ee5?name=NativeStartAdvertisingResult.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeTurnBasedMatch.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c4fdecbef6c27ad5904afdc04196adc3","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c4fdecbef6c27ad5904afdc04196adc3?name=NativeTurnBasedMatch.cs","size":9271},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeTurnBasedMatch.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"3813522474752c898f6e6d5e0b678e7a","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3813522474752c898f6e6d5e0b678e7a?name=NativeTurnBasedMatch.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NearbyConnectionsManager.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"7221599109f3fd189ac39deabc39bb09","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7221599109f3fd189ac39deabc39bb09?name=NearbyConnectionsManager.cs","size":8708},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NearbyConnectionsManager.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"546304960d12951cdba024580272d1a9","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/546304960d12951cdba024580272d1a9?name=NearbyConnectionsManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NearbyConnectionsManagerBuilder.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a4996df4da6118bd0262b135f7ce30f6","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a4996df4da6118bd0262b135f7ce30f6?name=NearbyConnectionsManagerBuilder.cs","size":3545},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NearbyConnectionsManagerBuilder.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"9b7bcf9319d769b8ef5f9cc8e386b231","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9b7bcf9319d769b8ef5f9cc8e386b231?name=NearbyConnectionsManagerBuilder.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/PInvokeUtilities.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"e6813947947d4e167a29ca1c93a44969","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e6813947947d4e167a29ca1c93a44969?name=PInvokeUtilities.cs","size":4250},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/PInvokeUtilities.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"593edcaed4bc47cd5709cf99e3533b8a","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/593edcaed4bc47cd5709cf99e3533b8a?name=PInvokeUtilities.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/ParticipantResults.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"9b1d4cb975da8cc17d4eb05d65606fd4","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9b1d4cb975da8cc17d4eb05d65606fd4?name=ParticipantResults.cs","size":2246},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/ParticipantResults.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"f10bb03c6eaf76e25228ec68ea7b81c2","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f10bb03c6eaf76e25228ec68ea7b81c2?name=ParticipantResults.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/PlatformConfiguration.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"e4c2bc89929f4384cbee90e88ef6f577","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e4c2bc89929f4384cbee90e88ef6f577?name=PlatformConfiguration.cs","size":1136},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/PlatformConfiguration.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a7e1ca1805044a3b191edf37577e07fe","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a7e1ca1805044a3b191edf37577e07fe?name=PlatformConfiguration.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/PlayerManager.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"038b848e195af89c9589e0213f079b9b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/038b848e195af89c9589e0213f079b9b?name=PlayerManager.cs","size":9079},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/PlayerManager.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8ac63595d10ce3797bdcfee2583afbce","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8ac63595d10ce3797bdcfee2583afbce?name=PlayerManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/PlayerSelectUIResponse.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"b9315d73c1930bf14bb208079d7032e3","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b9315d73c1930bf14bb208079d7032e3?name=PlayerSelectUIResponse.cs","size":3089},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/PlayerSelectUIResponse.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"1b748d83d566caba473d1fe5e06b9e07","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1b748d83d566caba473d1fe5e06b9e07?name=PlayerSelectUIResponse.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/QuestManager.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"466b77a90ec7ae67c345fbbff9f9e3f1","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/466b77a90ec7ae67c345fbbff9f9e3f1?name=QuestManager.cs","size":13061},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/QuestManager.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"13454c1c72ec0ea401d07e3e84dbb524","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/13454c1c72ec0ea401d07e3e84dbb524?name=QuestManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/RealTimeEventListenerHelper.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"b8201726f5b4ed5bde44f9258be12233","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b8201726f5b4ed5bde44f9258be12233?name=RealTimeEventListenerHelper.cs","size":9632},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/RealTimeEventListenerHelper.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ff80a29a0e42dc7648807420ff6e142e","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ff80a29a0e42dc7648807420ff6e142e?name=RealTimeEventListenerHelper.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/RealtimeManager.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"5d77bad740bad45c205c0a903dd894c3","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/5d77bad740bad45c205c0a903dd894c3?name=RealtimeManager.cs","size":14947},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/RealtimeManager.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"85f1431895f80b7940d5da2dae6ab746","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/85f1431895f80b7940d5da2dae6ab746?name=RealtimeManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/RealtimeRoomConfig.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"12f18a5c998c0a9145ab5e45dc5948a3","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/12f18a5c998c0a9145ab5e45dc5948a3?name=RealtimeRoomConfig.cs","size":1644},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/RealtimeRoomConfig.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"4f33f0b75d938be9aa6f26e1d56ab417","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4f33f0b75d938be9aa6f26e1d56ab417?name=RealtimeRoomConfig.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/RealtimeRoomConfigBuilder.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ce9b6c5d6f70b6a3233d48e119e31e18","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ce9b6c5d6f70b6a3233d48e119e31e18?name=RealtimeRoomConfigBuilder.cs","size":3208},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/RealtimeRoomConfigBuilder.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"b2bedfb0555974550de5ff6cbb6a072c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b2bedfb0555974550de5ff6cbb6a072c?name=RealtimeRoomConfigBuilder.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/SnapshotManager.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"e53daf9bade397a9cf5ff17ee389a722","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e53daf9bade397a9cf5ff17ee389a722?name=SnapshotManager.cs","size":14530},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/SnapshotManager.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"f6f11b5a01e40861e09d9affe0922044","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f6f11b5a01e40861e09d9affe0922044?name=SnapshotManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/StatsManager.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"aaac9076d5bc59b533d9aeeb762a01eb","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/aaac9076d5bc59b533d9aeeb762a01eb?name=StatsManager.cs","size":3059},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/StatsManager.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"d1084889bf23d0d2433f5e61d5da5042","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d1084889bf23d0d2433f5e61d5da5042?name=StatsManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/TurnBasedManager.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a2ab53172f4ec013f55d98c4ce3c7762","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a2ab53172f4ec013f55d98c4ce3c7762?name=TurnBasedManager.cs","size":17000},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/TurnBasedManager.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"72595a51d6f7c1e837d6e6d959cf6e67","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/72595a51d6f7c1e837d6e6d959cf6e67?name=TurnBasedManager.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/TurnBasedMatchConfig.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c484f01d13d33549c70e175851dd4264","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c484f01d13d33549c70e175851dd4264?name=TurnBasedMatchConfig.cs","size":2525},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/TurnBasedMatchConfig.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"1cdf0a753f6902a743624b0a74f4f024","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1cdf0a753f6902a743624b0a74f4f024?name=TurnBasedMatchConfig.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/TurnBasedMatchConfigBuilder.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"b10ea1c0f79596eaba6faf57e58da14b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b10ea1c0f79596eaba6faf57e58da14b?name=TurnBasedMatchConfigBuilder.cs","size":3113},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/TurnBasedMatchConfigBuilder.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"0aa484c0f703bf2546a108576033d89c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0aa484c0f703bf2546a108576033d89c?name=TurnBasedMatchConfigBuilder.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/Native/UnsupportedSavedGamesClient.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"66da6b0006119409d1c862c8f684193a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/66da6b0006119409d1c862c8f684193a?name=UnsupportedSavedGamesClient.cs","size":3179},{"path":"Assets/GooglePlayGames/Platforms/Native/UnsupportedSavedGamesClient.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"b9a3c4d72c7ca3d43b53bcde26667e44","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b9a3c4d72c7ca3d43b53bcde26667e44?name=UnsupportedSavedGamesClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/NearbyConnectionClientFactory.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"bd72f14f31090a83ef9c7923f92b2724","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bd72f14f31090a83ef9c7923f92b2724?name=NearbyConnectionClientFactory.cs","size":2774},{"path":"Assets/GooglePlayGames/Platforms/NearbyConnectionClientFactory.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c76b4b39116ff18fc66c6e3f416073dd","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c76b4b39116ff18fc66c6e3f416073dd?name=NearbyConnectionClientFactory.cs.meta","size":262},{"path":"Assets/GooglePlayGames/Platforms/PlayGamesClientFactory.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c4b366a6b76097f54b5e25aaceacd5d6","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c4b366a6b76097f54b5e25aaceacd5d6?name=PlayGamesClientFactory.cs","size":2045},{"path":"Assets/GooglePlayGames/Platforms/PlayGamesClientFactory.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"101c96abc52bce7886d8999e0d40aba5","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/101c96abc52bce7886d8999e0d40aba5?name=PlayGamesClientFactory.cs.meta","size":178},{"path":"Assets/GooglePlayGames/Platforms/TokenClient.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"84b9cfcef5ed7ade3492e2838ea24103","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/84b9cfcef5ed7ade3492e2838ea24103?name=TokenClient.cs","size":2332},{"path":"Assets/GooglePlayGames/Platforms/TokenClient.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"bbc51312d4bf6dc45084b801fa738387","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bbc51312d4bf6dc45084b801fa738387?name=TokenClient.cs.meta","size":262},{"path":"Assets/GooglePlayGames/PluginVersion.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"2f0c7f866d388990a2ab50e1e8add40b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2f0c7f866d388990a2ab50e1e8add40b?name=PluginVersion.cs","size":1834},{"path":"Assets/GooglePlayGames/PluginVersion.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"42f8011ed5d5e47163096d268c28a3a8","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/42f8011ed5d5e47163096d268c28a3a8?name=PluginVersion.cs.meta","size":178},{"path":"Assets/PlayServicesResolver.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"bfcf6ada29c3849f50098f0659e5785a","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bfcf6ada29c3849f50098f0659e5785a?name=PlayServicesResolver.meta","size":191},{"path":"Assets/PlayServicesResolver/Editor.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"1fa874a09f9ccadfd39309c708656a41","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1fa874a09f9ccadfd39309c708656a41?name=Editor.meta","size":191},{"path":"Assets/PlayServicesResolver/Editor/Google.IOSResolver.dll","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"9f3ab331bdbb49616f3b291125a4c9c5","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9f3ab331bdbb49616f3b291125a4c9c5?name=Google.IOSResolver.dll","size":23552},{"path":"Assets/PlayServicesResolver/Editor/Google.IOSResolver.dll.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"3292f19c263d390de1d961bee2a90204","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3292f19c263d390de1d961bee2a90204?name=Google.IOSResolver.dll.meta","size":530},{"path":"Assets/PlayServicesResolver/Editor/Google.JarResolver.dll","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"35df9d5301e3a0137676c2b7af0fb770","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/35df9d5301e3a0137676c2b7af0fb770?name=Google.JarResolver.dll","size":54784},{"path":"Assets/PlayServicesResolver/Editor/Google.JarResolver.dll.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c1ae0b6726805db4503e5511303c6037","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c1ae0b6726805db4503e5511303c6037?name=Google.JarResolver.dll.meta","size":530},{"path":"Assets/PlayServicesResolver/Editor/Google.VersionHandler.dll","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"4c8769000f10c4002c211fdf8c45b3a6","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4c8769000f10c4002c211fdf8c45b3a6?name=Google.VersionHandler.dll","size":23040},{"path":"Assets/PlayServicesResolver/Editor/Google.VersionHandler.dll.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"1b588e935e36271683edd4e34cebb9cf","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1b588e935e36271683edd4e34cebb9cf?name=Google.VersionHandler.dll.meta","size":529},{"path":"Assets/PlayServicesResolver/Editor/play-services-resolver.txt","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"bd1641839743415a15da1ace8732e631","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bd1641839743415a15da1ace8732e631?name=play-services-resolver.txt","size":180},{"path":"Assets/PlayServicesResolver/Editor/play-services-resolver.txt.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"bcb23ba2f829d10467b04db45c153509","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bcb23ba2f829d10467b04db45c153509?name=play-services-resolver.txt.meta","size":221},{"path":"Assets/Plugins.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"d27141b151d469a8264e9ff382e6981f","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d27141b151d469a8264e9ff382e6981f?name=Plugins.meta","size":192},{"path":"Assets/Plugins/Android.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"5acce9b91a6fc65fdaf9e60d4a4a5675","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/5acce9b91a6fc65fdaf9e60d4a4a5675?name=Android.meta","size":192},{"path":"Assets/Plugins/Android/MainLibProj.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"cc4999751818fddcb036702386e83604","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/cc4999751818fddcb036702386e83604?name=MainLibProj.meta","size":387},{"path":"Assets/Plugins/Android/MainLibProj/AndroidManifest.xml","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c0f26e27b1da6f9af5a5f67e4698d076","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c0f26e27b1da6f9af5a5f67e4698d076?name=AndroidManifest.xml","size":1236},{"path":"Assets/Plugins/Android/MainLibProj/AndroidManifest.xml.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"d34c95e74325d49dcc6e9b5bcbde1ed3","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d34c95e74325d49dcc6e9b5bcbde1ed3?name=AndroidManifest.xml.meta","size":178},{"path":"Assets/Plugins/Android/MainLibProj/libs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"71feb8a4c32cd2f3abebdc671027c57b","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/71feb8a4c32cd2f3abebdc671027c57b?name=libs.meta","size":107},{"path":"Assets/Plugins/Android/MainLibProj/libs/play-games-plugin-support.jar","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"2c2f1a3662a3a1bc9e0b1780c8dd5138","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2c2f1a3662a3a1bc9e0b1780c8dd5138?name=play-games-plugin-support.jar","size":13578},{"path":"Assets/Plugins/Android/MainLibProj/libs/play-games-plugin-support.jar.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"e7ae9ff8436850de3fca6f04574aaef4","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e7ae9ff8436850de3fca6f04574aaef4?name=play-games-plugin-support.jar.meta","size":174},{"path":"Assets/Plugins/Android/MainLibProj/project.properties","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"bece06172d0596e1f15cd61935851d87","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bece06172d0596e1f15cd61935851d87?name=project.properties","size":39},{"path":"Assets/Plugins/Android/MainLibProj/project.properties.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"e0164a203a562bbac747092110f1c89c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e0164a203a562bbac747092110f1c89c?name=project.properties.meta","size":90},{"path":"Assets/Plugins/Android/libs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"b59b82366f31634e7f956fff026b2b9b","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b59b82366f31634e7f956fff026b2b9b?name=libs.meta","size":191},{"path":"Assets/Plugins/Android/libs/armeabi-v7a.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"1e4dc62f4aba6fd805ae20331413de2f","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1e4dc62f4aba6fd805ae20331413de2f?name=armeabi-v7a.meta","size":191},{"path":"Assets/Plugins/Android/libs/armeabi-v7a/libgpg.so","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"bb7417380e9310ed6296ce2af51eff3a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bb7417380e9310ed6296ce2af51eff3a?name=libgpg.so","size":1323968},{"path":"Assets/Plugins/Android/libs/armeabi-v7a/libgpg.so.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"b94cb675066547500413d7c9978a25bf","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b94cb675066547500413d7c9978a25bf?name=libgpg.so.meta","size":476},{"path":"Assets/Plugins/Android/libs/x86.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"cfc1e531355894ea280bfdc481b051de","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/cfc1e531355894ea280bfdc481b051de?name=x86.meta","size":191},{"path":"Assets/Plugins/Android/libs/x86/libgpg.so","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a697ebc589452db4a1acf3bcd5db60b2","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a697ebc589452db4a1acf3bcd5db60b2?name=libgpg.so","size":2298660},{"path":"Assets/Plugins/Android/libs/x86/libgpg.so.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8b558b8849dbb773846f68a3b4a0c23c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8b558b8849dbb773846f68a3b4a0c23c?name=libgpg.so.meta","size":474},{"path":"Assets/Plugins/Android/play-services-auth-10.0.1.aar","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"3fda7de334c420e1cfb847db2328096b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3fda7de334c420e1cfb847db2328096b?name=play-services-auth-10.0.1.aar","size":74878},{"path":"Assets/Plugins/Android/play-services-auth-10.0.1.aar.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"d9404285fca36a7f5f3348468a45f48e","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d9404285fca36a7f5f3348468a45f48e?name=play-services-auth-10.0.1.aar.meta","size":461},{"path":"Assets/Plugins/Android/play-services-auth-base-10.0.1.aar","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"1df42455ec3ae0d3723faadd26e4b0c9","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1df42455ec3ae0d3723faadd26e4b0c9?name=play-services-auth-base-10.0.1.aar","size":57390},{"path":"Assets/Plugins/Android/play-services-auth-base-10.0.1.aar.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"2bbdd258d2598670bee568d530b011d5","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2bbdd258d2598670bee568d530b011d5?name=play-services-auth-base-10.0.1.aar.meta","size":461},{"path":"Assets/Plugins/Android/play-services-base-10.0.1.aar","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"f02be27d964d4f41c675ad6a80efb0a6","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f02be27d964d4f41c675ad6a80efb0a6?name=play-services-base-10.0.1.aar","size":462733},{"path":"Assets/Plugins/Android/play-services-base-10.0.1.aar.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c5dc1323c0f8672a42505086dd5f2623","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c5dc1323c0f8672a42505086dd5f2623?name=play-services-base-10.0.1.aar.meta","size":461},{"path":"Assets/Plugins/Android/play-services-basement-10.0.1.aar","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"10df71889235a2040f67d36bc1982576","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/10df71889235a2040f67d36bc1982576?name=play-services-basement-10.0.1.aar","size":341364},{"path":"Assets/Plugins/Android/play-services-basement-10.0.1.aar.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"7ca7fca6e46b426be15a7565bde3ada1","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7ca7fca6e46b426be15a7565bde3ada1?name=play-services-basement-10.0.1.aar.meta","size":461},{"path":"Assets/Plugins/Android/play-services-drive-10.0.1.aar","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"2bc05f67337eef71d054f3b3aaf06753","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2bc05f67337eef71d054f3b3aaf06753?name=play-services-drive-10.0.1.aar","size":362804},{"path":"Assets/Plugins/Android/play-services-drive-10.0.1.aar.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"449919d825448c408f0ec8fd7bcc8116","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/449919d825448c408f0ec8fd7bcc8116?name=play-services-drive-10.0.1.aar.meta","size":461},{"path":"Assets/Plugins/Android/play-services-games-10.0.1.aar","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"fe817a580fece7fea406bc92688881b1","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fe817a580fece7fea406bc92688881b1?name=play-services-games-10.0.1.aar","size":557817},{"path":"Assets/Plugins/Android/play-services-games-10.0.1.aar.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"207a3c3e5ba14d698e18d2053e40de7f","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/207a3c3e5ba14d698e18d2053e40de7f?name=play-services-games-10.0.1.aar.meta","size":461},{"path":"Assets/Plugins/Android/play-services-nearby-10.0.1.aar","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"0af01ae35dffb226de0d1efdff0b12ee","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0af01ae35dffb226de0d1efdff0b12ee?name=play-services-nearby-10.0.1.aar","size":159662},{"path":"Assets/Plugins/Android/play-services-nearby-10.0.1.aar.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"7b2767bf449eae200f3c56415f9fd87a","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7b2767bf449eae200f3c56415f9fd87a?name=play-services-nearby-10.0.1.aar.meta","size":461},{"path":"Assets/Plugins/Android/play-services-tasks-10.0.1.aar","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"6429a6d3675699e7caed6c45fa2ddf93","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6429a6d3675699e7caed6c45fa2ddf93?name=play-services-tasks-10.0.1.aar","size":20718},{"path":"Assets/Plugins/Android/play-services-tasks-10.0.1.aar.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"2bab032b90d0973fcb2fa386a02ab803","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2bab032b90d0973fcb2fa386a02ab803?name=play-services-tasks-10.0.1.aar.meta","size":461},{"path":"Assets/Plugins/Android/support-annotations-24.0.0.jar","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"77e1c455954dbd4549f6bf37eb13d536","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/77e1c455954dbd4549f6bf37eb13d536?name=support-annotations-24.0.0.jar","size":21786},{"path":"Assets/Plugins/Android/support-annotations-24.0.0.jar.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8c66f730d50f325a88e7041deaa04442","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8c66f730d50f325a88e7041deaa04442?name=support-annotations-24.0.0.jar.meta","size":461},{"path":"Assets/Plugins/Android/support-v4-24.0.0.aar","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"f60946f0390083e0eb935592b1708d76","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f60946f0390083e0eb935592b1708d76?name=support-v4-24.0.0.aar","size":1313066},{"path":"Assets/Plugins/Android/support-v4-24.0.0.aar.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"2aa4cc22418f8e319750e2613adcb1e9","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2aa4cc22418f8e319750e2613adcb1e9?name=support-v4-24.0.0.aar.meta","size":461},{"path":"Assets/Plugins/iOS.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8980c186a0936ffc8ee5b1366627b839","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8980c186a0936ffc8ee5b1366627b839?name=iOS.meta","size":191},{"path":"Assets/Plugins/iOS/GPGSAppController.h","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"aa0b046afee102dc7ef5e901afd72484","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/aa0b046afee102dc7ef5e901afd72484?name=GPGSAppController.h","size":768},{"path":"Assets/Plugins/iOS/GPGSAppController.h.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"4663cd47a0f7996e70850bcae7719452","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4663cd47a0f7996e70850bcae7719452?name=GPGSAppController.h.meta","size":456},{"path":"Assets/Plugins/iOS/GPGSAppController.mm","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"541d9966c291a664aa594a24dc65a535","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/541d9966c291a664aa594a24dc65a535?name=GPGSAppController.mm","size":6612},{"path":"Assets/Plugins/iOS/GPGSAppController.mm.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ec88d26c7f8d3fcb4e8b96a397c0730c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ec88d26c7f8d3fcb4e8b96a397c0730c?name=GPGSAppController.mm.meta","size":456},{"path":"Assets/Prefabs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"cdf2d94123583f9587d1753fb9e60e2f","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/cdf2d94123583f9587d1753fb9e60e2f?name=Prefabs.meta","size":201},{"path":"Assets/Prefabs/Customer.prefab","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"47b6e34320f43d9ba8d3a357e7502597","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/47b6e34320f43d9ba8d3a357e7502597?name=Customer.prefab","size":4770},{"path":"Assets/Prefabs/Customer.prefab.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"1aaa4ff4b7f56e606e38b4451f5df249","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1aaa4ff4b7f56e606e38b4451f5df249?name=Customer.prefab.meta","size":188},{"path":"Assets/Prefabs/SpawnPoint.prefab","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a03f4c2f75dbdf0afe91463abe5926a0","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a03f4c2f75dbdf0afe91463abe5926a0?name=SpawnPoint.prefab","size":1529},{"path":"Assets/Prefabs/SpawnPoint.prefab.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"6181232c6b31578741fd5e6070144d81","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6181232c6b31578741fd5e6070144d81?name=SpawnPoint.prefab.meta","size":188},{"path":"Assets/Prefabs/Wall.prefab","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"58c133b40b252364d0abc319283ae2cd","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/58c133b40b252364d0abc319283ae2cd?name=Wall.prefab","size":2724},{"path":"Assets/Prefabs/Wall.prefab.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"0b6dd04d95c944ec7ff28a981bf2e5a0","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0b6dd04d95c944ec7ff28a981bf2e5a0?name=Wall.prefab.meta","size":180},{"path":"Assets/Resources.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"62e10294520059fcfa5889d2f305d890","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/62e10294520059fcfa5889d2f305d890?name=Resources.meta","size":192},{"path":"Assets/Resources/Sounds.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"bac81a481ef5dc5693428e99f15961ca","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bac81a481ef5dc5693428e99f15961ca?name=Sounds.meta","size":192},{"path":"Assets/Resources/Sounds/WLCM Final.ogg","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"08c54430f24be6f58aa9703e5f228139","state":2,"downloadPath":"","size":3244245},{"path":"Assets/Resources/Sounds/WLCM Final.ogg.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"6d135cb8396ecdf2b459833a408a62d0","state":32770,"downloadPath":"","size":463},{"path":"Assets/Resources/Sounds/Welcome-Game Over 2.wav","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8c16f7df6a820b972ba74ee61f5fd47a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8c16f7df6a820b972ba74ee61f5fd47a?name=Welcome-Game+Over+2.wav","size":477118},{"path":"Assets/Resources/Sounds/Welcome-Game Over 2.wav.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"90aaf5b82a3ec5a37e252e8bc010e1a3","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/90aaf5b82a3ec5a37e252e8bc010e1a3?name=Welcome-Game+Over+2.wav.meta","size":463},{"path":"Assets/Resources/Sounds/voice1.wav","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"209f6f1e7e8c6c43b2bb44561322883a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/209f6f1e7e8c6c43b2bb44561322883a?name=voice1.wav","size":427254},{"path":"Assets/Resources/Sounds/voice1.wav.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8f3e03d71fc03188ccb1dfb774dcbfb1","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8f3e03d71fc03188ccb1dfb774dcbfb1?name=voice1.wav.meta","size":463},{"path":"Assets/Resources/Sounds/voice2.wav","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"7be5b09ea01f0d4f6177f433c05061c9","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7be5b09ea01f0d4f6177f433c05061c9?name=voice2.wav","size":271580},{"path":"Assets/Resources/Sounds/voice2.wav.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"11dc5c52f33b55cab7c52df490ea7ab8","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/11dc5c52f33b55cab7c52df490ea7ab8?name=voice2.wav.meta","size":463},{"path":"Assets/Resources/Sounds/voice3.wav","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"424f65a36d304d767b836fbffcee32ef","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/424f65a36d304d767b836fbffcee32ef?name=voice3.wav","size":561288},{"path":"Assets/Resources/Sounds/voice3.wav.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"9fe4d9a0db7b3b1fda69b5efd81861de","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9fe4d9a0db7b3b1fda69b5efd81861de?name=voice3.wav.meta","size":463},{"path":"Assets/Resources/Sounds/voice4.wav","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"696878d96102d766517e9eed21e5d3f3","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/696878d96102d766517e9eed21e5d3f3?name=voice4.wav","size":427482},{"path":"Assets/Resources/Sounds/voice4.wav.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"6c2ad8d1fa9e4eab94839b40e2fcc3e3","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6c2ad8d1fa9e4eab94839b40e2fcc3e3?name=voice4.wav.meta","size":463},{"path":"Assets/Resources/Sounds/voice5.wav","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"1613bcc2fe4b48e2635e964ec5fbf14a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1613bcc2fe4b48e2635e964ec5fbf14a?name=voice5.wav","size":427230},{"path":"Assets/Resources/Sounds/voice5.wav.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"17d4749d4131924528db0f9ad43b7ca2","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/17d4749d4131924528db0f9ad43b7ca2?name=voice5.wav.meta","size":463},{"path":"Assets/Resources/Sounds/voice6.wav","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"45a0849b847d8f2101ae84e0cb0e4adc","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/45a0849b847d8f2101ae84e0cb0e4adc?name=voice6.wav","size":622446},{"path":"Assets/Resources/Sounds/voice6.wav.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"3e49eba6bc32f92e4dd28e51aafd931f","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3e49eba6bc32f92e4dd28e51aafd931f?name=voice6.wav.meta","size":463},{"path":"Assets/Resources/Splash.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"fb158b3e5b0df4797c06d4ba3a92b85a","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fb158b3e5b0df4797c06d4ba3a92b85a?name=Splash.meta","size":192},{"path":"Assets/Resources/Splash/GreeterPortraitSplash.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"510a81005f8658d96fbd513bb9bcb4cc","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/510a81005f8658d96fbd513bb9bcb4cc?name=GreeterPortraitSplash.png","size":18079},{"path":"Assets/Resources/Splash/GreeterPortraitSplash.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"3082fce8dbb863902616a173ae752952","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3082fce8dbb863902616a173ae752952?name=GreeterPortraitSplash.png.meta","size":1474},{"path":"Assets/Resources/Splash/GreeterSplash_1366x768.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"fc06eea586f4fe25a601674263cc9b3d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fc06eea586f4fe25a601674263cc9b3d?name=GreeterSplash_1366x768.png","size":20893},{"path":"Assets/Resources/Splash/GreeterSplash_1366x768.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"b380a8a9d83fcfa5c7e723772eb6ad13","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b380a8a9d83fcfa5c7e723772eb6ad13?name=GreeterSplash_1366x768.png.meta","size":1474},{"path":"Assets/Resources/Sprites.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"81a1e46182d2cc993e46d25d8a62f470","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/81a1e46182d2cc993e46d25d8a62f470?name=Sprites.meta","size":192},{"path":"Assets/Resources/Sprites/Customer.controller","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"9024583ad8b88e8bc35fba4f13b69f52","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9024583ad8b88e8bc35fba4f13b69f52?name=Customer.controller","size":5892},{"path":"Assets/Resources/Sprites/Customer.controller.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"04ff07180513a54f39fa80046da17d66","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/04ff07180513a54f39fa80046da17d66?name=Customer.controller.meta","size":180},{"path":"Assets/Resources/Sprites/Customer10.overrideController","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"7c812dbf4151a29093cd97c381d0a5fe","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7c812dbf4151a29093cd97c381d0a5fe?name=Customer10.overrideController","size":818},{"path":"Assets/Resources/Sprites/Customer10.overrideController.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ecd532acdfe5cfa6fdfb97783cea6a38","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ecd532acdfe5cfa6fdfb97783cea6a38?name=Customer10.overrideController.meta","size":180},{"path":"Assets/Resources/Sprites/Customer11.overrideController","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ad0f45403d022d739608eefb603a5c06","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ad0f45403d022d739608eefb603a5c06?name=Customer11.overrideController","size":818},{"path":"Assets/Resources/Sprites/Customer11.overrideController.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"227bcc32f52ddf11690afec583fc54e5","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/227bcc32f52ddf11690afec583fc54e5?name=Customer11.overrideController.meta","size":180},{"path":"Assets/Resources/Sprites/Customer12.overrideController","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"42ecc706afb9c0e74284607baf9e0337","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/42ecc706afb9c0e74284607baf9e0337?name=Customer12.overrideController","size":818},{"path":"Assets/Resources/Sprites/Customer12.overrideController.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"27ce73445170f6628bb250417fef7dd2","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/27ce73445170f6628bb250417fef7dd2?name=Customer12.overrideController.meta","size":180},{"path":"Assets/Resources/Sprites/Customer13.overrideController","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"227e64a1a2447c60711c861e4cbe054c","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/227e64a1a2447c60711c861e4cbe054c?name=Customer13.overrideController","size":818},{"path":"Assets/Resources/Sprites/Customer13.overrideController.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"f7fb1a11e6a49df9eb1f9498f3734a51","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f7fb1a11e6a49df9eb1f9498f3734a51?name=Customer13.overrideController.meta","size":180},{"path":"Assets/Resources/Sprites/Customer14.overrideController","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"55f8832366f39c75081fb22878540a33","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/55f8832366f39c75081fb22878540a33?name=Customer14.overrideController","size":818},{"path":"Assets/Resources/Sprites/Customer14.overrideController.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"bc6460775b0e51ad888664179946e54a","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bc6460775b0e51ad888664179946e54a?name=Customer14.overrideController.meta","size":180},{"path":"Assets/Resources/Sprites/Customer15.overrideController","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"09ca0a200d29d603fc5a68e55e0ce99d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/09ca0a200d29d603fc5a68e55e0ce99d?name=Customer15.overrideController","size":818},{"path":"Assets/Resources/Sprites/Customer15.overrideController.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c79b294886c52bca5895c6d15effab06","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c79b294886c52bca5895c6d15effab06?name=Customer15.overrideController.meta","size":180},{"path":"Assets/Resources/Sprites/Customer16.overrideController","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ff418df9462d165721a2b930acbd329b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ff418df9462d165721a2b930acbd329b?name=Customer16.overrideController","size":818},{"path":"Assets/Resources/Sprites/Customer16.overrideController.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"87e7ad2d78443bb52e87c1d7f0d5afcb","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/87e7ad2d78443bb52e87c1d7f0d5afcb?name=Customer16.overrideController.meta","size":180},{"path":"Assets/Resources/Sprites/Customer17.overrideController","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"f4e855b29bf837de491d496e455932c8","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f4e855b29bf837de491d496e455932c8?name=Customer17.overrideController","size":818},{"path":"Assets/Resources/Sprites/Customer17.overrideController.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"df4be3b101b76ac6dd55df82dbf87cc1","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/df4be3b101b76ac6dd55df82dbf87cc1?name=Customer17.overrideController.meta","size":180},{"path":"Assets/Resources/Sprites/Customer2.overrideController","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"900b65f7d179c6985de32ea9b71d3801","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/900b65f7d179c6985de32ea9b71d3801?name=Customer2.overrideController","size":817},{"path":"Assets/Resources/Sprites/Customer2.overrideController.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"30eafd2a1290c328096c28b0f3d76eea","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/30eafd2a1290c328096c28b0f3d76eea?name=Customer2.overrideController.meta","size":180},{"path":"Assets/Resources/Sprites/Customer3.overrideController","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"fc4e8b451d4becae36c995b56382ba02","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fc4e8b451d4becae36c995b56382ba02?name=Customer3.overrideController","size":817},{"path":"Assets/Resources/Sprites/Customer3.overrideController.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"33ce30d37e8aad613ca824a753e9ea6d","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/33ce30d37e8aad613ca824a753e9ea6d?name=Customer3.overrideController.meta","size":180},{"path":"Assets/Resources/Sprites/Customer4.overrideController","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"e9441663d2b1fd4aa25bbb5fb3527902","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e9441663d2b1fd4aa25bbb5fb3527902?name=Customer4.overrideController","size":817},{"path":"Assets/Resources/Sprites/Customer4.overrideController.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"5546f95b5dba8e605c01f347406adf7f","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/5546f95b5dba8e605c01f347406adf7f?name=Customer4.overrideController.meta","size":180},{"path":"Assets/Resources/Sprites/Customer5.overrideController","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"342916a99375d386efdcf832db8cf566","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/342916a99375d386efdcf832db8cf566?name=Customer5.overrideController","size":817},{"path":"Assets/Resources/Sprites/Customer5.overrideController.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"b4343f3535db1ed5b956713cc239de58","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b4343f3535db1ed5b956713cc239de58?name=Customer5.overrideController.meta","size":180},{"path":"Assets/Resources/Sprites/Customer6.overrideController","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"779e024ff684aa75cf2559ee780b2265","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/779e024ff684aa75cf2559ee780b2265?name=Customer6.overrideController","size":817},{"path":"Assets/Resources/Sprites/Customer6.overrideController.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"79ba5f1ebbd6f1e8ad52390bc1f3d0af","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/79ba5f1ebbd6f1e8ad52390bc1f3d0af?name=Customer6.overrideController.meta","size":180},{"path":"Assets/Resources/Sprites/Customer7.overrideController","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"48501ac60b479251cbc50d3650f028da","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/48501ac60b479251cbc50d3650f028da?name=Customer7.overrideController","size":817},{"path":"Assets/Resources/Sprites/Customer7.overrideController.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ed198a8131e4cf8d461725d7e00f138f","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ed198a8131e4cf8d461725d7e00f138f?name=Customer7.overrideController.meta","size":180},{"path":"Assets/Resources/Sprites/Customer8.overrideController","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"4d990b3c05b2aaf75c83290cf30d2c7f","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4d990b3c05b2aaf75c83290cf30d2c7f?name=Customer8.overrideController","size":817},{"path":"Assets/Resources/Sprites/Customer8.overrideController.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"b13d592256541dcc5c0a2333bc53402d","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b13d592256541dcc5c0a2333bc53402d?name=Customer8.overrideController.meta","size":180},{"path":"Assets/Resources/Sprites/Customer9.overrideController","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"32eb36844bc3caeba2a1dfc9c5674f8b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/32eb36844bc3caeba2a1dfc9c5674f8b?name=Customer9.overrideController","size":817},{"path":"Assets/Resources/Sprites/Customer9.overrideController.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a5315ffc0b47238ba74808378b3af09d","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a5315ffc0b47238ba74808378b3af09d?name=Customer9.overrideController.meta","size":180},{"path":"Assets/Resources/Sprites/FiredGuy 1.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c925d4a0b915633c0e67872db0245a4a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c925d4a0b915633c0e67872db0245a4a?name=FiredGuy+1.png","size":506},{"path":"Assets/Resources/Sprites/FiredGuy 1.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"fa1c76608a57f24b6585f9bcead01249","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fa1c76608a57f24b6585f9bcead01249?name=FiredGuy+1.png.meta","size":1673},{"path":"Assets/Resources/Sprites/Floor2.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"3e7cb26ec0c1066cdf2cc01ccca9b326","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3e7cb26ec0c1066cdf2cc01ccca9b326?name=Floor2.png","size":2031},{"path":"Assets/Resources/Sprites/Floor2.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"1eadd9918304be1b52d9ab90a25b9256","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1eadd9918304be1b52d9ab90a25b9256?name=Floor2.png.meta","size":1674},{"path":"Assets/Resources/Sprites/Materials.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"30b3662515d9d42ed30fd034a7441033","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/30b3662515d9d42ed30fd034a7441033?name=Materials.meta","size":192},{"path":"Assets/Resources/Sprites/Materials/Floor 1.mat","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8ef1c17035b3119de40e3ee83657c5a7","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8ef1c17035b3119de40e3ee83657c5a7?name=Floor+1.mat","size":658},{"path":"Assets/Resources/Sprites/Materials/Floor 1.mat.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"13e52eabcda25982a96cd2493e737d7b","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/13e52eabcda25982a96cd2493e737d7b?name=Floor+1.mat.meta","size":180},{"path":"Assets/Resources/Sprites/Materials/Floor.mat","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a2114c561d4e51cc592e1dc148c51bef","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a2114c561d4e51cc592e1dc148c51bef?name=Floor.mat","size":2889},{"path":"Assets/Resources/Sprites/Materials/Floor.mat.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"e1b8f9014eced15bdbe9c221c5ef7cc2","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e1b8f9014eced15bdbe9c221c5ef7cc2?name=Floor.mat.meta","size":180},{"path":"Assets/Resources/Sprites/Materials/Floor2.mat","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8633ce4c58708b205a039b4c99a4afb0","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8633ce4c58708b205a039b4c99a4afb0?name=Floor2.mat","size":657},{"path":"Assets/Resources/Sprites/Materials/Floor2.mat.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c62add82988fc7054631a838f77eab94","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c62add82988fc7054631a838f77eab94?name=Floor2.mat.meta","size":180},{"path":"Assets/Resources/Sprites/Materials/Wall 1.mat","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"e0694c74c0ac7fde704d028f554bbc34","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e0694c74c0ac7fde704d028f554bbc34?name=Wall+1.mat","size":657},{"path":"Assets/Resources/Sprites/Materials/Wall 1.mat.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"78fa06eee2d25816864fe8978ac6dcc6","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/78fa06eee2d25816864fe8978ac6dcc6?name=Wall+1.mat.meta","size":180},{"path":"Assets/Resources/Sprites/Materials/Wall.mat","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c731ebc28580d91103e2822f0f950f6c","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c731ebc28580d91103e2822f0f950f6c?name=Wall.mat","size":2897},{"path":"Assets/Resources/Sprites/Materials/Wall.mat.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"30945511fdeee8eaefe76a78a3b272df","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/30945511fdeee8eaefe76a78a3b272df?name=Wall.mat.meta","size":180},{"path":"Assets/Resources/Sprites/Materials/Wall2.mat","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"4439c3eec22749e7d2dda3e4e7ef2a5e","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4439c3eec22749e7d2dda3e4e7ef2a5e?name=Wall2.mat","size":656},{"path":"Assets/Resources/Sprites/Materials/Wall2.mat.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"d21f320d2bb5253a4fc41b50e57318de","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d21f320d2bb5253a4fc41b50e57318de?name=Wall2.mat.meta","size":180},{"path":"Assets/Resources/Sprites/Materials/Wall3.mat","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8cc5e9893421a199a442d9f51b290547","state":2,"downloadPath":"","size":3128},{"path":"Assets/Resources/Sprites/Materials/Wall3.mat.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"6cccc8bd54adc5f8020e6e978b6c27aa","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6cccc8bd54adc5f8020e6e978b6c27aa?name=Wall3.mat.meta","size":180},{"path":"Assets/Resources/Sprites/Player.controller","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"5d2b26464821ed67ee548e35d950d9ab","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/5d2b26464821ed67ee548e35d950d9ab?name=Player.controller","size":7109},{"path":"Assets/Resources/Sprites/Player.controller.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"3019b65114105cdb19e7b58cde850daf","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3019b65114105cdb19e7b58cde850daf?name=Player.controller.meta","size":180},{"path":"Assets/Resources/Sprites/Player.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"d7d87d5b8979442271069e6c19725e6f","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d7d87d5b8979442271069e6c19725e6f?name=Player.png","size":584},{"path":"Assets/Resources/Sprites/Player.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"7c0821d562b30885083fdc900a7494d5","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7c0821d562b30885083fdc900a7494d5?name=Player.png.meta","size":3870},{"path":"Assets/Resources/Sprites/PlayerIcon.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"438f2685eb05b5724c74931a80a11c6d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/438f2685eb05b5724c74931a80a11c6d?name=PlayerIcon.png","size":6800},{"path":"Assets/Resources/Sprites/PlayerIcon.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"0564ecbee4d6f8684351a0f336ecc27d","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0564ecbee4d6f8684351a0f336ecc27d?name=PlayerIcon.png.meta","size":2069},{"path":"Assets/Resources/Sprites/Player_Idle.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"e1e03b53557b3cf9302ffb3e152e7404","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e1e03b53557b3cf9302ffb3e152e7404?name=Player_Idle.anim","size":1861},{"path":"Assets/Resources/Sprites/Player_Idle.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"7106b89be1f3b4a71e6b59b679e073f0","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7106b89be1f3b4a71e6b59b679e073f0?name=Player_Idle.anim.meta","size":180},{"path":"Assets/Resources/Sprites/Player_Walk.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"32625b96daef2daea375410672fbf7ab","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/32625b96daef2daea375410672fbf7ab?name=Player_Walk.anim","size":1861},{"path":"Assets/Resources/Sprites/Player_Walk.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"f96a4c0e8a1273dfc3c7a5c53dee0c32","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f96a4c0e8a1273dfc3c7a5c53dee0c32?name=Player_Walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/Player_Wave.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"32f6b495d7181d3cf664cee893f35a8a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/32f6b495d7181d3cf664cee893f35a8a?name=Player_Wave.anim","size":1861},{"path":"Assets/Resources/Sprites/Player_Wave.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"f7d9f5dba9b6740bc0f6e304ea247ebc","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f7d9f5dba9b6740bc0f6e304ea247ebc?name=Player_Wave.anim.meta","size":180},{"path":"Assets/Resources/Sprites/SatisfactionBar.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"d3c97308c2b80e965c6aceb7e310833f","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d3c97308c2b80e965c6aceb7e310833f?name=SatisfactionBar.png","size":2017},{"path":"Assets/Resources/Sprites/SatisfactionBar.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"81b1c992eedead392d6ca434a9d00d09","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/81b1c992eedead392d6ca434a9d00d09?name=SatisfactionBar.png.meta","size":2069},{"path":"Assets/Resources/Sprites/Wall3.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c71331b42a41396dfeb7a1212f91cca8","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c71331b42a41396dfeb7a1212f91cca8?name=Wall3.png","size":11829},{"path":"Assets/Resources/Sprites/Wall3.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ffce5faf63af9a827d11608ac3401baa","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ffce5faf63af9a827d11608ac3401baa?name=Wall3.png.meta","size":1673},{"path":"Assets/Resources/Sprites/person_01.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a8075612a3a8fb546516976a396ee4bb","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a8075612a3a8fb546516976a396ee4bb?name=person_01.png","size":522},{"path":"Assets/Resources/Sprites/person_01.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"452aa841f156723f3a8d2ba3a917ffdc","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/452aa841f156723f3a8d2ba3a917ffdc?name=person_01.png.meta","size":3278},{"path":"Assets/Resources/Sprites/person_01_shake.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"e9b9476443227c03495a0815a451d1a7","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e9b9476443227c03495a0815a451d1a7?name=person_01_shake.anim","size":1865},{"path":"Assets/Resources/Sprites/person_01_shake.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"27ec876e1fb2b05d0e634904da106461","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/27ec876e1fb2b05d0e634904da106461?name=person_01_shake.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_01_walk.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"1599200258e8baa83a3f40ec333029ec","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1599200258e8baa83a3f40ec333029ec?name=person_01_walk.anim","size":1864},{"path":"Assets/Resources/Sprites/person_01_walk.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"d494a2de8aef42b5dce24448b5a46732","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d494a2de8aef42b5dce24448b5a46732?name=person_01_walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_01_wave.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8f99e25f6eecb7809506adcae0085d96","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8f99e25f6eecb7809506adcae0085d96?name=person_01_wave.anim","size":1864},{"path":"Assets/Resources/Sprites/person_01_wave.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"be243c992b1f5948ecbd45916e8020bb","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/be243c992b1f5948ecbd45916e8020bb?name=person_01_wave.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_02.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"1a93e6d42afcf5c03cba07b50eba1ab4","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1a93e6d42afcf5c03cba07b50eba1ab4?name=person_02.png","size":558},{"path":"Assets/Resources/Sprites/person_02.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"951fc7844e94e39bcd18a1fd7f3a20a6","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/951fc7844e94e39bcd18a1fd7f3a20a6?name=person_02.png.meta","size":3478},{"path":"Assets/Resources/Sprites/person_02_shake.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8ec4b61a764a5541beb994a94ff56236","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8ec4b61a764a5541beb994a94ff56236?name=person_02_shake.anim","size":1865},{"path":"Assets/Resources/Sprites/person_02_shake.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a3fe73f1f863540e935e3e468a8aa76b","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a3fe73f1f863540e935e3e468a8aa76b?name=person_02_shake.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_02_walk.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"241b10035e08112027d7e50c500620c1","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/241b10035e08112027d7e50c500620c1?name=person_02_walk.anim","size":1864},{"path":"Assets/Resources/Sprites/person_02_walk.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"22d07bfc4e5f77fcb50b8ae93228c2c8","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/22d07bfc4e5f77fcb50b8ae93228c2c8?name=person_02_walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_02_wave.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ff78ae56771a590ea93c35e9c5c6f92f","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ff78ae56771a590ea93c35e9c5c6f92f?name=person_02_wave.anim","size":1864},{"path":"Assets/Resources/Sprites/person_02_wave.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"bcc101756226e0213686fdadec8ab358","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bcc101756226e0213686fdadec8ab358?name=person_02_wave.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_03.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"abb62098e9e5b80267e8a463be7b9bcd","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/abb62098e9e5b80267e8a463be7b9bcd?name=person_03.png","size":506},{"path":"Assets/Resources/Sprites/person_03.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"77008882e6b9ea8f5cc10505746b7b9f","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/77008882e6b9ea8f5cc10505746b7b9f?name=person_03.png.meta","size":3280},{"path":"Assets/Resources/Sprites/person_03_shake.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"aab5774090a31096ce96eca4b209669a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/aab5774090a31096ce96eca4b209669a?name=person_03_shake.anim","size":1865},{"path":"Assets/Resources/Sprites/person_03_shake.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8422c56a78cbf2663ab458e2ecb5202d","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8422c56a78cbf2663ab458e2ecb5202d?name=person_03_shake.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_03_walk.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8c143fdf173f0cb8e2c419a98cf002c5","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8c143fdf173f0cb8e2c419a98cf002c5?name=person_03_walk.anim","size":1864},{"path":"Assets/Resources/Sprites/person_03_walk.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a5a96a60e0d8adbad4236f1858544465","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a5a96a60e0d8adbad4236f1858544465?name=person_03_walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_03_wave.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"71fc1c7243d54626ba0bcaa52623ce9a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/71fc1c7243d54626ba0bcaa52623ce9a?name=person_03_wave.anim","size":1864},{"path":"Assets/Resources/Sprites/person_03_wave.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"f4b9308815ea40e786a12d148a8dfcdf","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f4b9308815ea40e786a12d148a8dfcdf?name=person_03_wave.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_04.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"17fc7b9e462fc11d87a069e29f12a04f","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/17fc7b9e462fc11d87a069e29f12a04f?name=person_04.png","size":399},{"path":"Assets/Resources/Sprites/person_04.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"3e01095124239d6369dc0bbebf71c683","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3e01095124239d6369dc0bbebf71c683?name=person_04.png.meta","size":3280},{"path":"Assets/Resources/Sprites/person_04_shake.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ff593224c78d43ed596ad34001dc69ec","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ff593224c78d43ed596ad34001dc69ec?name=person_04_shake.anim","size":1865},{"path":"Assets/Resources/Sprites/person_04_shake.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"107518342f3edf3db041ac6fcf9b8bb6","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/107518342f3edf3db041ac6fcf9b8bb6?name=person_04_shake.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_04_walk.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"b935ab489b8fcf37af406d1faf4807eb","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b935ab489b8fcf37af406d1faf4807eb?name=person_04_walk.anim","size":1864},{"path":"Assets/Resources/Sprites/person_04_walk.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"65f15ae17f4a96bbdd209a0d612c7e49","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/65f15ae17f4a96bbdd209a0d612c7e49?name=person_04_walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_04_wave.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"f4f48a026c1a52bad39a14c54fc83cc9","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f4f48a026c1a52bad39a14c54fc83cc9?name=person_04_wave.anim","size":1864},{"path":"Assets/Resources/Sprites/person_04_wave.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"9cdb7ebf888650ed09f3fc1fb1cbda2e","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9cdb7ebf888650ed09f3fc1fb1cbda2e?name=person_04_wave.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_05.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"9e362476875c314a327f1242fa527b81","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9e362476875c314a327f1242fa527b81?name=person_05.png","size":399},{"path":"Assets/Resources/Sprites/person_05.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"831f8e5dec3999c2f9217f0e1f10ed42","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/831f8e5dec3999c2f9217f0e1f10ed42?name=person_05.png.meta","size":3280},{"path":"Assets/Resources/Sprites/person_05_shake.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8b9e895081c19cadf1cf86d608ae0832","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8b9e895081c19cadf1cf86d608ae0832?name=person_05_shake.anim","size":1865},{"path":"Assets/Resources/Sprites/person_05_shake.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"0c17f23d980890cb83259c6c8fba24c6","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0c17f23d980890cb83259c6c8fba24c6?name=person_05_shake.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_05_walk.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a695cdd430b394480377f452c8f9afb8","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a695cdd430b394480377f452c8f9afb8?name=person_05_walk.anim","size":1864},{"path":"Assets/Resources/Sprites/person_05_walk.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"fdeb0d057ca670938a15de035595b4fe","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fdeb0d057ca670938a15de035595b4fe?name=person_05_walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_05_wave.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"dee32015775ca2ae2b069bc5b7f36416","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/dee32015775ca2ae2b069bc5b7f36416?name=person_05_wave.anim","size":1864},{"path":"Assets/Resources/Sprites/person_05_wave.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"97e23d3b990322372042aa954b0365d7","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/97e23d3b990322372042aa954b0365d7?name=person_05_wave.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_06.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"6f3363ca18fb5b9b78ffe196da338f2d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6f3363ca18fb5b9b78ffe196da338f2d?name=person_06.png","size":377},{"path":"Assets/Resources/Sprites/person_06.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"6a2f443f1427dbd18259756c3f92579d","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6a2f443f1427dbd18259756c3f92579d?name=person_06.png.meta","size":3280},{"path":"Assets/Resources/Sprites/person_06_shake.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"1544570ac12b23ed5a1810276da3c9fd","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1544570ac12b23ed5a1810276da3c9fd?name=person_06_shake.anim","size":1865},{"path":"Assets/Resources/Sprites/person_06_shake.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"5817fae50af360f75f0ffa0dc4fc304a","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/5817fae50af360f75f0ffa0dc4fc304a?name=person_06_shake.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_06_walk.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"2321c92e44f8e0a4c9ab6a516187c717","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2321c92e44f8e0a4c9ab6a516187c717?name=person_06_walk.anim","size":1864},{"path":"Assets/Resources/Sprites/person_06_walk.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8d4ce5464e74873c5c655558adc62133","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8d4ce5464e74873c5c655558adc62133?name=person_06_walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_06_wave.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ca4b24d2d984aefb1c0132445e95cfaa","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ca4b24d2d984aefb1c0132445e95cfaa?name=person_06_wave.anim","size":1864},{"path":"Assets/Resources/Sprites/person_06_wave.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"58a30cec5d8540c03aade1ec509f5a7a","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/58a30cec5d8540c03aade1ec509f5a7a?name=person_06_wave.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_07.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"4ff3832efd1ec62bec70996061b18191","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4ff3832efd1ec62bec70996061b18191?name=person_07.png","size":537},{"path":"Assets/Resources/Sprites/person_07.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ae125473d54fcf33655988e8f5a971e1","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ae125473d54fcf33655988e8f5a971e1?name=person_07.png.meta","size":3280},{"path":"Assets/Resources/Sprites/person_07_shake.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8888d7d09125b64fc4b327806cfecdba","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8888d7d09125b64fc4b327806cfecdba?name=person_07_shake.anim","size":1865},{"path":"Assets/Resources/Sprites/person_07_shake.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"336b4ec189bcb9eecf4293ed1b326809","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/336b4ec189bcb9eecf4293ed1b326809?name=person_07_shake.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_07_walk.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"fa756ee16cb5a1b9eaad490866c501d6","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fa756ee16cb5a1b9eaad490866c501d6?name=person_07_walk.anim","size":1864},{"path":"Assets/Resources/Sprites/person_07_walk.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ba5919543630618428c5dd40a3065adf","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ba5919543630618428c5dd40a3065adf?name=person_07_walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_07_wave.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"2dd8b19983f0f14a37a599b65b8261dc","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2dd8b19983f0f14a37a599b65b8261dc?name=person_07_wave.anim","size":1864},{"path":"Assets/Resources/Sprites/person_07_wave.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"60dd9aeac425825d3a4ebd4f952b7e3c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/60dd9aeac425825d3a4ebd4f952b7e3c?name=person_07_wave.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_08.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"366fb8e0839f8170ebdf17a597754ae3","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/366fb8e0839f8170ebdf17a597754ae3?name=person_08.png","size":379},{"path":"Assets/Resources/Sprites/person_08.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"12fb5cb9e4b90424e67e7d6f851e4731","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/12fb5cb9e4b90424e67e7d6f851e4731?name=person_08.png.meta","size":3280},{"path":"Assets/Resources/Sprites/person_08_shake.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"5fbb6d1df0a4d2a4a6a3d1cf1a837e5d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/5fbb6d1df0a4d2a4a6a3d1cf1a837e5d?name=person_08_shake.anim","size":1865},{"path":"Assets/Resources/Sprites/person_08_shake.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ba19c345b3b3bc3f5bf4a7cc66542be6","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ba19c345b3b3bc3f5bf4a7cc66542be6?name=person_08_shake.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_08_walk.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"763eab24f91bb53c7c5d0341205c0021","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/763eab24f91bb53c7c5d0341205c0021?name=person_08_walk.anim","size":1864},{"path":"Assets/Resources/Sprites/person_08_walk.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"474db84f7f972983209806128365db90","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/474db84f7f972983209806128365db90?name=person_08_walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_08_wave.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"d59908b6a94ddd3bd503d4aff80414da","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d59908b6a94ddd3bd503d4aff80414da?name=person_08_wave.anim","size":1864},{"path":"Assets/Resources/Sprites/person_08_wave.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"e30eff8153f784ae86588b9874d70f26","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e30eff8153f784ae86588b9874d70f26?name=person_08_wave.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_09.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"b3a47319dc4c0778a1cf416d1e92ded7","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b3a47319dc4c0778a1cf416d1e92ded7?name=person_09.png","size":410},{"path":"Assets/Resources/Sprites/person_09.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c412c57d84f3af6be07c1a71f3835110","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c412c57d84f3af6be07c1a71f3835110?name=person_09.png.meta","size":3280},{"path":"Assets/Resources/Sprites/person_09_shake.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"60fb071ae7f1b3c21fce9a35389e552d","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/60fb071ae7f1b3c21fce9a35389e552d?name=person_09_shake.anim","size":1865},{"path":"Assets/Resources/Sprites/person_09_shake.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"52455908846cf5e9edc6c4af14b2f583","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/52455908846cf5e9edc6c4af14b2f583?name=person_09_shake.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_09_walk.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ff18c2a4ccc5decbbcc18c95fbdcf0a0","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ff18c2a4ccc5decbbcc18c95fbdcf0a0?name=person_09_walk.anim","size":1864},{"path":"Assets/Resources/Sprites/person_09_walk.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"17816989cbe2d1dc771aabfd35a46f58","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/17816989cbe2d1dc771aabfd35a46f58?name=person_09_walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_09_wave.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"acfce7c3d08ac8e1c96da31690cfdaae","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/acfce7c3d08ac8e1c96da31690cfdaae?name=person_09_wave.anim","size":1864},{"path":"Assets/Resources/Sprites/person_09_wave.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"9976beaca754da7ecdb79c888368d94e","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9976beaca754da7ecdb79c888368d94e?name=person_09_wave.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_10.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"2fb402f44b366b25d57935b72cfa1b31","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2fb402f44b366b25d57935b72cfa1b31?name=person_10.png","size":386},{"path":"Assets/Resources/Sprites/person_10.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"32b39a6869674374144d577289388d03","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/32b39a6869674374144d577289388d03?name=person_10.png.meta","size":3280},{"path":"Assets/Resources/Sprites/person_10_shake.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"23361766ef78e79f1bdf58f791daafac","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/23361766ef78e79f1bdf58f791daafac?name=person_10_shake.anim","size":1865},{"path":"Assets/Resources/Sprites/person_10_shake.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"43ee0b30799b2d6f80ac58410be779d1","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/43ee0b30799b2d6f80ac58410be779d1?name=person_10_shake.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_10_walk.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"d05c5292222993e5529ba754b1fdee17","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d05c5292222993e5529ba754b1fdee17?name=person_10_walk.anim","size":1864},{"path":"Assets/Resources/Sprites/person_10_walk.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"16d6e3aaae8b8d532f70e8957899fd12","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/16d6e3aaae8b8d532f70e8957899fd12?name=person_10_walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_10_wave.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"dbc539dce7781a5d575e810cb4518390","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/dbc539dce7781a5d575e810cb4518390?name=person_10_wave.anim","size":1864},{"path":"Assets/Resources/Sprites/person_10_wave.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a91846ef8d8d285b73b8a08c6f7eb9c9","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a91846ef8d8d285b73b8a08c6f7eb9c9?name=person_10_wave.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_11.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"fb5b91c8e2565f0c0e98614b6f3573e7","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fb5b91c8e2565f0c0e98614b6f3573e7?name=person_11.png","size":551},{"path":"Assets/Resources/Sprites/person_11.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"1771272068a14e15511d357318951a9d","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1771272068a14e15511d357318951a9d?name=person_11.png.meta","size":3280},{"path":"Assets/Resources/Sprites/person_11_shake.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"266714bdff749c9dc990ed6098cba2d0","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/266714bdff749c9dc990ed6098cba2d0?name=person_11_shake.anim","size":1865},{"path":"Assets/Resources/Sprites/person_11_shake.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"e31d3a15211088b3b289b0f09250fd93","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e31d3a15211088b3b289b0f09250fd93?name=person_11_shake.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_11_walk.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c52d8d6a4bcebb41e70c838cc684e2fb","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c52d8d6a4bcebb41e70c838cc684e2fb?name=person_11_walk.anim","size":1864},{"path":"Assets/Resources/Sprites/person_11_walk.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"52a1d412be9c17f80eee92c218b8f1c8","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/52a1d412be9c17f80eee92c218b8f1c8?name=person_11_walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_11_wave.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ecca0f4613ce2ed3eb5da918d6b5ac9b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ecca0f4613ce2ed3eb5da918d6b5ac9b?name=person_11_wave.anim","size":1864},{"path":"Assets/Resources/Sprites/person_11_wave.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"094a3612ed1f8c215bda7a5ed2af2943","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/094a3612ed1f8c215bda7a5ed2af2943?name=person_11_wave.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_12.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ececea8177c751996317bbff8ed4172b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ececea8177c751996317bbff8ed4172b?name=person_12.png","size":387},{"path":"Assets/Resources/Sprites/person_12.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a1e52d46c37c5d604e92d9709daf21d6","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a1e52d46c37c5d604e92d9709daf21d6?name=person_12.png.meta","size":3280},{"path":"Assets/Resources/Sprites/person_12_shake.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"45d687decf2aee24270177f4742a6edd","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/45d687decf2aee24270177f4742a6edd?name=person_12_shake.anim","size":1865},{"path":"Assets/Resources/Sprites/person_12_shake.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"4e4eec794576c2383a46dd7903670504","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4e4eec794576c2383a46dd7903670504?name=person_12_shake.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_12_walk.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"1a5d35163e624877674453598a82d740","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1a5d35163e624877674453598a82d740?name=person_12_walk.anim","size":1864},{"path":"Assets/Resources/Sprites/person_12_walk.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"66d6444c19ca44834b4b0139b91fc930","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/66d6444c19ca44834b4b0139b91fc930?name=person_12_walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_12_wave.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"57c9298075dde5fef0d5f87f2546df17","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/57c9298075dde5fef0d5f87f2546df17?name=person_12_wave.anim","size":1864},{"path":"Assets/Resources/Sprites/person_12_wave.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"dd92e65fc1d11dd6b730ce8713bf8bc7","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/dd92e65fc1d11dd6b730ce8713bf8bc7?name=person_12_wave.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_13.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"561bf59ecf9c8e03269fa92b4a38f2ca","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/561bf59ecf9c8e03269fa92b4a38f2ca?name=person_13.png","size":513},{"path":"Assets/Resources/Sprites/person_13.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a24aeefef7e2bdb94742aa0cb0c9e6d5","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a24aeefef7e2bdb94742aa0cb0c9e6d5?name=person_13.png.meta","size":3280},{"path":"Assets/Resources/Sprites/person_13_shake.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"f4686b388d4adaefe3a5eb0c63483d5b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f4686b388d4adaefe3a5eb0c63483d5b?name=person_13_shake.anim","size":1865},{"path":"Assets/Resources/Sprites/person_13_shake.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"fa165634a40892a78f743432e2358820","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/fa165634a40892a78f743432e2358820?name=person_13_shake.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_13_walk.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"bfeb212c3c0c3f49286daeaf6bc0a18b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/bfeb212c3c0c3f49286daeaf6bc0a18b?name=person_13_walk.anim","size":1864},{"path":"Assets/Resources/Sprites/person_13_walk.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"90efc4f696a11940942c887649151fdf","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/90efc4f696a11940942c887649151fdf?name=person_13_walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_13_wave.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8161a08e9477245a687a1c94304812e4","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8161a08e9477245a687a1c94304812e4?name=person_13_wave.anim","size":1864},{"path":"Assets/Resources/Sprites/person_13_wave.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"e60fb06247882a7c8ffec4c62358c963","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e60fb06247882a7c8ffec4c62358c963?name=person_13_wave.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_14.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a90d61af4e5047da14a92d445d2bcad9","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a90d61af4e5047da14a92d445d2bcad9?name=person_14.png","size":385},{"path":"Assets/Resources/Sprites/person_14.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"9630a4c1e3dd96ac6cbb133fb2fed474","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9630a4c1e3dd96ac6cbb133fb2fed474?name=person_14.png.meta","size":3478},{"path":"Assets/Resources/Sprites/person_14_shake.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"420a86803909545dbdb658c39ca1bfe3","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/420a86803909545dbdb658c39ca1bfe3?name=person_14_shake.anim","size":1865},{"path":"Assets/Resources/Sprites/person_14_shake.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"876513a0f1d0d977fa0827baaaf9f072","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/876513a0f1d0d977fa0827baaaf9f072?name=person_14_shake.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_14_shake.controller","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"2c7216c1c525b4ef683a027b9aad22fa","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2c7216c1c525b4ef683a027b9aad22fa?name=person_14_shake.controller","size":270},{"path":"Assets/Resources/Sprites/person_14_shake.controller.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"1a1540abe67355f2bc13ca60fe73dc13","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1a1540abe67355f2bc13ca60fe73dc13?name=person_14_shake.controller.meta","size":180},{"path":"Assets/Resources/Sprites/person_14_stand.controller","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"cb6c54edb829611e752d8fcfdead7e14","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/cb6c54edb829611e752d8fcfdead7e14?name=person_14_stand.controller","size":270},{"path":"Assets/Resources/Sprites/person_14_stand.controller.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"4f77a17cab1efbe1a823b932ca44d8e7","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/4f77a17cab1efbe1a823b932ca44d8e7?name=person_14_stand.controller.meta","size":180},{"path":"Assets/Resources/Sprites/person_14_walk.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"87e711383438aa3c3ac040150f22f163","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/87e711383438aa3c3ac040150f22f163?name=person_14_walk.anim","size":1864},{"path":"Assets/Resources/Sprites/person_14_walk.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"780f5fd6b69ee4ff10d356cba3c69d1f","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/780f5fd6b69ee4ff10d356cba3c69d1f?name=person_14_walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_14_walk1.controller","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"501a0a4bd97759cd89cc7fa5d2973aab","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/501a0a4bd97759cd89cc7fa5d2973aab?name=person_14_walk1.controller","size":270},{"path":"Assets/Resources/Sprites/person_14_walk1.controller.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"5d88f6df23b23a34253f4992fbe3defd","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/5d88f6df23b23a34253f4992fbe3defd?name=person_14_walk1.controller.meta","size":180},{"path":"Assets/Resources/Sprites/person_14_wave.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"9b8697a9183f0bf99744daea9763e671","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9b8697a9183f0bf99744daea9763e671?name=person_14_wave.anim","size":1864},{"path":"Assets/Resources/Sprites/person_14_wave.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"1e05a4b69e7bd3a2f132930aefcc40fb","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1e05a4b69e7bd3a2f132930aefcc40fb?name=person_14_wave.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_15.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"94fdd3d76215bbca5e86e24c9e16c8db","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/94fdd3d76215bbca5e86e24c9e16c8db?name=person_15.png","size":558},{"path":"Assets/Resources/Sprites/person_15.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"d9a562bb8cd6a52053c99bce1e499e42","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d9a562bb8cd6a52053c99bce1e499e42?name=person_15.png.meta","size":3478},{"path":"Assets/Resources/Sprites/person_15_shake.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"17ba48535827e7184aa659b2df9e6a80","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/17ba48535827e7184aa659b2df9e6a80?name=person_15_shake.anim","size":1865},{"path":"Assets/Resources/Sprites/person_15_shake.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"7f3ae054360e3fe325d8e2e70672f3f5","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7f3ae054360e3fe325d8e2e70672f3f5?name=person_15_shake.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_15_shake.controller","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c8cb80f93288b7b134d65f2c635245fd","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c8cb80f93288b7b134d65f2c635245fd?name=person_15_shake.controller","size":270},{"path":"Assets/Resources/Sprites/person_15_shake.controller.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"2658d61d19d393bdc271a54e1897aa66","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/2658d61d19d393bdc271a54e1897aa66?name=person_15_shake.controller.meta","size":180},{"path":"Assets/Resources/Sprites/person_15_stand.controller","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"35db37c7238137e57b12f8acb0c08a1b","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/35db37c7238137e57b12f8acb0c08a1b?name=person_15_stand.controller","size":270},{"path":"Assets/Resources/Sprites/person_15_stand.controller.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"55b4973413d212978fd87c5b1c480a9b","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/55b4973413d212978fd87c5b1c480a9b?name=person_15_stand.controller.meta","size":180},{"path":"Assets/Resources/Sprites/person_15_walk.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"d66c6aff1cbd1e643a0ecc6dc5ea24d8","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d66c6aff1cbd1e643a0ecc6dc5ea24d8?name=person_15_walk.anim","size":1864},{"path":"Assets/Resources/Sprites/person_15_walk.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"b7bdc35c0cbcfb1899ff780d0d7f8f75","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b7bdc35c0cbcfb1899ff780d0d7f8f75?name=person_15_walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_15_walk1.controller","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"23a9f4d2debc84b6995f3f3cc668fd8f","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/23a9f4d2debc84b6995f3f3cc668fd8f?name=person_15_walk1.controller","size":270},{"path":"Assets/Resources/Sprites/person_15_walk1.controller.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"345c5dfc1e8527df52a8d186160944f7","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/345c5dfc1e8527df52a8d186160944f7?name=person_15_walk1.controller.meta","size":180},{"path":"Assets/Resources/Sprites/person_15_wave.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"25db4efcc9a710fc4afba232be8b169c","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/25db4efcc9a710fc4afba232be8b169c?name=person_15_wave.anim","size":1864},{"path":"Assets/Resources/Sprites/person_15_wave.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"47df6cc252c7f6fce9841ef7a9d79e70","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/47df6cc252c7f6fce9841ef7a9d79e70?name=person_15_wave.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_16.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"de2492e12928400fef30e7cff457472a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/de2492e12928400fef30e7cff457472a?name=person_16.png","size":420},{"path":"Assets/Resources/Sprites/person_16.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"683d726904ae6edca201bc97a1fe9e56","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/683d726904ae6edca201bc97a1fe9e56?name=person_16.png.meta","size":3478},{"path":"Assets/Resources/Sprites/person_16_shake.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"eeb2d371f2e1763ba330b0482848cf0a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/eeb2d371f2e1763ba330b0482848cf0a?name=person_16_shake.anim","size":1865},{"path":"Assets/Resources/Sprites/person_16_shake.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"e0fe18e0c52544664d3cde16ed35538c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e0fe18e0c52544664d3cde16ed35538c?name=person_16_shake.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_16_walk.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"0ceccd50da31095932ebaefc74228e1a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0ceccd50da31095932ebaefc74228e1a?name=person_16_walk.anim","size":1864},{"path":"Assets/Resources/Sprites/person_16_walk.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"1a41769a310dc5dd3b13e291c98c66b7","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/1a41769a310dc5dd3b13e291c98c66b7?name=person_16_walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_16_wave.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"f43eaae2198ac5863e8dfb2d9f4425b5","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f43eaae2198ac5863e8dfb2d9f4425b5?name=person_16_wave.anim","size":1864},{"path":"Assets/Resources/Sprites/person_16_wave.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"acc699db06bb74a5315af534077631ec","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/acc699db06bb74a5315af534077631ec?name=person_16_wave.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_17.png","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"456d2a7d26d562e909c09035f3529268","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/456d2a7d26d562e909c09035f3529268?name=person_17.png","size":377},{"path":"Assets/Resources/Sprites/person_17.png.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"41d0382a7e723fcc755d72a97ccbe604","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/41d0382a7e723fcc755d72a97ccbe604?name=person_17.png.meta","size":3478},{"path":"Assets/Resources/Sprites/person_17_shake.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"6a5614cc8ef0d94d7fdf4c5d4747d3c2","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6a5614cc8ef0d94d7fdf4c5d4747d3c2?name=person_17_shake.anim","size":1865},{"path":"Assets/Resources/Sprites/person_17_shake.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"66bbab1bda2ccc2f17575b6878eee17b","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/66bbab1bda2ccc2f17575b6878eee17b?name=person_17_shake.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_17_walk.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"eb96d1eb99a7a77adc1ca444c8375209","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/eb96d1eb99a7a77adc1ca444c8375209?name=person_17_walk.anim","size":1864},{"path":"Assets/Resources/Sprites/person_17_walk.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"b66b9d8b13c29a1c5fef619935a85645","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b66b9d8b13c29a1c5fef619935a85645?name=person_17_walk.anim.meta","size":180},{"path":"Assets/Resources/Sprites/person_17_wave.anim","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"d0dd5c7b14fcb19d4595a261f5b2c98f","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d0dd5c7b14fcb19d4595a261f5b2c98f?name=person_17_wave.anim","size":1864},{"path":"Assets/Resources/Sprites/person_17_wave.anim.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"eb1a021e0f3487db1f101b6789be7f6a","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/eb1a021e0f3487db1f101b6789be7f6a?name=person_17_wave.anim.meta","size":180},{"path":"Assets/Scenes.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"b8eabfdb8aeb471090a1f3e5e3bf9ad9","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b8eabfdb8aeb471090a1f3e5e3bf9ad9?name=Scenes.meta","size":201},{"path":"Assets/Scenes/AnimTest.unity","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"7486517e73004fdd0c62e0aa70274145","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7486517e73004fdd0c62e0aa70274145?name=AnimTest.unity","size":12669},{"path":"Assets/Scenes/AnimTest.unity.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"07998c13f3c08d773d29726e5758748a","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/07998c13f3c08d773d29726e5758748a?name=AnimTest.unity.meta","size":175},{"path":"Assets/Scenes/GameOver.unity","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"00127e87a773b438da7b0fb5c88568fd","state":2,"downloadPath":"","size":10248},{"path":"Assets/Scenes/GameOver.unity.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"7b633661a0fe2d5f7b4c37992d956ba4","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7b633661a0fe2d5f7b4c37992d956ba4?name=GameOver.unity.meta","size":175},{"path":"Assets/Scenes/Menu.unity","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"7c680c43695129695868296d27f5908d","state":2,"downloadPath":"","size":179770},{"path":"Assets/Scenes/Menu.unity.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"b6c1911dce4a3391651f9983c04a8b6c","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b6c1911dce4a3391651f9983c04a8b6c?name=Menu.unity.meta","size":175},{"path":"Assets/Scenes/Scene0.unity","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"6ff967b3d856dd1d18576aaa35a9dae0","state":2,"downloadPath":"","size":66372},{"path":"Assets/Scenes/Scene0.unity.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"d4d7d45a3286ec169bbca62bb39b078f","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/d4d7d45a3286ec169bbca62bb39b078f?name=Scene0.unity.meta","size":183},{"path":"Assets/Scripts.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ba181f585ecc575d003033757387e126","state":2130432,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ba181f585ecc575d003033757387e126?name=Scripts.meta","size":201},{"path":"Assets/Scripts/Achieve.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"f30aa351d6db28007ca2afd96d2f96e1","state":2,"downloadPath":"","size":1053},{"path":"Assets/Scripts/Achieve.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"f11c64ad821d23fd5b53a6fd458e788b","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/f11c64ad821d23fd5b53a6fd458e788b?name=Achieve.cs.meta","size":263},{"path":"Assets/Scripts/AndroidOnly.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"73d4ecf4692db9a5bf0a42eee615b31a","state":2,"downloadPath":"","size":235},{"path":"Assets/Scripts/AndroidOnly.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"bd84ec9cc7a939f6f1c92e01a526057e","state":32770,"downloadPath":"","size":275},{"path":"Assets/Scripts/Customer.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"6bd08d4aa49b349cb065eb76e8287da3","state":2,"downloadPath":"","size":3290},{"path":"Assets/Scripts/Customer.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"7148073b74c04a7977ab3f2cac60fec1","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7148073b74c04a7977ab3f2cac60fec1?name=Customer.cs.meta","size":275},{"path":"Assets/Scripts/GameController.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8215821aa215078395e02c3e34167d89","state":2,"downloadPath":"","size":2223},{"path":"Assets/Scripts/GameController.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"80f693375b10306d36ffb186b5f582d1","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/80f693375b10306d36ffb186b5f582d1?name=GameController.cs.meta","size":275},{"path":"Assets/Scripts/GameOver.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"61882ce81e3d48126955707422d6623d","state":2,"downloadPath":"","size":1772},{"path":"Assets/Scripts/GameOver.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"7767f83c52e732ff54164ca7f081d01d","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/7767f83c52e732ff54164ca7f081d01d?name=GameOver.cs.meta","size":263},{"path":"Assets/Scripts/GooglePlayLogin.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"527de4f199cdf04fe533f9cb7271cc5a","state":2,"downloadPath":"","size":735},{"path":"Assets/Scripts/GooglePlayLogin.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8830cf586c24a24531d63c6f5a77c650","state":32770,"downloadPath":"","size":263},{"path":"Assets/Scripts/GooglePlayManager.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c36c2ca6692f226373c5b1d9e87c3ace","state":2,"downloadPath":"","size":3369},{"path":"Assets/Scripts/GooglePlayManager.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8f12e6418eed8a2479dfcda320604d4d","state":32770,"downloadPath":"","size":0},{"path":"Assets/Scripts/InputManager.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"84060ccea03891b6074dfd04ea3e91f5","state":2,"downloadPath":"","size":3522},{"path":"Assets/Scripts/InputManager.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8de520d4fed48ba7c058d9981dd5e4bb","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8de520d4fed48ba7c058d9981dd5e4bb?name=InputManager.cs.meta","size":263},{"path":"Assets/Scripts/NoAndroid.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ae7f106668206467c4674b15eb92757a","state":2,"downloadPath":"","size":234},{"path":"Assets/Scripts/NoAndroid.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"5e72eb2114086c41d5145acc39941aa0","state":32770,"downloadPath":"","size":263},{"path":"Assets/Scripts/Player_Actions.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c00cf090389472ba5bbe78a41f0c5c21","state":2,"downloadPath":"","size":7626},{"path":"Assets/Scripts/Player_Actions.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"6a2a026b5d04152d6ff6803a4e17bb40","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/6a2a026b5d04152d6ff6803a4e17bb40?name=Player_Actions.cs.meta","size":263},{"path":"Assets/Scripts/SpawnTimer.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"e11668d276e20eb4d42a77b34e61b56e","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/e11668d276e20eb4d42a77b34e61b56e?name=SpawnTimer.cs","size":1539},{"path":"Assets/Scripts/SpawnTimer.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"3b85cad829389144c50f3188c5825826","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3b85cad829389144c50f3188c5825826?name=SpawnTimer.cs.meta","size":275},{"path":"Assets/Scripts/Spawner.cs","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ab0af1e037b15fdda6aabb544cfceee7","state":2,"downloadPath":"","size":3039},{"path":"Assets/Scripts/Spawner.cs.meta","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"c77976bd1e8f5998ef0bb06ffb89219b","state":33280,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/c77976bd1e8f5998ef0bb06ffb89219b?name=Spawner.cs.meta","size":376},{"path":"ProjectSettings/AudioManager.asset","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"9e51fac3aaa92a6c91f2e831ead1e873","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/9e51fac3aaa92a6c91f2e831ead1e873?name=AudioManager.asset","size":328},{"path":"ProjectSettings/ClusterInputManager.asset","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"b1d0f114f4024863e4f8524801ee50dc","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b1d0f114f4024863e4f8524801ee50dc?name=ClusterInputManager.asset","size":114},{"path":"ProjectSettings/DynamicsManager.asset","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"3da9655119fbb9b91c1f0000db8db1f2","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/3da9655119fbb9b91c1f0000db8db1f2?name=DynamicsManager.asset","size":715},{"path":"ProjectSettings/EditorBuildSettings.asset","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"77a5655fa2685a2303a98c0b958bb204","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/77a5655fa2685a2303a98c0b958bb204?name=EditorBuildSettings.asset","size":291},{"path":"ProjectSettings/EditorSettings.asset","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"b180acd5439ad835dac189ebd954c457","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b180acd5439ad835dac189ebd954c457?name=EditorSettings.asset","size":405},{"path":"ProjectSettings/GraphicsSettings.asset","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"e8d946d4b70b92a6fa4366e138915ecc","state":2,"downloadPath":"","size":2221},{"path":"ProjectSettings/InputManager.asset","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"ca91550943d66f92a950242da0b38982","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/ca91550943d66f92a950242da0b38982?name=InputManager.asset","size":5793},{"path":"ProjectSettings/NavMeshAreas.asset","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"28db53f957dec18c9ba0383f31c53f6c","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/28db53f957dec18c9ba0383f31c53f6c?name=NavMeshAreas.asset","size":894},{"path":"ProjectSettings/NetworkManager.asset","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a41c11593b9425a3e844680d2da92529","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a41c11593b9425a3e844680d2da92529?name=NetworkManager.asset","size":151},{"path":"ProjectSettings/Physics2DSettings.asset","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"b5b27c8b9d74f2d16101e8cfce35f149","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/b5b27c8b9d74f2d16101e8cfce35f149?name=Physics2DSettings.asset","size":1330},{"path":"ProjectSettings/ProjectSettings.asset","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"e700e68a123ba71c89a2296c83b96943","state":2,"downloadPath":"","size":13280},{"path":"ProjectSettings/ProjectVersion.txt","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"8f8cbb10301976e45e44f8dc82134de7","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/8f8cbb10301976e45e44f8dc82134de7?name=ProjectVersion.txt","size":25},{"path":"ProjectSettings/QualitySettings.asset","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"0bae7b17a96bf7861fa9d5a18b0abe0f","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/0bae7b17a96bf7861fa9d5a18b0abe0f?name=QualitySettings.asset","size":4490},{"path":"ProjectSettings/TagManager.asset","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"715a924f089e3f92b50b91e47b6eb371","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/715a924f089e3f92b50b91e47b6eb371?name=TagManager.asset","size":522},{"path":"ProjectSettings/TimeManager.asset","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"a4f23c9e1fc6dfd9fc5e206461b5fd7a","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/a4f23c9e1fc6dfd9fc5e206461b5fd7a?name=TimeManager.asset","size":202},{"path":"ProjectSettings/UnityConnectSettings.asset","revisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","hash":"524bf55095f408d404a9b4f8034819e5","state":512,"downloadPath":"/api/projects/d4f7d3b9-9b56-4132-a49d-9fe9519154de/cache/source/524bf55095f408d404a9b4f8034819e5?name=UnityConnectSettings.asset","size":673}],"cache":[{"path":"Assets/GPGSIds.cs","hash":"ef4f3ae5d5ab62eb43ef178fea967bab","datetime":{"high":0,"low":1485282932}},{"path":"Assets/GPGSIds.cs.meta","hash":"7842e91674a3cba86ccda4a5d66cdc38","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template.meta","hash":"4e3ff4d8277fea6c0b48960b38760da6","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Animation.meta","hash":"caa07e7206e6d2ae2c8f14d77647a1ef","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Animation/FadeImageController.controller","hash":"08cc0cefa782fad9044bf8753bc140bf","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Animation/FadeImageController.controller.meta","hash":"86c82e40cd0d90782cdd6a087e42e90f","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Animation/FadeMenuAlpha.anim","hash":"0d5ed7d4161b30a47481b3fbbaa1efac","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Animation/FadeMenuAlpha.anim.meta","hash":"99765e4c602b6686a32016d258c93cd9","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Animation/FadeToColor.anim","hash":"587ab13fc35c96c11d43896f4a9d877a","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Animation/FadeToColor.anim.meta","hash":"5f53ab0f0c170f9e6906e785d0791dd5","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Animation/MenuPanel.controller","hash":"ffc785a2db2ad92b704865ab90b8a5fa","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Animation/MenuPanel.controller.meta","hash":"2d49702918141d6870b7465ecdf138f9","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Audio.meta","hash":"990b31dfdbafb60c8b0ffba2f33aa864","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Audio/MasterMixer.mixer","hash":"5c99dfd8abe298ec16ae1bec9c902b4a","datetime":{"high":0,"low":1485251050}},{"path":"Assets/Game Jam Template/Audio/MasterMixer.mixer.meta","hash":"6c61182e2da123fe456b0379e17a2f6a","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Audio/Music.meta","hash":"492830bf36443608ff1064ead882b009","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Audio/Music/intro_music_gjt.aif","hash":"2039c63e70d12b99555e5912c19d9b3f","datetime":{"high":0,"low":1485130073}},{"path":"Assets/Game Jam Template/Audio/Music/intro_music_gjt.aif.meta","hash":"54e7685393eb18a3e907bf101d29372a","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Fonts.meta","hash":"2b5a55f6cb9ebbaabd6703bed0c64231","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Fonts/OpenSans.meta","hash":"a3287527f5ae2abbc8947f25b5296342","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Fonts/OpenSans/License!.txt","hash":"d273d63619c9aeaf15cdaf76422c4f87","datetime":{"high":0,"low":1485130073}},{"path":"Assets/Game Jam Template/Fonts/OpenSans/License!.txt.meta","hash":"f67302b277f1c99a10dd0c2182bf70a3","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSans-ExtraBold.ttf","hash":"8bac22ed4fd7c8a30536be18e2984f84","datetime":{"high":0,"low":1485130073}},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSans-ExtraBold.ttf.meta","hash":"7253aba019b9e377d7a05ba028381d82","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSansBold.ttf","hash":"50145685042b4df07a1fd19957275b81","datetime":{"high":0,"low":1485130073}},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSansBold.ttf.meta","hash":"02c958ba12a0f8db824f9a372817df79","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSansLight.ttf","hash":"1bf71be111189e76987a4bb9b3115cb7","datetime":{"high":0,"low":1485130073}},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSansLight.ttf.meta","hash":"6a1bd646e33a4bd5a781b8f7e6e449f2","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSansRegular.ttf","hash":"629a55a7e793da068dc580d184cc0e31","datetime":{"high":0,"low":1485130073}},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSansRegular.ttf.meta","hash":"24fab0afdcfba2a952920914be8d7e71","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSansSemibold.ttf","hash":"33f225b8f5f7d6b34a0926f58f96c1e9","datetime":{"high":0,"low":1485130073}},{"path":"Assets/Game Jam Template/Fonts/OpenSans/OpenSansSemibold.ttf.meta","hash":"388c87f9b5f4f7a5a49d5815d8485abb","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/GameJamTemplateReadMe.txt","hash":"7f7ded6a00df7e13985729844dcb0e72","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/GameJamTemplateReadMe.txt.meta","hash":"223c6cb4718e185e62612a83f8742465","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Prefabs.meta","hash":"e1138c1e82e7bbf7571155717711065c","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Prefabs/EventSystem.prefab","hash":"0479948bb09e64c7b7d032ef9cc801b9","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Prefabs/EventSystem.prefab.meta","hash":"87238955b8edd1fe7309f414e4eeb61d","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Prefabs/GameOverUI.prefab","hash":"d3cfb0990da49915c18e97ece8d569d8","datetime":{"high":0,"low":1485301787}},{"path":"Assets/Game Jam Template/Prefabs/GameOverUI.prefab.meta","hash":"1f4fa073a91901a476441412c5f69288","datetime":{"high":0,"low":1485301660}},{"path":"Assets/Game Jam Template/Prefabs/MenuUI.prefab","hash":"c7a5fc11084081992c4c2aa4a88245cd","fromPath":"Assets/Game Jam Template/Prefabs/UI.prefab","datetime":{"high":0,"low":1485305088}},{"path":"Assets/Game Jam Template/Prefabs/MenuUI.prefab.meta","hash":"6e57b6e74dc3978e8db4ad2857a22427","fromPath":"Assets/Game Jam Template/Prefabs/UI.prefab.meta","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Scripts.meta","hash":"b5d61a4f267c773c571640cf3668ba7f","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Scripts/DontDestroy.cs","hash":"ef1d6ae02c7464b3437f6ecc5b9b6f70","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Scripts/DontDestroy.cs.meta","hash":"7e8cb61e496ad9bb5f6d80b26a89c090","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Scripts/EventSystemChecker.cs","hash":"fb113520cc43783c445c94c1be264bfe","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Scripts/EventSystemChecker.cs.meta","hash":"bfd953762569d55833e297c410cce114","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Scripts/Pause.cs","hash":"d68ced2b2c76bd62233b80cc1132e350","datetime":{"high":0,"low":1485293205}},{"path":"Assets/Game Jam Template/Scripts/Pause.cs.meta","hash":"7aae54df5c7024c59ae725042f999de4","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Scripts/PlayMusic.cs","hash":"964f64cefde1cdd6528ef655f7a3720b","datetime":{"high":0,"low":1485286633}},{"path":"Assets/Game Jam Template/Scripts/PlayMusic.cs.meta","hash":"82efc421ed1afd7c220dd03163881282","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Scripts/QuitApplication.cs","hash":"a843a50c47e21cbf5c7feaaeedbd9a9b","datetime":{"high":0,"low":1485300380}},{"path":"Assets/Game Jam Template/Scripts/QuitApplication.cs.meta","hash":"6dbc1adf6fbe48194669d4745cc443ae","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Scripts/SetAudioLevels.cs","hash":"705ec70a88d8898cf27c6791f9eafa85","datetime":{"high":0,"low":1485302690}},{"path":"Assets/Game Jam Template/Scripts/SetAudioLevels.cs.meta","hash":"b9d5f94edd3acdaed1ce0f61cef20098","datetime":{"high":0,"low":1485133430}},{"path":"Assets/Game Jam Template/Scripts/ShowPanels.cs","hash":"ceec69174d3195aeea9f4c89bc4e42b0","datetime":{"high":0,"low":1485306609}},{"path":"Assets/Game Jam Template/Scripts/ShowPanels.cs.meta","hash":"c313170022bd32ef6cf04a05885a119d","datetime":{"high":0,"low":1485133431}},{"path":"Assets/Game Jam Template/Scripts/StartOptions.cs","hash":"1083703cd0d1152b978b0e83120017ba","datetime":{"high":0,"low":1485257599}},{"path":"Assets/Game Jam Template/Scripts/StartOptions.cs.meta","hash":"7765ff0ca27c687b68ab462885b94ccf","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames.meta","hash":"33fe2584af33ac1bfcb3b3c29741475e","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi.meta","hash":"672a3a1c014d8c21f9cda845cbfe3940","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Achievement.cs","hash":"4bf00b7a492645ce8b032b5282a684da","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Achievement.cs.meta","hash":"c13658d8b62c0eba98e666bcbd5ca37d","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/CommonStatusCodes.cs","hash":"033940dccdea1d693a20ca21aef7e866","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/CommonStatusCodes.cs.meta","hash":"edd873a4fd2fe97b22571f3b21d35483","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/CommonTypes.cs","hash":"53ee9786a5cd7119e09b46146bf2256d","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/CommonTypes.cs.meta","hash":"d7acb57db8e4c393427d7c51dc26a666","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/DummyClient.cs","hash":"a45eb874ba28670c81cfaef431c03b7f","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/DummyClient.cs.meta","hash":"0676eff20b0c84f3391760f4ecba7c4f","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Events.meta","hash":"8ac6dae07cac9887252a638dade02845","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Events/IEvent.cs","hash":"489e6873b523e04aff8317ebb477ce66","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Events/IEvent.cs.meta","hash":"8f08897dee0e6a96f51210c16d4468d0","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Events/IEventsClient.cs","hash":"81d5dce844541be3156fba020eb92ad6","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Events/IEventsClient.cs.meta","hash":"6eed6d0f60bbe61b3fe2e354d7d6f48a","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/IPlayGamesClient.cs","hash":"fa593bc72c23ba42391a6245d88cc22d","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/IPlayGamesClient.cs.meta","hash":"9aef353cf097c41b7b4849bc1aa76c58","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/LeaderboardScoreData.cs","hash":"f7704076dd8f047b22688587ace74256","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/LeaderboardScoreData.cs.meta","hash":"fb8e892f16eb5093db0142ce2ebb5595","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer.meta","hash":"a6bd8e471ea1725b71fc4372b2a2b539","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/IRealTimeMultiplayerClient.cs","hash":"30341cb1405fcc13e1f22324eafbc1e3","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/IRealTimeMultiplayerClient.cs.meta","hash":"29e3cd1e22be9a9e31ec4736fa713162","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/ITurnBasedMultiplayerClient.cs","hash":"0c9d3c0a29cac0123252a5a965e0dc21","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/ITurnBasedMultiplayerClient.cs.meta","hash":"56b2cc270e9d248521854aefc5b0c590","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/Invitation.cs","hash":"df3fdc195266ed827afca6102ad43cca","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/Invitation.cs.meta","hash":"022c4817b1af556535b1390ce21da0f1","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/MatchOutcome.cs","hash":"97b4ed2a009408ef2bb4d353631e1330","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/MatchOutcome.cs.meta","hash":"4b73aef2f7454b97445cdae5e65e8231","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/Participant.cs","hash":"85395581513ddaad67d9032b0bac5ead","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/Participant.cs.meta","hash":"bbc4f50b3540a9d9a2578481f1564ad8","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/Player.cs","hash":"a83e15a01c6a4e6a94a614211702aaac","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/Player.cs.meta","hash":"7c5fb31049ed7532ef72d02bb88c3ac6","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/RealTimeMultiplayerListener.cs","hash":"a296855a50188e822d4f2ead3b3e9a34","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/RealTimeMultiplayerListener.cs.meta","hash":"59978fef1910ce91cc9f537ec73c217b","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/TurnBasedMatch.cs","hash":"2acc75a7f7d672e1520faeeb65741baa","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Multiplayer/TurnBasedMatch.cs.meta","hash":"866baead77efa5879440471324f82e41","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Nearby.meta","hash":"91916c567f415312c74d9cb6caa055bd","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/AdvertisingResult.cs","hash":"a07cbf7ac1d4c7edac664c0109c54fa3","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/AdvertisingResult.cs.meta","hash":"f09cd964b0809e886eb7255f998d1ade","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/ConnectionRequest.cs","hash":"1130dcec72b58f100fb850ef4365dd5f","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/ConnectionRequest.cs.meta","hash":"8ddc47992a3f806e09ccda086769f920","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/ConnectionResponse.cs","hash":"1289a0199e278dd4db5ab4e27e4fbc36","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/ConnectionResponse.cs.meta","hash":"c2bd880f6209c7aa84bcfa5368057d0d","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/DummyNearbyConnectionClient.cs","hash":"dd3a3dd3b822a2f85ca83f5776795939","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/DummyNearbyConnectionClient.cs.meta","hash":"4ed55c33da2ccb783fe4a22684a35984","datetime":{"high":0,"low":1485133431}},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/EndpointDetails.cs","hash":"cf37519f6b11386c3439db4eebf78be7","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/EndpointDetails.cs.meta","hash":"2eefc8666ce96ffef79489236ece3428","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/INearbyConnectionClient.cs","hash":"7f507d638ce0d305271ae29cdf250266","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/INearbyConnectionClient.cs.meta","hash":"db8b313f36044aabe5090268d5e47247","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/NearbyConnectionConfiguration.cs","hash":"df34430a5f727e2ea11fdd299f76e157","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/Nearby/NearbyConnectionConfiguration.cs.meta","hash":"c015fba698fa3cc09b0dd24c63e3bdf2","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/PlayGamesClientConfiguration.cs","hash":"bfa3f61731db4fc22da17f6c03dd0f9d","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/PlayGamesClientConfiguration.cs.meta","hash":"87b1426cc5196b43cc4ae3d46ad926a1","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/PlayerStats.cs","hash":"7a0c75192b5f6a5f21686cda88315074","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/PlayerStats.cs.meta","hash":"696c1f3d5ca7f06f8b794bc7db6a7576","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/Quests.meta","hash":"ffb390da94e339c81ac8c7d9f4b59cf7","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/Quests/IQuest.cs","hash":"046eeb69cbefb8cc4b78c10344c3d632","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/Quests/IQuest.cs.meta","hash":"81c3eec704ac36af8d273902af9e4cf7","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/Quests/IQuestMilestone.cs","hash":"c3262b3ec1d6cef0a548576a4f0b749f","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/Quests/IQuestMilestone.cs.meta","hash":"00b472bd5043cba90c68f17580433e86","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/Quests/IQuestsClient.cs","hash":"2e78d3070d26c71e86da6a87cbecebeb","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/Quests/IQuestsClient.cs.meta","hash":"a493e6c5e70b57250f8f64ffe24becd0","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/SavedGame.meta","hash":"e18bbbb9a6180a832d45c17db80632e3","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/SavedGame/ISavedGameClient.cs","hash":"a23fa0782414b414ff95dfcf496bd2ef","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/SavedGame/ISavedGameClient.cs.meta","hash":"bd7781fa82aaea9ae3cd308dc15513be","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/SavedGame/ISavedGameMetadata.cs","hash":"44345638088907f7e271e5aa8455f1a2","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/SavedGame/ISavedGameMetadata.cs.meta","hash":"837f05b5629c34925ccc228db2e4f590","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/SavedGame/SavedGameMetadataUpdate.cs","hash":"92e9651efd8c2035164644e51c93703b","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/SavedGame/SavedGameMetadataUpdate.cs.meta","hash":"000aab026570a8b7fa2b33bf162182d7","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/ScorePageToken.cs","hash":"4d241cac1f7171fd9ed2c37a93a05d12","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/BasicApi/ScorePageToken.cs.meta","hash":"bbd76f821e94f2ec22ea07ce5c994e4b","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor.meta","hash":"3410ff21eeb03537794302c1fb954ca1","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor/GPGSAndroidSetupUI.cs","hash":"0a9ae17b03d527e7e9a9847fcfc9744c","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor/GPGSAndroidSetupUI.cs.meta","hash":"95a222efd0a666ee6b7c0d3a89b3f6d4","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor/GPGSDependencies.cs","hash":"cd8d8bc0dfb6388cce8f499f0ebe783e","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor/GPGSDependencies.cs.meta","hash":"7d0d93f210606f4f4691f6f6bdd059a2","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor/GPGSDocsUI.cs","hash":"fea339b87d53c25008456d3a47c2def9","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor/GPGSDocsUI.cs.meta","hash":"42a867dabe6d2b5b9b34edbc4f279e5a","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor/GPGSIOSSetupUI.cs","hash":"ba30521fe1386d3823e6b2f410ea9e0b","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor/GPGSIOSSetupUI.cs.meta","hash":"9e508dbcecb8f02d42eec9906c284016","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor/GPGSPostBuild.cs","hash":"80bd0e2dd80745582cca3883fc351132","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor/GPGSPostBuild.cs.meta","hash":"02fd8cbb60af8d708c2407997553c5ec","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor/GPGSProjectSettings.cs","hash":"08c6210169bc240d2c6a3721df80a75c","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor/GPGSProjectSettings.cs.meta","hash":"32f6d5f16229820536e125bec36ac9bb","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor/GPGSStrings.cs","hash":"893d45c78bb795fa1109c8215dc6221f","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor/GPGSStrings.cs.meta","hash":"1ae53ade7992073fe39249b332a71e07","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor/GPGSUpgrader.cs","hash":"ff6ec4dfef8a55e93ef6667536adfdab","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/GPGSUpgrader.cs.meta","hash":"be95bc4ea421687afa3b53b2a5bf8fd4","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor/GPGSUtil.cs","hash":"1326cee95bd286b94097195dc6117e81","datetime":{"high":0,"low":1485133432}},{"path":"Assets/GooglePlayGames/Editor/GPGSUtil.cs.meta","hash":"6d77fd458add90fa19e057242439e728","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/NearbyConnectionUI.cs","hash":"a45053382c58f1f762af13b84cf3a84a","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/NearbyConnectionUI.cs.meta","hash":"19cef4168bd7a85c746d152c18481ce4","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/PlistBuddyHelper.cs","hash":"c3e56bd14bc7131fa0438f17eb3e1c0f","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/PlistBuddyHelper.cs.meta","hash":"dee65c0b2ed2c1d5f2e4c78adfcc3cc5","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/PostprocessBuildPlayer","hash":"02d7050168ec725ed820983bc25fb00d","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/PostprocessBuildPlayer.meta","hash":"10b2449a54bf836cc769d67121a45e40","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/template-AndroidManifest.txt","hash":"193f3e9f4fb9c7d2be9c5a9161a5327a","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/template-AndroidManifest.txt.meta","hash":"50b85ab64a44f7f92373f014aecf1948","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/template-Constants.txt","hash":"1e72b30a390e57a353cc1f7230f3b7c3","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/template-Constants.txt.meta","hash":"48130b4d6c7bed2b8794ee15c2979de7","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/template-GameInfo.txt","hash":"87dc3a879e6d11dc9785c2bd2147c5a2","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/template-GameInfo.txt.meta","hash":"546f266dd6b1028dd26717ce99eb4e3d","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/xcode.meta","hash":"ffd0c939da9667a4b9b5cbb4bab28b28","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/xcode/Elements.cs","hash":"eb926a0f94ea8b784177ba22c9d69e3c","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/xcode/Elements.cs.meta","hash":"652e86c178e8e0acfb72c92e8c55e2b3","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/xcode/Lexer.cs","hash":"3cebc5db7bc9335f4574f0f09439840a","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/xcode/Lexer.cs.meta","hash":"6f8e741ee27927470a2ea8bbe97d3f68","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/xcode/Objects.cs","hash":"5efbf547bae8f68bc90083b75c639feb","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/xcode/Objects.cs.meta","hash":"58cb9f0120fee8206baed4a8b9f07d95","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/xcode/PBXProject.cs","hash":"8981fb739a7f4269a079f63ba24c56b8","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/xcode/PBXProject.cs.meta","hash":"d549db045ea424f09b301cf3b406f9fa","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/xcode/Parser.cs","hash":"11cc7eca6ac9c8869ffea020b597d55f","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/xcode/Parser.cs.meta","hash":"4fc4c2d0b1d9042bfb6a26edc326e3a1","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/xcode/Sections.cs","hash":"f6b502491f964d4fdb8cf06406577795","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/xcode/Sections.cs.meta","hash":"15ed5807930872fc6873f93c95f96ff2","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/xcode/Serializer.cs","hash":"37c2da7f0cd64a29593929848805460c","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/xcode/Serializer.cs.meta","hash":"b8ccb7714b4425d8e19c2894bb15465c","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/xcode/Utils.cs","hash":"45d011617a1436787b2a2927d0558539","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/Editor/xcode/Utils.cs.meta","hash":"90630fc112b8be4fc91205a6f6d5e2c2","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/GameInfo.cs","hash":"1e3d69156f0565b4d816544957dfaf05","datetime":{"high":0,"low":1485282934}},{"path":"Assets/GooglePlayGames/GameInfo.cs.meta","hash":"92db78012d37b470d4819b3eadab787b","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/ISocialPlatform.meta","hash":"9a9f0efd4b0cc0d87f8d1b76ba3ffc1b","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesAchievement.cs","hash":"9983bb3ddd29b65d775f22c75547aa8a","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesAchievement.cs.meta","hash":"3e9c826c70c2449f9ef5906d4bd41806","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesLeaderboard.cs","hash":"acaf826134feaafcc15f507f3a76f3d6","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesLeaderboard.cs.meta","hash":"f7000cbcedfea16d166dcf54359b645c","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesLocalUser.cs","hash":"d5f4cd98aaaa278f9d3535cbddb9fab4","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesLocalUser.cs.meta","hash":"c888ae2e153a26ce680f22b6e6e4f254","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesPlatform.cs","hash":"61c044740f03e8ef8f69cb3ad6b28963","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesPlatform.cs.meta","hash":"d3633770af663ce1a61fa0f6c6d1d07e","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesScore.cs","hash":"eb3a89df50566cb4f9b4ac1c06e3b630","datetime":{"high":0,"low":1485133433}},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesScore.cs.meta","hash":"603660b94ccb9bf35641261dd18f70fd","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesUserProfile.cs","hash":"c40eb8f91436aea5346412ab984a1f2e","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/ISocialPlatform/PlayGamesUserProfile.cs.meta","hash":"fbfd52e7e66f9f9536ac802cd41521ba","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Icons.meta","hash":"043678e78fd92cece20456f8a5416175","datetime":{"high":0,"low":1485294549}},{"path":"Assets/GooglePlayGames/Icons/games_achievements.png","hash":"0e4910cb539f773bb374ba61a023fca0","datetime":{"high":0,"low":1394053122}},{"path":"Assets/GooglePlayGames/Icons/games_achievements.png.meta","hash":"e6d56c912e3e2b8389c1cf0b7dc0501f","datetime":{"high":0,"low":1485294552}},{"path":"Assets/GooglePlayGames/Icons/games_achievements_green.png","hash":"e4ce4722aa6bc93f8f53680e9d592ddb","datetime":{"high":0,"low":1394053006}},{"path":"Assets/GooglePlayGames/Icons/games_achievements_green.png.meta","hash":"de4fb32cda6a4e97f1a1cfcd633db761","datetime":{"high":0,"low":1485294550}},{"path":"Assets/GooglePlayGames/Icons/games_achievements_white.png","hash":"f4a5f0e03e5e9db30137e3fab2f35f19","datetime":{"high":0,"low":1394053132}},{"path":"Assets/GooglePlayGames/Icons/games_achievements_white.png.meta","hash":"460be91f80c9a904711fb2db26bd27c9","datetime":{"high":0,"low":1485294553}},{"path":"Assets/GooglePlayGames/Icons/games_controller.png","hash":"6c8dc5f89f39deafef76b488d3215b5c","datetime":{"high":0,"low":1394053080}},{"path":"Assets/GooglePlayGames/Icons/games_controller.png.meta","hash":"6b5128503e8a288b7f78e879eaae2df4","datetime":{"high":0,"low":1485294554}},{"path":"Assets/GooglePlayGames/Icons/games_controller_grey.png","hash":"4ac0cf3978dca98922d2b5f8464928a9","datetime":{"high":0,"low":1394053110}},{"path":"Assets/GooglePlayGames/Icons/games_controller_grey.png.meta","hash":"ecb69c0c613964d82e7185f280dfd4dc","datetime":{"high":0,"low":1485294551}},{"path":"Assets/GooglePlayGames/Icons/games_controller_white.png","hash":"bc43dc87c0d7d5f863cdb2e30938577e","datetime":{"high":0,"low":1394053092}},{"path":"Assets/GooglePlayGames/Icons/games_controller_white.png.meta","hash":"4b8374a6cbedd457e1af4c6af051cc2d","datetime":{"high":0,"low":1485294551}},{"path":"Assets/GooglePlayGames/Icons/games_gifts.png","hash":"e3f07476620b09b41325a5cda52feb2d","datetime":{"high":0,"low":1394053152}},{"path":"Assets/GooglePlayGames/Icons/games_gifts.png.meta","hash":"e58ae65ef11c06796c00d19a3fb63070","datetime":{"high":0,"low":1485294554}},{"path":"Assets/GooglePlayGames/Icons/games_gifts_green.png","hash":"c4f73aa8d8a86a9139e95b095309333a","datetime":{"high":0,"low":1394053172}},{"path":"Assets/GooglePlayGames/Icons/games_gifts_green.png.meta","hash":"cc6cc28564b43373a9882745fbb71538","datetime":{"high":0,"low":1485294549}},{"path":"Assets/GooglePlayGames/Icons/games_gifts_white.png","hash":"63595b3b7232d8167f3bff172caa927b","datetime":{"high":0,"low":1394053160}},{"path":"Assets/GooglePlayGames/Icons/games_gifts_white.png.meta","hash":"22e98d75f668aa75e7aacac4f34b12eb","datetime":{"high":0,"low":1485294555}},{"path":"Assets/GooglePlayGames/Icons/games_leaderboards.png","hash":"9754ca13356c60e4a07343339ecc802f","datetime":{"high":0,"low":1394053050}},{"path":"Assets/GooglePlayGames/Icons/games_leaderboards.png.meta","hash":"7734055d66c9cbb1920190942ee36bb9","datetime":{"high":0,"low":1485294551}},{"path":"Assets/GooglePlayGames/Icons/games_leaderboards_green.png","hash":"06c43f049ac24463cc07f6494b47abe9","datetime":{"high":0,"low":1394053070}},{"path":"Assets/GooglePlayGames/Icons/games_leaderboards_green.png.meta","hash":"4954447ce67f90c85acf6435b9b7a1d3","datetime":{"high":0,"low":1485294555}},{"path":"Assets/GooglePlayGames/Icons/games_leaderboards_white.png","hash":"5c0796736d418753f26d2758e24a1a9e","datetime":{"high":0,"low":1394053060}},{"path":"Assets/GooglePlayGames/Icons/games_leaderboards_white.png.meta","hash":"6af8f5576e1f976381a79e00b934ae2a","datetime":{"high":0,"low":1485294554}},{"path":"Assets/GooglePlayGames/Icons/games_matches.png","hash":"6907767a8e0858402e6ce91466e566f4","datetime":{"high":0,"low":1394053142}},{"path":"Assets/GooglePlayGames/Icons/games_matches.png.meta","hash":"174823c0868f80cdb07fadffd7026b01","datetime":{"high":0,"low":1485294550}},{"path":"Assets/GooglePlayGames/Icons/games_matches_green.png","hash":"13d8eab34edbdc60d3cb9f50c84bbf1c","datetime":{"high":0,"low":1394053040}},{"path":"Assets/GooglePlayGames/Icons/games_matches_green.png.meta","hash":"dd88711b0d55e979e07e76687620e968","datetime":{"high":0,"low":1485294550}},{"path":"Assets/GooglePlayGames/Icons/games_matches_white.png","hash":"c90418ac54cf346b2cd79c23071e561a","datetime":{"high":0,"low":1394053030}},{"path":"Assets/GooglePlayGames/Icons/games_matches_white.png.meta","hash":"879e677ba3b1590aa9f767843c36a4e5","datetime":{"high":0,"low":1485294553}},{"path":"Assets/GooglePlayGames/Icons/games_quests_green.png","hash":"a0c055cefc87953d67e21f11699e673d","datetime":{"high":0,"low":1405436942}},{"path":"Assets/GooglePlayGames/Icons/games_quests_green.png.meta","hash":"8a547dfe5d6079765c3709d94c69824d","datetime":{"high":0,"low":1485294552}},{"path":"Assets/GooglePlayGames/Icons/games_quests_grey.png","hash":"c15002c5db964b698d7fbccc391bb1bf","datetime":{"high":0,"low":1405436914}},{"path":"Assets/GooglePlayGames/Icons/games_quests_grey.png.meta","hash":"4181dfda5027b97668af0a0b96d4f7ee","datetime":{"high":0,"low":1485294555}},{"path":"Assets/GooglePlayGames/Icons/games_quests_white.png","hash":"f5c44ef53676301313a2b3ad2beab627","datetime":{"high":0,"low":1405436972}},{"path":"Assets/GooglePlayGames/Icons/games_quests_white.png.meta","hash":"e119b6b5c6f3dea303905a33401b564c","datetime":{"high":0,"low":1485294553}},{"path":"Assets/GooglePlayGames/Icons/games_savedgames_green.png","hash":"c7f36db0a7719a02a75611d737db1076","datetime":{"high":0,"low":1405437132}},{"path":"Assets/GooglePlayGames/Icons/games_savedgames_green.png.meta","hash":"2ccda2b563bc665a3096756dfcb2f6ce","datetime":{"high":0,"low":1485294552}},{"path":"Assets/GooglePlayGames/Icons/games_savedgames_grey.png","hash":"86cd775bcdf42050f4d7568868245e8d","datetime":{"high":0,"low":1405437092}},{"path":"Assets/GooglePlayGames/Icons/games_savedgames_grey.png.meta","hash":"cd34a49f07681dda6b34a9c97126bcfa","datetime":{"high":0,"low":1485294549}},{"path":"Assets/GooglePlayGames/Icons/games_savedgames_white.png","hash":"612d5e9f9b0e7290b8fc578bbbd464f0","datetime":{"high":0,"low":1405437176}},{"path":"Assets/GooglePlayGames/Icons/games_savedgames_white.png.meta","hash":"dc69f13527f0f1b19820ac3b959cf395","datetime":{"high":0,"low":1485294553}},{"path":"Assets/GooglePlayGames/OurUtils.meta","hash":"a4cc749ffd15a6b3585eabfe588089d7","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/OurUtils/Logger.cs","hash":"1ffb6d1f4f1b26c00bac3a6dc2bb50d9","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/OurUtils/Logger.cs.meta","hash":"4bc4a18e90c4cab225bdea03ad125c3c","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/OurUtils/Misc.cs","hash":"a0901adaf518b6149e438201772dfd44","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/OurUtils/Misc.cs.meta","hash":"737781822153ec0e35971e7dd5a02602","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/OurUtils/PlatformUtils.cs","hash":"31256a38661beb4e62a30c9c6a0a2f5b","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/OurUtils/PlatformUtils.cs.meta","hash":"ded5d5c2b6386dd738ed4f8400aae9e7","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/OurUtils/PlayGamesHelperObject.cs","hash":"44382ec8e79d68ea2487339dbe6c000c","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/OurUtils/PlayGamesHelperObject.cs.meta","hash":"6a082ab9dc3ee6c0051d640b98f5839b","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms.meta","hash":"c3ccf3fca2af6d6e52d53b0f0762d861","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android.meta","hash":"731581cc808572e00b0d7407d68d537b","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/AndroidClient.cs","hash":"4a59ab2304c28d8221f825b4d0e66640","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/AndroidClient.cs.meta","hash":"c5d214c4e84848d296a3044aa57d90bd","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/AndroidTokenClient.cs","hash":"e10460d07cf6aec642f74c6f27042fd5","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/AndroidTokenClient.cs.meta","hash":"97f45fdb4a8f1194f1a2101a7fcde7a5","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Developers.meta","hash":"597c8631b833a77c0f1e9296f2288fe7","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Developers/JavaInterfaceProxy.cs","hash":"ddab153c9b92f203fd13d5c22458ae28","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Developers/JavaInterfaceProxy.cs.meta","hash":"a4d58534cdffb77b1e549adf7b44ccc1","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Developers/JavaObjWrapper.cs","hash":"98aed1f8de551121f1324558f449fadb","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Developers/JavaObjWrapper.cs.meta","hash":"fbfa8e610a1cf3d7f018cfc26cbc617e","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms.meta","hash":"ded8f452621616dbdc5a698e720d446d","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common.meta","hash":"d7d15f1419fcfed490a567e495d884ed","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api.meta","hash":"97ee04a056e6fd217e7d6e038e747632","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/GoogleApiClient.cs","hash":"fc455ecfdcc333ea6b747339894f83ec","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/GoogleApiClient.cs.meta","hash":"f9ff313fb5a49f3e1b8d37fe0f7e8df8","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/PendingResult.cs","hash":"23a1a5ce2e83574a937c2116879b8f75","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/PendingResult.cs.meta","hash":"1c65490e287e14e7c104f02f7c83818a","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/Result.cs","hash":"594f08b548dba7a3e968ae4b5defb4f7","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/Result.cs.meta","hash":"0869b84ba653a572b95a62d6443ce695","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/ResultCallback.cs","hash":"9309ad5c68d8582e7e32da73f848ecf9","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/ResultCallback.cs.meta","hash":"cc2165fe1758b4730c5a44d07b6e2002","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/ResultCallbackProxy.cs","hash":"ae80853be473485712d2e28e1b4afff2","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/ResultCallbackProxy.cs.meta","hash":"7117c42a44faf5b4cd7872a56fedf4cf","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/Status.cs","hash":"fa7f7361b346c08ec2775a76927a24b1","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/Api/Status.cs.meta","hash":"e633309f9b46288381f08ea0ecc2c20c","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/ConnectionResult.cs","hash":"26aa1239d3baf2c0929ac67f6fcbe146","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Common/ConnectionResult.cs.meta","hash":"16f9b99aebb8c683604e42be088bf49d","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games.meta","hash":"070c5bb589111c9134f045634a289fd5","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Games.cs","hash":"3dfb9b4a29c713a290b6df8e74d958cd","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Games.cs.meta","hash":"e71af140e0e718ccddc5dd68b56cb479","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats.meta","hash":"d6404ad515d3c8408bd47c11f43538b7","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/LoadPlayerStatsResultObject.cs","hash":"a3a2cbabf5c8ffa1602fb1ee98e9e9af","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/LoadPlayerStatsResultObject.cs.meta","hash":"715818ae357260c44d72ee521ddf283e","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/PlayerStats.cs","hash":"14a5b4431b2ab326716e833d68b11f13","datetime":{"high":0,"low":1485133434}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/PlayerStats.cs.meta","hash":"b6dea4a16bdcb0b3587e23214b506724","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/PlayerStatsObject.cs","hash":"051d46f14f506927080c74ffa106fd32","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/PlayerStatsObject.cs.meta","hash":"037d790c0daa49b29483cdbfbe28f83f","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/Stats.cs","hash":"2a33df4d1f30986090fa298a6ea98e56","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/Stats.cs.meta","hash":"83bbe99ae3058e93b3338e419de523a8","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/StatsObject.cs","hash":"2e3cb5b7504490004d3d556e476fcacb","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Android/Gms/Games/Stats/StatsObject.cs.meta","hash":"33dab91f8fbe5cb70c01091cd39213e6","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/IClientImpl.cs","hash":"99d2012ca436e120b4390fa3976c7341","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/IClientImpl.cs.meta","hash":"6133df87a8ff10c16df461cb0fef863e","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/IOS.meta","hash":"9a3521b6d43cbd4c3d5ec7834161ad53","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/IOS/IOSClient.cs","hash":"36473828544bb11fd1d1cc014137c43c","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/IOS/IOSClient.cs.meta","hash":"501a156e5bbd216a9781ebd192aa799f","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/IOS/IOSTokenClient.cs","hash":"80b700f3e33c54e355b1cff210e036ec","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/IOS/IOSTokenClient.cs.meta","hash":"6891e604132d0a9c2815b789f0f3b499","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native.meta","hash":"2f045c4b6c250e25d933c7586a232d69","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/CallbackUtils.cs","hash":"3ee3ae52ed0eab46fc60480cc1e67bff","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/CallbackUtils.cs.meta","hash":"aed86a712f98b545174598a2d28de616","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/ConversionUtils.cs","hash":"15ffd847350a96462192a89a8681d91d","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/ConversionUtils.cs.meta","hash":"75b43d37bdd7b5a678c423b19a0d2297","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper.meta","hash":"f4c248687b76c3046322755c2f163d66","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Achievement.cs","hash":"2a2f0d1e6e534f7fec9bcdbd4672b7cc","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Achievement.cs.meta","hash":"777eb0c9683b0fcbb54dc7243e98b09e","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/AchievementManager.cs","hash":"b24ef4eb7708abd27a08456873e5b298","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/AchievementManager.cs.meta","hash":"00fcd6ccb8d5540a0909b13fa22d619a","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/AndroidPlatformConfiguration.cs","hash":"01547e3433d7f50b180746cf587fa667","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/AndroidPlatformConfiguration.cs.meta","hash":"25df0ffe16ea57125304a0c255852386","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Builder.cs","hash":"f8cd304da016a7d9ede5c19bf82c90f6","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Builder.cs.meta","hash":"f00bf7f1d3bc8fe17560e4f8c16d274c","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/CommonErrorStatus.cs","hash":"669b11c30b7d5e39eaf12eed616894bc","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/CommonErrorStatus.cs.meta","hash":"cd8488523bbe525041303925d9433b09","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/EndpointDiscoveryListenerHelper.cs","hash":"6a0bb1d830c83857d9689469a7f6ca29","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/EndpointDiscoveryListenerHelper.cs.meta","hash":"43fd867c477b3f317863403271f40ead","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Event.cs","hash":"b5857d32152f94a007de99ee58064113","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Event.cs.meta","hash":"093566d24c04081e1bd630d4fda726b5","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/EventManager.cs","hash":"9e0b1cfc54e6973ae81feeb446029dd4","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/EventManager.cs.meta","hash":"f76b2125ffba3a86f539141b8f80c127","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/GameServices.cs","hash":"8890b667f9715927791517ee02c686d9","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/GameServices.cs.meta","hash":"5ded113be209184968360e253fe680fc","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/InternalHooks.cs","hash":"8ad69370ec2d6f89cf0c93111ebbd267","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/InternalHooks.cs.meta","hash":"a07a8fc5a1d9e6c5eeeeee2bd15bc6e8","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/IosPlatformConfiguration.cs","hash":"a95288aa9f42c834f3300c38d31e1050","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/IosPlatformConfiguration.cs.meta","hash":"752d15da11bed3e93589de444d16591d","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Leaderboard.cs","hash":"7797b711c6feabbc26b7ac70a47fa759","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Leaderboard.cs.meta","hash":"64f3d664151d68ab06891aae8885d61c","datetime":{"high":0,"low":1485133435}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/LeaderboardManager.cs","hash":"4e8b26a03a0f85f24a228318eeef4766","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/LeaderboardManager.cs.meta","hash":"d49d60e97c9bcca73efc12a1f71e084c","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/MessageListenerHelper.cs","hash":"d382a7c76b9f88e0a5e86a851567159d","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/MessageListenerHelper.cs.meta","hash":"6c653a3e1bedbb370a4b2e4b52e7f0c0","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/MultiplayerInvitation.cs","hash":"66a0edb52156483cba118ce9b95e63b7","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/MultiplayerInvitation.cs.meta","hash":"7542988b94edf470b3e6ff809aecea08","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/MultiplayerParticipant.cs","hash":"8999b66cfad62566ce9531781e3177fe","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/MultiplayerParticipant.cs.meta","hash":"663c6ad4588667e465373aee75b9191e","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnectionTypes.cs","hash":"1087b21ed0d3ea380d17a4b1e99a574e","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnectionTypes.cs.meta","hash":"47d7801da5f8f3614879c6431abfeba6","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnections.cs","hash":"ed7b8ab69f864393489bb08114094dad","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnections.cs.meta","hash":"7201996d554a1bcdfa7f2bcd0d5cf268","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnectionsBuilder.cs","hash":"0dbd8dc3da1741bb0696f3bb345dc1fc","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnectionsBuilder.cs.meta","hash":"515817ba84585acd84fcdfe6a59805cb","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnectionsStatus.cs","hash":"c80c0e698dd848450ab732508c16840d","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/NearbyConnectionsStatus.cs.meta","hash":"109f59104a5eed3043036a320f1ccf20","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/ParticipantResults.cs","hash":"4931223d9be365d59aec64c05e2d0797","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/ParticipantResults.cs.meta","hash":"29ef2786bcb9969ccf1d8c69b2132a39","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Player.cs","hash":"d7f52669b97ba33c26e47f844f4c633d","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Player.cs.meta","hash":"d920604ee0a16ced5419cf1b2e6bac09","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/PlayerManager.cs","hash":"1f3f80941d0f0714ce943581b0b2e94c","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/PlayerManager.cs.meta","hash":"c00c36a41267e475396056dd7bd2037a","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/PlayerStats.cs","hash":"ddcc1170b233ce4a87a2ac2837ef613f","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/PlayerStats.cs.meta","hash":"9eee84009b8962d20eb841f6ffa5d6f7","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Quest.cs","hash":"45d2d89ec260a77cfb4eead7b09fce60","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Quest.cs.meta","hash":"5ca75fbccb1718090b577a8379fede93","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/QuestManager.cs","hash":"68495627fbd60cefe5da6bc2bff5bd4b","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/QuestManager.cs.meta","hash":"a9a37f3ff4e44b3198aab390ea6785cb","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/QuestMilestone.cs","hash":"85fed03fc882a696e323effb7aed729d","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/QuestMilestone.cs.meta","hash":"3dd609747ed69dc2f5a86bcbe1f27e12","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeEventListenerHelper.cs","hash":"9fdbeb1bfa4b546719d5ef198c3ef0f6","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeEventListenerHelper.cs.meta","hash":"0011f10e9d65b3e2d87f3c18cf73aa7f","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeMultiplayerManager.cs","hash":"57c1a9e639548cadf386f3f28a0bf80a","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeMultiplayerManager.cs.meta","hash":"d919d705c3e22eb5d4e05c2b16c407cf","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeRoom.cs","hash":"2e674e32978e1c3d3f3e4ee0415f3bbc","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeRoom.cs.meta","hash":"d4754f6418bfcd89564617577786ca53","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeRoomConfig.cs","hash":"9be2cc03314e71a0d203fd158fe68282","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeRoomConfig.cs.meta","hash":"802b50dbf9fe609f2d9537fe5b49cc0b","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeRoomConfigBuilder.cs","hash":"7a7c64d1ee94969cd9f70927e15e4b41","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/RealTimeRoomConfigBuilder.cs.meta","hash":"94a115393382c28eb0a8ba803d87ca7f","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Score.cs","hash":"33d4c60081046120830dfe7ac11260e3","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Score.cs.meta","hash":"2fe4c6a8b44491a645a2cda7bfeb8cfd","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/ScorePage.cs","hash":"f40db89b4020068bbb8c268550d6efca","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/ScorePage.cs.meta","hash":"03598530d77cdd75dc7d36033c264257","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/ScoreSummary.cs","hash":"aaa77184b0f3f8817baa64de9d4f8296","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/ScoreSummary.cs.meta","hash":"fd2c7a94293f11d22f47ec121ba0b309","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Sentinels.cs","hash":"ab585d4c5900f4cdfaf4f3c5553b36f5","datetime":{"high":0,"low":1485133436}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Sentinels.cs.meta","hash":"733bb275edd20856d98b3dd5765dcf76","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotManager.cs","hash":"cb23f393a145bdbb7f1b3b12b882d3ae","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotManager.cs.meta","hash":"4fc611a94a8cfb2a4e4c35885e2cc559","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotMetadata.cs","hash":"b4a0cfdebc688a46c4c9229627fbdcba","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotMetadata.cs.meta","hash":"b4dead9d7eeba6447e696c55da323b68","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotMetadataChange.cs","hash":"f0a8917c559e14123ca5c1651e01bd1e","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotMetadataChange.cs.meta","hash":"b6e682c465c47b1359875ae7060d19f9","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotMetadataChangeBuilder.cs","hash":"b27ac86a4e5c9e0a39594c0de9457aa8","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SnapshotMetadataChangeBuilder.cs.meta","hash":"4e4885881f2f91e4f92e63c9f0993faa","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/StatsManager.cs","hash":"ce25b78870b100cdf65282241300ff5b","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/StatsManager.cs.meta","hash":"da8d5c0927f96364d00b17182d81bd4d","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Status.cs","hash":"2aa4e80607d80e8c6fe6d3d71a28fa0b","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Status.cs.meta","hash":"4cf0c68da5fefb3fbbf9e2304304c822","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SymbolLocation.cs","hash":"58a4773c40f6835513b35521a27cb8f6","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/SymbolLocation.cs.meta","hash":"df9d9e3213637c97f4c2ee231174259b","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMatch.cs","hash":"aac232d6ea6cf941b72b96126b114560","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMatch.cs.meta","hash":"a0e8925d93ade94e86f8012f6d7095d9","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMatchConfig.cs","hash":"5bfcb6e52a3e70451a4790a849655082","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMatchConfig.cs.meta","hash":"ae00090dc382a7cd438f1f3b36188f00","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMatchConfigBuilder.cs","hash":"8792df944fd95b7371cb75781c0ccc00","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMatchConfigBuilder.cs.meta","hash":"93b4bfa538a25e478fc1954592aea29f","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMultiplayerManager.cs","hash":"0390ef01eae99dcb368c81f22538407a","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/TurnBasedMultiplayerManager.cs.meta","hash":"6c7ed418799bf886a0d74cf5e87a2f60","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Types.cs","hash":"d9a041972d90f0363b620b46e772d31b","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/Cwrapper/Types.cs.meta","hash":"48ef37ba2d68c7ceb4de725fb73f7e11","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/JavaUtils.cs","hash":"0b26ad8ca92d82e6efa9f810aa9b3923","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/JavaUtils.cs.meta","hash":"7260fbd12d3caeae061beb41459015fe","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeClient.cs","hash":"4f4de88ef16398e13ef3ee3c9a55ff3a","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeClient.cs.meta","hash":"e413765368d70215ec8b5d05464a55bd","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeEventClient.cs","hash":"2cdc5cf4fc26f0c7c17db47666eabb02","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeEventClient.cs.meta","hash":"cccf4691d140eb6fe74a7fe95b58456c","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeNearbyConnectionClientFactory.cs","hash":"44ed33a83bc0f18671122ffeaeef4374","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeNearbyConnectionClientFactory.cs.meta","hash":"6bf900a6747ea71f31d948afcf7ff490","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeNearbyConnectionsClient.cs","hash":"d0a183b573b19b1d8db3c885865ac647","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeNearbyConnectionsClient.cs.meta","hash":"8674d81e6b70dd3023f68c3bb0d7f28c","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeQuestClient.cs","hash":"c08ac3be4f24500c6f7896da2a50757d","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeQuestClient.cs.meta","hash":"54eaf1e5bd55bd1ffd0078cb6c9f12be","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeRealtimeMultiplayerClient.cs","hash":"0c365901fe32a38ef2847021ce2965e8","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeRealtimeMultiplayerClient.cs.meta","hash":"2adc2ca50c57fffea301f74703af86ab","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeSavedGameClient.cs","hash":"18c0e035a9acb09563cf7fa28562bbf1","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeSavedGameClient.cs.meta","hash":"3dc832ad9ef5111489a4d96c38e65158","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeTurnBasedMultiplayerClient.cs","hash":"912ff80b683e4cc11a7da0f132044095","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/NativeTurnBasedMultiplayerClient.cs.meta","hash":"dea59c2adc89af7ebb38f5309fcd0b90","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke.meta","hash":"e3b8699adad64fa6e167b85dc932b38d","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/AchievementManager.cs","hash":"590099f747dd6916322985fcd8ca83f6","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/AchievementManager.cs.meta","hash":"bb385737f8601884a85a8b4f19c75b8a","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/AndroidPlatformConfiguration.cs","hash":"663947ae9ab025cd097fbd9cb20404e9","datetime":{"high":0,"low":1485133437}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/AndroidPlatformConfiguration.cs.meta","hash":"4a17217427b6e4f71d70f5927b0bfd0b","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/BaseReferenceHolder.cs","hash":"4ac187e156bc5ee42e2b7cbdb9d4b2fe","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/BaseReferenceHolder.cs.meta","hash":"ee1c413814f94bf6b44d759d70834ee6","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/Callbacks.cs","hash":"16f8a28311b162a8fc9e526a4afbca69","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/Callbacks.cs.meta","hash":"2bd23e03b3024791d9c82cb243dbdb82","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/EventManager.cs","hash":"a174550e2082a5d7cb4ff6f76e82c454","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/EventManager.cs.meta","hash":"97383ad32ea5b13a8b15bb761e87ad2f","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/GameServices.cs","hash":"e5e33e12b3f9ba5a74d6a7284ad0d855","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/GameServices.cs.meta","hash":"fdee8d2108dbd19ef81dba952c2d5aae","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/GameServicesBuilder.cs","hash":"3af2f845979a3782da99da71203cceab","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/GameServicesBuilder.cs.meta","hash":"bbb3aae2b02839ba1155d60953e1e73f","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/IosPlatformConfiguration.cs","hash":"15e5f59cba3e56265aa1db73c33db84d","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/IosPlatformConfiguration.cs.meta","hash":"512857c39f13a4e4efe200c1e41c0843","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/LeaderboardManager.cs","hash":"4a54d224127e5ffd0feb96083d96a5fd","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/LeaderboardManager.cs.meta","hash":"06b7537d20080ab3280d2bc8ce405631","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/MultiplayerInvitation.cs","hash":"5f2b83ee685ba4e1dce4014eec27f068","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/MultiplayerInvitation.cs.meta","hash":"a55c18700e8496895870527028795e38","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/MultiplayerParticipant.cs","hash":"b9d810e1cde652a4a8a01c6b1d59e431","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/MultiplayerParticipant.cs.meta","hash":"f677cf65edb922fd3b6e70c97afae0ce","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeAchievement.cs","hash":"f4faeb01200b3996c8e48754b9f17b4c","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeAchievement.cs.meta","hash":"6c7ebaf1f35f7c8fdf338106c334465f","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeAppIdentifier.cs","hash":"6d9579ad662d48bff1326b134f8025d5","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeAppIdentifier.cs.meta","hash":"78f5b271142a3f8c5c6bd1b0b0ea4fc3","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeConnectionRequest.cs","hash":"503b7d3c12ea30b1a68cdef6ce9bedda","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeConnectionRequest.cs.meta","hash":"137469b4f889935b333a52956586b77c","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeConnectionResponse.cs","hash":"56f846bd8a36f5d622caafff5fa810dc","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeConnectionResponse.cs.meta","hash":"3832dc854089896776c61505045a0e03","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeEndpointDetails.cs","hash":"40341ded84d34379850a0c7fa35921e6","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeEndpointDetails.cs.meta","hash":"3c2281ab3d7df82ee0d40d20631b46b9","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeEndpointDiscoveryListenerHelper.cs","hash":"60d9e963170ee7e94d448e8b1fc296a9","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeEndpointDiscoveryListenerHelper.cs.meta","hash":"1fd224525f642c4b85a50910183f539a","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeEvent.cs","hash":"a66083cb59908818cf24b65c58ccfe03","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeEvent.cs.meta","hash":"c7f2efdfee97576b0e1ea04beabe7bb7","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeLeaderboard.cs","hash":"262b0faeb1d8627debfcc95da52bbcde","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeLeaderboard.cs.meta","hash":"ddeabc4028914fb23834a6e54ead93b7","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeMessageListenerHelper.cs","hash":"10b8526bc132ba4c3678425bfa15c48d","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeMessageListenerHelper.cs.meta","hash":"5967bb5b0598c5ac2b8e8caf4adbc752","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativePlayer.cs","hash":"7d7394764821623eda0320773ba76a05","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativePlayer.cs.meta","hash":"a9cecc649b6e079d3f224d82aae69946","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativePlayerStats.cs","hash":"a5a9c4f13e0f4876a9ce712c9b512f57","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativePlayerStats.cs.meta","hash":"bcd68fc9f0560851e56df8b3a3bdc1a8","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeQuest.cs","hash":"53ef720a556cb8bbc6d10b53d3196ffb","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeQuest.cs.meta","hash":"be5c84954e723f907ac67eab124ea47e","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeQuestMilestone.cs","hash":"d3bbe771f7fdbe9e70d185b1b2fb7edd","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeQuestMilestone.cs.meta","hash":"6688591874dce707b13fc8f3b5a27cdb","datetime":{"high":0,"low":1485133438}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeRealTimeRoom.cs","hash":"cbb592a2811e655b22626b71f887305f","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeRealTimeRoom.cs.meta","hash":"3b87273949d1072a398abe2e5f3056db","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScore.cs","hash":"063986b6f7e03694a7b5a337dfcf8149","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScore.cs.meta","hash":"a374787de9edf9d7d070f545c436048d","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScoreEntry.cs","hash":"e215aa50af54f8f942f8907943caba42","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScoreEntry.cs.meta","hash":"77b8f001749db6364effc29ab2e9ebf5","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScorePage.cs","hash":"a4b9b9174027010bab209e7dbc8f638e","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScorePage.cs.meta","hash":"8717230490d752344230066cac9d85a3","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScorePageToken.cs","hash":"5f3cb4489b0b6335a3bae3659c1bba0f","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScorePageToken.cs.meta","hash":"343a7a87c20df8b605bb0c4924549b4a","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScoreSummary.cs","hash":"a803efb960d459bbf80dc3991957282b","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeScoreSummary.cs.meta","hash":"5cc899fef2bf4dead76ed92287bd622b","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeSnapshotMetadata.cs","hash":"b57cb994dbd039852eee78d942274b13","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeSnapshotMetadata.cs.meta","hash":"7ae90b444929c41ba376fe8d44dd5d93","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeSnapshotMetadataChange.cs","hash":"8192b6b11ea7b37e6341b8d1baf0ada9","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeSnapshotMetadataChange.cs.meta","hash":"8cb00093d6cadd8fef678f9292ae4c32","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeStartAdvertisingResult.cs","hash":"b7ef5c002841c425f96d4f59e3b8fd53","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeStartAdvertisingResult.cs.meta","hash":"3c0d3acba970b18f603e886a2ce32ee5","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeTurnBasedMatch.cs","hash":"c4fdecbef6c27ad5904afdc04196adc3","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NativeTurnBasedMatch.cs.meta","hash":"3813522474752c898f6e6d5e0b678e7a","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NearbyConnectionsManager.cs","hash":"7221599109f3fd189ac39deabc39bb09","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NearbyConnectionsManager.cs.meta","hash":"546304960d12951cdba024580272d1a9","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NearbyConnectionsManagerBuilder.cs","hash":"a4996df4da6118bd0262b135f7ce30f6","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/NearbyConnectionsManagerBuilder.cs.meta","hash":"9b7bcf9319d769b8ef5f9cc8e386b231","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/PInvokeUtilities.cs","hash":"e6813947947d4e167a29ca1c93a44969","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/PInvokeUtilities.cs.meta","hash":"593edcaed4bc47cd5709cf99e3533b8a","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/ParticipantResults.cs","hash":"9b1d4cb975da8cc17d4eb05d65606fd4","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/ParticipantResults.cs.meta","hash":"f10bb03c6eaf76e25228ec68ea7b81c2","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/PlatformConfiguration.cs","hash":"e4c2bc89929f4384cbee90e88ef6f577","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/PlatformConfiguration.cs.meta","hash":"a7e1ca1805044a3b191edf37577e07fe","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/PlayerManager.cs","hash":"038b848e195af89c9589e0213f079b9b","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/PlayerManager.cs.meta","hash":"8ac63595d10ce3797bdcfee2583afbce","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/PlayerSelectUIResponse.cs","hash":"b9315d73c1930bf14bb208079d7032e3","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/PlayerSelectUIResponse.cs.meta","hash":"1b748d83d566caba473d1fe5e06b9e07","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/QuestManager.cs","hash":"466b77a90ec7ae67c345fbbff9f9e3f1","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/QuestManager.cs.meta","hash":"13454c1c72ec0ea401d07e3e84dbb524","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/RealTimeEventListenerHelper.cs","hash":"b8201726f5b4ed5bde44f9258be12233","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/RealTimeEventListenerHelper.cs.meta","hash":"ff80a29a0e42dc7648807420ff6e142e","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/RealtimeManager.cs","hash":"5d77bad740bad45c205c0a903dd894c3","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/RealtimeManager.cs.meta","hash":"85f1431895f80b7940d5da2dae6ab746","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/RealtimeRoomConfig.cs","hash":"12f18a5c998c0a9145ab5e45dc5948a3","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/RealtimeRoomConfig.cs.meta","hash":"4f33f0b75d938be9aa6f26e1d56ab417","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/RealtimeRoomConfigBuilder.cs","hash":"ce9b6c5d6f70b6a3233d48e119e31e18","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/RealtimeRoomConfigBuilder.cs.meta","hash":"b2bedfb0555974550de5ff6cbb6a072c","datetime":{"high":0,"low":1485133439}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/SnapshotManager.cs","hash":"e53daf9bade397a9cf5ff17ee389a722","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/SnapshotManager.cs.meta","hash":"f6f11b5a01e40861e09d9affe0922044","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/StatsManager.cs","hash":"aaac9076d5bc59b533d9aeeb762a01eb","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/StatsManager.cs.meta","hash":"d1084889bf23d0d2433f5e61d5da5042","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/TurnBasedManager.cs","hash":"a2ab53172f4ec013f55d98c4ce3c7762","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/TurnBasedManager.cs.meta","hash":"72595a51d6f7c1e837d6e6d959cf6e67","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/TurnBasedMatchConfig.cs","hash":"c484f01d13d33549c70e175851dd4264","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/TurnBasedMatchConfig.cs.meta","hash":"1cdf0a753f6902a743624b0a74f4f024","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/TurnBasedMatchConfigBuilder.cs","hash":"b10ea1c0f79596eaba6faf57e58da14b","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/Platforms/Native/PInvoke/TurnBasedMatchConfigBuilder.cs.meta","hash":"0aa484c0f703bf2546a108576033d89c","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/Platforms/Native/UnsupportedSavedGamesClient.cs","hash":"66da6b0006119409d1c862c8f684193a","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/Platforms/Native/UnsupportedSavedGamesClient.cs.meta","hash":"b9a3c4d72c7ca3d43b53bcde26667e44","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/Platforms/NearbyConnectionClientFactory.cs","hash":"bd72f14f31090a83ef9c7923f92b2724","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/Platforms/NearbyConnectionClientFactory.cs.meta","hash":"c76b4b39116ff18fc66c6e3f416073dd","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/Platforms/PlayGamesClientFactory.cs","hash":"c4b366a6b76097f54b5e25aaceacd5d6","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/Platforms/PlayGamesClientFactory.cs.meta","hash":"101c96abc52bce7886d8999e0d40aba5","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/Platforms/TokenClient.cs","hash":"84b9cfcef5ed7ade3492e2838ea24103","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/Platforms/TokenClient.cs.meta","hash":"bbc51312d4bf6dc45084b801fa738387","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/PluginVersion.cs","hash":"2f0c7f866d388990a2ab50e1e8add40b","datetime":{"high":0,"low":1485133440}},{"path":"Assets/GooglePlayGames/PluginVersion.cs.meta","hash":"42f8011ed5d5e47163096d268c28a3a8","datetime":{"high":0,"low":1485133440}},{"path":"Assets/PlayServicesResolver.meta","hash":"bfcf6ada29c3849f50098f0659e5785a","datetime":{"high":0,"low":1485133440}},{"path":"Assets/PlayServicesResolver/Editor.meta","hash":"1fa874a09f9ccadfd39309c708656a41","datetime":{"high":0,"low":1485133440}},{"path":"Assets/PlayServicesResolver/Editor/Google.IOSResolver.dll","hash":"9f3ab331bdbb49616f3b291125a4c9c5","fromPath":"Assets/PlayServicesResolver/Editor/Google.IOSResolver_v1.2.9.0.dll","datetime":{"high":0,"low":1485133440}},{"path":"Assets/PlayServicesResolver/Editor/Google.IOSResolver.dll.meta","hash":"3292f19c263d390de1d961bee2a90204","fromPath":"Assets/PlayServicesResolver/Editor/Google.IOSResolver_v1.2.9.0.dll.meta","datetime":{"high":0,"low":1485133440}},{"path":"Assets/PlayServicesResolver/Editor/Google.JarResolver.dll","hash":"35df9d5301e3a0137676c2b7af0fb770","fromPath":"Assets/PlayServicesResolver/Editor/Google.JarResolver_v1.2.9.0.dll","datetime":{"high":0,"low":1485133440}},{"path":"Assets/PlayServicesResolver/Editor/Google.JarResolver.dll.meta","hash":"c1ae0b6726805db4503e5511303c6037","fromPath":"Assets/PlayServicesResolver/Editor/Google.JarResolver_v1.2.9.0.dll.meta","datetime":{"high":0,"low":1485133440}},{"path":"Assets/PlayServicesResolver/Editor/Google.VersionHandler.dll","hash":"4c8769000f10c4002c211fdf8c45b3a6","fromPath":"Assets/PlayServicesResolver/Editor/Google.VersionHandler_v1.2.9.0.dll","datetime":{"high":0,"low":1485133440}},{"path":"Assets/PlayServicesResolver/Editor/Google.VersionHandler.dll.meta","hash":"1b588e935e36271683edd4e34cebb9cf","fromPath":"Assets/PlayServicesResolver/Editor/Google.VersionHandler_v1.2.9.0.dll.meta","datetime":{"high":0,"low":1485133440}},{"path":"Assets/PlayServicesResolver/Editor/play-services-resolver.txt","hash":"bd1641839743415a15da1ace8732e631","fromPath":"Assets/PlayServicesResolver/Editor/play-services-resolver_v1.2.9.0.txt","datetime":{"high":0,"low":1485130075}},{"path":"Assets/PlayServicesResolver/Editor/play-services-resolver.txt.meta","hash":"bcb23ba2f829d10467b04db45c153509","fromPath":"Assets/PlayServicesResolver/Editor/play-services-resolver_v1.2.9.0.txt.meta","datetime":{"high":0,"low":1485133440}},{"path":"Assets/Plugins.meta","hash":"d27141b151d469a8264e9ff382e6981f","datetime":{"high":0,"low":1485133440}},{"path":"Assets/Plugins/Android.meta","hash":"5acce9b91a6fc65fdaf9e60d4a4a5675","datetime":{"high":0,"low":1485133440}},{"path":"Assets/Plugins/Android/MainLibProj.meta","hash":"cc4999751818fddcb036702386e83604","datetime":{"high":0,"low":1485133450}},{"path":"Assets/Plugins/Android/MainLibProj/AndroidManifest.xml","hash":"c0f26e27b1da6f9af5a5f67e4698d076","datetime":{"high":0,"low":1485282934}},{"path":"Assets/Plugins/Android/MainLibProj/AndroidManifest.xml.meta","hash":"d34c95e74325d49dcc6e9b5bcbde1ed3","datetime":{"high":0,"low":1485133440}},{"path":"Assets/Plugins/Android/MainLibProj/libs.meta","hash":"71feb8a4c32cd2f3abebdc671027c57b","datetime":{"high":0,"low":1485133440}},{"path":"Assets/Plugins/Android/MainLibProj/libs/play-games-plugin-support.jar","hash":"2c2f1a3662a3a1bc9e0b1780c8dd5138","datetime":{"high":0,"low":1485130075}},{"path":"Assets/Plugins/Android/MainLibProj/libs/play-games-plugin-support.jar.meta","hash":"e7ae9ff8436850de3fca6f04574aaef4","datetime":{"high":0,"low":1485133440}},{"path":"Assets/Plugins/Android/MainLibProj/project.properties","hash":"bece06172d0596e1f15cd61935851d87","datetime":{"high":0,"low":1485133440}},{"path":"Assets/Plugins/Android/MainLibProj/project.properties.meta","hash":"e0164a203a562bbac747092110f1c89c","datetime":{"high":0,"low":1485133440}},{"path":"Assets/Plugins/Android/libs.meta","hash":"b59b82366f31634e7f956fff026b2b9b","datetime":{"high":0,"low":1485133440}},{"path":"Assets/Plugins/Android/libs/armeabi-v7a.meta","hash":"1e4dc62f4aba6fd805ae20331413de2f","datetime":{"high":0,"low":1485133440}},{"path":"Assets/Plugins/Android/libs/armeabi-v7a/libgpg.so","hash":"bb7417380e9310ed6296ce2af51eff3a","datetime":{"high":0,"low":1485130075}},{"path":"Assets/Plugins/Android/libs/armeabi-v7a/libgpg.so.meta","hash":"b94cb675066547500413d7c9978a25bf","datetime":{"high":0,"low":1485133468}},{"path":"Assets/Plugins/Android/libs/x86.meta","hash":"cfc1e531355894ea280bfdc481b051de","datetime":{"high":0,"low":1485133440}},{"path":"Assets/Plugins/Android/libs/x86/libgpg.so","hash":"a697ebc589452db4a1acf3bcd5db60b2","datetime":{"high":0,"low":1485130075}},{"path":"Assets/Plugins/Android/libs/x86/libgpg.so.meta","hash":"8b558b8849dbb773846f68a3b4a0c23c","datetime":{"high":0,"low":1485133468}},{"path":"Assets/Plugins/Android/play-services-auth-10.0.1.aar","hash":"3fda7de334c420e1cfb847db2328096b","datetime":{"high":0,"low":1485130075}},{"path":"Assets/Plugins/Android/play-services-auth-10.0.1.aar.meta","hash":"d9404285fca36a7f5f3348468a45f48e","datetime":{"high":0,"low":1485133440}},{"path":"Assets/Plugins/Android/play-services-auth-base-10.0.1.aar","hash":"1df42455ec3ae0d3723faadd26e4b0c9","datetime":{"high":0,"low":1485130075}},{"path":"Assets/Plugins/Android/play-services-auth-base-10.0.1.aar.meta","hash":"2bbdd258d2598670bee568d530b011d5","datetime":{"high":0,"low":1485133440}},{"path":"Assets/Plugins/Android/play-services-base-10.0.1.aar","hash":"f02be27d964d4f41c675ad6a80efb0a6","datetime":{"high":0,"low":1485130075}},{"path":"Assets/Plugins/Android/play-services-base-10.0.1.aar.meta","hash":"c5dc1323c0f8672a42505086dd5f2623","datetime":{"high":0,"low":1485133440}},{"path":"Assets/Plugins/Android/play-services-basement-10.0.1.aar","hash":"10df71889235a2040f67d36bc1982576","datetime":{"high":0,"low":1485130075}},{"path":"Assets/Plugins/Android/play-services-basement-10.0.1.aar.meta","hash":"7ca7fca6e46b426be15a7565bde3ada1","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Plugins/Android/play-services-drive-10.0.1.aar","hash":"2bc05f67337eef71d054f3b3aaf06753","datetime":{"high":0,"low":1485130075}},{"path":"Assets/Plugins/Android/play-services-drive-10.0.1.aar.meta","hash":"449919d825448c408f0ec8fd7bcc8116","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Plugins/Android/play-services-games-10.0.1.aar","hash":"fe817a580fece7fea406bc92688881b1","datetime":{"high":0,"low":1485130075}},{"path":"Assets/Plugins/Android/play-services-games-10.0.1.aar.meta","hash":"207a3c3e5ba14d698e18d2053e40de7f","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Plugins/Android/play-services-nearby-10.0.1.aar","hash":"0af01ae35dffb226de0d1efdff0b12ee","datetime":{"high":0,"low":1485130075}},{"path":"Assets/Plugins/Android/play-services-nearby-10.0.1.aar.meta","hash":"7b2767bf449eae200f3c56415f9fd87a","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Plugins/Android/play-services-tasks-10.0.1.aar","hash":"6429a6d3675699e7caed6c45fa2ddf93","datetime":{"high":0,"low":1485130075}},{"path":"Assets/Plugins/Android/play-services-tasks-10.0.1.aar.meta","hash":"2bab032b90d0973fcb2fa386a02ab803","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Plugins/Android/support-annotations-24.0.0.jar","hash":"77e1c455954dbd4549f6bf37eb13d536","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Plugins/Android/support-annotations-24.0.0.jar.meta","hash":"8c66f730d50f325a88e7041deaa04442","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Plugins/Android/support-v4-24.0.0.aar","hash":"f60946f0390083e0eb935592b1708d76","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Plugins/Android/support-v4-24.0.0.aar.meta","hash":"2aa4cc22418f8e319750e2613adcb1e9","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Plugins/iOS.meta","hash":"8980c186a0936ffc8ee5b1366627b839","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Plugins/iOS/GPGSAppController.h","hash":"aa0b046afee102dc7ef5e901afd72484","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Plugins/iOS/GPGSAppController.h.meta","hash":"4663cd47a0f7996e70850bcae7719452","datetime":{"high":0,"low":1485133468}},{"path":"Assets/Plugins/iOS/GPGSAppController.mm","hash":"541d9966c291a664aa594a24dc65a535","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Plugins/iOS/GPGSAppController.mm.meta","hash":"ec88d26c7f8d3fcb4e8b96a397c0730c","datetime":{"high":0,"low":1485133464}},{"path":"Assets/Prefabs.meta","hash":"cdf2d94123583f9587d1753fb9e60e2f","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Prefabs/Customer.prefab","hash":"47b6e34320f43d9ba8d3a357e7502597","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Prefabs/Customer.prefab.meta","hash":"1aaa4ff4b7f56e606e38b4451f5df249","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Prefabs/SpawnPoint.prefab","hash":"a03f4c2f75dbdf0afe91463abe5926a0","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Prefabs/SpawnPoint.prefab.meta","hash":"6181232c6b31578741fd5e6070144d81","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Prefabs/Wall.prefab","hash":"58c133b40b252364d0abc319283ae2cd","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Prefabs/Wall.prefab.meta","hash":"0b6dd04d95c944ec7ff28a981bf2e5a0","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources.meta","hash":"62e10294520059fcfa5889d2f305d890","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sounds.meta","hash":"bac81a481ef5dc5693428e99f15961ca","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sounds/WLCM Final.ogg","hash":"08c54430f24be6f58aa9703e5f228139","datetime":{"high":0,"low":1485287585}},{"path":"Assets/Resources/Sounds/WLCM Final.ogg.meta","hash":"6d135cb8396ecdf2b459833a408a62d0","datetime":{"high":0,"low":1485287616}},{"path":"Assets/Resources/Sounds/Welcome-Game Over 2.wav","hash":"8c16f7df6a820b972ba74ee61f5fd47a","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sounds/Welcome-Game Over 2.wav.meta","hash":"90aaf5b82a3ec5a37e252e8bc010e1a3","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sounds/voice1.wav","hash":"209f6f1e7e8c6c43b2bb44561322883a","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sounds/voice1.wav.meta","hash":"8f3e03d71fc03188ccb1dfb774dcbfb1","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sounds/voice2.wav","hash":"7be5b09ea01f0d4f6177f433c05061c9","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sounds/voice2.wav.meta","hash":"11dc5c52f33b55cab7c52df490ea7ab8","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sounds/voice3.wav","hash":"424f65a36d304d767b836fbffcee32ef","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sounds/voice3.wav.meta","hash":"9fe4d9a0db7b3b1fda69b5efd81861de","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sounds/voice4.wav","hash":"696878d96102d766517e9eed21e5d3f3","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sounds/voice4.wav.meta","hash":"6c2ad8d1fa9e4eab94839b40e2fcc3e3","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sounds/voice5.wav","hash":"1613bcc2fe4b48e2635e964ec5fbf14a","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sounds/voice5.wav.meta","hash":"17d4749d4131924528db0f9ad43b7ca2","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sounds/voice6.wav","hash":"45a0849b847d8f2101ae84e0cb0e4adc","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sounds/voice6.wav.meta","hash":"3e49eba6bc32f92e4dd28e51aafd931f","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Splash.meta","hash":"fb158b3e5b0df4797c06d4ba3a92b85a","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Splash/GreeterPortraitSplash.png","hash":"510a81005f8658d96fbd513bb9bcb4cc","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Splash/GreeterPortraitSplash.png.meta","hash":"3082fce8dbb863902616a173ae752952","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Splash/GreeterSplash_1366x768.png","hash":"fc06eea586f4fe25a601674263cc9b3d","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Splash/GreeterSplash_1366x768.png.meta","hash":"b380a8a9d83fcfa5c7e723772eb6ad13","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites.meta","hash":"81a1e46182d2cc993e46d25d8a62f470","fromPath":"Assets/Sprites.meta","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer.controller","hash":"9024583ad8b88e8bc35fba4f13b69f52","fromPath":"Assets/Sprites/Customer.controller","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer.controller.meta","hash":"04ff07180513a54f39fa80046da17d66","fromPath":"Assets/Sprites/Customer.controller.meta","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer10.overrideController","hash":"7c812dbf4151a29093cd97c381d0a5fe","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer10.overrideController.meta","hash":"ecd532acdfe5cfa6fdfb97783cea6a38","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer11.overrideController","hash":"ad0f45403d022d739608eefb603a5c06","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer11.overrideController.meta","hash":"227bcc32f52ddf11690afec583fc54e5","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer12.overrideController","hash":"42ecc706afb9c0e74284607baf9e0337","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer12.overrideController.meta","hash":"27ce73445170f6628bb250417fef7dd2","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer13.overrideController","hash":"227e64a1a2447c60711c861e4cbe054c","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer13.overrideController.meta","hash":"f7fb1a11e6a49df9eb1f9498f3734a51","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer14.overrideController","hash":"55f8832366f39c75081fb22878540a33","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer14.overrideController.meta","hash":"bc6460775b0e51ad888664179946e54a","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer15.overrideController","hash":"09ca0a200d29d603fc5a68e55e0ce99d","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer15.overrideController.meta","hash":"c79b294886c52bca5895c6d15effab06","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer16.overrideController","hash":"ff418df9462d165721a2b930acbd329b","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer16.overrideController.meta","hash":"87e7ad2d78443bb52e87c1d7f0d5afcb","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer17.overrideController","hash":"f4e855b29bf837de491d496e455932c8","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer17.overrideController.meta","hash":"df4be3b101b76ac6dd55df82dbf87cc1","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer2.overrideController","hash":"900b65f7d179c6985de32ea9b71d3801","datetime":{"high":0,"low":1485133441}},{"path":"Assets/Resources/Sprites/Customer2.overrideController.meta","hash":"30eafd2a1290c328096c28b0f3d76eea","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Customer3.overrideController","hash":"fc4e8b451d4becae36c995b56382ba02","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Customer3.overrideController.meta","hash":"33ce30d37e8aad613ca824a753e9ea6d","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Customer4.overrideController","hash":"e9441663d2b1fd4aa25bbb5fb3527902","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Customer4.overrideController.meta","hash":"5546f95b5dba8e605c01f347406adf7f","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Customer5.overrideController","hash":"342916a99375d386efdcf832db8cf566","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Customer5.overrideController.meta","hash":"b4343f3535db1ed5b956713cc239de58","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Customer6.overrideController","hash":"779e024ff684aa75cf2559ee780b2265","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Customer6.overrideController.meta","hash":"79ba5f1ebbd6f1e8ad52390bc1f3d0af","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Customer7.overrideController","hash":"48501ac60b479251cbc50d3650f028da","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Customer7.overrideController.meta","hash":"ed198a8131e4cf8d461725d7e00f138f","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Customer8.overrideController","hash":"4d990b3c05b2aaf75c83290cf30d2c7f","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Customer8.overrideController.meta","hash":"b13d592256541dcc5c0a2333bc53402d","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Customer9.overrideController","hash":"32eb36844bc3caeba2a1dfc9c5674f8b","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Customer9.overrideController.meta","hash":"a5315ffc0b47238ba74808378b3af09d","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/FiredGuy 1.png","hash":"c925d4a0b915633c0e67872db0245a4a","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/FiredGuy 1.png.meta","hash":"fa1c76608a57f24b6585f9bcead01249","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Floor2.png","hash":"3e7cb26ec0c1066cdf2cc01ccca9b326","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/Floor2.png.meta","hash":"1eadd9918304be1b52d9ab90a25b9256","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Materials.meta","hash":"30b3662515d9d42ed30fd034a7441033","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Materials/Floor 1.mat","hash":"8ef1c17035b3119de40e3ee83657c5a7","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Materials/Floor 1.mat.meta","hash":"13e52eabcda25982a96cd2493e737d7b","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Materials/Floor.mat","hash":"a2114c561d4e51cc592e1dc148c51bef","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Materials/Floor.mat.meta","hash":"e1b8f9014eced15bdbe9c221c5ef7cc2","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Materials/Floor2.mat","hash":"8633ce4c58708b205a039b4c99a4afb0","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Materials/Floor2.mat.meta","hash":"c62add82988fc7054631a838f77eab94","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Materials/Wall 1.mat","hash":"e0694c74c0ac7fde704d028f554bbc34","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Materials/Wall 1.mat.meta","hash":"78fa06eee2d25816864fe8978ac6dcc6","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Materials/Wall.mat","hash":"c731ebc28580d91103e2822f0f950f6c","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Materials/Wall.mat.meta","hash":"30945511fdeee8eaefe76a78a3b272df","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Materials/Wall2.mat","hash":"4439c3eec22749e7d2dda3e4e7ef2a5e","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Materials/Wall2.mat.meta","hash":"d21f320d2bb5253a4fc41b50e57318de","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Materials/Wall3.mat","hash":"8cc5e9893421a199a442d9f51b290547","datetime":{"high":0,"low":1485265218}},{"path":"Assets/Resources/Sprites/Materials/Wall3.mat.meta","hash":"6cccc8bd54adc5f8020e6e978b6c27aa","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Player.controller","hash":"5d2b26464821ed67ee548e35d950d9ab","fromPath":"Assets/Sprites/Player.controller","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Player.controller.meta","hash":"3019b65114105cdb19e7b58cde850daf","fromPath":"Assets/Sprites/Player.controller.meta","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Player.png","hash":"d7d87d5b8979442271069e6c19725e6f","fromPath":"Assets/Sprites/Player.png","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/Player.png.meta","hash":"7c0821d562b30885083fdc900a7494d5","fromPath":"Assets/Sprites/Player.png.meta","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/PlayerIcon.png","hash":"438f2685eb05b5724c74931a80a11c6d","datetime":{"high":0,"low":1485134358}},{"path":"Assets/Resources/Sprites/PlayerIcon.png.meta","hash":"0564ecbee4d6f8684351a0f336ecc27d","datetime":{"high":0,"low":1485136432}},{"path":"Assets/Resources/Sprites/Player_Idle.anim","hash":"e1e03b53557b3cf9302ffb3e152e7404","fromPath":"Assets/Sprites/Player_Idle.anim","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Player_Idle.anim.meta","hash":"7106b89be1f3b4a71e6b59b679e073f0","fromPath":"Assets/Sprites/Player_Idle.anim.meta","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Player_Walk.anim","hash":"32625b96daef2daea375410672fbf7ab","fromPath":"Assets/Sprites/Player_Walk.anim","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Player_Walk.anim.meta","hash":"f96a4c0e8a1273dfc3c7a5c53dee0c32","fromPath":"Assets/Sprites/Player_Walk.anim.meta","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/Player_Wave.anim","hash":"32f6b495d7181d3cf664cee893f35a8a","fromPath":"Assets/Sprites/Player_Wave.anim","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/Player_Wave.anim.meta","hash":"f7d9f5dba9b6740bc0f6e304ea247ebc","fromPath":"Assets/Sprites/Player_Wave.anim.meta","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/SatisfactionBar.png","hash":"d3c97308c2b80e965c6aceb7e310833f","datetime":{"high":0,"low":1485135113}},{"path":"Assets/Resources/Sprites/SatisfactionBar.png.meta","hash":"81b1c992eedead392d6ca434a9d00d09","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/Wall3.png","hash":"c71331b42a41396dfeb7a1212f91cca8","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/Wall3.png.meta","hash":"ffce5faf63af9a827d11608ac3401baa","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/person_01.png","hash":"a8075612a3a8fb546516976a396ee4bb","fromPath":"Assets/Sprites/person_01.png","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/person_01.png.meta","hash":"452aa841f156723f3a8d2ba3a917ffdc","fromPath":"Assets/Sprites/person_01.png.meta","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/person_01_shake.anim","hash":"e9b9476443227c03495a0815a451d1a7","fromPath":"Assets/Sprites/person_01_shake.anim","datetime":{"high":0,"low":1485133442}},{"path":"Assets/Resources/Sprites/person_01_shake.anim.meta","hash":"27ec876e1fb2b05d0e634904da106461","fromPath":"Assets/Sprites/person_01_shake.anim.meta","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_01_walk.anim","hash":"1599200258e8baa83a3f40ec333029ec","fromPath":"Assets/Sprites/person_01_walk.anim","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_01_walk.anim.meta","hash":"d494a2de8aef42b5dce24448b5a46732","fromPath":"Assets/Sprites/person_01_walk.anim.meta","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_01_wave.anim","hash":"8f99e25f6eecb7809506adcae0085d96","fromPath":"Assets/Sprites/person_01_wave.anim","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_01_wave.anim.meta","hash":"be243c992b1f5948ecbd45916e8020bb","fromPath":"Assets/Sprites/person_01_wave.anim.meta","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_02.png","hash":"1a93e6d42afcf5c03cba07b50eba1ab4","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/person_02.png.meta","hash":"951fc7844e94e39bcd18a1fd7f3a20a6","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_02_shake.anim","hash":"8ec4b61a764a5541beb994a94ff56236","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_02_shake.anim.meta","hash":"a3fe73f1f863540e935e3e468a8aa76b","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_02_walk.anim","hash":"241b10035e08112027d7e50c500620c1","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_02_walk.anim.meta","hash":"22d07bfc4e5f77fcb50b8ae93228c2c8","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_02_wave.anim","hash":"ff78ae56771a590ea93c35e9c5c6f92f","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_02_wave.anim.meta","hash":"bcc101756226e0213686fdadec8ab358","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_03.png","hash":"abb62098e9e5b80267e8a463be7b9bcd","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/person_03.png.meta","hash":"77008882e6b9ea8f5cc10505746b7b9f","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_03_shake.anim","hash":"aab5774090a31096ce96eca4b209669a","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_03_shake.anim.meta","hash":"8422c56a78cbf2663ab458e2ecb5202d","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_03_walk.anim","hash":"8c143fdf173f0cb8e2c419a98cf002c5","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_03_walk.anim.meta","hash":"a5a96a60e0d8adbad4236f1858544465","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_03_wave.anim","hash":"71fc1c7243d54626ba0bcaa52623ce9a","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_03_wave.anim.meta","hash":"f4b9308815ea40e786a12d148a8dfcdf","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_04.png","hash":"17fc7b9e462fc11d87a069e29f12a04f","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/person_04.png.meta","hash":"3e01095124239d6369dc0bbebf71c683","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_04_shake.anim","hash":"ff593224c78d43ed596ad34001dc69ec","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_04_shake.anim.meta","hash":"107518342f3edf3db041ac6fcf9b8bb6","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_04_walk.anim","hash":"b935ab489b8fcf37af406d1faf4807eb","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_04_walk.anim.meta","hash":"65f15ae17f4a96bbdd209a0d612c7e49","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_04_wave.anim","hash":"f4f48a026c1a52bad39a14c54fc83cc9","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_04_wave.anim.meta","hash":"9cdb7ebf888650ed09f3fc1fb1cbda2e","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_05.png","hash":"9e362476875c314a327f1242fa527b81","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/person_05.png.meta","hash":"831f8e5dec3999c2f9217f0e1f10ed42","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_05_shake.anim","hash":"8b9e895081c19cadf1cf86d608ae0832","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_05_shake.anim.meta","hash":"0c17f23d980890cb83259c6c8fba24c6","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_05_walk.anim","hash":"a695cdd430b394480377f452c8f9afb8","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_05_walk.anim.meta","hash":"fdeb0d057ca670938a15de035595b4fe","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_05_wave.anim","hash":"dee32015775ca2ae2b069bc5b7f36416","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_05_wave.anim.meta","hash":"97e23d3b990322372042aa954b0365d7","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_06.png","hash":"6f3363ca18fb5b9b78ffe196da338f2d","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/person_06.png.meta","hash":"6a2f443f1427dbd18259756c3f92579d","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_06_shake.anim","hash":"1544570ac12b23ed5a1810276da3c9fd","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_06_shake.anim.meta","hash":"5817fae50af360f75f0ffa0dc4fc304a","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_06_walk.anim","hash":"2321c92e44f8e0a4c9ab6a516187c717","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_06_walk.anim.meta","hash":"8d4ce5464e74873c5c655558adc62133","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_06_wave.anim","hash":"ca4b24d2d984aefb1c0132445e95cfaa","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_06_wave.anim.meta","hash":"58a30cec5d8540c03aade1ec509f5a7a","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_07.png","hash":"4ff3832efd1ec62bec70996061b18191","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/person_07.png.meta","hash":"ae125473d54fcf33655988e8f5a971e1","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_07_shake.anim","hash":"8888d7d09125b64fc4b327806cfecdba","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_07_shake.anim.meta","hash":"336b4ec189bcb9eecf4293ed1b326809","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_07_walk.anim","hash":"fa756ee16cb5a1b9eaad490866c501d6","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_07_walk.anim.meta","hash":"ba5919543630618428c5dd40a3065adf","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_07_wave.anim","hash":"2dd8b19983f0f14a37a599b65b8261dc","datetime":{"high":0,"low":1485133443}},{"path":"Assets/Resources/Sprites/person_07_wave.anim.meta","hash":"60dd9aeac425825d3a4ebd4f952b7e3c","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_08.png","hash":"366fb8e0839f8170ebdf17a597754ae3","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/person_08.png.meta","hash":"12fb5cb9e4b90424e67e7d6f851e4731","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_08_shake.anim","hash":"5fbb6d1df0a4d2a4a6a3d1cf1a837e5d","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_08_shake.anim.meta","hash":"ba19c345b3b3bc3f5bf4a7cc66542be6","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_08_walk.anim","hash":"763eab24f91bb53c7c5d0341205c0021","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_08_walk.anim.meta","hash":"474db84f7f972983209806128365db90","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_08_wave.anim","hash":"d59908b6a94ddd3bd503d4aff80414da","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_08_wave.anim.meta","hash":"e30eff8153f784ae86588b9874d70f26","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_09.png","hash":"b3a47319dc4c0778a1cf416d1e92ded7","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/person_09.png.meta","hash":"c412c57d84f3af6be07c1a71f3835110","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_09_shake.anim","hash":"60fb071ae7f1b3c21fce9a35389e552d","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_09_shake.anim.meta","hash":"52455908846cf5e9edc6c4af14b2f583","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_09_walk.anim","hash":"ff18c2a4ccc5decbbcc18c95fbdcf0a0","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_09_walk.anim.meta","hash":"17816989cbe2d1dc771aabfd35a46f58","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_09_wave.anim","hash":"acfce7c3d08ac8e1c96da31690cfdaae","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_09_wave.anim.meta","hash":"9976beaca754da7ecdb79c888368d94e","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_10.png","hash":"2fb402f44b366b25d57935b72cfa1b31","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/person_10.png.meta","hash":"32b39a6869674374144d577289388d03","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_10_shake.anim","hash":"23361766ef78e79f1bdf58f791daafac","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_10_shake.anim.meta","hash":"43ee0b30799b2d6f80ac58410be779d1","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_10_walk.anim","hash":"d05c5292222993e5529ba754b1fdee17","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_10_walk.anim.meta","hash":"16d6e3aaae8b8d532f70e8957899fd12","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_10_wave.anim","hash":"dbc539dce7781a5d575e810cb4518390","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_10_wave.anim.meta","hash":"a91846ef8d8d285b73b8a08c6f7eb9c9","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_11.png","hash":"fb5b91c8e2565f0c0e98614b6f3573e7","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/person_11.png.meta","hash":"1771272068a14e15511d357318951a9d","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_11_shake.anim","hash":"266714bdff749c9dc990ed6098cba2d0","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_11_shake.anim.meta","hash":"e31d3a15211088b3b289b0f09250fd93","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_11_walk.anim","hash":"c52d8d6a4bcebb41e70c838cc684e2fb","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_11_walk.anim.meta","hash":"52a1d412be9c17f80eee92c218b8f1c8","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_11_wave.anim","hash":"ecca0f4613ce2ed3eb5da918d6b5ac9b","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_11_wave.anim.meta","hash":"094a3612ed1f8c215bda7a5ed2af2943","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_12.png","hash":"ececea8177c751996317bbff8ed4172b","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/person_12.png.meta","hash":"a1e52d46c37c5d604e92d9709daf21d6","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_12_shake.anim","hash":"45d687decf2aee24270177f4742a6edd","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_12_shake.anim.meta","hash":"4e4eec794576c2383a46dd7903670504","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_12_walk.anim","hash":"1a5d35163e624877674453598a82d740","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_12_walk.anim.meta","hash":"66d6444c19ca44834b4b0139b91fc930","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_12_wave.anim","hash":"57c9298075dde5fef0d5f87f2546df17","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_12_wave.anim.meta","hash":"dd92e65fc1d11dd6b730ce8713bf8bc7","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_13.png","hash":"561bf59ecf9c8e03269fa92b4a38f2ca","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/person_13.png.meta","hash":"a24aeefef7e2bdb94742aa0cb0c9e6d5","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_13_shake.anim","hash":"f4686b388d4adaefe3a5eb0c63483d5b","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_13_shake.anim.meta","hash":"fa165634a40892a78f743432e2358820","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_13_walk.anim","hash":"bfeb212c3c0c3f49286daeaf6bc0a18b","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_13_walk.anim.meta","hash":"90efc4f696a11940942c887649151fdf","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_13_wave.anim","hash":"8161a08e9477245a687a1c94304812e4","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_13_wave.anim.meta","hash":"e60fb06247882a7c8ffec4c62358c963","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_14.png","hash":"a90d61af4e5047da14a92d445d2bcad9","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/person_14.png.meta","hash":"9630a4c1e3dd96ac6cbb133fb2fed474","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_14_shake.anim","hash":"420a86803909545dbdb658c39ca1bfe3","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_14_shake.anim.meta","hash":"876513a0f1d0d977fa0827baaaf9f072","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_14_shake.controller","hash":"2c7216c1c525b4ef683a027b9aad22fa","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_14_shake.controller.meta","hash":"1a1540abe67355f2bc13ca60fe73dc13","datetime":{"high":0,"low":1485133444}},{"path":"Assets/Resources/Sprites/person_14_stand.controller","hash":"cb6c54edb829611e752d8fcfdead7e14","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_14_stand.controller.meta","hash":"4f77a17cab1efbe1a823b932ca44d8e7","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_14_walk.anim","hash":"87e711383438aa3c3ac040150f22f163","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_14_walk.anim.meta","hash":"780f5fd6b69ee4ff10d356cba3c69d1f","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_14_walk1.controller","hash":"501a0a4bd97759cd89cc7fa5d2973aab","datetime":{"high":0,"low":1485133446}},{"path":"Assets/Resources/Sprites/person_14_walk1.controller.meta","hash":"5d88f6df23b23a34253f4992fbe3defd","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_14_wave.anim","hash":"9b8697a9183f0bf99744daea9763e671","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_14_wave.anim.meta","hash":"1e05a4b69e7bd3a2f132930aefcc40fb","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_15.png","hash":"94fdd3d76215bbca5e86e24c9e16c8db","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/person_15.png.meta","hash":"d9a562bb8cd6a52053c99bce1e499e42","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_15_shake.anim","hash":"17ba48535827e7184aa659b2df9e6a80","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_15_shake.anim.meta","hash":"7f3ae054360e3fe325d8e2e70672f3f5","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_15_shake.controller","hash":"c8cb80f93288b7b134d65f2c635245fd","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_15_shake.controller.meta","hash":"2658d61d19d393bdc271a54e1897aa66","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_15_stand.controller","hash":"35db37c7238137e57b12f8acb0c08a1b","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_15_stand.controller.meta","hash":"55b4973413d212978fd87c5b1c480a9b","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_15_walk.anim","hash":"d66c6aff1cbd1e643a0ecc6dc5ea24d8","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_15_walk.anim.meta","hash":"b7bdc35c0cbcfb1899ff780d0d7f8f75","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_15_walk1.controller","hash":"23a9f4d2debc84b6995f3f3cc668fd8f","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_15_walk1.controller.meta","hash":"345c5dfc1e8527df52a8d186160944f7","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_15_wave.anim","hash":"25db4efcc9a710fc4afba232be8b169c","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_15_wave.anim.meta","hash":"47df6cc252c7f6fce9841ef7a9d79e70","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_16.png","hash":"de2492e12928400fef30e7cff457472a","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/person_16.png.meta","hash":"683d726904ae6edca201bc97a1fe9e56","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_16_shake.anim","hash":"eeb2d371f2e1763ba330b0482848cf0a","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_16_shake.anim.meta","hash":"e0fe18e0c52544664d3cde16ed35538c","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_16_walk.anim","hash":"0ceccd50da31095932ebaefc74228e1a","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_16_walk.anim.meta","hash":"1a41769a310dc5dd3b13e291c98c66b7","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_16_wave.anim","hash":"f43eaae2198ac5863e8dfb2d9f4425b5","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_16_wave.anim.meta","hash":"acc699db06bb74a5315af534077631ec","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_17.png","hash":"456d2a7d26d562e909c09035f3529268","datetime":{"high":0,"low":1485130076}},{"path":"Assets/Resources/Sprites/person_17.png.meta","hash":"41d0382a7e723fcc755d72a97ccbe604","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_17_shake.anim","hash":"6a5614cc8ef0d94d7fdf4c5d4747d3c2","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_17_shake.anim.meta","hash":"66bbab1bda2ccc2f17575b6878eee17b","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_17_walk.anim","hash":"eb96d1eb99a7a77adc1ca444c8375209","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_17_walk.anim.meta","hash":"b66b9d8b13c29a1c5fef619935a85645","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_17_wave.anim","hash":"d0dd5c7b14fcb19d4595a261f5b2c98f","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Resources/Sprites/person_17_wave.anim.meta","hash":"eb1a021e0f3487db1f101b6789be7f6a","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Scenes.meta","hash":"b8eabfdb8aeb471090a1f3e5e3bf9ad9","datetime":{"high":0,"low":1485130077}},{"path":"Assets/Scenes/AnimTest.unity","hash":"7486517e73004fdd0c62e0aa70274145","datetime":{"high":0,"low":1485133445}},{"path":"Assets/Scenes/AnimTest.unity.meta","hash":"07998c13f3c08d773d29726e5758748a","datetime":{"high":0,"low":1485133446}},{"path":"Assets/Scenes/GameOver.unity","hash":"00127e87a773b438da7b0fb5c88568fd","datetime":{"high":0,"low":1485301800}},{"path":"Assets/Scenes/GameOver.unity.meta","hash":"7b633661a0fe2d5f7b4c37992d956ba4","datetime":{"high":0,"low":1485249641}},{"path":"Assets/Scenes/Menu.unity","hash":"7c680c43695129695868296d27f5908d","datetime":{"high":0,"low":1485306629}},{"path":"Assets/Scenes/Menu.unity.meta","hash":"b6c1911dce4a3391651f9983c04a8b6c","datetime":{"high":0,"low":1485250048}},{"path":"Assets/Scenes/Scene0.unity","hash":"6ff967b3d856dd1d18576aaa35a9dae0","datetime":{"high":0,"low":1485290486}},{"path":"Assets/Scenes/Scene0.unity.meta","hash":"d4d7d45a3286ec169bbca62bb39b078f","datetime":{"high":0,"low":1485130077}},{"path":"Assets/Scripts.meta","hash":"ba181f585ecc575d003033757387e126","datetime":{"high":0,"low":1485130077}},{"path":"Assets/Scripts/Achieve.cs","hash":"f30aa351d6db28007ca2afd96d2f96e1","fromPath":"Assets/Achieve.cs","datetime":{"high":0,"low":1485309089}},{"path":"Assets/Scripts/Achieve.cs.meta","hash":"f11c64ad821d23fd5b53a6fd458e788b","fromPath":"Assets/Achieve.cs.meta","datetime":{"high":0,"low":1485175118}},{"path":"Assets/Scripts/AndroidOnly.cs","hash":"73d4ecf4692db9a5bf0a42eee615b31a","datetime":{"high":0,"low":1485306523}},{"path":"Assets/Scripts/AndroidOnly.cs.meta","hash":"bd84ec9cc7a939f6f1c92e01a526057e","datetime":{"high":0,"low":1485304888}},{"path":"Assets/Scripts/Customer.cs","hash":"6bd08d4aa49b349cb065eb76e8287da3","datetime":{"high":0,"low":1485290331}},{"path":"Assets/Scripts/Customer.cs.meta","hash":"7148073b74c04a7977ab3f2cac60fec1","datetime":{"high":0,"low":1485130077}},{"path":"Assets/Scripts/GameController.cs","hash":"8215821aa215078395e02c3e34167d89","datetime":{"high":0,"low":1485282113}},{"path":"Assets/Scripts/GameController.cs.meta","hash":"80f693375b10306d36ffb186b5f582d1","datetime":{"high":0,"low":1485130077}},{"path":"Assets/Scripts/GameOver.cs","hash":"61882ce81e3d48126955707422d6623d","datetime":{"high":0,"low":1485309027}},{"path":"Assets/Scripts/GameOver.cs.meta","hash":"7767f83c52e732ff54164ca7f081d01d","datetime":{"high":0,"low":1485133446}},{"path":"Assets/Scripts/GooglePlayLogin.cs","hash":"527de4f199cdf04fe533f9cb7271cc5a","fromPath":"Assets/GooglePlayLogin.cs","datetime":{"high":0,"low":1485309106}},{"path":"Assets/Scripts/GooglePlayLogin.cs.meta","hash":"8830cf586c24a24531d63c6f5a77c650","fromPath":"Assets/GooglePlayLogin.cs.meta","datetime":{"high":0,"low":1485295020}},{"path":"Assets/Scripts/GooglePlayManager.cs","hash":"c36c2ca6692f226373c5b1d9e87c3ace","fromPath":"Assets/Scripts/GooglePlayServices.cs","datetime":{"high":0,"low":1485309197}},{"path":"Assets/Scripts/GooglePlayManager.cs.meta","hash":"8f12e6418eed8a2479dfcda320604d4d","fromPath":"Assets/Scripts/GooglePlayServices.cs.meta","datetime":{"high":0,"low":1485133446}},{"path":"Assets/Scripts/InputManager.cs","hash":"84060ccea03891b6074dfd04ea3e91f5","fromPath":"Assets/InputManager.cs","datetime":{"high":0,"low":1485292955}},{"path":"Assets/Scripts/InputManager.cs.meta","hash":"8de520d4fed48ba7c058d9981dd5e4bb","fromPath":"Assets/InputManager.cs.meta","datetime":{"high":0,"low":1485133446}},{"path":"Assets/Scripts/NoAndroid.cs","hash":"ae7f106668206467c4674b15eb92757a","datetime":{"high":0,"low":1485305415}},{"path":"Assets/Scripts/NoAndroid.cs.meta","hash":"5e72eb2114086c41d5145acc39941aa0","datetime":{"high":0,"low":1485300420}},{"path":"Assets/Scripts/Player_Actions.cs","hash":"c00cf090389472ba5bbe78a41f0c5c21","datetime":{"high":0,"low":1485284542}},{"path":"Assets/Scripts/Player_Actions.cs.meta","hash":"6a2a026b5d04152d6ff6803a4e17bb40","datetime":{"high":0,"low":1485133446}},{"path":"Assets/Scripts/SpawnTimer.cs","hash":"e11668d276e20eb4d42a77b34e61b56e","datetime":{"high":0,"low":1485130077}},{"path":"Assets/Scripts/SpawnTimer.cs.meta","hash":"3b85cad829389144c50f3188c5825826","datetime":{"high":0,"low":1485130077}},{"path":"Assets/Scripts/Spawner.cs","hash":"ab0af1e037b15fdda6aabb544cfceee7","datetime":{"high":0,"low":1485264856}},{"path":"Assets/Scripts/Spawner.cs.meta","hash":"c77976bd1e8f5998ef0bb06ffb89219b","datetime":{"high":0,"low":1485130077}},{"path":"ProjectSettings/AudioManager.asset","hash":"9e51fac3aaa92a6c91f2e831ead1e873","datetime":{"high":0,"low":1485133446}},{"path":"ProjectSettings/ClusterInputManager.asset","hash":"b1d0f114f4024863e4f8524801ee50dc","datetime":{"high":0,"low":1485133446}},{"path":"ProjectSettings/DynamicsManager.asset","hash":"3da9655119fbb9b91c1f0000db8db1f2","datetime":{"high":0,"low":1485133446}},{"path":"ProjectSettings/EditorBuildSettings.asset","hash":"77a5655fa2685a2303a98c0b958bb204","datetime":{"high":0,"low":1485133446}},{"path":"ProjectSettings/EditorSettings.asset","hash":"b180acd5439ad835dac189ebd954c457","datetime":{"high":0,"low":1485133446}},{"path":"ProjectSettings/GraphicsSettings.asset","hash":"e8d946d4b70b92a6fa4366e138915ecc","datetime":{"high":0,"low":1485309068}},{"path":"ProjectSettings/InputManager.asset","hash":"ca91550943d66f92a950242da0b38982","datetime":{"high":0,"low":1485133446}},{"path":"ProjectSettings/NavMeshAreas.asset","hash":"28db53f957dec18c9ba0383f31c53f6c","datetime":{"high":0,"low":1485133446}},{"path":"ProjectSettings/NetworkManager.asset","hash":"a41c11593b9425a3e844680d2da92529","datetime":{"high":0,"low":1485133446}},{"path":"ProjectSettings/Physics2DSettings.asset","hash":"b5b27c8b9d74f2d16101e8cfce35f149","datetime":{"high":0,"low":1485133446}},{"path":"ProjectSettings/ProjectSettings.asset","hash":"e700e68a123ba71c89a2296c83b96943","datetime":{"high":0,"low":1485309303}},{"path":"ProjectSettings/ProjectVersion.txt","hash":"8f8cbb10301976e45e44f8dc82134de7","datetime":{"high":0,"low":1485309325}},{"path":"ProjectSettings/QualitySettings.asset","hash":"0bae7b17a96bf7861fa9d5a18b0abe0f","datetime":{"high":0,"low":1485133446}},{"path":"ProjectSettings/TagManager.asset","hash":"715a924f089e3f92b50b91e47b6eb371","datetime":{"high":0,"low":1485304184}},{"path":"ProjectSettings/TimeManager.asset","hash":"a4f23c9e1fc6dfd9fc5e206461b5fd7a","datetime":{"high":0,"low":1485133446}},{"path":"ProjectSettings/UnityConnectSettings.asset","hash":"524bf55095f408d404a9b4f8034819e5","datetime":{"high":0,"low":1485133446}}],"revisions":{"currRevisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4","headRevisionID":"80c24d3b8ade38fec64bd5d94af22e440887e3c4"},"updateState":{"currTransactionID":""},"conflicts":[]} \ No newline at end of file diff --git a/Library/CurrentLayout.dwlt b/Library/CurrentLayout.dwlt index c1336f9..c1497ff 100644 Binary files a/Library/CurrentLayout.dwlt and b/Library/CurrentLayout.dwlt differ diff --git a/Library/EditorUserBuildSettings.asset b/Library/EditorUserBuildSettings.asset index 779b027..91346d9 100644 Binary files a/Library/EditorUserBuildSettings.asset and b/Library/EditorUserBuildSettings.asset differ diff --git a/Library/LastBuild.buildreport b/Library/LastBuild.buildreport index 70985e7..8777937 100644 Binary files a/Library/LastBuild.buildreport and b/Library/LastBuild.buildreport differ diff --git a/Library/ScriptAssemblies/Assembly-CSharp-Editor.dll.mdb b/Library/ScriptAssemblies/Assembly-CSharp-Editor.dll.mdb index 33b49c7..eb6c0b8 100644 Binary files a/Library/ScriptAssemblies/Assembly-CSharp-Editor.dll.mdb and b/Library/ScriptAssemblies/Assembly-CSharp-Editor.dll.mdb differ diff --git a/Library/ScriptAssemblies/Assembly-CSharp.dll.mdb b/Library/ScriptAssemblies/Assembly-CSharp.dll.mdb index ce28c28..5d33496 100644 Binary files a/Library/ScriptAssemblies/Assembly-CSharp.dll.mdb and b/Library/ScriptAssemblies/Assembly-CSharp.dll.mdb differ diff --git a/Library/ShaderCache/3/328616a0ceb9f5355f808fab8716adb5.bin b/Library/ShaderCache/3/328616a0ceb9f5355f808fab8716adb5.bin new file mode 100644 index 0000000..1412305 Binary files /dev/null and b/Library/ShaderCache/3/328616a0ceb9f5355f808fab8716adb5.bin differ diff --git a/Library/ShaderCache/4/46c61d847610064d0581ba6e9c39063a.bin b/Library/ShaderCache/4/46c61d847610064d0581ba6e9c39063a.bin new file mode 100644 index 0000000..d59dab7 Binary files /dev/null and b/Library/ShaderCache/4/46c61d847610064d0581ba6e9c39063a.bin differ diff --git a/Library/ShaderCache/4/49f539c5c8ae66aecb5f4f0259e281ba.bin b/Library/ShaderCache/4/49f539c5c8ae66aecb5f4f0259e281ba.bin new file mode 100644 index 0000000..5f8a43b Binary files /dev/null and b/Library/ShaderCache/4/49f539c5c8ae66aecb5f4f0259e281ba.bin differ diff --git a/Library/ShaderCache/7/746efec12f4a71c7e76549a940cd0502.bin b/Library/ShaderCache/7/746efec12f4a71c7e76549a940cd0502.bin new file mode 100644 index 0000000..82abe12 Binary files /dev/null and b/Library/ShaderCache/7/746efec12f4a71c7e76549a940cd0502.bin differ diff --git a/Library/ShaderCache/a/ab937367e2182879315c39eab0f437c4.bin b/Library/ShaderCache/a/ab937367e2182879315c39eab0f437c4.bin new file mode 100644 index 0000000..ebeab3f Binary files /dev/null and b/Library/ShaderCache/a/ab937367e2182879315c39eab0f437c4.bin differ diff --git a/Library/ShaderCache/c/c377b6ae83ca849bd2e9ae145e6a3b3f.bin b/Library/ShaderCache/c/c377b6ae83ca849bd2e9ae145e6a3b3f.bin new file mode 100644 index 0000000..af40a3d Binary files /dev/null and b/Library/ShaderCache/c/c377b6ae83ca849bd2e9ae145e6a3b3f.bin differ diff --git a/Library/UnityAssemblies/UnityEngine.Advertisements.xml b/Library/UnityAssemblies/UnityEngine.Advertisements.xml new file mode 100644 index 0000000..6414449 --- /dev/null +++ b/Library/UnityAssemblies/UnityEngine.Advertisements.xml @@ -0,0 +1,266 @@ + + + + + UnityEngine.Advertisements + + + + Unity Ads. + + + + + Controls the amount of logging output from the advertisement system. + + + + + Controls the amount of logging output from the advertisement system. + + + + + Returns the game identifier for the current platform. + + + + + Returns whether the advertisement system is initialized successfully. + + + + + Returns whether an advertisement is currently being shown. + + + + + Returns if the current platform is supported by the advertisement system. + + + + + Returns whether the testing mode is enabled. + + + + + Returns the current Unity Ads version. + + + + + Player debug message level. + + + + + Prints all debugging messages. + + + + + Prints all error messages. + + + + + Prints all informational messages. + + + + + Prints out no debugging output. + + + + + Prints out warnings. + + + + + Returns the placement state. + + Placement identifier. + + Placement state. + + + + + Returns the placement state. + + Placement identifier. + + Placement state. + + + + + Manually initializes the advertisement system. Normally this is done from editor, and you should only call this method if you are using UnityAds with automatic initialization disabled. + + Your game id. You can see a list of your registered games at the UnityAds admin site. + In test mode, you will see test advertisement. Can be overruled by settings in the admin site for game. + + + + Manually initializes the advertisement system. Normally this is done from editor, and you should only call this method if you are using UnityAds with automatic initialization disabled. + + Your game id. You can see a list of your registered games at the UnityAds admin site. + In test mode, you will see test advertisement. Can be overruled by settings in the admin site for game. + + + + Returns whether an advertisement is ready to be shown. Placements are configured per game in the UnityAds admin site, where you can also set your default placement. + + Optional placement identifier. If not specified, your default placement specified in UnityAds server-side admin settings will be used. + + If the placement is ready. + + + + + Returns whether an advertisement is ready to be shown. Placements are configured per game in the UnityAds admin site, where you can also set your default placement. + + Optional placement identifier. If not specified, your default placement specified in UnityAds server-side admin settings will be used. + + If the placement is ready. + + + + + Sets various metadata for Unity Ads. + + MetaData to be set. + + + + Show an advertisement in your project. + + Optional placement identifier. If not specified, your default placement specified in the admin settings will be used. + Specify e.g. callback handler to be called when video has finished. + + + + Show an advertisement in your project. + + Optional placement identifier. If not specified, your default placement specified in the admin settings will be used. + Specify e.g. callback handler to be called when video has finished. + + + + Show an advertisement in your project. + + Optional placement identifier. If not specified, your default placement specified in the admin settings will be used. + Specify e.g. callback handler to be called when video has finished. + + + + Show an advertisement in your project. + + Optional placement identifier. If not specified, your default placement specified in the admin settings will be used. + Specify e.g. callback handler to be called when video has finished. + + + + Class for sending various metadata to UnityAds. + + + + + Metadata category. + + + + + + + Metadata key. + + Stored metadata. + + + + + Sets new metadata fields. + + Metadata key. + Metadata value, needs to be JSON serializable. + + + + + + + Stored metadata dictionary. + + + + + Various states that Unity Ads placements can be in. + + + + + Placement has been disabled. + + + + + Placement has no advertisements to show. + + + + + Placement is not available. + + + + + Placement is ready to be shown an advertisement from. + + + + + Placement is waiting to be ready. + + + + + Collection of options that can be passed to Advertisements.Show to modify advertisement behaviour. + + + + + Add a string to specify an identifier for a specific user in the game. + + + + + Callback to recieve the result of the advertisement. + + + + + ShowResult is passed to ShowOptions.resultCallback after the advertisement has completed. + + + + + Indicates that the advertisement failed to complete. + + + + + Indicates that the advertisement completed successfully. + + + + + Indicates that the advertisement was skipped. + + + + diff --git a/Library/UnityAssemblies/UnityEngine.Purchasing.xml b/Library/UnityAssemblies/UnityEngine.Purchasing.xml new file mode 100644 index 0000000..56de9db --- /dev/null +++ b/Library/UnityAssemblies/UnityEngine.Purchasing.xml @@ -0,0 +1,805 @@ + + + + + UnityEngine.Purchasing + + + + Builds configurations for Unity IAP. + + + + + The products built so far. + + + + + If set Unity IAP will retrieve your product catalog from Unity cloud services, allowing you to change your catalog dynamically without updating your App. + + + + + Add a product with a Unity IAP ID, type and optional set of store-specific IDs. + + The store independent ID. + The product type. + An optional set of store-specific identifiers, for when your product has different IDs on different stores. + + The referenced instance. Suitable for chaining. + + + + + Add a product with a Unity IAP ID, type and optional set of store-specific IDs. + + The store independent ID. + The product type. + An optional set of store-specific identifiers, for when your product has different IDs on different stores. + + The referenced instance. Suitable for chaining. + + + + + Add a collection of ProductDefinitions. + + Products to add. + + The referenced instance. Suitable for chaining. + + + + + Access store-specific Configuration settings. + + + An IStoreConfiguration known to the. + + + + + Get an instance of ConfigurationBuilder. + + The IAP module. + Any additional modules. + + New instance. + + + + + Helper base class for IAP Modules. + + + + + Bind a store-specific configuration type to a concrete instance. + + The instance to be bound. + + + + Bind a store-specific extension type to a concrete instance. + + The instance to be bound. + + + + Called when your module is loaded by Unity. + + Used to register store implementations, extensions and configuration. + + + + Called when your module is loaded by Unity. + + Used to register store implementations, extensions and configuration. + + + + Register a store implementation along with its name. + + The store's name, eg 'AppleAppStore'. + The store implementation, or null if running on an unsupported platform. + + + + Extension point for purchasing plugins. + + + + + Called when Unity IAP has finished processing a purchase. + + The transaction ID for the purchase. + The product that was purchased. + + + + Called when Unity IAP is initializing. + + Callback for stores to interact with Unity IAP. + + + + Called when a user wants to buy the specified Product. + + Any additional developer-supplied data. + The product to purchase. + + + + Fetch product metadata and purchase state for the set of ProductDefinitions. + + The products to retrieve descriptions for. + + + + Configures Unity IAP with one or more store implementations. + + + + + Informs Unity IAP that extended Configuration is available. + + The IStoreConfiguration instance. + + + + Informs Unity IAP that a store extension is available. + + The extension instance. + + + + Informs Unity IAP that a store implementation exists, specifying its name. + + The store's name, eg 'AppleAppStore'. + The store instance. + + + + A Unity IAP configuration of one or more stores. + + + + + Called when Unity IAP is loading your module. Register stores and associated extensions using the IPurchasingBinder. + + Used to register store implementations, extensions and configuration. + + + + The public interface of an underlying store system (e.g. Google Play or Apple App Store) typically exposed to Unity IAP extending its in-app purchasing platform support. + + + + + Called by Unity IAP when a transaction has been recorded. + + + + + + + Initialize the store. + + Used by stores to interact with Unity Purchasing. + + + + Handle a purchase request from a user. + + Any additional developer-supplied data. + The product to purchase. + + + + Fetch the latest product metadata, including purchase receipts, asynchronously with results returned via IStoreCallback. + + The products to retrieve. + + + + Callback used by store implementations to interact with Unity IAP. + + + + + Gets the item with local identifier. + + + + + Toggle use of Unity IAP's transaction log. + + + + + Complete setup by providing a list of available products, complete with metadata and any associated purchase receipts and transaction IDs. + + Available products, their metadata and purchase state. + + + + Call to indicate to Unity IAP that a purchase failed. + + Details of the purchase failure. + + + + Inform Unity IAP of a purchase. + + Product that was purchased. + Purchase receipt. + Transaction ID. + + + + Indicate that IAP is unavailable for a specific reason, such as IAP being disabled in device settings. + + The reason purchasing is unavailable. + + + + Common interface for all extended configuration of stores. + + + + + A common format which store subsystems use to describe available products. + + + + + Localized metadata retrieved from the Store. + + + + + A purchase receipt, if owned. Otherwise null. + + + + + The store-specific ID. + + + + + The purchase transaction ID, if owned. Otherwise null. + + + + + The ProductType. + + + + + Create a ProductDescription. + + The store-specific ID. + Localized metadata retrieved from the Store. + A purchase receipt, if owned. Otherwise null. + The purchase transaction ID, if owned. Otherwise null. + The product type (optional for products queried by Unity IAP). + + + + Create a ProductDescription. + + The store-specific ID. + Localized metadata retrieved from the Store. + A purchase receipt, if owned. Otherwise null. + The purchase transaction ID, if owned. Otherwise null. + The product type (optional for products queried by Unity IAP). + + + + Create a ProductDescription. + + The store-specific ID. + Localized metadata retrieved from the Store. + A purchase receipt, if owned. Otherwise null. + The purchase transaction ID, if owned. Otherwise null. + The product type (optional for products queried by Unity IAP). + + + + Represents a failed purchase as described by a purchasing service. + + + + + More information about the purchase failure from Unity IAP or the platform store, if available. + + + + + The store-specific product ID which failed to purchase. + + + + + The reason for the purchase failure. + + + + + Creates a PurchaseFailureDescription. + + The store-specific product ID which failed to purchase. + The reason for the purchase failure. + More information about the failure from Unity IAP or the platform store, if available. + + + + Maps store-specific product identifiers to one or more store names. + + + + + Add a product ID which is supported by a list of store platform names. + + Platform specific Product ID. + Array of platform names using this Product ID. + + + + Add a product ID which is supported by a list of store platform names. + + Platform specific Product ID. + Array of platform names using this Product ID. + + + + Create a new mapping of store identifiers to store names. + + + + + Enumerator for IDs. + + + The first string of the pair is the store-specific product ID. The second is one of the mapped store names. + + + + + Provides access to store-specific extended functionality. + + + + + Get the store-specific extension of specified type. + + + The Extension type. + + + + + The various reasons Unity IAP initialization can fail. + + + + + The store reported the app as unknown. + + + + + No products available for purchase. + + + + + In-App Purchases disabled in device settings. + + + + + Used by Applications to control Unity IAP. + + + + + Store products including metadata and purchase receipts. + + + + + Confirm a pending purchase. + + The product to confirm the conclusion of its purchase transaction. + + + + This method may be used to fetch additional products for purchasing, or to refresh metadata on existing products. + + The additional products to fetch or existing products to refresh. + Callback invoked when products are retrieved successfully. + Callback invoked when the fetch fails for unrecoverable reasons. + + + + Initiate a purchase for a specific product. + + The product to purchase. + Any additional developer information to associate with the purchase. + The identifier for the product to purchase. This may differ from the store-specific product ID. + + + + Initiate a purchase for a specific product. + + The product to purchase. + Any additional developer information to associate with the purchase. + The identifier for the product to purchase. This may differ from the store-specific product ID. + + + + Initiate a purchase for a specific product. + + The product to purchase. + Any additional developer information to associate with the purchase. + The identifier for the product to purchase. This may differ from the store-specific product ID. + + + + Initiate a purchase for a specific product. + + The product to purchase. + Any additional developer information to associate with the purchase. + The identifier for the product to purchase. This may differ from the store-specific product ID. + + + + Common interface for all purchasing extensions. + + + + + Notifies your Application of purchasing related events. + + + + + Called when Unity IAP has retrieved all product metadata and is ready to make purchases. + + Access cross-platform Unity IAP functionality. + Access store-specific Unity IAP functionality. + + + + Note that Unity IAP will not call this method if the device is offline, but continually attempt initialization until online. + + The reason IAP cannot initialize. + + + + Called when a purchase fails. + + The product the purchase relates to. + The reason for the failure. + + + + Called when a purchase succeeds. + + The purchase details. + + Applications should only return PurchaseProcessingResult.Complete when a permanent record of the purchase has been made. If PurchaseProcessingResult.Pending is returned Unity IAP will continue to notify the app of the purchase on startup, also via ProcessPurchase. + + + + + Represents a product that may be purchased as an In-App Purchase. + + + + + Determine if this product is available to purchase according to the store subsystem. + + + + + Fundamental immutable product properties. + + + + + Owned Non Consumables and Subscriptions should always have receipts. + + + + + Localized metadata provided by the store system. + + + + + The purchase receipt for this product, if owned. Otherwise null. + + + + + A unique identifier for this product's transaction, if available. Otherwise null. + + + + + Equality defined for use in collections. + + + + + + GetHashCode defined for use in collections. + + + Hashcode. + + + + + Provides helper methods to retrieve products by ID. + + + + + All products. + + + + + The set of products. + + + + + Get the product with store-independent Unity IAP ID. + + The store-independent ID. + + A product reference, if found. Otherwise null. + + + + + Get the product with the store-specific ID. + + Get the product with store-specific ID. + + A product reference, if found. Otherwise null. + + + + + Minimal product definition, used by apps declaring products for sale. + + + + + Unity IAP product ID. Potentially independent of store IDs. + + + + + The ID this product has on a store. + + + + + The product type. + + + + + Create a ProductDefinition with different Store-independent ID and Store-specific ID. Use this when you need to two IDs to be different. + + Store-independent ID. + Store-specific ID. + Product type. + + + + Create a ProductDefinition where the Store-independent ID is the same as the store-specific ID. Use this when you don't need the two IDs to be different. + + Store-independent ID and store-specific ID. + Product type. + + + + Compares id properties. Requires obj be a ProductDefinition. + + A ProductDefinition instance. + + true if this is equal to obj per the equality rules, false otherwise. + + + + + Gets the application-domain-specific hash code of id. + + + Hash code of id. + + + + + Localized information about a product, retrieved from a store. + + + + + Product currency in ISO 4217 format; e.g. GBP or USD. + + + + + Localized product description as retrieved from the store subsystem; e.g. Apple or Google. + + + + + Decimal product price denominated in the currency indicated by isoCurrencySymbol. + + + + + Localized price string. + + + + + Localized product title as retrieved from the store subsystem; e.g. Apple or Google. + + + + + Create a ProductMetadata. + + Formatted product price with currency symbols suitable for display to the user. + Localized product title. + Localized product description. + ISO 4217 currency code. + Numeric localized price. + + + + Create a ProductMetadata. + + Formatted product price with currency symbols suitable for display to the user. + Localized product title. + Localized product description. + ISO 4217 currency code. + Numeric localized price. + + + + Categories of purchasable product. + + + + + Can be purchased repeatedly. Suitable for consumable products such as virtual currencies. + + + + + Can only be purchased once. Suitable for one-off purchases such as extra levels. + + + + + Can be purchased repeatedly and restored. Durable but with a finite duration of validity. + + + + + A purchase that succeeded, including the purchased product along with its purchase receipt. + + + + + The Product that was purchased. + + + + + A purchase failed event containing diagnostic data. + + + + + More information about the purchase failure, if available. Otherwise null. + + + + + The product that failed to purchase. + + + + + The reason for the purchase failure. + + + + + The various reasons a purchase can fail. + + + + + A purchase was already in progress when a new purchase was requested. + + + + + There was a problem with the payment. + + + + + The product is not available to purchase on the store. + + + + + The system purchasing feature is unavailable. + + + + + Signature validation of the purchase's receipt failed. + + + + + A catch-all for unrecognized purchase problems. + + + + + The user opted to cancel rather than proceed with the purchase. + + + + + Informs Unity IAP as to whether an Application has finished processing a purchase. + + + + + The application has finished processing the purchase. + + + + + The application has not finished processing the purchase, e.g. it is pushing it to a server asynchronously. + + + + + Entry point for Applications using Unity IAP. + + + + + Clears Unity IAP's internal transaction log. + + + + + Initialize Unity IAP with the specified listener and configuration. + + Your Application's listener that processes purchasing related events. + Unity IAP configuration. + + + diff --git a/Library/UnityAssemblies/version.txt b/Library/UnityAssemblies/version.txt index 471e134..1a3defd 100644 --- a/Library/UnityAssemblies/version.txt +++ b/Library/UnityAssemblies/version.txt @@ -1,11 +1,13 @@ 5.5.0f3:2.8.0.0 -Android +StandaloneWindows64 D:/Program Files/Unity/Editor/Data/Managed/UnityEngine.dll +D:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/Advertisements/UnityEngine.Advertisements.dll D:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/GUISystem/UnityEngine.UI.dll D:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/Networking/UnityEngine.Networking.dll D:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/PlaymodeTestsRunner/UnityEngine.PlaymodeTestsRunner.dll D:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/UnityAnalytics/UnityEngine.Analytics.dll D:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/UnityHoloLens/RuntimeEditor/UnityEngine.HoloLens.dll +D:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/UnityPurchasing/UnityEngine.Purchasing.dll D:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/UnityVR/RuntimeEditor/UnityEngine.VR.dll D:/Program Files/Unity/Editor/Data/Managed/UnityEditor.dll D:/Program Files/Unity/Editor/Data/UnityExtensions/Unity/Advertisements/Editor/UnityEditor.Advertisements.dll diff --git a/Library/assetDatabase3 b/Library/assetDatabase3 index 46becc7..53c7c4f 100644 Binary files a/Library/assetDatabase3 and b/Library/assetDatabase3 differ diff --git a/Library/expandedItems b/Library/expandedItems index 06483b0..de8503b 100644 Binary files a/Library/expandedItems and b/Library/expandedItems differ diff --git a/Library/metadata/00/00000000000000004000000000000000 b/Library/metadata/00/00000000000000004000000000000000 index 2e92b1f..f8b6dc6 100644 Binary files a/Library/metadata/00/00000000000000004000000000000000 and b/Library/metadata/00/00000000000000004000000000000000 differ diff --git a/Library/metadata/00/00000000000000006100000000000000 b/Library/metadata/00/00000000000000006100000000000000 index f42939e..0b46b58 100644 Binary files a/Library/metadata/00/00000000000000006100000000000000 and b/Library/metadata/00/00000000000000006100000000000000 differ diff --git a/Library/metadata/04/042ea5c5f80b9af428318575e1297317 b/Library/metadata/04/042ea5c5f80b9af428318575e1297317 index d0f1164..0150d25 100644 Binary files a/Library/metadata/04/042ea5c5f80b9af428318575e1297317 and b/Library/metadata/04/042ea5c5f80b9af428318575e1297317 differ diff --git a/Library/metadata/12/120522ac28bf6ae4ab0c59307c491b45 b/Library/metadata/12/120522ac28bf6ae4ab0c59307c491b45 index 5ed827b..dfe5406 100644 Binary files a/Library/metadata/12/120522ac28bf6ae4ab0c59307c491b45 and b/Library/metadata/12/120522ac28bf6ae4ab0c59307c491b45 differ diff --git a/Library/metadata/12/120522ac28bf6ae4ab0c59307c491b45.info b/Library/metadata/12/120522ac28bf6ae4ab0c59307c491b45.info index e8909c1..4829583 100644 Binary files a/Library/metadata/12/120522ac28bf6ae4ab0c59307c491b45.info and b/Library/metadata/12/120522ac28bf6ae4ab0c59307c491b45.info differ diff --git a/Library/metadata/14/14268c84f23ffcc41ade256462a864a7 b/Library/metadata/14/14268c84f23ffcc41ade256462a864a7 index c92ccc8..f287f9c 100644 Binary files a/Library/metadata/14/14268c84f23ffcc41ade256462a864a7 and b/Library/metadata/14/14268c84f23ffcc41ade256462a864a7 differ diff --git a/Library/metadata/14/14268c84f23ffcc41ade256462a864a7.info b/Library/metadata/14/14268c84f23ffcc41ade256462a864a7.info index 54b5fff..494db83 100644 Binary files a/Library/metadata/14/14268c84f23ffcc41ade256462a864a7.info and b/Library/metadata/14/14268c84f23ffcc41ade256462a864a7.info differ diff --git a/Library/metadata/15/151bc2e27c6948c4299cc304425740c3 b/Library/metadata/15/151bc2e27c6948c4299cc304425740c3 index ff8114a..e687b98 100644 Binary files a/Library/metadata/15/151bc2e27c6948c4299cc304425740c3 and b/Library/metadata/15/151bc2e27c6948c4299cc304425740c3 differ diff --git a/Library/metadata/15/151bc2e27c6948c4299cc304425740c3.info b/Library/metadata/15/151bc2e27c6948c4299cc304425740c3.info index cfc60ac..6493b89 100644 Binary files a/Library/metadata/15/151bc2e27c6948c4299cc304425740c3.info and b/Library/metadata/15/151bc2e27c6948c4299cc304425740c3.info differ diff --git a/Library/metadata/1e/1e9776f4796191c49b2a5224f54f257c b/Library/metadata/1e/1e9776f4796191c49b2a5224f54f257c index 80e7bb0..0481443 100644 Binary files a/Library/metadata/1e/1e9776f4796191c49b2a5224f54f257c and b/Library/metadata/1e/1e9776f4796191c49b2a5224f54f257c differ diff --git a/Library/metadata/1e/1e9776f4796191c49b2a5224f54f257c.info b/Library/metadata/1e/1e9776f4796191c49b2a5224f54f257c.info index 155fec2..c9cc5d9 100644 Binary files a/Library/metadata/1e/1e9776f4796191c49b2a5224f54f257c.info and b/Library/metadata/1e/1e9776f4796191c49b2a5224f54f257c.info differ diff --git a/Library/metadata/1f/1f99664e8f829184e98bf053e5ef97c4 b/Library/metadata/1f/1f99664e8f829184e98bf053e5ef97c4 index d8feaf1..3cfc2d5 100644 Binary files a/Library/metadata/1f/1f99664e8f829184e98bf053e5ef97c4 and b/Library/metadata/1f/1f99664e8f829184e98bf053e5ef97c4 differ diff --git a/Library/metadata/1f/1f99664e8f829184e98bf053e5ef97c4.info b/Library/metadata/1f/1f99664e8f829184e98bf053e5ef97c4.info index 836a444..8f12994 100644 Binary files a/Library/metadata/1f/1f99664e8f829184e98bf053e5ef97c4.info and b/Library/metadata/1f/1f99664e8f829184e98bf053e5ef97c4.info differ diff --git a/Library/metadata/20/202f5234188fff240abe1925b4e77d58 b/Library/metadata/20/202f5234188fff240abe1925b4e77d58 index 61733d2..3b4b9a0 100644 Binary files a/Library/metadata/20/202f5234188fff240abe1925b4e77d58 and b/Library/metadata/20/202f5234188fff240abe1925b4e77d58 differ diff --git a/Library/metadata/20/202f5234188fff240abe1925b4e77d58.info b/Library/metadata/20/202f5234188fff240abe1925b4e77d58.info index 0eba1d1..6a12444 100644 Binary files a/Library/metadata/20/202f5234188fff240abe1925b4e77d58.info and b/Library/metadata/20/202f5234188fff240abe1925b4e77d58.info differ diff --git a/Library/metadata/22/2250da297a24dd64c91d02b55c6459b0 b/Library/metadata/22/2250da297a24dd64c91d02b55c6459b0 index fa1867a..34c95e6 100644 Binary files a/Library/metadata/22/2250da297a24dd64c91d02b55c6459b0 and b/Library/metadata/22/2250da297a24dd64c91d02b55c6459b0 differ diff --git a/Library/metadata/22/2250da297a24dd64c91d02b55c6459b0.info b/Library/metadata/22/2250da297a24dd64c91d02b55c6459b0.info index bc0d92f..ae058f7 100644 Binary files a/Library/metadata/22/2250da297a24dd64c91d02b55c6459b0.info and b/Library/metadata/22/2250da297a24dd64c91d02b55c6459b0.info differ diff --git a/Library/metadata/22/22dd8fb4e9e966849ac1766433111ac4 b/Library/metadata/22/22dd8fb4e9e966849ac1766433111ac4 index ddcd83d..2776503 100644 Binary files a/Library/metadata/22/22dd8fb4e9e966849ac1766433111ac4 and b/Library/metadata/22/22dd8fb4e9e966849ac1766433111ac4 differ diff --git a/Library/metadata/25/25d73dbc1fabfbd4cb0c86619d3be67a b/Library/metadata/25/25d73dbc1fabfbd4cb0c86619d3be67a index fafbbfd..56a1b88 100644 Binary files a/Library/metadata/25/25d73dbc1fabfbd4cb0c86619d3be67a and b/Library/metadata/25/25d73dbc1fabfbd4cb0c86619d3be67a differ diff --git a/Library/metadata/25/25d73dbc1fabfbd4cb0c86619d3be67a.info b/Library/metadata/25/25d73dbc1fabfbd4cb0c86619d3be67a.info index 5648a3d..c2bfe7d 100644 Binary files a/Library/metadata/25/25d73dbc1fabfbd4cb0c86619d3be67a.info and b/Library/metadata/25/25d73dbc1fabfbd4cb0c86619d3be67a.info differ diff --git a/Library/metadata/2d/2d152217de8f40b40a88f82f2b6707cb b/Library/metadata/2d/2d152217de8f40b40a88f82f2b6707cb index 5a3af46..1c8458b 100644 Binary files a/Library/metadata/2d/2d152217de8f40b40a88f82f2b6707cb and b/Library/metadata/2d/2d152217de8f40b40a88f82f2b6707cb differ diff --git a/Library/metadata/2d/2d152217de8f40b40a88f82f2b6707cb.info b/Library/metadata/2d/2d152217de8f40b40a88f82f2b6707cb.info index 6157a77..e64c7d1 100644 Binary files a/Library/metadata/2d/2d152217de8f40b40a88f82f2b6707cb.info and b/Library/metadata/2d/2d152217de8f40b40a88f82f2b6707cb.info differ diff --git a/Library/metadata/43/4360d105f7a7dbd469f24f7c57678acb b/Library/metadata/43/4360d105f7a7dbd469f24f7c57678acb index 0249bf4..ce6b432 100644 Binary files a/Library/metadata/43/4360d105f7a7dbd469f24f7c57678acb and b/Library/metadata/43/4360d105f7a7dbd469f24f7c57678acb differ diff --git a/Library/metadata/43/4360d105f7a7dbd469f24f7c57678acb.info b/Library/metadata/43/4360d105f7a7dbd469f24f7c57678acb.info index 71ec134..b1f9ef7 100644 Binary files a/Library/metadata/43/4360d105f7a7dbd469f24f7c57678acb.info and b/Library/metadata/43/4360d105f7a7dbd469f24f7c57678acb.info differ diff --git a/Library/metadata/46/46a27bfcd7b12c8459dbc06e74102140 b/Library/metadata/46/46a27bfcd7b12c8459dbc06e74102140 index 98e6bf0..34d753a 100644 Binary files a/Library/metadata/46/46a27bfcd7b12c8459dbc06e74102140 and b/Library/metadata/46/46a27bfcd7b12c8459dbc06e74102140 differ diff --git a/Library/metadata/46/46a27bfcd7b12c8459dbc06e74102140.info b/Library/metadata/46/46a27bfcd7b12c8459dbc06e74102140.info index 3d05442..6f53844 100644 Binary files a/Library/metadata/46/46a27bfcd7b12c8459dbc06e74102140.info and b/Library/metadata/46/46a27bfcd7b12c8459dbc06e74102140.info differ diff --git a/Library/metadata/5d/5d36bab69d0f53e4695db9b06901a1b3 b/Library/metadata/5d/5d36bab69d0f53e4695db9b06901a1b3 index 43b6710..3b9fb2e 100644 Binary files a/Library/metadata/5d/5d36bab69d0f53e4695db9b06901a1b3 and b/Library/metadata/5d/5d36bab69d0f53e4695db9b06901a1b3 differ diff --git a/Library/metadata/5d/5d36bab69d0f53e4695db9b06901a1b3.info b/Library/metadata/5d/5d36bab69d0f53e4695db9b06901a1b3.info index 7179645..fbf1d4a 100644 Binary files a/Library/metadata/5d/5d36bab69d0f53e4695db9b06901a1b3.info and b/Library/metadata/5d/5d36bab69d0f53e4695db9b06901a1b3.info differ diff --git a/Library/metadata/63/63e67357a316cc446a70f6fd0253eb6c b/Library/metadata/63/63e67357a316cc446a70f6fd0253eb6c index d716afd..a7c6cfa 100644 Binary files a/Library/metadata/63/63e67357a316cc446a70f6fd0253eb6c and b/Library/metadata/63/63e67357a316cc446a70f6fd0253eb6c differ diff --git a/Library/metadata/63/63e67357a316cc446a70f6fd0253eb6c.info b/Library/metadata/63/63e67357a316cc446a70f6fd0253eb6c.info index fb0463e..a46e362 100644 Binary files a/Library/metadata/63/63e67357a316cc446a70f6fd0253eb6c.info and b/Library/metadata/63/63e67357a316cc446a70f6fd0253eb6c.info differ diff --git a/Library/metadata/68/6852c6e3df1e24d49a7936e00c27a429 b/Library/metadata/68/6852c6e3df1e24d49a7936e00c27a429 index 82817b0..97e8cc8 100644 Binary files a/Library/metadata/68/6852c6e3df1e24d49a7936e00c27a429 and b/Library/metadata/68/6852c6e3df1e24d49a7936e00c27a429 differ diff --git a/Library/metadata/68/6852c6e3df1e24d49a7936e00c27a429.info b/Library/metadata/68/6852c6e3df1e24d49a7936e00c27a429.info index 461eef3..3664800 100644 Binary files a/Library/metadata/68/6852c6e3df1e24d49a7936e00c27a429.info and b/Library/metadata/68/6852c6e3df1e24d49a7936e00c27a429.info differ diff --git a/Library/metadata/6b/6b0e5ca3b1f852f4e980164290ff173b b/Library/metadata/6b/6b0e5ca3b1f852f4e980164290ff173b index c398dbd..9e4e79b 100644 Binary files a/Library/metadata/6b/6b0e5ca3b1f852f4e980164290ff173b and b/Library/metadata/6b/6b0e5ca3b1f852f4e980164290ff173b differ diff --git a/Library/metadata/73/737732af38d2b6342aeab89a4b6cfd95 b/Library/metadata/73/737732af38d2b6342aeab89a4b6cfd95 index ed0023c..3432a85 100644 Binary files a/Library/metadata/73/737732af38d2b6342aeab89a4b6cfd95 and b/Library/metadata/73/737732af38d2b6342aeab89a4b6cfd95 differ diff --git a/Library/metadata/73/737732af38d2b6342aeab89a4b6cfd95.info b/Library/metadata/73/737732af38d2b6342aeab89a4b6cfd95.info index d1ef99b..584fe9c 100644 Binary files a/Library/metadata/73/737732af38d2b6342aeab89a4b6cfd95.info and b/Library/metadata/73/737732af38d2b6342aeab89a4b6cfd95.info differ diff --git a/Library/metadata/7b/7bfa64fbcf821b146b913a76cdac4aba b/Library/metadata/7b/7bfa64fbcf821b146b913a76cdac4aba index c4b00b4..41ad4ba 100644 Binary files a/Library/metadata/7b/7bfa64fbcf821b146b913a76cdac4aba and b/Library/metadata/7b/7bfa64fbcf821b146b913a76cdac4aba differ diff --git a/Library/metadata/7b/7bfa64fbcf821b146b913a76cdac4aba.info b/Library/metadata/7b/7bfa64fbcf821b146b913a76cdac4aba.info index d547b0b..3751730 100644 Binary files a/Library/metadata/7b/7bfa64fbcf821b146b913a76cdac4aba.info and b/Library/metadata/7b/7bfa64fbcf821b146b913a76cdac4aba.info differ diff --git a/Library/metadata/9f/9fcadb8b647ad9e4d9afa5c3286d7a9f b/Library/metadata/9f/9fcadb8b647ad9e4d9afa5c3286d7a9f index 765530a..4364465 100644 Binary files a/Library/metadata/9f/9fcadb8b647ad9e4d9afa5c3286d7a9f and b/Library/metadata/9f/9fcadb8b647ad9e4d9afa5c3286d7a9f differ diff --git a/Library/metadata/9f/9fcadb8b647ad9e4d9afa5c3286d7a9f.info b/Library/metadata/9f/9fcadb8b647ad9e4d9afa5c3286d7a9f.info index 19c3ac5..01c9754 100644 Binary files a/Library/metadata/9f/9fcadb8b647ad9e4d9afa5c3286d7a9f.info and b/Library/metadata/9f/9fcadb8b647ad9e4d9afa5c3286d7a9f.info differ diff --git a/Library/metadata/aa/aa4f72166c3f94945b32a4df1cc4fd34 b/Library/metadata/aa/aa4f72166c3f94945b32a4df1cc4fd34 index ff268f3..90c5e88 100644 Binary files a/Library/metadata/aa/aa4f72166c3f94945b32a4df1cc4fd34 and b/Library/metadata/aa/aa4f72166c3f94945b32a4df1cc4fd34 differ diff --git a/Library/metadata/aa/aa4f72166c3f94945b32a4df1cc4fd34.info b/Library/metadata/aa/aa4f72166c3f94945b32a4df1cc4fd34.info index be9b5f3..8f049e8 100644 Binary files a/Library/metadata/aa/aa4f72166c3f94945b32a4df1cc4fd34.info and b/Library/metadata/aa/aa4f72166c3f94945b32a4df1cc4fd34.info differ diff --git a/Library/metadata/bb/bbcfc4964995f9f46ba475300af4b862 b/Library/metadata/bb/bbcfc4964995f9f46ba475300af4b862 index 34afa6d..4fd1ac1 100644 Binary files a/Library/metadata/bb/bbcfc4964995f9f46ba475300af4b862 and b/Library/metadata/bb/bbcfc4964995f9f46ba475300af4b862 differ diff --git a/Library/metadata/bb/bbcfc4964995f9f46ba475300af4b862.info b/Library/metadata/bb/bbcfc4964995f9f46ba475300af4b862.info index ab9eb75..70f56ca 100644 Binary files a/Library/metadata/bb/bbcfc4964995f9f46ba475300af4b862.info and b/Library/metadata/bb/bbcfc4964995f9f46ba475300af4b862.info differ diff --git a/Library/metadata/c3/c3aca28a0e7d202438d11b6317a8e6bb b/Library/metadata/c3/c3aca28a0e7d202438d11b6317a8e6bb index 44f7cb0..b680765 100644 Binary files a/Library/metadata/c3/c3aca28a0e7d202438d11b6317a8e6bb and b/Library/metadata/c3/c3aca28a0e7d202438d11b6317a8e6bb differ diff --git a/Library/metadata/c3/c3aca28a0e7d202438d11b6317a8e6bb.info b/Library/metadata/c3/c3aca28a0e7d202438d11b6317a8e6bb.info index 075fcf7..325ecac 100644 Binary files a/Library/metadata/c3/c3aca28a0e7d202438d11b6317a8e6bb.info and b/Library/metadata/c3/c3aca28a0e7d202438d11b6317a8e6bb.info differ diff --git a/Library/metadata/c7/c7b693652044703499a1b89fe343190d b/Library/metadata/c7/c7b693652044703499a1b89fe343190d index 7edd19c..d2622a1 100644 Binary files a/Library/metadata/c7/c7b693652044703499a1b89fe343190d and b/Library/metadata/c7/c7b693652044703499a1b89fe343190d differ diff --git a/Library/metadata/c7/c7b693652044703499a1b89fe343190d.info b/Library/metadata/c7/c7b693652044703499a1b89fe343190d.info index 148346b..728e246 100644 Binary files a/Library/metadata/c7/c7b693652044703499a1b89fe343190d.info and b/Library/metadata/c7/c7b693652044703499a1b89fe343190d.info differ diff --git a/Library/metadata/d0/d08ee7e53deb36842883406e6cb6d97e b/Library/metadata/d0/d08ee7e53deb36842883406e6cb6d97e index 7570830..d217057 100644 Binary files a/Library/metadata/d0/d08ee7e53deb36842883406e6cb6d97e and b/Library/metadata/d0/d08ee7e53deb36842883406e6cb6d97e differ diff --git a/Library/metadata/d0/d08ee7e53deb36842883406e6cb6d97e.info b/Library/metadata/d0/d08ee7e53deb36842883406e6cb6d97e.info index aa795c7..52f869d 100644 Binary files a/Library/metadata/d0/d08ee7e53deb36842883406e6cb6d97e.info and b/Library/metadata/d0/d08ee7e53deb36842883406e6cb6d97e.info differ diff --git a/Library/metadata/d8/d8fbd070548e7634783d1741a61a4077 b/Library/metadata/d8/d8fbd070548e7634783d1741a61a4077 index 8033937..ed26ec8 100644 Binary files a/Library/metadata/d8/d8fbd070548e7634783d1741a61a4077 and b/Library/metadata/d8/d8fbd070548e7634783d1741a61a4077 differ diff --git a/Library/metadata/d8/d8fbd070548e7634783d1741a61a4077.info b/Library/metadata/d8/d8fbd070548e7634783d1741a61a4077.info index 4eb76c8..07b560b 100644 Binary files a/Library/metadata/d8/d8fbd070548e7634783d1741a61a4077.info and b/Library/metadata/d8/d8fbd070548e7634783d1741a61a4077.info differ diff --git a/Library/metadata/e1/e114c75cb82081e4b9f23a086e577cbb b/Library/metadata/e1/e114c75cb82081e4b9f23a086e577cbb index fb91093..cd10927 100644 Binary files a/Library/metadata/e1/e114c75cb82081e4b9f23a086e577cbb and b/Library/metadata/e1/e114c75cb82081e4b9f23a086e577cbb differ diff --git a/Library/metadata/f7/f7d1cba49a7f77e42931772b49e81385 b/Library/metadata/f7/f7d1cba49a7f77e42931772b49e81385 index 156d0d6..e3047a4 100644 Binary files a/Library/metadata/f7/f7d1cba49a7f77e42931772b49e81385 and b/Library/metadata/f7/f7d1cba49a7f77e42931772b49e81385 differ diff --git a/Library/metadata/f7/f7d1cba49a7f77e42931772b49e81385.info b/Library/metadata/f7/f7d1cba49a7f77e42931772b49e81385.info index 10b8c2a..032f528 100644 Binary files a/Library/metadata/f7/f7d1cba49a7f77e42931772b49e81385.info and b/Library/metadata/f7/f7d1cba49a7f77e42931772b49e81385.info differ diff --git a/Library/metadata/fa/fa23c8f4f6f131947a4906b61378e62d b/Library/metadata/fa/fa23c8f4f6f131947a4906b61378e62d index 56d5569..9bf858f 100644 Binary files a/Library/metadata/fa/fa23c8f4f6f131947a4906b61378e62d and b/Library/metadata/fa/fa23c8f4f6f131947a4906b61378e62d differ diff --git a/Library/metadata/fa/fa23c8f4f6f131947a4906b61378e62d.info b/Library/metadata/fa/fa23c8f4f6f131947a4906b61378e62d.info index f4076ff..0929d81 100644 Binary files a/Library/metadata/fa/fa23c8f4f6f131947a4906b61378e62d.info and b/Library/metadata/fa/fa23c8f4f6f131947a4906b61378e62d.info differ diff --git a/ProjectSettings/GraphicsSettings.asset b/ProjectSettings/GraphicsSettings.asset index 4eed15a..0502153 100644 --- a/ProjectSettings/GraphicsSettings.asset +++ b/ProjectSettings/GraphicsSettings.asset @@ -41,13 +41,13 @@ GraphicsSettings: type: 0} m_TierSettings_Tier1: renderingPath: 1 - useCascadedShadowMaps: 0 + useCascadedShadowMaps: 1 m_TierSettings_Tier2: renderingPath: 1 - useCascadedShadowMaps: 0 + useCascadedShadowMaps: 1 m_TierSettings_Tier3: renderingPath: 1 - useCascadedShadowMaps: 0 + useCascadedShadowMaps: 1 m_DefaultRenderingPath: 1 m_DefaultMobileRenderingPath: 1 m_TierSettings: [] diff --git a/ProjectSettings/ProjectSettings.asset b/ProjectSettings/ProjectSettings.asset index b4c5035..93f783b 100644 --- a/ProjectSettings/ProjectSettings.asset +++ b/ProjectSettings/ProjectSettings.asset @@ -38,9 +38,9 @@ PlayerSettings: width: 1 height: 1 m_SplashScreenLogos: [] - m_SplashScreenBackgroundLandscape: {fileID: 1, guid: d4d1afcce1d198b42b0447de1b64d416, + m_SplashScreenBackgroundLandscape: {fileID: 1, guid: 00000000000000000000000000000000, type: 0} - m_SplashScreenBackgroundPortrait: {fileID: 1, guid: a888aa8d21b29e548bcb8f99db60f62a, + m_SplashScreenBackgroundPortrait: {fileID: 1, guid: 00000000000000000000000000000000, type: 0} m_VirtualRealitySplashScreen: {fileID: 2800000, guid: d4d1afcce1d198b42b0447de1b64d416, type: 3}