From 9ee97c9a0a8f9261c10e22a6ba2145f5e2462cd9 Mon Sep 17 00:00:00 2001 From: Pranav Sukesh Date: Sun, 12 Jul 2026 15:24:05 -0400 Subject: [PATCH] bgr difficulty finished --- Assets/Menu/Data/MenuVisualConfig.cs | 2 +- .../SongSelect/TransitionScreenController.cs | 2 +- Assets/Rhythm/Data/Difficulty.cs | 2 +- .../Rhythm/Editor/BeatSongGeneratorWindow.cs | 74 +- Assets/Scenes/GameScene.unity | 8 +- .../Configs/TreeVisualizerConfig.asset | 2 +- .../Get_Back_Up_Again_Easy.asset | 1410 +++++++++++++++-- Assets/Songs/Kick_Shock/Kick_Shock_Easy.asset | 160 +- .../RetroFuture_Clean_Easy.asset | 1212 ++++++++++++-- .../Windy_Masquerade_Easy.asset | 695 +++++++- 10 files changed, 3220 insertions(+), 347 deletions(-) diff --git a/Assets/Menu/Data/MenuVisualConfig.cs b/Assets/Menu/Data/MenuVisualConfig.cs index d51e2e9..3abba61 100644 --- a/Assets/Menu/Data/MenuVisualConfig.cs +++ b/Assets/Menu/Data/MenuVisualConfig.cs @@ -104,7 +104,7 @@ public class MenuVisualConfig : ScriptableObject */ public Color GetDifficultyColor(Difficulty d) => d switch { - Difficulty.Easy => Style1Palette.DiffEasy, + Difficulty.BGR => Style1Palette.DiffEasy, Difficulty.Normal => Style1Palette.DiffNormal, Difficulty.Hard => Style1Palette.DiffHard, Difficulty.Expert => Style1Palette.DiffExpert, diff --git a/Assets/Menu/SongSelect/TransitionScreenController.cs b/Assets/Menu/SongSelect/TransitionScreenController.cs index dd2aa56..4daa63e 100644 --- a/Assets/Menu/SongSelect/TransitionScreenController.cs +++ b/Assets/Menu/SongSelect/TransitionScreenController.cs @@ -189,7 +189,7 @@ public async UniTask RunTransitionAsync(SongManifest song, Difficulty p1Diff, Di private static Color GetDifficultyColor(Difficulty diff) => diff switch { - Difficulty.Easy => Style1Palette.DiffEasy, + Difficulty.BGR => Style1Palette.DiffEasy, Difficulty.Normal => Style1Palette.DiffNormal, Difficulty.Hard => Style1Palette.DiffHard, Difficulty.Expert => Style1Palette.DiffExpert, diff --git a/Assets/Rhythm/Data/Difficulty.cs b/Assets/Rhythm/Data/Difficulty.cs index e0dfac7..5c343d6 100644 --- a/Assets/Rhythm/Data/Difficulty.cs +++ b/Assets/Rhythm/Data/Difficulty.cs @@ -5,7 +5,7 @@ */ public enum Difficulty { - Easy, + BGR, Normal, Hard, Expert, diff --git a/Assets/Rhythm/Editor/BeatSongGeneratorWindow.cs b/Assets/Rhythm/Editor/BeatSongGeneratorWindow.cs index f79b9a0..9a29f3b 100644 --- a/Assets/Rhythm/Editor/BeatSongGeneratorWindow.cs +++ b/Assets/Rhythm/Editor/BeatSongGeneratorWindow.cs @@ -31,7 +31,7 @@ public static void Open() private static readonly Difficulty[] AllDifficulties = { - Difficulty.Easy, + Difficulty.BGR, Difficulty.Normal, Difficulty.Hard, Difficulty.Expert, @@ -59,7 +59,13 @@ public static void Open() private readonly bool[] _enabled = { true, true, true, true, false }; private readonly float[] _interval = { 4f, 2f, 1f, 0.5f, 0.25f }; - private readonly float[] _rating = { 1f, 3f, 5f, 7f, 9f }; + private readonly float[] _rating = { 2f, 3f, 5f, 7f, 9f }; + + private float _bgrPhase1Seconds = 30f; + private float _bgrPhase2Seconds = 30f; + private float _bgrPhase1Interval = 4f; + private float _bgrPhase2Interval = 2f; + private float _bgrPhase3Interval = 1f; #endregion @@ -160,6 +166,20 @@ private void DrawDifficulties() _rating[i] = EditorGUILayout.FloatField(_rating[i], GUILayout.Width(52f)); GUI.enabled = true; EditorGUILayout.EndHorizontal(); + + if (i == 0 && _enabled[0]) + { + EditorGUI.indentLevel++; + EditorGUILayout.LabelField("Phase 1 (Easy density)", EditorStyles.miniLabel); + _bgrPhase1Seconds = Mathf.Max(1f, EditorGUILayout.FloatField(" Duration (s)", _bgrPhase1Seconds)); + _bgrPhase1Interval = Mathf.Max(0.0625f, EditorGUILayout.FloatField(" Beat interval", _bgrPhase1Interval)); + EditorGUILayout.LabelField("Phase 2 (Normal density)", EditorStyles.miniLabel); + _bgrPhase2Seconds = Mathf.Max(1f, EditorGUILayout.FloatField(" Duration (s)", _bgrPhase2Seconds)); + _bgrPhase2Interval = Mathf.Max(0.0625f, EditorGUILayout.FloatField(" Beat interval", _bgrPhase2Interval)); + EditorGUILayout.LabelField("Phase 3 (Hard density — rest of song)", EditorStyles.miniLabel); + _bgrPhase3Interval = Mathf.Max(0.0625f, EditorGUILayout.FloatField(" Beat interval", _bgrPhase3Interval)); + EditorGUI.indentLevel--; + } } } @@ -249,6 +269,29 @@ private void DrawGenerate() : "valid BPM (> 0)"; EditorGUILayout.HelpBox($"Cannot generate: missing {missing}.", MessageType.Warning); } + + GUILayout.Space(10f); + EditorGUILayout.LabelField("Upgrade Tools", EditorStyles.boldLabel); + if (GUILayout.Button("Upgrade All Easy → BGR")) + { + string[] guids = AssetDatabase.FindAssets("t:BeatmapData"); + int upgraded = 0; + foreach (string guid in guids) + { + string path = AssetDatabase.GUIDToAssetPath(guid); + var bm = AssetDatabase.LoadAssetAtPath(path); + if (bm == null || bm.DifficultyLevel != Difficulty.BGR) continue; + double totalBeats = bm.SongClip != null + ? Math.Max(0.0, bm.SongClip.length - bm.OffsetSeconds) * bm.BaseBpm / 60.0 + : (bm.Notes.Count > 0 ? bm.Notes[^1].Beat : 0); + bm.Notes = GenerateBGRNotes(bm.BaseBpm, totalBeats, _bgrPhase1Seconds, _bgrPhase2Seconds, _bgrPhase1Interval, _bgrPhase2Interval, _bgrPhase3Interval); + bm.DifficultyName = "BGR"; + EditorUtility.SetDirty(bm); + upgraded++; + } + AssetDatabase.SaveAssets(); + Debug.Log($"[BeatSongGenerator] Upgraded {upgraded} asset(s) to BGR."); + } } #endregion @@ -316,12 +359,37 @@ private BeatmapData CreateBeatmap(string folder, Difficulty diff, bm.DifficultyLevel = diff; bm.DifficultyName = diff.ToString(); bm.DifficultyRating = rating; - bm.Notes = GenerateNotes(interval, totalBeats); + bm.Notes = (diff == Difficulty.BGR) + ? GenerateBGRNotes(_bpm, totalBeats, _bgrPhase1Seconds, _bgrPhase2Seconds, _bgrPhase1Interval, _bgrPhase2Interval, _bgrPhase3Interval) + : GenerateNotes(interval, totalBeats); AssetDatabase.CreateAsset(bm, path); return bm; } + private static List GenerateBGRNotes(float bpm, double totalBeats, + float phase1Seconds, float phase2Seconds, + float phase1Interval, float phase2Interval, float phase3Interval) + { + double switchBeat1 = phase1Seconds * bpm / 60.0; + double switchBeat2 = (phase1Seconds + phase2Seconds) * bpm / 60.0; + + var notes = new List(); + + for (double b = 0; b < switchBeat1; b += phase1Interval) + notes.Add(new NoteData { Beat = Math.Round(b, 6), Lane = 0, NoteType = NoteType.Normal, EditorId = Guid.NewGuid().ToString() }); + + double p2Start = Math.Ceiling(switchBeat1 / phase2Interval) * phase2Interval; + for (double b = p2Start; b < switchBeat2; b += phase2Interval) + notes.Add(new NoteData { Beat = Math.Round(b, 6), Lane = 0, NoteType = NoteType.Normal, EditorId = Guid.NewGuid().ToString() }); + + double p3Start = Math.Ceiling(switchBeat2 / phase3Interval) * phase3Interval; + for (double b = p3Start; b <= totalBeats; b += phase3Interval) + notes.Add(new NoteData { Beat = Math.Round(b, 6), Lane = 0, NoteType = NoteType.Normal, EditorId = Guid.NewGuid().ToString() }); + + return notes; + } + private List GenerateNotes(float interval, double totalBeats) { var notes = new List(); diff --git a/Assets/Scenes/GameScene.unity b/Assets/Scenes/GameScene.unity index 9b7bd9e..d3f9b0e 100644 --- a/Assets/Scenes/GameScene.unity +++ b/Assets/Scenes/GameScene.unity @@ -6489,8 +6489,8 @@ MonoBehaviour: m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: 84f4dc4f60fba7e4db3098b36887c32b, type: 3} - m_Name: - m_EditorClassIdentifier: + m_Name: + m_EditorClassIdentifier: _waypoints: - {fileID: 516113166} - {fileID: 667602993} @@ -6502,7 +6502,7 @@ MonoBehaviour: time: 0 value: 0 inSlope: 0 - outSlope: 0 + outSlope: 1 tangentMode: 0 weightedMode: 0 inWeight: 0 @@ -6510,7 +6510,7 @@ MonoBehaviour: - serializedVersion: 3 time: 1 value: 1 - inSlope: 0 + inSlope: 1 outSlope: 0 tangentMode: 0 weightedMode: 0 diff --git a/Assets/ScriptableObjects/Configs/TreeVisualizerConfig.asset b/Assets/ScriptableObjects/Configs/TreeVisualizerConfig.asset index c39971e..21f21a7 100644 --- a/Assets/ScriptableObjects/Configs/TreeVisualizerConfig.asset +++ b/Assets/ScriptableObjects/Configs/TreeVisualizerConfig.asset @@ -31,7 +31,7 @@ MonoBehaviour: FocusedNodeColor: {r: 1, g: 1, b: 1, a: 1} CarrierColor: {r: 1, g: 0.42, b: 0.32, a: 1} CarrierReadyColor: {r: 0.55, g: 1, b: 0.82, a: 1} - PreviewNodeColor: {r: 0.55, g: 0.55, b: 0.62, a: 1} + PreviewNodeColor: {r: 0.19677822, g: 0.19677822, b: 0.20754719, a: 1} PreviewEdgeOffset: 1 PreviewNextValueOffset: 1 HeatmapLow: {r: 0.18, g: 0.45, b: 1, a: 1} diff --git a/Assets/Songs/Get_Back_Up_Again/Get_Back_Up_Again_Easy.asset b/Assets/Songs/Get_Back_Up_Again/Get_Back_Up_Again_Easy.asset index e32cd98..13f8235 100644 --- a/Assets/Songs/Get_Back_Up_Again/Get_Back_Up_Again_Easy.asset +++ b/Assets/Songs/Get_Back_Up_Again/Get_Back_Up_Again_Easy.asset @@ -22,7 +22,7 @@ MonoBehaviour: OffsetSeconds: 0 StartDelaySeconds: 2 TimingPoints: [] - DifficultyName: Easy + DifficultyName: BGR DifficultyLevel: 0 DifficultyRating: 1 Notes: @@ -30,455 +30,1575 @@ MonoBehaviour: Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 7559d519-6122-4524-9312-331db1a5b5ad + EditorId: c1dd6ee6-4293-44e7-8900-bf4565783a7f - Beat: 4 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 18800e42-3596-4a15-a9fb-15c3f2232668 + EditorId: 483a2c67-790d-4cda-966c-63577a508170 - Beat: 8 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 0c9b4461-5a52-4931-96ac-294456b8fb19 + EditorId: e6171d18-2441-4737-bcc1-b413cc489db1 - Beat: 12 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 4124573e-ab65-42d5-8f4c-0f46a2f84866 + EditorId: 45857e65-cd7f-43f3-a749-0d8e4c68b6f5 - Beat: 16 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 4cf65099-3922-40b0-a3c2-ba3e6ba48e4f + EditorId: a77ecc78-22d6-49c6-ae2c-42ec3d02c9b8 - Beat: 20 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 5d0d46c5-ccc9-4533-9e40-238b33d94f56 + EditorId: 2f048928-4def-463d-93d8-78964c323e10 - Beat: 24 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 8a42e40d-9ba0-4458-9f89-8e4febc197f5 + EditorId: 03fa27d2-dcdd-41c5-86ca-62af275ccd8a - Beat: 28 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: d3115903-707b-4a43-b9a6-1b47f551bb34 + EditorId: 878a0ba8-e14c-454b-8314-72f56f28e222 + - Beat: 30 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 0f0d7139-be4c-4111-b32b-7df80cb2021e - Beat: 32 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 9dc62d27-3104-49c1-91d8-fd2272cd4aa9 + EditorId: 30103bf6-aeb5-4775-89fa-ae2682770072 + - Beat: 34 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 066e34c1-f478-4b8e-857b-b2a5e92e7e7a - Beat: 36 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: a76cf9a1-618e-4d86-93e2-9dbe12a52f62 + EditorId: 80a902d3-f5b5-4779-9484-d682862c9721 + - Beat: 38 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 7f5a903b-581b-4d75-ad7a-aa0bab562c37 - Beat: 40 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 1a9b5caa-81a9-4e59-b7bf-8b5018a8d18a + EditorId: 58678042-87bd-489c-a79b-d50be5039b1b + - Beat: 42 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: cd742643-1aa1-4efd-a507-735a806d523c - Beat: 44 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 9a5fe404-e76f-4c9e-9b16-331e7c5a3f94 + EditorId: d1eb6c02-8011-4281-bfa8-a21e60a3b2cc + - Beat: 46 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: c0140301-aafd-4725-b9f1-14af1b77f9d0 - Beat: 48 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 8f8f154b-9297-425e-8d57-b82e4392f086 + EditorId: 0a881037-db5d-4646-89c9-7fc672ec36ce + - Beat: 50 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 2c8aa8f3-bc02-4a7c-933e-412e192448cf - Beat: 52 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 1773de78-7c58-459e-b1c3-cd389e46ac0b + EditorId: 21fad823-43f3-438d-8d41-be656787f885 + - Beat: 54 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 38371767-fc07-4e47-81a7-82e44d88595d - Beat: 56 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 807f79cf-2255-4128-b58f-b459f1289361 + EditorId: b86565aa-7ee6-4d0e-8517-aa3ab0d02f3f + - Beat: 58 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 73fb0704-cc0e-479a-bbad-1ac463ecc179 - Beat: 60 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 88405d90-5b1f-48a3-a9f6-dfdc69445018 + EditorId: 7383c07f-d8da-40fd-99ec-9d098c46a10f + - Beat: 62 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 23bc2f34-724b-414d-9362-79b26df1a4f7 - Beat: 64 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: c31f9f1d-f856-4807-837f-b8cfcc07d553 + EditorId: 9c1430b8-5dda-42b5-b069-a848db8478a1 + - Beat: 66 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 34879f54-3dae-432a-96d9-e3e79816a425 - Beat: 68 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: a666496b-2581-4d8e-9787-e95d54b6ad12 + EditorId: 613d5860-0f32-4ae0-b7a8-70c0faef468a + - Beat: 70 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 19c1a4d4-1c12-46ba-904a-b8c18cf1a263 - Beat: 72 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: d5c44a5e-cef5-4081-8eee-135f779ed00e + EditorId: a682224c-0cab-4fdd-8636-fa7c85f49f57 + - Beat: 74 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 40a976c3-a32f-46f1-8035-60853b97c912 - Beat: 76 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 186c4bc2-b6db-4096-8941-2c4a85abbe9f + EditorId: 451ff43a-d0dd-422d-a0e2-c6499941aa27 + - Beat: 78 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: ac6883af-26b1-4dd0-b7d6-84fd10d41956 + - Beat: 79 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 924c37ee-27f0-464c-a015-289c29c12db0 - Beat: 80 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 81a33a37-cc6a-4012-b496-f5c98e500f68 + EditorId: 9c4e5f90-9e3e-4379-adc0-52235ec74ad9 + - Beat: 81 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 5e9cb1b9-ca0a-468b-baf8-dce376e764f2 + - Beat: 82 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 54080ceb-d56d-4283-a071-841aab972d9c + - Beat: 83 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: ebc5d196-03cb-4360-956b-f7c1976f5cec - Beat: 84 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: e6e642ee-558c-4225-a5b1-d8bacfcf8a8c + EditorId: eb6f4d42-9f4b-4b0d-8717-8ee8a12d5a8a + - Beat: 85 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: af95dbcd-9808-4a14-85ed-99f1d1afc197 + - Beat: 86 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 05e3d390-4417-4172-bef9-fea6e94c8062 + - Beat: 87 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 71c214ac-cd0b-4dad-beca-fb4b1200fc67 - Beat: 88 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 8270a4fd-e8b5-4a96-b505-90f7b6c240fe + EditorId: 8430743c-5806-4618-8920-52cfbd2881c6 + - Beat: 89 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: d4320c70-928c-43e3-8f36-8412b6bfe388 + - Beat: 90 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 961c65a2-0cf6-4415-8fbe-8bc38c356144 + - Beat: 91 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: ab4ba948-b93c-4022-9bc8-0980c38189ab - Beat: 92 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: ca212507-865a-4d04-a4ed-be19fbeb0ca1 + EditorId: 50897939-8704-4af1-ac59-2284d6c1cf83 + - Beat: 93 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: afdcf324-0e91-4c4b-809c-998824c90c9b + - Beat: 94 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: b165f66d-9093-403a-b3bb-e366bcab6252 + - Beat: 95 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 32e0555b-a1c6-46e9-8c47-e75c80ad1fa1 - Beat: 96 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 84e5cef1-41e8-4a18-b611-b881f6ef0db1 + EditorId: b3818e02-7cee-4a67-9bcc-8fc09e600706 + - Beat: 97 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 6280b16c-b764-4dc2-af05-9c17b3bbd973 + - Beat: 98 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 3ab99b0f-00bc-4d73-850a-c9f0f4905a97 + - Beat: 99 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 81763641-fb01-48f6-96f1-2b2024a5214a - Beat: 100 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 3c244705-740b-4587-afbc-bfd440f1dc0d + EditorId: 0b607288-6841-4619-acec-92c9746cb9a1 + - Beat: 101 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: e0ffb227-db6c-4f5d-99ca-b79729759ec6 + - Beat: 102 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: a7031683-18a8-470a-993a-96a3fec6336f + - Beat: 103 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 202ba4dc-7291-493f-907d-10e4fda6b511 - Beat: 104 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 35badc66-b4b8-4051-8c69-0d113a18c456 + EditorId: 79baf1d6-70ec-41e7-a02b-91f3f3d634b5 + - Beat: 105 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: b13ba9e1-fef9-41da-8d06-2ebcd079d844 + - Beat: 106 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: d4dd7148-0ca7-4fd9-beab-abaa0c211f81 + - Beat: 107 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 6008565e-237a-40bc-b974-6be9516824c6 - Beat: 108 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 1cbfec2e-e179-4d13-8094-57aeeea3f47c + EditorId: 553644c8-520a-445a-b0ca-e6eac0d51462 + - Beat: 109 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: c177ee22-6add-481e-a9f9-cbbbc2785dbe + - Beat: 110 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: b50e9f92-d94b-42b0-9e51-7d3fab1dbf35 + - Beat: 111 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 24a00e91-76eb-4a43-891b-10d59e00c57e - Beat: 112 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 2c7db846-c607-493f-bb6e-d01bdf46947d + EditorId: 693b968c-9531-4e4e-9dfa-b54aae3eb1c4 + - Beat: 113 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 5503d7d2-824e-4958-bfb0-a2b47185c134 + - Beat: 114 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 1265776b-beaa-4b4c-89c7-7c906f1b5057 + - Beat: 115 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: cd7edace-2cc7-4121-92c0-d5d28ddb6272 - Beat: 116 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: a3d76839-840a-402a-8cf7-b518db2765d7 + EditorId: 86332e95-865d-4595-a6b7-8988805264e5 + - Beat: 117 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 0a3af50f-8592-4881-bd6c-e9919bae7fb2 + - Beat: 118 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 98e69a5a-e251-41d1-a1fb-1e8a5d6d2111 + - Beat: 119 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: df399c16-f5da-49f4-80ac-8660fe6e5c4d - Beat: 120 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: fe145145-de01-4048-a5da-c504c16b4ff6 + EditorId: b24d172a-793e-4121-abde-a98090538a3d + - Beat: 121 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 55ec327c-a2e7-4d4b-81f8-55b6dd5d550a + - Beat: 122 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 2ce3a06e-d884-4cf3-be51-c727a86ff628 + - Beat: 123 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 76156059-0764-4e1f-8741-e299de78c1ec - Beat: 124 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 55603d05-f5d6-4b9f-8cf5-b7bd9e974b65 + EditorId: 305ba9f5-e7be-4ded-8350-57f94fcbbff9 + - Beat: 125 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: bdf0d00d-cab9-4dd3-b1d8-1f81676e04fb + - Beat: 126 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 7961505e-d4fa-425d-8b9c-b35b9a822649 + - Beat: 127 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 30b46491-c075-4ded-9e9e-32dd393033c7 - Beat: 128 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 972b07ab-2a7a-44e1-8dde-66c973e80ab1 + EditorId: 447143d9-3398-4ddf-b801-641fc5d0f729 + - Beat: 129 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 3012b356-bff4-4e49-b0af-a83d94751401 + - Beat: 130 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 129d5aed-8814-4a2f-868e-8485f432f0b6 + - Beat: 131 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 590deda8-9e2a-4a59-9a63-3dae4628160c - Beat: 132 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 4d4c0a1b-77dc-4a1e-a083-77cace6b2f98 + EditorId: 6918bcc7-675f-417d-a0ea-34cbde3d1de5 + - Beat: 133 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 26811e17-17c7-4111-8bf9-b27e5e785ffd + - Beat: 134 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: d35cf51d-683a-4447-9ae5-5299a8f5c317 + - Beat: 135 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 9ef44e6b-d552-4089-9fd7-d14424683eea - Beat: 136 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: ba79cc16-709b-4c14-89d0-d60922bf9376 + EditorId: 7311d96b-f487-458e-92fb-6b8094357cbe + - Beat: 137 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 0b3e8abc-1c51-4125-8aaf-f1197abd526f + - Beat: 138 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: f5dc34a2-9160-4a9f-8cdd-39b7aa84a4a7 + - Beat: 139 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 1fc8dd64-e327-435d-843c-1d551d81175d - Beat: 140 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 4824c9a2-34a2-4913-99d7-0575db5932c5 + EditorId: 8ff78175-fedd-42ef-80af-74b6136f7957 + - Beat: 141 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 8136dfdb-f5a0-4607-b6e8-cb8a2e614c37 + - Beat: 142 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: da0c5af3-c798-4b6a-9560-1266a2a42983 + - Beat: 143 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 0af4376a-c64c-4375-8b26-7131ed95d77c - Beat: 144 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: ff220d25-efd0-4566-aa98-d778d2be260c - - Beat: 148 + EditorId: 7a314fc0-90f4-470d-b59a-fdb1c9f5aa23 + - Beat: 145 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 394c7ba0-3c35-4b53-b07a-a73e37db8897 - - Beat: 152 + EditorId: 6bb1ea86-1d2d-4a03-b824-3a633b448900 + - Beat: 146 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 921a63fc-2310-4e0e-88f3-7b0c9f22358b - - Beat: 156 + EditorId: 50280c7b-dc3f-4016-8c6d-d434aaca9fae + - Beat: 147 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 7d6245c3-cee9-4755-ad0a-4cbed9891a08 - - Beat: 160 + EditorId: dacc4023-a0d0-430a-adff-18a2164a6ac7 + - Beat: 148 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 169583e8-aa94-4976-9088-63a6a53889cd - - Beat: 164 + EditorId: db5bd0b2-2285-438f-88cf-f593b29f0e39 + - Beat: 149 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: b7ff4bad-952a-404a-967e-6b03904af5db - - Beat: 168 + EditorId: a4752299-84d7-49cf-8867-d46a06660d15 + - Beat: 150 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 72b65eab-9c57-4c4a-a9b3-5dd4ba4f443a - - Beat: 172 + EditorId: 69aa3231-0ace-4ebc-a1f1-60024ab6ff3f + - Beat: 151 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 24d0de77-e11e-475c-8672-4defd90895a6 - - Beat: 176 + EditorId: e08e60c9-9ae8-40fa-9d83-c460fb0d82af + - Beat: 152 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 9f8920cb-8dfb-41cc-a51e-2376132ea201 - - Beat: 180 + EditorId: 693a0ac8-482e-4309-875f-8dd61ecad5fa + - Beat: 153 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 478af961-5977-4579-9924-bb38702bcfd7 - - Beat: 184 + EditorId: db94ad92-11f0-4f64-923c-6b3db8216bef + - Beat: 154 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 35ef14b6-c791-4cd1-97da-ffe05684a2ba - - Beat: 188 + EditorId: 6c8556b8-ede0-4bb9-ac37-4dd4059c56b9 + - Beat: 155 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: cd3ffda4-626d-493c-aea4-a0159bdd3bd3 - - Beat: 192 + EditorId: 92db683e-e31f-4c74-8d0a-2c007614009b + - Beat: 156 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 7f6a22cb-56f3-44e7-9e67-b63fc6fb7db6 - - Beat: 196 + EditorId: 2283d142-54fc-459a-923d-568a0a2f30a7 + - Beat: 157 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 36761734-070e-450d-a49b-fca9758c8e14 - - Beat: 200 + EditorId: e2bccaa1-2725-4bf7-9a70-17673cb755a8 + - Beat: 158 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 88ecfaa0-474c-400e-badc-d08c5689312b - - Beat: 204 + EditorId: 173ae59e-a828-49ae-b551-6652c9abd4e4 + - Beat: 159 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: fe17e283-5c96-457e-9463-1e77546a4ef2 - - Beat: 208 + EditorId: e4284486-bcbc-459e-b254-32a0f8919122 + - Beat: 160 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: f169f160-733b-4e67-89c5-dfeea94d41af - - Beat: 212 + EditorId: 970a616e-495b-4ab3-89ee-03e1698e4d2e + - Beat: 161 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: e1230347-6d3b-4b29-8836-6a0910cfa146 - - Beat: 216 + EditorId: 59d1fbcd-f5b5-43f7-aa50-44e4efd5dfad + - Beat: 162 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: c9af4796-b667-4b05-96bf-678b4a0b1869 - - Beat: 220 + EditorId: 88b4b731-18d9-4eda-909a-1c2519612f9b + - Beat: 163 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 2708bf71-198b-4b16-b858-555630fb2a38 - - Beat: 224 + EditorId: 24f8766a-d29b-4403-8df0-5fd1f3cac6f3 + - Beat: 164 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: a2a9442f-a8aa-4dfb-afba-506d1e1de6b8 - - Beat: 228 + EditorId: 5a4680f9-ea2a-4c3e-9b43-8840ac88ec68 + - Beat: 165 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 7c23aadf-5bfc-41f4-8704-be20f8753db2 - - Beat: 232 + EditorId: b620b7e5-77c1-4548-96ec-4dbbd1d60209 + - Beat: 166 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 4a40fd33-58b3-4f27-ad84-6b1306eef3a6 - - Beat: 236 + EditorId: 39e8c640-c7be-4d97-b157-1f8ffa865f2e + - Beat: 167 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 13993d03-289f-4857-bda1-c544b7cf8c8e - - Beat: 240 + EditorId: f91247b2-ef82-4352-b288-c26a89ecac32 + - Beat: 168 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 38bf1e7e-ebd3-4620-8245-aad7a55ac6ed - - Beat: 244 + EditorId: 7d1e5ccf-5d3a-4ea8-a6e0-02de7caa239e + - Beat: 169 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 589c7703-d356-4130-b9ba-3c12a546e79b - - Beat: 248 + EditorId: effe6f73-3f38-4bb6-8da3-2c13aefd8827 + - Beat: 170 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 5987d81d-6e42-4709-85d4-b1cd493aaa56 - - Beat: 252 + EditorId: b52885c9-4f36-44a0-960e-943c05a8313f + - Beat: 171 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 5015c59d-9a5d-4edb-994a-bc2d247b7e12 - - Beat: 256 + EditorId: 3f8b6a9e-4937-4678-8b1a-0c40b7399c09 + - Beat: 172 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 4e6bf66b-faaa-46f6-a3c0-8789480ab4f5 - - Beat: 260 + EditorId: 60f3ddde-7504-4eb3-9222-2ac0939cf0bd + - Beat: 173 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 39b6b242-8696-4262-beb0-90825ea30ea3 - - Beat: 264 + EditorId: c10548b8-62d7-4390-94f0-dbbb295be70e + - Beat: 174 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 9594f512-789b-44af-aeac-3e5eaa10168c - - Beat: 268 + EditorId: 47d89588-6d26-4331-83f3-98349c012e9a + - Beat: 175 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: b95afc3d-a748-421e-9130-357347ad6d5c - - Beat: 272 + EditorId: b8d649ce-f329-4ae0-aa97-fbbf4015a41d + - Beat: 176 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 35f12d23-3cba-47c3-8759-3225b831a72d - - Beat: 276 + EditorId: 73800d71-48fe-41bc-a46f-41e1fe585b73 + - Beat: 177 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: bc8f2c10-d3eb-4ec5-892e-4ad7103b0c3e - - Beat: 280 + EditorId: f29ac714-5fe0-432a-bbb5-527a71bb0122 + - Beat: 178 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 0150212a-554d-493d-aa94-a0d733f7a049 - - Beat: 284 + EditorId: c576dc35-b815-45fb-b26a-647bd161afef + - Beat: 179 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 5885310f-4d74-45f8-88f9-a88b068a7806 - - Beat: 288 + EditorId: 382b7604-79ad-41ed-badc-b1e138e8d5b9 + - Beat: 180 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 5e3e5a2f-3acf-44de-8183-f84d5a1ba0e1 - - Beat: 292 + EditorId: 002ccadd-908f-4203-93b5-7cdeefbfe003 + - Beat: 181 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 998f07ee-83dc-44b4-b6ce-4e325428e292 - - Beat: 296 + EditorId: 965314c6-f2bc-470e-bb4d-4f4ccc5299af + - Beat: 182 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: c2b41ad9-6299-4dfb-a829-146e65536e48 - - Beat: 300 + EditorId: 3d1963af-df56-4575-bf86-df08951e47fc + - Beat: 183 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: cac467f4-ccc4-4d44-84db-03d554c6f610 - - Beat: 304 + EditorId: 15edeae9-3403-4eb4-9ed9-c1310c21f98d + - Beat: 184 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: a8cf0dee-26ae-4fc7-9070-ca083b3af25e - - Beat: 308 + EditorId: e0d99133-8d6e-4092-b728-fb4f4823975d + - Beat: 185 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: ec728a70-8edb-469a-96cd-ddc05244c113 - - Beat: 312 + EditorId: 27b3aaf6-f268-489d-bb2f-54e89f496b95 + - Beat: 186 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 1f2615a3-e747-4f7d-bbc1-f5fcef60acc3 - - Beat: 316 + EditorId: 64427a27-30ba-417a-86c4-6f6f89cd524b + - Beat: 187 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 12295dc9-4a9c-491d-92f3-ec08944feaa2 - - Beat: 320 + EditorId: accae1be-3724-4134-8209-409e1caf7778 + - Beat: 188 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: c3f3cf70-4d14-44c9-ab07-eadecd53b5d7 - - Beat: 324 + EditorId: 98e3f38b-d660-433b-a243-cb3e245be422 + - Beat: 189 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 4ea028f3-baa2-47ca-ae45-62765f5215a0 - - Beat: 328 + EditorId: 37050d11-5523-4253-9a8a-b2678c5e603d + - Beat: 190 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 2419809b-8340-4e26-9a9c-16200762b284 - - Beat: 332 + EditorId: 0a4bdf3e-f97c-4671-b04d-eedcfb5afa93 + - Beat: 191 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: fe7564a7-5bcf-42c4-84c9-b42ca545c5b1 - - Beat: 336 + EditorId: 008bd198-33cf-4574-bfd8-66b2d52f3855 + - Beat: 192 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 9a9fac03-50e2-45b6-80a0-1ff165628be3 - - Beat: 340 + EditorId: b760399f-f777-4f20-a488-fe3aa83ff36d + - Beat: 193 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 7945f436-3da6-4b31-92e5-d9ab1fb36e6d - - Beat: 344 + EditorId: 245197f9-463b-41d5-8976-6c5268c585aa + - Beat: 194 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: fb5a494a-a896-4560-8b64-9ef6e89523ae - - Beat: 348 + EditorId: 382be815-4590-4253-bbd6-8b04498df946 + - Beat: 195 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: c1c966d8-8232-4876-bf16-2964cc5ac1eb - - Beat: 352 + EditorId: e35658dc-bca9-46d9-8585-ec235a47c264 + - Beat: 196 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 723f540d-ecad-4c32-b6c2-a581d4c49dd7 - - Beat: 356 + EditorId: fa08eb0c-842d-46ef-8774-70518474cf27 + - Beat: 197 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: b3145084-683d-4afd-8f74-e42c45c060f7 + - Beat: 198 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 49731b21-3d07-4ec0-9d07-d14cfb08e229 + - Beat: 199 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 890089b9-66ba-47af-af01-f158b716321c + - Beat: 200 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: fba0f4f8-9744-4d9f-b101-12b07a346e00 + - Beat: 201 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: f0899dc3-d4ce-4476-82e5-9336ae80e284 + - Beat: 202 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: ba5731ec-7e58-40dc-bed6-71431a3779aa + - Beat: 203 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 0026ec39-6638-4013-9257-bad068817b92 + - Beat: 204 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 84f71c1a-d648-44ae-b800-a524a96e8101 + - Beat: 205 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 35139347-d775-4ee4-ac08-45c6a45ed21a + - Beat: 206 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 404e829a-47ec-44ff-a991-3cfa4b15d6e8 + - Beat: 207 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 13e9b3d1-dd79-4423-a5a7-fe9cd312091f + - Beat: 208 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: dbdbde47-ba90-44ff-b746-3e2cfbcb8868 + - Beat: 209 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: cba59bb3-053d-496b-9f78-5c7154df0526 + - Beat: 210 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: afbb6de1-ac9c-4e3b-a76a-b8ccc994e940 + - Beat: 211 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 365ad098-4606-46a4-9a16-88eac50c7434 + - Beat: 212 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 73f09a8a-ebb9-4bae-a597-79072bd93efd + - Beat: 213 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: a0333c6a-91a3-4bf7-938d-31ad9ad10753 + - Beat: 214 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 0d29f5c6-c843-48d2-892b-24ac1f5b0371 + - Beat: 215 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: c9a89012-577e-4b77-9cf3-e654ebbbb7b7 + - Beat: 216 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: dcb48d8a-6e3e-4fde-a630-ce8eff7c19d5 + - Beat: 217 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 7bbef4a4-8409-4a16-a1af-3754926b2341 + - Beat: 218 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: dc8becf9-b91e-4df7-9e4d-f35faa85ce72 + - Beat: 219 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 222f74be-a321-42e2-ba17-cbfa1a44f31d + - Beat: 220 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 790bef58-0f9f-4c2e-9912-b1118ad6d610 + - Beat: 221 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: fae8be92-1848-4396-97d3-6c1a4bfb964c + - Beat: 222 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: d76cec57-4adc-401c-8d8b-d03ff572a47d + - Beat: 223 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 46532e41-0e95-44fa-a696-c951d8f0aea0 + - Beat: 224 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: bf012a4d-afeb-4f80-8625-e4923ae8b44b + - Beat: 225 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 7f8c15a5-c888-4945-ab6b-0bd43363a193 + - Beat: 226 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: f6a403c8-f96b-4974-b9da-539d8d732de2 + - Beat: 227 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 12c4f92a-9cf5-4125-9d91-ace0bce6a392 + - Beat: 228 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: ad104f9b-fc21-47d7-912d-dd31cb46d4dd + - Beat: 229 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 7403071c-1ef2-4f7f-bec1-fd2f9239eb8e + - Beat: 230 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 8a25072f-f4ce-4d2a-861c-b1ebef1a808f + - Beat: 231 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 4cbaa700-2ad0-4da3-baec-b36a27f49491 + - Beat: 232 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 7b0c3dfa-d442-4f9b-bfa5-44872d059a23 + - Beat: 233 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 1c2fd619-9661-4944-b8b8-7457a1fd00f2 + - Beat: 234 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: b5dc618f-b01e-481b-8d23-1768f093fe58 + - Beat: 235 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: dbc3c9b4-b92c-48bb-9517-e10850f1addd + - Beat: 236 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 052ec390-1ad2-4105-9482-33b27613924f + - Beat: 237 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 3d17cbce-ab3f-4047-8cbe-1fe1b64082d2 + - Beat: 238 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: c9ae471c-fa4b-4951-a6d0-1617173b93e6 + - Beat: 239 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: fc6bb1f2-cf8b-41db-84ee-bb0c70c350df + - Beat: 240 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 191ad241-18d9-4b91-9760-f6f6ad5fb4e3 + - Beat: 241 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 2fb04c5b-a1eb-45a0-ae8a-211409959b4d + - Beat: 242 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: b18d5034-7a5d-4ba5-98c1-3b7feb8a5f1f + - Beat: 243 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 82da36c7-55cd-4369-b77d-78e8be380cb1 + - Beat: 244 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 888a3a04-cf7a-4663-938d-757dc8ff3198 + - Beat: 245 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 1603a646-cb52-421e-ab25-00d9b292f972 + - Beat: 246 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 69913c11-8c38-43de-ab2d-90490bdf5888 + - Beat: 247 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 7a369df0-0287-4d95-9057-a1a578369632 + - Beat: 248 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 5fcd1431-68ad-4bfa-b546-bf0090ffcd60 + - Beat: 249 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 1daff17a-9c04-4952-a28c-ec7d27b3274b + - Beat: 250 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 1f067ad8-2428-4c06-a5e6-b08fa9097dfd + - Beat: 251 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 0be1cc03-6dec-4744-9a9a-fbce72ecda52 + - Beat: 252 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: b27885ae-7efe-4136-a04a-cd16ae1b91b8 + - Beat: 253 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: fdeb215f-6428-4bbd-ad06-389102045f91 + - Beat: 254 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 4d2fcd8d-0617-4416-ae21-a42036b5af60 + - Beat: 255 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: c1c8520c-9630-41c2-82d3-3d00222c0f2a + - Beat: 256 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: fdfc4402-f1d9-4aae-b42d-9e2723d920af + - Beat: 257 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: a6d7df18-4e48-4aa3-bf5e-9e73e22f05c5 + - Beat: 258 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: f0a97de2-4e30-4c58-b17f-ac42934f7d67 + - Beat: 259 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: fe77cbe6-bcfb-488c-a3ce-219e9a7e7ca0 + - Beat: 260 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: a1ac3895-ebbc-4dfe-a72d-2646fe2bc0cf + - Beat: 261 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 3b706dd1-2002-467c-9d45-d7b8c6d3101b + - Beat: 262 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: a36227c5-aed7-4041-8323-6ed4be8f6fbb + - Beat: 263 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 91636232-fa10-47e7-ac34-c6982a49783c + - Beat: 264 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 5275adaf-e39b-49c5-9ae5-0f1f3c20e358 + - Beat: 265 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 34826742-98d0-4cad-b3cb-72462a55ca17 + - Beat: 266 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: b0f58868-b25e-4b3b-a889-afdbbe72d22a + - Beat: 267 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: c5c0732e-a91c-4820-b5a2-394fa08d0074 + - Beat: 268 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: a8b32797-6234-4e42-a27d-abc9c68cf37e + - Beat: 269 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 14388940-45bf-4256-aa32-9d9793477f2b + - Beat: 270 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: e74feb8b-e313-464f-a6e1-b373ee75f726 + - Beat: 271 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 1871052a-8f6f-459e-b9b6-5f52c463d582 + - Beat: 272 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 5ffd0550-181f-4889-9fa3-b0456d3ccc3d + - Beat: 273 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 1f219794-09f4-4b3c-bae7-86d0b00bfb19 + - Beat: 274 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 00d94b1b-50e4-4717-8071-e6d1e2d81d5e + - Beat: 275 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 41baeb11-81ec-4d4d-9502-b452a8a4a448 + - Beat: 276 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 980d8a1c-2ced-48ea-a21b-27d69721c2af + - Beat: 277 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 7c0155e3-a3d1-41de-bf0c-ceacf830ff37 + - Beat: 278 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 6556a81d-93d5-45c0-ad60-68318c80f8b5 + - Beat: 279 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 90bc5994-cdfa-4f84-af1c-812906cfbf40 + - Beat: 280 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: ee2244cf-7ae3-4bb8-9675-5e6673c9e1b8 + - Beat: 281 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: ef5c455c-e5b5-4cf8-bfc8-37a94985a1fb + - Beat: 282 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: eafe2ef8-a522-4001-b427-1b6e7011c87f + - Beat: 283 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: f7a841cb-cdf8-4640-b79d-378572810ebc + - Beat: 284 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 99417114-f02f-478b-a213-b535e8675823 + - Beat: 285 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: b2725d3f-2a2f-46c4-8f1a-0d736e656980 + - Beat: 286 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 3c0d90b7-276f-4520-9d5f-a156128ff2b3 + - Beat: 287 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 6f52aecb-91f3-4569-8253-4af11f44f653 + - Beat: 288 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 2de2d6e9-aa53-4b33-9c8d-9cd5cd3fcee3 + - Beat: 289 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 2d7175d4-b57f-4b2c-a872-7f6acd1b5d52 + - Beat: 290 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: ffbdd764-bcde-4f79-9050-b29e69346ac5 + - Beat: 291 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 76528fe2-893d-4cc3-8ad0-343ee69cb69d + - Beat: 292 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 261ef2ce-9841-45c1-b0f3-92206f81c40d + - Beat: 293 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 53251f42-cfab-4a97-ad87-c1b1f5569bed + - Beat: 294 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: deb7419e-8671-4d82-b349-bb4a4886cee0 + - Beat: 295 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 829632b8-7375-4355-8cbc-df79688fe59b + - Beat: 296 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: fb448e2e-97a8-4635-9193-23ed2f07ce02 + - Beat: 297 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 59a9ae67-ac1b-479d-9768-f5876f0e1362 + - Beat: 298 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 8284fe86-24dd-49e5-a971-96418fb3938f + - Beat: 299 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 6da52cb6-1f16-48b2-91e5-558efa9fdd93 + - Beat: 300 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 1dc3bb9e-b9df-4c93-92a9-830d83537d34 + - Beat: 301 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 7097d86b-0e7a-4903-9bfd-082c5698a41f + - Beat: 302 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: b31c3943-0353-4b41-ad3f-604b1c0334b8 + - Beat: 303 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: fad14177-d0bd-428a-97b6-92b163c21001 + - Beat: 304 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: e8d95307-10dc-4754-aa91-8155472c081b + - Beat: 305 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: bff55c7f-0cf4-4576-ad9b-54ac68d87a99 + - Beat: 306 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 35a99201-7588-4732-aa0f-65c5bba51711 + - Beat: 307 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 94971795-770c-49b4-a93e-407fdd76d856 + - Beat: 308 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: b79a6d44-456e-4d2d-b2de-23c0bc09815e + - Beat: 309 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 95bf9ae5-be57-4d80-8d3f-34881db0a4de + - Beat: 310 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 23461b33-596f-4317-8d76-8eb76cecce55 + - Beat: 311 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 5f7d5eac-3562-450d-8ffe-fcc1e77f0ed1 + - Beat: 312 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: b73746de-6afd-4613-9120-ebf64dd17402 + - Beat: 313 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 59c65344-5c20-4a2a-bff4-73445ce0aebe + - Beat: 314 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 005090c1-20ab-4165-9bee-84a9a3a5de60 + - Beat: 315 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 8a10a706-0924-4466-84fe-a4b23ba68a9e + - Beat: 316 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 04d28fca-f28b-481d-b517-d2061c30f88b + - Beat: 317 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 8de094a9-4707-4137-9619-c49973ea8076 + - Beat: 318 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 20665bb9-8ff2-4e9b-b15f-6fedd26f7df4 + - Beat: 319 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 0659150d-69d6-4247-bde0-c1af22939c50 + - Beat: 320 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: c4fce850-db72-4549-addd-7338c0ccb4f4 + - Beat: 321 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 6e19a7b2-64b6-4e78-af57-e6c236331a25 + - Beat: 322 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: dbb9ecc7-725e-44b2-9fa3-41ab4b6e11df + - Beat: 323 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 4e1fbd87-c342-4411-9115-56b39469b122 + - Beat: 324 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 343e4936-35b5-40dc-81d1-a2a4259ae608 + - Beat: 325 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: e178c55e-b5ea-4499-8b4b-1eaaa90271b3 + - Beat: 326 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 477a0b25-8ca5-421d-818c-bd1745d8326f + - Beat: 327 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: e2304725-e0f9-466a-a425-2c893227f971 + - Beat: 328 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: cb32c1d7-9e15-4855-8e2c-ffff1bd41903 + - Beat: 329 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: f3a30330-1f45-494f-b18f-39bfdb1cc550 + - Beat: 330 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 7e232a73-eacc-4f2a-af2f-88b114b48e7b + - Beat: 331 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 3e2ba0a4-d66d-46ef-ae06-3fb8ee655c16 + - Beat: 332 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 940afe54-b258-477a-873d-4473dbe1c598 + - Beat: 333 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 55a0a256-8011-4e00-9f60-15564b19e234 + - Beat: 334 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 3d6a4cac-11f8-45f2-9b28-da01c753ce1f + - Beat: 335 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: d1c6d12c-eee1-4034-9efc-1f6da758aae0 + - Beat: 336 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: e2b0f94f-8ef7-4979-9396-e763cb8ce849 + - Beat: 337 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: f8c37335-8397-4ab3-964a-b5fd80b0c98a + - Beat: 338 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 7c346031-1b61-4ac3-baf6-97d43eec3daa + - Beat: 339 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 7e0e9071-aeec-4706-8874-93d55e91ae30 + - Beat: 340 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 895cf02e-97eb-432d-8859-b79bff15b97d + - Beat: 341 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 4ebb8970-6f7e-4074-9c9a-a90c65304151 + - Beat: 342 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 0c1648c6-11d5-4cce-93c4-0639fc33337e + - Beat: 343 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: e95fedab-d3eb-48a1-b5fa-299187c3d219 + - Beat: 344 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: d776f9ae-4768-4d36-b145-5f070bc30dde + - Beat: 345 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 59854270-f162-4a9d-af83-7ca39a5be5a3 + - Beat: 346 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 3f87082b-aee8-4c82-a795-0d808407b803 + - Beat: 347 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: a586e3bb-c356-4998-81b0-0540ba8c9383 + - Beat: 348 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: a27bed27-3eb0-4d1d-8f3c-6d275578c673 + - Beat: 349 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 87e4abb7-2135-404c-8858-94108b7fdce0 + - Beat: 350 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 65d62c7d-a5a6-4f16-9772-ae12f002e6df + - Beat: 351 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 7feb852f-549f-4137-9ab5-aebb9e5aa1cb + - Beat: 352 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: de932229-7688-40e2-8977-c2541b5894da + - Beat: 353 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: aff6aa40-13ca-4bce-a1e0-565a9f2b645b + - Beat: 354 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 5626cc13-f5cb-432a-a09d-1a11754b9f57 + - Beat: 355 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 17c5444e-9f5b-4756-b9f5-139aec9134cb + - Beat: 356 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 4828a5ab-9a6e-477b-828e-0fd3efb093c1 + - Beat: 357 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 68c87fc4-1211-4217-bcea-b0461cedde45 + - Beat: 358 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 8e62d228-da89-4b8a-a825-85334c6f335c + - Beat: 359 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: f849f978-bdcb-4f92-85bf-7f221ffdaf80 + EditorId: ce352a7d-a885-48eb-bbff-5e14221f336a - Beat: 360 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 6efcb66e-b9fd-42c1-9ce8-c032440f923f + EditorId: 7a91b210-d32a-4650-9755-203c64260191 KeyPoints: [] diff --git a/Assets/Songs/Kick_Shock/Kick_Shock_Easy.asset b/Assets/Songs/Kick_Shock/Kick_Shock_Easy.asset index 4683655..78f270d 100644 --- a/Assets/Songs/Kick_Shock/Kick_Shock_Easy.asset +++ b/Assets/Songs/Kick_Shock/Kick_Shock_Easy.asset @@ -22,7 +22,7 @@ MonoBehaviour: OffsetSeconds: 0 StartDelaySeconds: 2 TimingPoints: [] - DifficultyName: Easy + DifficultyName: BGR DifficultyLevel: 0 DifficultyRating: 1 Notes: @@ -30,95 +30,215 @@ MonoBehaviour: Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 816f9c54-72ad-4238-a916-1e8618e8df88 + EditorId: 61202374-9ad3-480b-bc86-45795f4750dc - Beat: 4 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 2ee0ec0b-e29c-4a58-aa73-5c12e900ffbc + EditorId: 18607590-5c01-4a8f-83da-ca751b49acf8 - Beat: 8 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: b6c71326-c726-4fd2-8ee2-03a2d12551f6 + EditorId: 679fc00b-7f04-4910-a85d-e77b760a1a6d - Beat: 12 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: c75f1fb5-b8f4-4dcc-87d6-56a3bf7d2aae + EditorId: aafa057c-e089-4ed1-a833-eddc01c3664b - Beat: 16 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: a63c28d6-b3df-4e18-9112-0ba255031dc2 + EditorId: c7247259-eb98-42fe-8575-c03f796e1f8c + - Beat: 18 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: c4f35060-2e8d-4eba-b103-86881aabd3ef - Beat: 20 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 1611180b-65de-4aad-afdb-ed3e3db0d0b9 + EditorId: d176e403-b452-4fc6-8155-d44e824e8a54 + - Beat: 22 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: c86167b1-36f5-48c2-9539-acd727acbf87 - Beat: 24 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: a40490e8-e617-4a38-b008-5e9f0a0e4f75 + EditorId: 007f485a-5361-499a-a49e-33c52938a625 + - Beat: 26 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: fc075e7b-dd25-424f-a2b7-5b941a71c998 - Beat: 28 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 54edfd4b-dc8f-46a4-8be2-141e85ad0c4c + EditorId: 9ebf80c1-65cf-4ea9-b8b0-65eb122e7d0f + - Beat: 30 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: e6050a8f-df3a-4cab-90a0-1fb7b36a6b57 - Beat: 32 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 9d840816-99ac-4efb-a9ad-8a63bbd5d1a9 + EditorId: 0f15e20d-0ff7-4dc5-a986-82e016cd3483 + - Beat: 34 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: f2aef779-c337-4e17-b54a-146c70b88792 - Beat: 36 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: e37597e4-b208-4e14-b079-1aa840d4dc72 + EditorId: b1c91459-6e86-45f5-aaea-d5dc80689715 + - Beat: 38 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: b414035e-e20e-4632-b323-f7551ae88fd8 - Beat: 40 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: a4fd5a0d-a833-4239-821c-b5908c94f865 + EditorId: 620c85b2-e0b6-4691-9d42-04020080aa8b + - Beat: 42 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: fe0f6b39-2782-4e99-bc99-e2bce5fb71cf - Beat: 44 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 51dc5381-743b-4e7d-9156-04e42e117ee1 + EditorId: ec0dbccf-5eb3-4da3-bfed-46dcf04bf549 + - Beat: 46 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 56290aeb-f33b-4b76-a644-9954c6e44917 - Beat: 48 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 0383306e-7ac9-4395-9fe9-619e2647e7ee + EditorId: e945656d-8283-474b-b72b-3109e608f4ad + - Beat: 50 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 0af88d87-1222-40f1-af5c-1d4575c6e1c2 - Beat: 52 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 20547399-5e16-45d2-8dfc-cd8127bb1523 + EditorId: 5bc7095a-9246-4bfb-aa3e-417a7ddcef25 + - Beat: 53 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 6e545aa9-5f06-4905-9f5a-92244e067745 + - Beat: 54 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 4a79723f-ddd3-47a8-8f9c-5cb1ec448252 + - Beat: 55 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 585bc8f4-2ae5-4e4a-b564-2bf9a30d2111 - Beat: 56 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 8fd2cf83-2822-49df-8314-2d3bac6a6b04 + EditorId: ad00d242-5e52-4cf2-90a8-3a38c522ce7e + - Beat: 57 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 3759f01e-f534-40b5-86e3-569eee2aa61f + - Beat: 58 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: b84adf09-6add-4067-93b7-1277518d1d90 + - Beat: 59 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: eee4301b-0247-4971-94ef-1217e61698eb - Beat: 60 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: b69af14e-8a47-43ef-ab2a-8eb4dbb50aa1 + EditorId: b4b509eb-60ee-4807-8a4d-7fbb7b64f8e5 + - Beat: 61 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: b4ac2580-7a46-4b2a-9fae-017633661ad6 + - Beat: 62 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: cc81ab28-56bf-4bfc-8608-9c4a45da6efc + - Beat: 63 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: b0ad6344-430d-4b7e-a45d-863b2627b79f - Beat: 64 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 0ec7395f-0c2b-4903-89da-e2bfaf45f8ff + EditorId: bd023790-a396-48a8-bf13-6d72a8af37f1 + - Beat: 65 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: fbda761d-1d9c-416d-96c8-44df4ff423ec + - Beat: 66 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: b21763d6-0f11-42ff-b382-2c15b7b64d50 + - Beat: 67 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 6bfc5d66-6c91-49a2-86cd-eb2975c0fa32 - Beat: 68 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: a89d67ff-e26c-46ab-b367-fe587d5bb865 + EditorId: 00f08cf2-9cbe-4552-849f-87951738626e + - Beat: 69 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 72bb7832-1599-4e49-bcc5-5e0c2a947c7d + - Beat: 70 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 7109effe-bac0-472a-984d-761ce4c5d378 + - Beat: 71 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: b6bbc456-0dc1-4094-9cc7-ea5c937b94fc - Beat: 72 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: fff3945b-b645-4ca1-ae42-fdf39790976b + EditorId: 2a54483d-db01-440f-8ef1-0a25a6320688 KeyPoints: [] diff --git a/Assets/Songs/RetroFuture_Clean/RetroFuture_Clean_Easy.asset b/Assets/Songs/RetroFuture_Clean/RetroFuture_Clean_Easy.asset index 53f8e0c..d90d07e 100644 --- a/Assets/Songs/RetroFuture_Clean/RetroFuture_Clean_Easy.asset +++ b/Assets/Songs/RetroFuture_Clean/RetroFuture_Clean_Easy.asset @@ -22,7 +22,7 @@ MonoBehaviour: OffsetSeconds: 0 StartDelaySeconds: 2 TimingPoints: [] - DifficultyName: Easy + DifficultyName: BGR DifficultyLevel: 0 DifficultyRating: 1 Notes: @@ -30,395 +30,1365 @@ MonoBehaviour: Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 1911536c-2a1d-42be-97b3-49c2df7e7e17 + EditorId: 0e4cd405-875c-4bd3-bf1e-5dd9fadddbdc - Beat: 4 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 397a5401-9710-4ae0-9ddb-605a578c1cd0 + EditorId: c5531153-da17-40ea-b2a7-b37b2aee8f37 - Beat: 8 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 7d8ed281-e1bc-47ac-9638-93f87ae7ad2f + EditorId: d8374af3-98ab-404a-a4bd-637b0b7cdfb3 - Beat: 12 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: d14d9775-4056-44fd-8288-87eebaae9967 + EditorId: dc30ac04-5e22-42a7-8bbf-08e84a49d04d - Beat: 16 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: e2bbf1b2-4f17-4042-8536-0dcf1d641c30 + EditorId: 09c8b5bd-68d4-4378-8bd7-1d76353c4feb - Beat: 20 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: b5314b3a-a9ef-40e1-b6fe-bf14412b2884 + EditorId: 9faa676f-3be5-48db-afb7-80101b57505b - Beat: 24 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 6b764fa9-1097-48c8-a8a3-0fcce3d288c8 + EditorId: e159d239-5668-4e5e-81d2-3d09b053eacc + - Beat: 26 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 62164698-347b-4565-b17f-9f8c139b4a84 - Beat: 28 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: e08faf74-748b-4e10-a539-24dc63b53ad5 + EditorId: 2fa56a08-b0af-47d2-bb4b-cc19c4ba5973 + - Beat: 30 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 5b14222c-e2c3-47c1-9d3e-9cde1741fa8c - Beat: 32 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: aef12b2d-a9dd-4b74-a14c-877111e6cf9a + EditorId: 2ea44b0f-9f16-4bfb-88ec-1e12086294ce + - Beat: 34 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: d1f8048e-298e-46f6-9bed-2822fe2d389d - Beat: 36 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 14f9132c-e23b-4ffb-83ad-c10cb7f7f01b + EditorId: b0b6c99b-aba9-42f7-b9f3-88d3d66ff3dd + - Beat: 38 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: ce388571-279a-4b12-9932-2e4f9923060d - Beat: 40 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 9b045010-b726-4375-a9ff-34fe2075f53c + EditorId: b93f83d7-0d8e-4c72-9adc-53e29569cf94 + - Beat: 42 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 965d649b-9f7a-4561-9d42-b0c82f4f50bb - Beat: 44 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: e8ddb77e-0ed4-4b89-b39b-c17bde977e51 + EditorId: 225023f6-3d53-42aa-9ed5-df24f7d33bd8 + - Beat: 46 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 38848343-eb4f-4d8f-9b7a-3db53eef00e4 - Beat: 48 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 106a2de8-c697-4dd9-8399-8f902d3b9b15 + EditorId: feb92c49-d174-41a7-a9d9-149272be399e + - Beat: 50 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 899c19e0-9469-46d5-8d6e-85ea5ce84f77 - Beat: 52 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 1f6c7238-d5f8-472b-b651-56985ae77357 + EditorId: 8f217503-a558-40f2-a445-3bfcd2c016be + - Beat: 54 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: d5970b65-8755-4338-a95d-7f49f6264a16 - Beat: 56 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: f3cd2cd3-54a5-4594-9edf-e00918feacbf + EditorId: dc085da1-e1d6-4e27-86f0-ecdeecaabda3 + - Beat: 58 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: b031713e-cb5d-4aa3-964c-3e016b2318a1 - Beat: 60 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 2f3426c9-1e9b-475d-9291-f727d6033817 + EditorId: 9d05fa74-a09a-48ff-abfb-a467883ebb64 + - Beat: 62 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 05626585-2cc0-4ecc-86da-832f8727f8bd - Beat: 64 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 11c9a481-6773-45d1-841e-f095a471f0af + EditorId: 8f3d944f-4b41-4644-986e-ea56926347cf + - Beat: 66 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: a65c8e93-0654-4016-856b-27d99fc7df9d - Beat: 68 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: ea2f74c0-a843-4c2d-b85a-12d95e98c0da + EditorId: 625936a0-59d9-4af0-ba9d-35c61aaae1e2 + - Beat: 69 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: bef3145a-c262-47a4-9f87-645fb9e31b29 + - Beat: 70 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 50309772-8207-43ac-b68a-3145a55897a2 + - Beat: 71 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: c32073ca-0a6e-4725-95e3-f48b3d06ac96 - Beat: 72 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: a97c59d9-db0f-4911-8581-b0b0c5e636c2 + EditorId: ecb89b5d-0711-43f2-b497-6b9633cb8e57 + - Beat: 73 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: ed890d97-4486-4df6-ad78-bfa3f938b8d4 + - Beat: 74 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 45e624a9-8d9c-47fa-a8de-e6557f884c1a + - Beat: 75 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 78c682ae-b4b6-4703-b59f-8cd546b1ca69 - Beat: 76 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 54a2dfbd-3e00-474f-a44e-15dbb86b62ca + EditorId: fd4583ad-ebb8-4779-98e8-2e11e717067d + - Beat: 77 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: cf53a827-4681-4b4b-80e2-d884a5bd1c50 + - Beat: 78 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: a5c8134e-38e6-4cab-b04f-d3c9517e28a5 + - Beat: 79 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 4b92f704-501d-4e02-88a2-ee21ee18513b - Beat: 80 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 51943049-8c6f-4c9f-8fff-cfdb9c32f2bb + EditorId: 5534dee2-4d2f-4a7f-81d4-a65fc41a537d + - Beat: 81 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: f8ba4acd-2c26-4c82-8076-902cd857b611 + - Beat: 82 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 2542d12c-db35-42b2-9702-0c668e5d295d + - Beat: 83 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 376d4429-ef14-483f-a0e0-f00d9a3f37c2 - Beat: 84 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 47b9f66b-8374-41a8-8cd6-52735b478c03 + EditorId: 2f7f4968-fe8c-43bd-ac25-73ba4bc6877b + - Beat: 85 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 9e1cce60-e97a-4ff6-86fc-672e2ed5b5f5 + - Beat: 86 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: e8413155-f5fd-432d-b70f-014222eecb75 + - Beat: 87 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 8cdbf141-c816-440f-8d1b-f10f3692b68f - Beat: 88 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 65ba0cb6-aace-461a-9b8b-adee22dac123 + EditorId: c7c84e42-13c6-47b4-bc16-0c183fe8e6b4 + - Beat: 89 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 852e105a-6a5f-4e41-9b9a-8d118dac5322 + - Beat: 90 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: b8e87648-8432-4303-918c-f8d11010d41b + - Beat: 91 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 966b8702-fbcd-42e1-af2d-c08a9de42354 - Beat: 92 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: f6590ae4-5a38-4af0-9930-ae3b113deada + EditorId: 1528dacb-931f-49d9-ab2d-18d171d9c3c2 + - Beat: 93 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: f63dabb4-4783-4faf-92b8-27189c97235e + - Beat: 94 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 1e64105c-c542-4d7e-a86a-cf9fefd74808 + - Beat: 95 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 90613786-7c11-4f08-9180-932a4eea995e - Beat: 96 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: ced00061-2f6c-4338-9fb1-9662c8f1d3e6 + EditorId: 096ad5f1-7aaa-4214-9533-f11a5afa1955 + - Beat: 97 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 0e1d8483-faff-49a5-bdce-d3e8f7130a24 + - Beat: 98 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: bb927b31-032c-41e0-844a-9a409d2418b2 + - Beat: 99 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: e460fd62-a326-4581-b753-cd3559a63069 - Beat: 100 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: dc500deb-c9c2-442a-be16-59c25548540e + EditorId: 6dd2c756-ff77-4550-a5ac-5b11de4579c6 + - Beat: 101 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: d571a6a2-4dca-46dd-9b04-6be3824c92e1 + - Beat: 102 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: a29bc027-6191-4a84-aa59-e035cd7d9227 + - Beat: 103 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 52aff52b-96aa-480e-aac4-9d0ebee887dc - Beat: 104 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: f8bb0ed4-0c32-4dc5-90dd-e4869435263a + EditorId: 7c1c37cc-21ec-4fb1-8a97-af08a392bafa + - Beat: 105 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 89595363-dd2b-424c-9224-e0b16f18c6df + - Beat: 106 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 3bdbfcc2-3597-41fe-a92f-0fa28e3c0511 + - Beat: 107 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: f2506b31-f7a6-4ea7-953b-da58d06a1f3c - Beat: 108 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 7af73ef2-96d7-4dc8-8f95-7179e2a1cda7 + EditorId: 96a25aca-d2ac-46a6-a6c7-2e2de4188468 + - Beat: 109 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 78c5cc69-9882-4d55-8836-ddcaae108442 + - Beat: 110 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 9ee0cbbc-9975-4b51-a945-f02af27eedf4 + - Beat: 111 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: d5625f0e-a5e7-4bca-8c2d-8b3871eb2d1d - Beat: 112 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 98d241cc-552a-43fb-aaa5-46966ecb7174 + EditorId: 740693d8-29ac-43bc-8e61-9c68f1c79a5b + - Beat: 113 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: b2960761-2c7b-4d9a-aa6c-ec0d0f106026 + - Beat: 114 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: fa17c0e4-d266-43b2-9577-576448340754 + - Beat: 115 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: ffe9f0a1-4278-4e4d-ad08-0af271edc3d2 - Beat: 116 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 0f7f553f-612b-4acf-973d-038941eeafeb + EditorId: 287b574d-9845-404e-9e8d-ed0f7ff229bf + - Beat: 117 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 6da659ed-619c-4cfc-bb78-cbb4cd743d2e + - Beat: 118 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: b562b006-01ec-475c-ab78-600a29fde7b1 + - Beat: 119 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: e68fccce-41a1-4303-b57a-c903b8cad5b4 - Beat: 120 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 6e90e097-2720-4440-922d-b0007c70fa22 + EditorId: 937ab82d-1fc8-424e-8ebc-320adf626aff + - Beat: 121 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: f83eb169-5902-452b-9c5b-5764a21794fe + - Beat: 122 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: e7baadf6-94f5-4102-ad9c-67488a06f416 + - Beat: 123 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 044f9d16-e1e9-437c-ae1e-a5bedb4fe514 - Beat: 124 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 4ccba89f-066f-48d3-afac-6da808ede426 + EditorId: 14080bc9-07d3-4364-85cc-a9e9acc46738 + - Beat: 125 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 25dae2da-9a07-4405-93e7-c3c68ac4e4e7 + - Beat: 126 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: aa6986c9-a925-47de-a156-df8947d6f549 + - Beat: 127 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 151291a0-e0fc-46fb-987f-0d13da5b04a2 - Beat: 128 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: a2f0667a-4b9c-4175-b4ef-d05a4417406b + EditorId: b4c08dc5-f21e-46d2-8247-064f04b03b31 + - Beat: 129 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 0936e2c5-6052-4f21-93bd-4a987dd90fa2 + - Beat: 130 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 2c95f4ce-97eb-479b-b902-c5cbfd1bc645 + - Beat: 131 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 776797be-fb0d-439d-b98e-4a9b9860ffea - Beat: 132 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: e7be3557-aa2d-4be6-b3a8-ecde2b107a15 + EditorId: 9f14f6a1-0f3c-4d53-8b9d-290f0d560a4f + - Beat: 133 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: b0a8226d-88c9-4dbc-92f8-d6f5ea82e186 + - Beat: 134 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: f1341cd6-f4db-4491-a2dc-5dbaadcb6ef4 + - Beat: 135 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: a48d13d5-f223-4f18-a190-0b9d91e7771e - Beat: 136 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 278293bb-0070-41fc-b8ba-fa2ed618b3a2 + EditorId: 7c45a4f5-8c0a-4889-8a07-558cecc74b48 + - Beat: 137 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: ba779f9d-7fb2-4980-905f-16315a79407f + - Beat: 138 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 1a1f4f3d-ae8f-4c6a-8995-9fe8ff5ac2e2 + - Beat: 139 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 21d5ac0e-e6d7-464f-8ea5-57738a520cd5 - Beat: 140 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 0328f90e-dea7-494d-a45e-441f2bc15e60 + EditorId: dbd57a3c-db33-449f-8efa-9e4bf1ab435a + - Beat: 141 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 90f77046-f3f0-495f-ab64-0e85386dfce1 + - Beat: 142 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 964b0613-07c4-400f-b0f8-b5697d8b8d41 + - Beat: 143 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 31f2ea87-9914-4ae3-b4b8-7c1e1f3fad47 - Beat: 144 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 4e38d3f7-6ed1-49ba-a581-bcd2e02c8503 - - Beat: 148 + EditorId: d8b1c0f0-e4d5-47f4-a272-0af1acfeae38 + - Beat: 145 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 1bc2cd15-d24a-4321-ace3-d1c3e9bbec3d - - Beat: 152 + EditorId: 1495ce75-8f2d-4c6a-b2a7-802e156642c5 + - Beat: 146 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 0c734025-faa0-4231-ac77-8acd887ee7db - - Beat: 156 + EditorId: f8361b9c-281f-4537-a2da-4544f473c8a9 + - Beat: 147 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 529644cd-357d-4376-ac20-93d2660aeb74 - - Beat: 160 + EditorId: 2fa90621-7cf5-4010-a06a-57eee104fda3 + - Beat: 148 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: b6242e17-90c5-4f10-9410-dfc96f9d7322 - - Beat: 164 + EditorId: 427894d4-4eda-4f6d-8e18-5bec3f1d51ff + - Beat: 149 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 58a55260-4b00-4b85-9328-de6611b080cd - - Beat: 168 + EditorId: d2059e08-abe8-43cf-a033-b77de371c36e + - Beat: 150 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 49a2dc17-72e9-4380-87a7-c1df4ddc3203 - - Beat: 172 + EditorId: 6ed617b4-27d2-45a1-b990-ef03faca337f + - Beat: 151 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: dbc8d39c-fb5f-473b-816b-020205a96281 - - Beat: 176 + EditorId: 5fbdbae4-1f85-4489-bd60-0321af45ea76 + - Beat: 152 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 90e03cd4-234c-406a-afbe-cbc5de8e7d0a - - Beat: 180 + EditorId: 5d0837d8-3068-4530-baed-ce4f4f08682c + - Beat: 153 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 88e28ba6-7871-4596-b04e-3967153fb4a9 - - Beat: 184 + EditorId: cad320bc-5395-4359-9131-16faf104069b + - Beat: 154 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 6571fe59-bdd8-48b7-b5f0-8aa92da5faf5 - - Beat: 188 + EditorId: cc180319-b2f0-41f3-835a-e4c40d15826a + - Beat: 155 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: d40b77c7-c063-4cf7-b689-c694c24c6e78 - - Beat: 192 + EditorId: 5bad9c98-fb70-40b2-8851-c71c032702ae + - Beat: 156 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: c459b882-b8e1-41dc-8af9-ee58bdf299dc - - Beat: 196 + EditorId: 41ffe6dd-899a-4f39-bb3a-45945e63ef9b + - Beat: 157 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 5f21aa7a-3bb5-47ff-9624-8d08590103a5 - - Beat: 200 + EditorId: 32301c57-b280-4819-ad6a-e8c5dff12e98 + - Beat: 158 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 638d3233-fd73-4d44-a659-601597f5e052 - - Beat: 204 + EditorId: 46365034-d1cc-4057-8573-8cfba10a795f + - Beat: 159 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: d582f03b-d90e-4e31-9e7a-3215938ea9ac - - Beat: 208 + EditorId: 5f75432c-8ac1-4650-9ef7-e2a9349f0e8a + - Beat: 160 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 6eec0f2e-c5bd-4be3-8215-2e67165efcd2 - - Beat: 212 + EditorId: 4a46ad91-644c-47d8-96ca-66e291f2c75e + - Beat: 161 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 38f197e9-3bb2-4d9c-8bf2-b1023ee44aab - - Beat: 216 + EditorId: c9998fb1-1db6-4b99-9649-bac5ca83ddc5 + - Beat: 162 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 224b28ab-e387-4f86-8802-6a3300ff0b15 - - Beat: 220 + EditorId: 05cb0a4e-c3c1-463d-bb69-b87eac0bb78b + - Beat: 163 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: ddf828d8-af67-4276-9c73-4c97d25ffec7 - - Beat: 224 + EditorId: edd90edb-2e74-489d-9254-388c70819d17 + - Beat: 164 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 00ae5d23-45c3-43ba-b4be-13ccc713ac87 - - Beat: 228 + EditorId: 92f9e73e-1d08-4afd-bb9b-6699a72ebd2e + - Beat: 165 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 946050d8-744d-46b4-bbfa-61c7c9cfa889 - - Beat: 232 + EditorId: c05f0343-a335-4bc3-82a9-dd5fc78276f2 + - Beat: 166 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 6d100064-030a-4950-8ec7-c3b50121e50b - - Beat: 236 + EditorId: 128a43e7-8183-45ed-b697-9caa3906675d + - Beat: 167 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: c3662bb0-b9f1-41c8-b25b-0beeb183afd9 - - Beat: 240 + EditorId: 298e88eb-8cf4-4adc-bcd3-8e270f6c01a2 + - Beat: 168 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 3af2c60b-6890-45b1-81b7-35c13127a915 - - Beat: 244 + EditorId: 2b12f616-b55b-458a-bd85-faaf27becf0c + - Beat: 169 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 740dc625-8ed2-4512-8bb5-ce1fd2e7642e - - Beat: 248 + EditorId: 2b04623f-f450-4cc0-b0ce-28d44aa12753 + - Beat: 170 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: dfbe1fe6-b043-4f29-b79c-c25860ce46fe - - Beat: 252 + EditorId: 1f9538a8-07ca-4042-a280-831cecd0231f + - Beat: 171 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 98475526-f667-49bc-891a-77ba34d4e588 - - Beat: 256 + EditorId: 7b036878-b91f-4786-a113-5bd82cbb30eb + - Beat: 172 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: e6ef1214-39d3-4ecd-9ac8-b775d44dfe05 - - Beat: 260 + EditorId: 321644e1-1a28-4013-9705-ff0f839ec1fb + - Beat: 173 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 15b2bc55-f55d-4624-a687-ac243aa91007 - - Beat: 264 + EditorId: 9786be51-9a51-44c6-a9d0-324667fef92f + - Beat: 174 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 3b951b22-a67c-4725-bc10-bef64aac03a9 - - Beat: 268 + EditorId: c501ae7f-d5bc-4983-a5a2-c95ba509f167 + - Beat: 175 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 91b72c80-7424-4b0a-8a1c-e4d19b490d09 - - Beat: 272 + EditorId: 2d6b8272-eaba-42a5-822a-8acd83617fdc + - Beat: 176 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 16419c59-2741-4072-90af-e5de0b8974c6 - - Beat: 276 + EditorId: 4f0491a9-097d-45f2-8658-e17d459d11fa + - Beat: 177 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 11ca4153-d8c6-42ee-ae2e-c888017c6d1c - - Beat: 280 + EditorId: 64c34363-736c-4010-b042-31374f65ecaa + - Beat: 178 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 71ae7a27-a03e-44e6-a42c-17c6990d53fc - - Beat: 284 + EditorId: ca87209f-8df6-40c0-9c52-7dd498f9a92e + - Beat: 179 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 364566ca-ef2f-4c2b-88ac-827c68ae1005 - - Beat: 288 + EditorId: 2810da9a-6b38-45bd-90eb-37cba7b9d445 + - Beat: 180 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: fc7ce49e-9898-48d3-9383-90aecb27da34 - - Beat: 292 + EditorId: a6a6c35b-adf3-4e1d-af7e-038fe3b7b140 + - Beat: 181 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: afc58ce7-3ff5-4606-aeaa-b032949fe3b2 - - Beat: 296 + EditorId: 111d8c55-9ffd-4b12-afb6-0d5214babbba + - Beat: 182 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 8438bbf5-6b5d-4289-9f0a-c2d102edd652 - - Beat: 300 + EditorId: a263adc3-ef11-4d9e-b042-3d2b85a6fe47 + - Beat: 183 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: c253e99c-0146-47d5-aed9-5997a2dfe622 - - Beat: 304 + EditorId: 5f712676-7370-4f30-9eb7-012f477f2487 + - Beat: 184 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 6f6c89d8-001f-44c5-969b-18a3f5f1d729 - - Beat: 308 + EditorId: cfb37d0e-598a-46c0-a889-57fa060d2018 + - Beat: 185 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 7eb13407-0974-47f0-8553-eb3371af370a + - Beat: 186 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 97a910af-4666-4e8f-92c9-e3523b399ece + - Beat: 187 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 840a2bdc-3385-4256-81c1-f62ef958bc6a + - Beat: 188 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 9105732e-dc9a-42cf-97cb-46202daf4ed7 + - Beat: 189 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 1bd5e582-ba08-4cb8-bbb4-650e4153d7d8 + - Beat: 190 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 0fc38224-ab0b-4b8c-947e-4ffd785fa15f + - Beat: 191 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 776ee380-30e6-4f93-bc73-88de0828b9ef + - Beat: 192 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 38ed66e2-1062-4c9e-ba75-3b32730be5de + - Beat: 193 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: e7f20231-8f28-434f-88f6-5a483c1e0edc + - Beat: 194 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 4b5e5bf5-61eb-4307-91fd-12a0f8054997 + - Beat: 195 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 7eaef290-7053-4ad8-a2ba-084adf3b6069 + - Beat: 196 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: cf0504eb-8a7b-43cc-9b59-5b508d026eed + - Beat: 197 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: edaf5419-1ba9-455e-9181-2632f56886c1 + - Beat: 198 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 925c7473-860c-452a-a1b9-72ece5c9e478 + - Beat: 199 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: dc11b355-01fc-43d4-85b0-45afa82b6686 + - Beat: 200 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 06d0880c-a35a-4abf-98c9-7ea087cf6004 + - Beat: 201 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: b3765f76-18ae-4dd7-a1dc-33a6e333b7c0 + - Beat: 202 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: fceb12f4-66b3-47f0-a853-226b397895e7 + - Beat: 203 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 031e5198-949c-4c0d-a1f3-b7eb908ccb2f + - Beat: 204 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 691f5fe6-cb4c-4f02-88ab-5b75c19d94d7 + - Beat: 205 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: e1590ee3-623b-4bb1-8cfe-11d545a3d091 + - Beat: 206 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 9683d44e-b035-44a5-be05-915fc897e4da + - Beat: 207 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: d6215a27-0e07-4ae8-a97d-5030ea5bc246 + - Beat: 208 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 0fe02dd4-2f68-4fca-ba03-a650cd415230 + - Beat: 209 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: a9a37827-166d-4518-a64d-1497b6b90a49 + - Beat: 210 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: ffb2b67a-13e9-44ce-88a4-7f838da8a3eb + - Beat: 211 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: fc863b72-5fea-49d1-9b5a-24e253e63866 + - Beat: 212 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: d99b277e-4044-49a2-b5c1-472a77491936 + - Beat: 213 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 66cb938e-8187-43a3-832e-3a6126cb62dd + - Beat: 214 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 36dfff2d-dc24-430a-bd0f-1dc7f3193fc0 + - Beat: 215 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: edc3ee3a-598d-4f1d-83e3-9ade87a63c7e + - Beat: 216 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: e7c14765-1a0d-45c4-b0e5-703ed1e79720 + - Beat: 217 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 99d4c2e3-0362-47ad-8201-a1378c6d6aad + - Beat: 218 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 494c9b59-8fc4-442c-a683-ba96c8d9e344 + - Beat: 219 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 6d9495e0-75ae-48ad-bfdf-6f1afd21c4f4 + - Beat: 220 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 56804da4-117f-4153-a740-e71355f3ae05 + - Beat: 221 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 5b3f8166-3c93-4e4d-9a8f-6bbc7847fd08 + - Beat: 222 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 07621a60-6d61-430e-9d6f-8bb9e48ecf17 + - Beat: 223 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: f7f96081-6296-44e2-b50c-764785978448 + - Beat: 224 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 20c60da4-9dca-481f-b580-299b9ba39039 + - Beat: 225 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 7a1ec40c-6359-44de-a745-f6bce8645519 + - Beat: 226 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 1e13063c-e048-4d7c-b99e-fda9b84be072 + - Beat: 227 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 5f0889ff-f704-40f6-b373-d64406f15617 + - Beat: 228 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: d515dea9-5a1b-4089-9798-8b235a11e16e + - Beat: 229 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 0acd9c4c-7519-4c12-9d37-0440ae187d47 + - Beat: 230 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 8bd063ba-128c-4712-bf0e-76d7e36a7bd3 + - Beat: 231 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 2cfd4df0-a1ab-4c06-b155-d1473eb7d6c2 + - Beat: 232 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: ef922aa7-ef11-479c-bb9b-7e227faa44ab + - Beat: 233 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 4c795a5b-b450-4cce-9136-52848eba3792 + - Beat: 234 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 181a85db-a830-442d-bb4b-8d8a1fb53037 + - Beat: 235 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 71cfaa5e-4dd6-47b1-addf-f1e0226971f1 + - Beat: 236 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 92da9a51-3813-4a70-acc8-80a9e62df6cb + - Beat: 237 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 675a91b4-eade-431f-9c6a-9f050282a0de + - Beat: 238 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: f7021bb4-2791-41b5-8d08-b2f9d103254a + - Beat: 239 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 8447106b-9612-4984-8bdd-86d8c085045b + - Beat: 240 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 70241da7-95c2-4610-a29e-48dacd398e90 + - Beat: 241 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: ba93c533-b78e-4571-9f30-1619d3ccd479 + - Beat: 242 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 28e0bb5c-090d-444a-b889-7aacd63d4b90 + - Beat: 243 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: c2569b72-eaf4-4c3b-8d37-fa7aef343a1b + - Beat: 244 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: bbc0f3ec-a9c1-4f01-9927-7be367ea0ff3 + - Beat: 245 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: f73bf273-5d72-40a7-b5a4-e09f9e52ed0a + - Beat: 246 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 930e0f30-d2bf-4429-820c-f12bfba06521 + - Beat: 247 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 6753d1b3-97f7-4cab-9a3a-4c52408a88bf + - Beat: 248 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 4991a17c-acd8-4650-8bda-8a8ff499b209 + - Beat: 249 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: e530769f-f08e-4d83-ad46-a84fbed874e4 + - Beat: 250 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: dc29a700-6d39-4fe1-9230-86f81f43f22f + - Beat: 251 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: bb993f5c-327e-40ba-a414-ffd959756afb + - Beat: 252 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 4e0d11e7-ca0c-4936-8507-08a2e1c24dd3 + - Beat: 253 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 7f2f0786-7739-4619-862b-be22cb19dab4 + - Beat: 254 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: caac53ac-4892-4274-b434-29bcc030dc35 + - Beat: 255 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: db692d03-b6e7-45fc-89ac-b663a0f9402c + - Beat: 256 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: cdd03a03-4ff2-4a92-a34f-270883fbbe01 + - Beat: 257 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: a7e24736-cb8f-49ff-81d3-234214af03db + - Beat: 258 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 05320ce5-9728-43c3-b922-1118d29cd3a3 + - Beat: 259 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 10e49f33-f5c9-499d-99c5-41b6de0f831d + - Beat: 260 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 7da2c3b6-4276-40ce-ad6c-fc4b68ebeb64 + - Beat: 261 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: d4c8dca4-9599-4efc-8c29-17eabc033ebc + - Beat: 262 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: cd3caaa7-4758-4c95-ab81-df2b9fdf0d7c + - Beat: 263 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 03da2f30-ba31-43a6-a2f9-262806ef0df9 + - Beat: 264 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 9c3ae789-5441-4a80-80cf-4b7419002feb + - Beat: 265 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 084dad6f-e85d-4fa0-b121-1399edea765a + - Beat: 266 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 00f49eb0-0966-495c-95a9-fb4fec416788 + - Beat: 267 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 3f0ba0a9-4c93-4013-9849-2f933a7a4c61 + - Beat: 268 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: a13d3b94-da0c-4f80-88cd-a193d19914da + - Beat: 269 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: dd6f9b74-3110-4622-9f6b-74ec2fd868f1 + - Beat: 270 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: c51e07dd-6398-42c5-ad1d-ef5d49847eff + - Beat: 271 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: db085b0a-edaa-4e89-95d1-9b81cce57b26 + - Beat: 272 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: b87f8574-0ba0-4bdd-90de-2290c4fa9cdc + - Beat: 273 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 9e60c1b9-885c-4dbb-8ac7-57aa25dcc3f5 + - Beat: 274 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 2e4c8fc4-4874-4b3f-b06b-80fdacb09955 + - Beat: 275 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: b277cc93-a687-4eb0-9fed-c166ce9ad249 + - Beat: 276 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 02e471f8-d39c-4d8e-9c95-a56f0f8811f0 + - Beat: 277 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: d6ec60d4-aabd-4665-a83a-ef4101879aae + - Beat: 278 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: bc5600b0-992b-4824-817e-46bc47da8f6e + - Beat: 279 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 693b24ef-965e-44de-b5d8-b1bc9b5ce5af + - Beat: 280 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 40c6831e-aa4d-47f9-80e0-0b4ef4823809 + - Beat: 281 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 32186959-9ca4-4a47-83f8-5ad81ac8bc46 + - Beat: 282 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 4b4199bf-aff6-4da5-9763-13b44588616e + - Beat: 283 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 81b34be4-b973-4702-a907-bb91c2d27f86 + - Beat: 284 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 74006a5e-f86d-4706-9353-d4c00652397c + - Beat: 285 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 8315e237-3d2f-4aa5-8129-c63324aa2e86 + - Beat: 286 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: d4364792-02f4-4fe9-976d-86aa4c2429d6 + - Beat: 287 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 48185212-b1d8-49af-b922-38ceb7ed3a27 + - Beat: 288 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: b00113ed-8e85-4126-8d68-fdb75068af1d + - Beat: 289 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 869dd249-b20e-4077-9535-a075a516a3af + - Beat: 290 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 4ec6a98a-2796-4509-a396-4bf0ac42a080 + - Beat: 291 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: e91ab717-8d8b-484f-8eb7-5bc2ec3624cc + - Beat: 292 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 98eea595-9494-4dcf-bcf2-39ac0ffd09f0 + - Beat: 293 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 7c044e81-4957-485b-a3c6-2a5fc4862dc1 + - Beat: 294 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 4bd943a7-5334-4356-8c52-0178f4b6edf1 + - Beat: 295 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 4ded9945-7863-4b84-87f8-956c08cdc0f5 + - Beat: 296 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 78c7aa2b-af89-4d60-8870-3b0e89e16126 + - Beat: 297 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 77325d92-4d86-4325-82fb-8aac3bcf6699 + - Beat: 298 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 0a93857a-4571-4ad9-90c8-ca78138edcb5 + - Beat: 299 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: d3f07a77-896a-4541-a3fe-6c7b7a9d037d + - Beat: 300 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 4cb97aac-d2b2-42a0-91c4-3f023f0b0507 + - Beat: 301 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 26d454d8-34dd-4b00-8965-f53a3b69ea25 + - Beat: 302 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 778f02a9-0fc9-445c-87da-50ddc1e42e73 + - Beat: 303 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 8204767c-8cc3-4046-97c2-93bccd8011e0 + - Beat: 304 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 84d71eef-8191-4422-b9de-70bc9f4a4cf2 + - Beat: 305 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 04b686e7-a80c-4165-9727-05860bbba04b + - Beat: 306 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 9da24510-d6ff-4966-a193-3e0560e53398 + - Beat: 307 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 497abd70-dfe7-4362-94c6-183941fcb99c + - Beat: 308 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 88ab2579-ea42-4856-a176-54d77b118381 + - Beat: 309 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 5aa30b2e-bf71-47d2-9120-4ec579220742 + - Beat: 310 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 5a80e0d9-0c0e-4311-8a23-5cfe0fa2fc8d + - Beat: 311 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: c637fc1a-54e1-4965-8c58-61c8a0b46ca1 + EditorId: b32a95a4-00ba-415a-9e91-3773d32f5790 - Beat: 312 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 6d5ff9d8-76a6-4d28-ab1d-50e1178ba847 + EditorId: 0b196307-7a46-45cc-b5f8-aa51ecfeed25 KeyPoints: [] diff --git a/Assets/Songs/Windy_Masquerade/Windy_Masquerade_Easy.asset b/Assets/Songs/Windy_Masquerade/Windy_Masquerade_Easy.asset index 37050a5..865b733 100644 --- a/Assets/Songs/Windy_Masquerade/Windy_Masquerade_Easy.asset +++ b/Assets/Songs/Windy_Masquerade/Windy_Masquerade_Easy.asset @@ -22,7 +22,7 @@ MonoBehaviour: OffsetSeconds: 0 StartDelaySeconds: 2 TimingPoints: [] - DifficultyName: Easy + DifficultyName: BGR DifficultyLevel: 0 DifficultyRating: 1 Notes: @@ -30,245 +30,840 @@ MonoBehaviour: Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 240a5427-6442-4f34-858c-e19f13ebfdbc + EditorId: f90265d6-efd0-441d-b994-573ebe4f0585 - Beat: 4 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: ad75c9fb-f472-4410-b0a7-eb235c35b22c + EditorId: 57295a18-9641-4a39-8455-7d4f7cf04207 - Beat: 8 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 59434c43-68a8-400e-95d0-81ff896ee2a3 + EditorId: ae9205c7-28d6-4a46-bd53-42a630d25252 - Beat: 12 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: b6fa2add-7f2d-444c-b19c-7ebeae039c79 + EditorId: a57d0dc9-8f46-4586-9e05-b6ee8e7c6821 - Beat: 16 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 7828025f-3f95-4b4c-86db-4555a73b63b3 + EditorId: 0b621f3a-6b2c-4be5-b89d-44046731ac26 + - Beat: 18 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: b37bf478-4167-491d-98a8-3fffb65eeb5f - Beat: 20 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 8c8807ad-7f46-45f1-8265-d122f1069e4d + EditorId: fd736a61-6b63-449c-ae5c-eb0a0ad96ca8 + - Beat: 22 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 988570b8-4fcc-40ea-976d-f7d9b0fdb98d - Beat: 24 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: b72d1e5c-7c92-49e8-963e-fb0d34943465 + EditorId: 84808fbb-8f85-4a56-a5fb-f5acc1ebc1a7 + - Beat: 26 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 3043d9d0-2742-4773-b2f8-72cd066c0d87 - Beat: 28 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 99bf1892-67f3-4dae-aa06-4a429b79b2a4 + EditorId: 1177d57d-704f-48cd-9b63-f90d186d3001 + - Beat: 30 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: f01b0737-8dac-47e4-83f9-0ae9631586ee - Beat: 32 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 60df715c-fb7d-40d9-91cd-5cbebdfaf482 + EditorId: 50fa4f15-aee3-4eab-ac81-83fc7fae3dc4 + - Beat: 34 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 094114d6-3165-4600-b159-617e26cd35a1 - Beat: 36 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: fa38121e-55e0-4f4c-a1ee-6d5da6340562 + EditorId: 61cfdfa2-316a-42e6-b8c0-3dd5203fd061 + - Beat: 38 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 693e385b-4c5e-4af0-89f5-0fe08e1d6805 - Beat: 40 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: b9843b42-1eb6-456c-9444-f24af669d80a + EditorId: f04e6d0e-51d1-4b39-b240-9bad5ac578e8 + - Beat: 42 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 81dc4cd5-a1bb-49dd-a105-4da649c65678 - Beat: 44 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 903f72bf-aa2c-4b8a-9833-930e195f08e4 + EditorId: d054b12f-95fd-4930-9e37-9b17fdbd1ee3 + - Beat: 46 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 360b475e-d066-4a44-8745-559965dc95be + - Beat: 47 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 02318609-12a2-4231-adef-8258b741dd39 - Beat: 48 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 2f56d3ab-0800-475c-82af-e5eb6ae5b186 + EditorId: bd775f76-8b67-4dd2-9440-f9a8cbd33969 + - Beat: 49 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: f1ab645f-05b6-46c0-a4ee-944f7e8e572a + - Beat: 50 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: a004c1ab-1941-4f17-8914-78ef833ce6b8 + - Beat: 51 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: f29f5d5d-640f-434d-9361-f0ee6843e5f0 - Beat: 52 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: e27f9226-38f7-4858-8e13-1abf536d34b2 + EditorId: 8e93f3fa-ac2b-4e26-b619-91bde84cc34d + - Beat: 53 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 9351b159-6484-4435-a792-11c22311060b + - Beat: 54 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 6c69a9dd-273e-42ad-99f5-58c422538ba7 + - Beat: 55 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: e7348c0a-cc2c-433c-8487-2328418f7b4e - Beat: 56 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 8e37b99d-f541-452e-b6da-7ee0d73744c7 + EditorId: 87496a7b-8cf9-48a9-9c12-1ff841ea5077 + - Beat: 57 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: dadedadc-9521-4abf-b385-8e6fe623b5a6 + - Beat: 58 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 9e7c8db0-2398-4bee-a337-2088f7cbad5c + - Beat: 59 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 8e2efe98-34af-4f24-a606-ea01f2ffdc06 - Beat: 60 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 10640225-1eb3-4562-b0cf-41b79f80dde8 + EditorId: b6d31089-d832-4f6c-a053-b525fdbc2602 + - Beat: 61 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: f8b814dc-cf2e-441d-8ad4-fe81ed1d771f + - Beat: 62 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 80601358-2640-4947-afc0-91cef99313fc + - Beat: 63 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: f7968e04-555b-477f-bf79-2b92480e4810 - Beat: 64 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 4de852d3-5551-418b-a257-5fc3156c2673 + EditorId: cf749d0c-dd23-4da3-8643-51b87ceba41b + - Beat: 65 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: e914bdba-73d5-45ed-b360-c7c627a017b0 + - Beat: 66 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: e9fff693-301d-44c9-b83b-343b6aaab938 + - Beat: 67 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 47ffc9c7-6908-4268-b219-dbb38e1dde38 - Beat: 68 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 41436d0f-650b-4985-9621-86e3d9b0800b + EditorId: 91e92b1d-a424-4d6e-92b0-57d88233179d + - Beat: 69 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 11693502-75d7-42dc-b808-fa55872ed7fd + - Beat: 70 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 0b428515-1b7a-438a-97bd-47abda57ad14 + - Beat: 71 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 347fae6f-cb2e-40db-9942-698195a6d755 - Beat: 72 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: c7724a19-fa87-45c4-9c66-d791948786b8 + EditorId: c70b9e33-0b2a-41db-956a-4649d84b2bbd + - Beat: 73 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 533ad9c0-d8b9-449c-9d02-14f4ec8da0f2 + - Beat: 74 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: d83871b8-7815-4e95-837b-2b86bb52ba91 + - Beat: 75 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 55b1b644-a111-4adc-87f4-41852e4075db - Beat: 76 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: bc6b7ed2-3531-4a5a-8830-d0205449130d + EditorId: 0248ea97-ad23-4276-8e30-fc6e8a1135dd + - Beat: 77 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: f19f1f37-9a09-45a5-9e95-a91177c0e9a5 + - Beat: 78 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: e865238e-9893-4f61-9eaf-08c69ba6a0ac + - Beat: 79 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 62484194-cde6-40c4-807c-14783e12508b - Beat: 80 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: ac6d5214-034e-4b5d-b626-66d4ed682aad + EditorId: e7724851-39bc-42fb-b271-c1f29f0ee4a9 + - Beat: 81 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 295dbd81-16e8-4764-aa5b-6ab167874075 + - Beat: 82 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: d8f04e45-1ea7-4fb3-90f4-792918c55120 + - Beat: 83 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 3b0b893d-2c8f-4992-b941-009142a7bf19 - Beat: 84 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 8f1c82e7-dcb4-44f8-8ca2-acda8869c615 + EditorId: a852359e-17e0-490f-aaa9-04446c2d6895 + - Beat: 85 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 059f0608-0aeb-49d7-b201-aaf3498b084e + - Beat: 86 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 2869abd7-9795-4117-bafa-5a55df609e8a + - Beat: 87 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: e3a32cb6-6fb1-41bc-80b7-564f7fb7b7b6 - Beat: 88 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: a1181b24-a697-4c6d-8c91-9ac76b7c4d83 + EditorId: aa40ae1f-2335-4bb8-a673-89f8a62c84ef + - Beat: 89 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: a3af2ee3-3665-4fee-b6dc-2af3e4bbe002 + - Beat: 90 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 223c4f9c-9833-4705-81e1-f8e23ad55df4 + - Beat: 91 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 63c8dd04-a6d1-4c78-bf86-2c05cecb5af4 - Beat: 92 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 8f8406f4-c63e-40ed-b407-1178fee32ee3 + EditorId: cc1c61f8-f9ac-4814-b7cb-d77fea4b6e08 + - Beat: 93 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 51574f2d-7060-42d6-9b61-52c7afa0947f + - Beat: 94 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: ea528bc8-bf28-4739-8a79-e0b191e3ab67 + - Beat: 95 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 56d1d386-0021-424f-91d9-cc38c72c3ae8 - Beat: 96 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 00d0c9ea-b170-4556-ad89-40f5753063c0 + EditorId: f2b9b6a7-7c8a-427f-ae6f-c04b79e3bb4a + - Beat: 97 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: c447b003-17dd-46e1-9c1c-2716525d6b33 + - Beat: 98 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: c5ee8476-3569-423b-bc33-4517a76f91ed + - Beat: 99 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: e9f46a5f-fa3f-4e85-87c1-a7076f72cc88 - Beat: 100 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: b5819be5-1077-4ad8-911f-543189042bac + EditorId: 9105cdc9-9e96-41aa-88c8-d3e337119868 + - Beat: 101 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 4bc06331-be78-428f-99e9-8df309c8bbd9 + - Beat: 102 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 8d801126-55fe-41ec-9061-dfcfb9b5df1e + - Beat: 103 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: ec7f5b67-5034-4e3d-81af-45ce9e46b149 - Beat: 104 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 4ff0a4a9-5a9d-4d70-9ac0-79db258c6367 + EditorId: ff4e16fe-7cfa-4a28-b662-6fe0c76b1e6d + - Beat: 105 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: f4bdd013-5baa-4c93-8980-3b6042ce0962 + - Beat: 106 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 257bb596-b65b-459b-984b-04424207db9f + - Beat: 107 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 73569b56-8352-405b-acfd-2a9c061fc427 - Beat: 108 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 1e84c1da-521f-4e82-8906-a8d25f975946 + EditorId: d3ae303c-a2d4-4d7d-83f9-86cdf07e549b + - Beat: 109 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 5d466d4d-765e-41b2-9b75-6b9a88035272 + - Beat: 110 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: e29e6e1c-7f2b-41b2-ab56-402be66544b6 + - Beat: 111 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 7c0f864f-131b-4a91-bfdc-fdee2a4ac114 - Beat: 112 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: a3f71836-b629-4896-8170-4d34225a5779 + EditorId: 16a925ae-d634-4e5f-bc30-c0048636e70c + - Beat: 113 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 65fdb796-7e09-422e-afc3-3d81f0f81fa0 + - Beat: 114 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 55ac3ddd-06fe-402c-b4b2-76587067c21e + - Beat: 115 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: a3780f12-c5d9-4e1b-85e0-e8b70ab3f6b0 - Beat: 116 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 78a3f310-438e-470e-9761-e431c773dd42 + EditorId: 52492c0a-d5be-4010-a0d7-d4a0a06884c3 + - Beat: 117 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 901d7235-b105-40e1-8016-f4236ff5328a + - Beat: 118 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 2676bdb2-3d72-4b2f-9638-e5bc03939a18 + - Beat: 119 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 1fe571a0-9699-46cb-80d2-73ee3ce3a249 - Beat: 120 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: aad4328e-8743-49f1-8c85-f17559e1538c + EditorId: ae8e5c51-f2b4-4b28-af23-39e7e0464645 + - Beat: 121 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: ec1bacb3-2d1b-4fe3-865a-3b686ca4b9c5 + - Beat: 122 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: ba9d6780-f38b-442a-9b08-337c3574cbb6 + - Beat: 123 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: b0cef9c8-2d93-40dd-9636-ef516aa57964 - Beat: 124 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 4bedd769-63c3-4d8c-bf7f-db10cce568c7 + EditorId: d6940505-7b13-4f85-b3bd-521d01fe4cde + - Beat: 125 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 02f87ba6-3495-4df0-8a8f-aaf64bbc168a + - Beat: 126 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 04b2dd60-d2a3-4b90-9c14-2cc81e477ff2 + - Beat: 127 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 5fbc926e-34eb-46fb-b0c4-15c037ab9163 - Beat: 128 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 239fb475-557f-4423-a085-755392be4f38 + EditorId: 760c3102-9112-49a1-8120-7295ec82d902 + - Beat: 129 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 85af17bc-bdc9-458c-9d19-ca58edd494d7 + - Beat: 130 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 3d876a1c-4a44-45f7-8834-0f53dafb2605 + - Beat: 131 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 3576c913-42e9-4651-8055-2296f965ba4e - Beat: 132 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 5b6810cb-cea2-48dc-9c53-522ed697f46a + EditorId: 3efa186a-6935-458f-97c9-1a660c7896df + - Beat: 133 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: ca7aec23-dc40-4e76-a5bc-0656e8526fce + - Beat: 134 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 9dbd1848-cc9a-4319-bf9a-18efdeaa15fe + - Beat: 135 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: c37a243f-1dca-42e2-9a22-2d78279ab4dd - Beat: 136 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 59497c9a-2dc1-40ba-b528-a4ce2d1786b3 + EditorId: 75fd11f9-1d1d-4b4a-acb6-f41c50d2314a + - Beat: 137 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 2f77b637-6ab3-487c-a224-1345903215e0 + - Beat: 138 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 80043241-4123-40a4-a900-b04388dbcbb0 + - Beat: 139 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 220ea353-afa3-46ea-b9d9-c225cd8e4e92 - Beat: 140 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: e9bd052a-c9b2-45c5-8b49-cce8372d2480 + EditorId: a84e7e80-df6c-48be-a48e-dc6bf186104d + - Beat: 141 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 4cb7c825-69f3-4cc3-a2ea-fbf7238c0b17 + - Beat: 142 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: a5b6000e-fe42-4c69-8ca8-11d8729b0280 + - Beat: 143 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 55600d8b-a02a-4869-aad6-2ee12e534627 - Beat: 144 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: f58b5c1c-c0b4-4d44-a1dc-b799756104b5 + EditorId: 1039e021-e806-4172-a3c5-9fb42d7bc33f + - Beat: 145 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: cfe2667a-c023-4f02-b15c-e138cdc62c1f + - Beat: 146 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 814edd33-efcf-4999-926a-54f51f15e240 + - Beat: 147 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 0fcbca7c-ecc6-4a30-b673-e9ffd22c1066 - Beat: 148 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: ce7f423f-0f4d-45a4-8cae-00157e13ca21 + EditorId: 09108842-ee7b-4485-b9f9-e4d933b08d17 + - Beat: 149 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 5925ea7a-8eef-448c-b8e9-eff2ea5836c6 + - Beat: 150 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: a643360e-1a2a-4116-bc5a-90e27dc7b683 + - Beat: 151 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 54704562-1444-4cf5-8e65-6796d8f41e5a - Beat: 152 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: d04a2267-ef8a-4c47-8c3d-4ee7c8384b05 + EditorId: 55746155-fbfb-4a9d-8375-e442e938b97e + - Beat: 153 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 1f496d5c-09de-4100-9aa2-3b8c49291484 + - Beat: 154 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 086ff1b9-0494-4f3e-b1dd-47ea1f580140 + - Beat: 155 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: acf48087-fbae-42ba-bd88-b1cfa854ef3b - Beat: 156 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 1afd5a95-af43-4b3c-9d39-4336fdb5c570 + EditorId: 7f3507e1-5cce-4f29-b820-261f943f834d + - Beat: 157 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 44dfee9f-6e08-4ec5-bde5-2097300b2353 + - Beat: 158 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 92497d9c-becd-4c7a-9db3-96e4aaa34de2 + - Beat: 159 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 8d3f80f3-a4a2-4e8c-b660-96a033853f56 - Beat: 160 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 5b3d8cdf-8359-4c81-900e-f37d6b49e507 + EditorId: bfc471cd-ab52-40a9-b2ab-f403efab8dea + - Beat: 161 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 3d61c8a2-0f3a-451e-a953-d8218c62c29b + - Beat: 162 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 98f251e9-a47e-4fa3-84a2-3e9ad91f3004 + - Beat: 163 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: a6102c4c-3889-4547-b9c1-734d9ad1fa09 - Beat: 164 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 6cc57cc3-4063-41d3-af3a-547f1f124a3f + EditorId: 4291b066-b821-47c5-bf42-e41ca2c76630 + - Beat: 165 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 3b0b4156-a729-4c60-85b1-859f9302aaa2 + - Beat: 166 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 1eba3e69-9406-46aa-a511-c64b7ccdf56b + - Beat: 167 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 3a8166df-cbf7-4186-87a2-bf5f936888a7 - Beat: 168 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 1a01c435-ce79-4029-93ea-ecf9672f3e87 + EditorId: b4bee963-eff6-4d82-81fe-9e4fa9bdef57 + - Beat: 169 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 7f514128-e2e4-49c6-95be-701160c8581b + - Beat: 170 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 3955f2a5-026c-45f6-9d53-4cfb31d7c302 + - Beat: 171 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: c534d141-534d-41bf-9ddf-4a1c4c325441 - Beat: 172 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: afb2f5ce-555a-4abf-9e02-cf82c45ff5ee + EditorId: 8502ee30-fec6-4c15-bce6-b8480b148d3a + - Beat: 173 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: e42751f0-4a1d-4092-97de-c0c964f9cb5c + - Beat: 174 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: fa2b4532-b3e2-4f61-b92d-977616f95fae + - Beat: 175 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 9df47898-0007-4b61-bec9-4ec82906630a - Beat: 176 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 69bba8ce-663b-4986-a31f-0e66ce7cee8a + EditorId: e6608bda-6744-4a2a-85b1-ac65b19d4942 + - Beat: 177 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 4efbd468-b51f-4f5e-a91d-bdda7d695532 + - Beat: 178 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: e68e24fc-6748-4080-a74d-02916fb7f195 + - Beat: 179 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 18a6a168-a2ae-4e5d-a030-ef34ef291bd8 - Beat: 180 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: be1ab4f7-c675-4a07-970e-5714aa6ab2c1 + EditorId: d6748f4a-58ad-40a6-829a-ae6ac3e6d538 + - Beat: 181 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: e6d320d5-c941-47e6-b21d-70dd464c81e1 + - Beat: 182 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 3f0dcfd5-7cba-4dd7-aa15-4be0fc9f2075 + - Beat: 183 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: e79939b0-ef13-4536-a49f-468f9ba99ad7 - Beat: 184 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: b8f0b348-e232-44fe-b4de-66f9b7962a01 + EditorId: 8dec963c-a9ca-4293-8a95-f07b8cbdac87 + - Beat: 185 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 0d964277-d10f-47bb-8f46-9beaa033f797 + - Beat: 186 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 2ed40fe7-7405-49b1-9d6b-e0e507c1f506 + - Beat: 187 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 7deabb3d-4719-4fb0-9a23-bf149bd8f448 - Beat: 188 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: c176a0f6-5398-48a6-928e-eb44018dc6e6 + EditorId: 1e263f4d-0cab-4631-9a82-132c91deaaa2 + - Beat: 189 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 8999a380-8b2f-4235-951c-06c011a61669 + - Beat: 190 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: b3c7eb62-2476-42a0-930e-2baff2a0640d + - Beat: 191 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: df598097-2cdb-496c-9f6c-e1336f31ff97 - Beat: 192 Lane: 0 NoteType: 0 HoldDuration: 0 - EditorId: 499c50dc-1f0b-456c-8888-8bc2df762ff6 + EditorId: 03eba08f-2e80-46a9-a878-ac76d731d8d2 + - Beat: 193 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 3a73e2d2-f3f1-4ba1-9db3-2f6fa9d96b0f + - Beat: 194 + Lane: 0 + NoteType: 0 + HoldDuration: 0 + EditorId: 83480e33-78b6-48e2-a06c-9c47ebbd0939 KeyPoints: []