mirror of
https://github.com/ppy/osu.git
synced 2026-05-19 01:49:53 +08:00
Compare commits
6108 Commits
@@ -15,16 +15,16 @@
|
||||
]
|
||||
},
|
||||
"codefilesanity": {
|
||||
"version": "0.0.36",
|
||||
"version": "0.0.37",
|
||||
"commands": [
|
||||
"CodeFileSanity"
|
||||
]
|
||||
},
|
||||
"ppy.localisationanalyser.tools": {
|
||||
"version": "2022.809.0",
|
||||
"version": "2023.1117.0",
|
||||
"commands": [
|
||||
"localisation"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,6 +9,9 @@ indent_style = space
|
||||
indent_size = 2
|
||||
trim_trailing_whitespace = true
|
||||
|
||||
[g_*.cs]
|
||||
generated_code = true
|
||||
|
||||
[*.cs]
|
||||
end_of_line = crlf
|
||||
insert_final_newline = true
|
||||
@@ -191,6 +194,8 @@ csharp_style_prefer_index_operator = false:silent
|
||||
csharp_style_prefer_range_operator = false:silent
|
||||
csharp_style_prefer_switch_expression = false:none
|
||||
|
||||
csharp_style_namespace_declarations = block_scoped:warning
|
||||
|
||||
[*.{yaml,yml}]
|
||||
insert_final_newline = true
|
||||
indent_style = space
|
||||
|
||||
@@ -6,3 +6,5 @@
|
||||
212d78865a6b5f091173a347bad5686834d1d5fe
|
||||
# Add partial specs in mobile projects too
|
||||
00c11b2b4e389e48f3995d63484a6bc66a7afbdb
|
||||
# Mass NRT enabling
|
||||
0ab0c52ad577b3e7b406d09fa6056a56ff997c3e
|
||||
|
||||
@@ -46,22 +46,16 @@ body:
|
||||
value: |
|
||||
## Logs
|
||||
|
||||
Attaching log files is required for every reported bug. See instructions below on how to find them.
|
||||
|
||||
**Logs are reset when you reopen the game.** If the game crashed or has been closed since you found the bug, retrieve the logs using the file explorer instead.
|
||||
Attaching log files is required for **every** issue, regardless of whether you deem them required or not. See instructions below on how to find them.
|
||||
|
||||
### Desktop platforms
|
||||
|
||||
If the game has not yet been closed since you found the bug:
|
||||
1. Head on to game settings and click on "Open osu! folder"
|
||||
2. Then open the `logs` folder located there
|
||||
1. Head on to game settings and click on "Export logs"
|
||||
2. Click the notification to locate the file
|
||||
3. Drag the generated `.zip` files into the github issue window
|
||||
|
||||
The default places to find the logs on desktop platforms are as follows:
|
||||
- `%AppData%/osu/logs` *on Windows*
|
||||
- `~/.local/share/osu/logs` *on Linux*
|
||||
- `~/Library/Application Support/osu/logs` *on macOS*
|
||||
|
||||
If you have selected a custom location for the game files, you can find the `logs` folder there.
|
||||

|
||||
|
||||
### Mobile platforms
|
||||
|
||||
@@ -69,10 +63,6 @@ body:
|
||||
- *On Android*, navigate to `Android/data/sh.ppy.osulazer/files/logs` using a file browser app.
|
||||
- *On iOS*, connect your device to a PC and copy the `logs` directory from the app's document storage using iTunes. (https://support.apple.com/en-us/HT201301#copy-to-computer)
|
||||
|
||||
---
|
||||
|
||||
After locating the `logs` folder, select all log files inside and drag them into the "Logs" box below.
|
||||
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: Logs
|
||||
|
||||
@@ -2,7 +2,7 @@ blank_issues_enabled: false
|
||||
contact_links:
|
||||
- name: Help
|
||||
url: https://github.com/ppy/osu/discussions/categories/q-a
|
||||
about: osu! not working as you'd expect? Not sure it's a bug? Check the Q&A section!
|
||||
about: osu! not working or performing as you'd expect? Not sure it's a bug? Check the Q&A section!
|
||||
- name: Suggestions or feature request
|
||||
url: https://github.com/ppy/osu/discussions/categories/ideas
|
||||
about: Got something you think should change or be added? Search for or start a new discussion!
|
||||
|
||||
+19
-20
@@ -13,17 +13,17 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
|
||||
# FIXME: Tools won't run in .NET 6.0 unless you install 3.1.x LTS side by side.
|
||||
# https://itnext.io/how-to-support-multiple-net-sdks-in-github-actions-workflows-b988daa884e
|
||||
- name: Install .NET 3.1.x LTS
|
||||
uses: actions/setup-dotnet@v1
|
||||
uses: actions/setup-dotnet@v3
|
||||
with:
|
||||
dotnet-version: "3.1.x"
|
||||
|
||||
- name: Install .NET 6.0.x
|
||||
uses: actions/setup-dotnet@v1
|
||||
uses: actions/setup-dotnet@v3
|
||||
with:
|
||||
dotnet-version: "6.0.x"
|
||||
|
||||
@@ -77,10 +77,10 @@ jobs:
|
||||
timeout-minutes: 60
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Install .NET 6.0.x
|
||||
uses: actions/setup-dotnet@v1
|
||||
uses: actions/setup-dotnet@v3
|
||||
with:
|
||||
dotnet-version: "6.0.x"
|
||||
|
||||
@@ -94,7 +94,7 @@ jobs:
|
||||
# Attempt to upload results even if test fails.
|
||||
# https://docs.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions#always
|
||||
- name: Upload Test Results
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v3
|
||||
if: ${{ always() }}
|
||||
with:
|
||||
name: osu-test-results-${{matrix.os.prettyname}}-${{matrix.threadingMode}}
|
||||
@@ -106,10 +106,16 @@ jobs:
|
||||
timeout-minutes: 60
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Setup JDK 11
|
||||
uses: actions/setup-java@v3
|
||||
with:
|
||||
distribution: microsoft
|
||||
java-version: 11
|
||||
|
||||
- name: Install .NET 6.0.x
|
||||
uses: actions/setup-dotnet@v1
|
||||
uses: actions/setup-dotnet@v3
|
||||
with:
|
||||
dotnet-version: "6.0.x"
|
||||
|
||||
@@ -121,23 +127,16 @@ jobs:
|
||||
|
||||
build-only-ios:
|
||||
name: Build only (iOS)
|
||||
# change to macos-latest once GitHub finishes migrating all repositories to macOS 12.
|
||||
runs-on: macos-12
|
||||
# `macos-13` is required, because the newest Microsoft.iOS.Sdk versions require Xcode 14.3.
|
||||
# TODO: can be changed to `macos-latest` once `macos-13` becomes latest (currently in beta: https://github.com/actions/runner-images/tree/main#available-images)
|
||||
runs-on: macos-13
|
||||
timeout-minutes: 60
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
# see https://github.com/actions/runner-images/issues/6771#issuecomment-1354713617
|
||||
# remove once all workflow VMs use Xcode 14.1
|
||||
- name: Set Xcode Version
|
||||
shell: bash
|
||||
run: |
|
||||
sudo xcode-select -s "/Applications/Xcode_14.1.app"
|
||||
echo "MD_APPLE_SDK_ROOT=/Applications/Xcode_14.1.app" >> $GITHUB_ENV
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Install .NET 6.0.x
|
||||
uses: actions/setup-dotnet@v1
|
||||
uses: actions/setup-dotnet@v3
|
||||
with:
|
||||
dotnet-version: "6.0.x"
|
||||
|
||||
|
||||
+353
-177
@@ -1,206 +1,382 @@
|
||||
# Listens for new PR comments containing !pp check [id], and runs a diffcalc comparison against master.
|
||||
# Usage:
|
||||
# !pp check 0 | Runs only the osu! ruleset.
|
||||
# !pp check 0 2 | Runs only the osu! and catch rulesets.
|
||||
# ## Description
|
||||
#
|
||||
# Uses [diffcalc-sheet-generator](https://github.com/smoogipoo/diffcalc-sheet-generator) to run two builds of osu and generate an SR/PP/Score comparison spreadsheet.
|
||||
#
|
||||
# ## Requirements
|
||||
#
|
||||
# Self-hosted runner with installed:
|
||||
# - `docker >= 20.10.16`
|
||||
# - `docker-compose >= 2.5.1`
|
||||
# - `lbzip2`
|
||||
# - `jq`
|
||||
#
|
||||
# ## Usage
|
||||
#
|
||||
# The workflow can be run in two ways:
|
||||
# 1. Via workflow dispatch.
|
||||
# 2. By an owner of the repository posting a pull request or issue comment containing `!diffcalc`.
|
||||
# For pull requests, the workflow will assume the pull request as the target to compare against (i.e. the `OSU_B` variable).
|
||||
# Any lines in the comment of the form `KEY=VALUE` are treated as variables for the generator.
|
||||
#
|
||||
# ## Google Service Account
|
||||
#
|
||||
# Spreadsheets are uploaded to a Google Service Account, and exposed with read-only permissions to the wider audience.
|
||||
#
|
||||
# 1. Create a project at https://console.cloud.google.com
|
||||
# 2. Enable the `Google Sheets` and `Google Drive` APIs.
|
||||
# 3. Create a Service Account
|
||||
# 4. Generate a key in the JSON format.
|
||||
# 5. Encode the key as base64 and store as an **actions secret** with name **`DIFFCALC_GOOGLE_CREDENTIALS`**
|
||||
#
|
||||
# ## Environment variables
|
||||
#
|
||||
# The default environment may be configured via **actions variables**.
|
||||
#
|
||||
# Refer to [the sample environment](https://github.com/smoogipoo/diffcalc-sheet-generator/blob/master/.env.sample), and prefix each variable with `DIFFCALC_` (e.g. `DIFFCALC_THREADS`, `DIFFCALC_INNODB_BUFFER_SIZE`, etc...).
|
||||
|
||||
name: Run difficulty calculation comparison
|
||||
|
||||
run-name: "${{ github.event_name == 'workflow_dispatch' && format('Manual run: {0}', inputs.osu-b) || 'Automatic comment trigger' }}"
|
||||
|
||||
name: Difficulty Calculation
|
||||
on:
|
||||
issue_comment:
|
||||
types: [ created ]
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
osu-b:
|
||||
description: "The target build of ppy/osu"
|
||||
type: string
|
||||
required: true
|
||||
ruleset:
|
||||
description: "The ruleset to process"
|
||||
type: choice
|
||||
required: true
|
||||
options:
|
||||
- osu
|
||||
- taiko
|
||||
- catch
|
||||
- mania
|
||||
converts:
|
||||
description: "Include converted beatmaps"
|
||||
type: boolean
|
||||
required: false
|
||||
default: true
|
||||
ranked-only:
|
||||
description: "Only ranked beatmaps"
|
||||
type: boolean
|
||||
required: false
|
||||
default: true
|
||||
generators:
|
||||
description: "Comma-separated list of generators (available: [sr, pp, score])"
|
||||
type: string
|
||||
required: false
|
||||
default: 'pp,sr'
|
||||
osu-a:
|
||||
description: "The source build of ppy/osu"
|
||||
type: string
|
||||
required: false
|
||||
default: 'latest'
|
||||
difficulty-calculator-a:
|
||||
description: "The source build of ppy/osu-difficulty-calculator"
|
||||
type: string
|
||||
required: false
|
||||
default: 'latest'
|
||||
difficulty-calculator-b:
|
||||
description: "The target build of ppy/osu-difficulty-calculator"
|
||||
type: string
|
||||
required: false
|
||||
default: 'latest'
|
||||
score-processor-a:
|
||||
description: "The source build of ppy/osu-queue-score-statistics"
|
||||
type: string
|
||||
required: false
|
||||
default: 'latest'
|
||||
score-processor-b:
|
||||
description: "The target build of ppy/osu-queue-score-statistics"
|
||||
type: string
|
||||
required: false
|
||||
default: 'latest'
|
||||
|
||||
permissions:
|
||||
pull-requests: write
|
||||
|
||||
env:
|
||||
CONCURRENCY: 4
|
||||
ALLOW_DOWNLOAD: 1
|
||||
SAVE_DOWNLOADED: 1
|
||||
SKIP_INSERT_ATTRIBUTES: 1
|
||||
EXECUTION_ID: execution-${{ github.run_id }}-${{ github.run_number }}-${{ github.run_attempt }}
|
||||
|
||||
jobs:
|
||||
metadata:
|
||||
name: Check for requests
|
||||
check-permissions:
|
||||
name: Check permissions
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ github.event_name == 'workflow_dispatch' || contains(github.event.comment.body, '!diffcalc') }}
|
||||
steps:
|
||||
- name: Check permissions
|
||||
if: ${{ github.event_name != 'workflow_dispatch' }}
|
||||
uses: actions-cool/check-user-permission@a0668c9aec87f3875fc56170b6452a453e9dd819 # v2.2.0
|
||||
with:
|
||||
require: 'write'
|
||||
|
||||
create-comment:
|
||||
name: Create PR comment
|
||||
needs: check-permissions
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ github.event_name == 'issue_comment' && github.event.issue.pull_request }}
|
||||
steps:
|
||||
- name: Create comment
|
||||
uses: thollander/actions-comment-pull-request@363c6f6eae92cc5c3a66e95ba016fc771bb38943 # v2.4.2
|
||||
with:
|
||||
comment_tag: ${{ env.EXECUTION_ID }}
|
||||
message: |
|
||||
Difficulty calculation queued -- please wait! (${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})
|
||||
|
||||
*This comment will update on completion*
|
||||
|
||||
directory:
|
||||
name: Prepare directory
|
||||
needs: check-permissions
|
||||
runs-on: self-hosted
|
||||
if: github.event.issue.pull_request && contains(github.event.comment.body, '!pp check') && (github.event.comment.author_association == 'MEMBER' || github.event.comment.author_association == 'OWNER')
|
||||
outputs:
|
||||
matrix: ${{ steps.generate-matrix.outputs.matrix }}
|
||||
continue: ${{ steps.generate-matrix.outputs.continue }}
|
||||
GENERATOR_DIR: ${{ steps.set-outputs.outputs.GENERATOR_DIR }}
|
||||
GENERATOR_ENV: ${{ steps.set-outputs.outputs.GENERATOR_ENV }}
|
||||
GOOGLE_CREDS_FILE: ${{ steps.set-outputs.outputs.GOOGLE_CREDS_FILE }}
|
||||
steps:
|
||||
- name: Construct build matrix
|
||||
id: generate-matrix
|
||||
- name: Checkout diffcalc-sheet-generator
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
path: ${{ env.EXECUTION_ID }}
|
||||
repository: 'smoogipoo/diffcalc-sheet-generator'
|
||||
|
||||
- name: Set outputs
|
||||
id: set-outputs
|
||||
run: |
|
||||
if [[ "${{ github.event.comment.body }}" =~ "osu" ]] ; then
|
||||
MATRIX_PROJECTS_JSON+='{ "name": "osu", "id": 0 },'
|
||||
fi
|
||||
if [[ "${{ github.event.comment.body }}" =~ "taiko" ]] ; then
|
||||
MATRIX_PROJECTS_JSON+='{ "name": "taiko", "id": 1 },'
|
||||
fi
|
||||
if [[ "${{ github.event.comment.body }}" =~ "catch" ]] ; then
|
||||
MATRIX_PROJECTS_JSON+='{ "name": "catch", "id": 2 },'
|
||||
fi
|
||||
if [[ "${{ github.event.comment.body }}" =~ "mania" ]] ; then
|
||||
MATRIX_PROJECTS_JSON+='{ "name": "mania", "id": 3 },'
|
||||
fi
|
||||
echo "GENERATOR_DIR=${{ github.workspace }}/${{ env.EXECUTION_ID }}" >> "${GITHUB_OUTPUT}"
|
||||
echo "GENERATOR_ENV=${{ github.workspace }}/${{ env.EXECUTION_ID }}/.env" >> "${GITHUB_OUTPUT}"
|
||||
echo "GOOGLE_CREDS_FILE=${{ github.workspace }}/${{ env.EXECUTION_ID }}/google-credentials.json" >> "${GITHUB_OUTPUT}"
|
||||
|
||||
if [[ "${MATRIX_PROJECTS_JSON}" != "" ]]; then
|
||||
MATRIX_JSON="{ \"ruleset\": [ ${MATRIX_PROJECTS_JSON} ] }"
|
||||
echo "${MATRIX_JSON}"
|
||||
CONTINUE="yes"
|
||||
else
|
||||
CONTINUE="no"
|
||||
fi
|
||||
|
||||
echo "::set-output name=continue::${CONTINUE}"
|
||||
echo "::set-output name=matrix::${MATRIX_JSON}"
|
||||
diffcalc:
|
||||
name: Run
|
||||
environment:
|
||||
name: Setup environment
|
||||
needs: directory
|
||||
runs-on: self-hosted
|
||||
timeout-minutes: 1440
|
||||
if: needs.metadata.outputs.continue == 'yes'
|
||||
needs: metadata
|
||||
strategy:
|
||||
matrix: ${{ fromJson(needs.metadata.outputs.matrix) }}
|
||||
env:
|
||||
VARS_JSON: ${{ toJSON(vars) }}
|
||||
steps:
|
||||
- name: Verify MySQL connection from host
|
||||
- name: Add base environment
|
||||
run: |
|
||||
mysql -e "SHOW DATABASES"
|
||||
# Required by diffcalc-sheet-generator
|
||||
cp '${{ needs.directory.outputs.GENERATOR_DIR }}/.env.sample' "${{ needs.directory.outputs.GENERATOR_ENV }}"
|
||||
|
||||
- name: Drop previous databases
|
||||
run: |
|
||||
for db in osu_master osu_pr
|
||||
do
|
||||
mysql -e "DROP DATABASE IF EXISTS $db"
|
||||
# Add Google credentials
|
||||
echo '${{ secrets.DIFFCALC_GOOGLE_CREDENTIALS }}' | base64 -d > "${{ needs.directory.outputs.GOOGLE_CREDS_FILE }}"
|
||||
|
||||
# Add repository variables
|
||||
echo "${VARS_JSON}" | jq -c '. | to_entries | .[]' | while read -r line; do
|
||||
opt=$(jq -r '.key' <<< ${line})
|
||||
val=$(jq -r '.value' <<< ${line})
|
||||
|
||||
if [[ "${opt}" =~ ^DIFFCALC_ ]]; then
|
||||
optNoPrefix=$(echo "${opt}" | cut -d '_' -f2-)
|
||||
sed -i "s;^${optNoPrefix}=.*$;${optNoPrefix}=${val};" "${{ needs.directory.outputs.GENERATOR_ENV }}"
|
||||
fi
|
||||
done
|
||||
|
||||
- name: Create directory structure
|
||||
- name: Add pull-request environment
|
||||
if: ${{ github.event_name == 'issue_comment' && github.event.issue.pull_request }}
|
||||
run: |
|
||||
mkdir -p $GITHUB_WORKSPACE/master/
|
||||
mkdir -p $GITHUB_WORKSPACE/pr/
|
||||
sed -i "s;^OSU_B=.*$;OSU_B=${{ github.event.issue.pull_request.html_url }};" "${{ needs.directory.outputs.GENERATOR_ENV }}"
|
||||
|
||||
- name: Get upstream branch # https://akaimo.hatenablog.jp/entry/2020/05/16/101251
|
||||
id: upstreambranch
|
||||
- name: Add comment environment
|
||||
if: ${{ github.event_name == 'issue_comment' }}
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
COMMENT_BODY: ${{ github.event.comment.body }}
|
||||
run: |
|
||||
echo "::set-output name=branchname::$(curl -H "Authorization: token ${GITHUB_TOKEN}" ${{ github.event.issue.pull_request.url }} | jq '.head.ref' | sed 's/\"//g')"
|
||||
echo "::set-output name=repo::$(curl -H "Authorization: token ${GITHUB_TOKEN}" ${{ github.event.issue.pull_request.url }} | jq '.head.repo.full_name' | sed 's/\"//g')"
|
||||
|
||||
# Checkout osu
|
||||
- name: Checkout osu (master)
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
path: 'master/osu'
|
||||
- name: Checkout osu (pr)
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
path: 'pr/osu'
|
||||
repository: ${{ steps.upstreambranch.outputs.repo }}
|
||||
ref: ${{ steps.upstreambranch.outputs.branchname }}
|
||||
|
||||
- name: Checkout osu-difficulty-calculator (master)
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
repository: ppy/osu-difficulty-calculator
|
||||
path: 'master/osu-difficulty-calculator'
|
||||
- name: Checkout osu-difficulty-calculator (pr)
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
repository: ppy/osu-difficulty-calculator
|
||||
path: 'pr/osu-difficulty-calculator'
|
||||
|
||||
- name: Install .NET 5.0.x
|
||||
uses: actions/setup-dotnet@v1
|
||||
with:
|
||||
dotnet-version: "5.0.x"
|
||||
|
||||
# Sanity checks to make sure diffcalc is not run when incompatible.
|
||||
- name: Build diffcalc (master)
|
||||
run: |
|
||||
cd $GITHUB_WORKSPACE/master/osu-difficulty-calculator
|
||||
./UseLocalOsu.sh
|
||||
dotnet build
|
||||
- name: Build diffcalc (pr)
|
||||
run: |
|
||||
cd $GITHUB_WORKSPACE/pr/osu-difficulty-calculator
|
||||
./UseLocalOsu.sh
|
||||
dotnet build
|
||||
|
||||
- name: Download + import data
|
||||
run: |
|
||||
PERFORMANCE_DATA_NAME=$(curl https://data.ppy.sh/ | grep performance_${{ matrix.ruleset.name }}_top_1000 | tail -1 | awk -F "\"" '{print $2}' | sed 's/\.tar\.bz2//g')
|
||||
BEATMAPS_DATA_NAME=$(curl https://data.ppy.sh/ | grep osu_files | tail -1 | awk -F "\"" '{print $2}' | sed 's/\.tar\.bz2//g')
|
||||
|
||||
# Set env variable for further steps.
|
||||
echo "BEATMAPS_PATH=$GITHUB_WORKSPACE/$BEATMAPS_DATA_NAME" >> $GITHUB_ENV
|
||||
|
||||
cd $GITHUB_WORKSPACE
|
||||
|
||||
echo "Downloading database dump $PERFORMANCE_DATA_NAME.."
|
||||
wget -q -nc https://data.ppy.sh/$PERFORMANCE_DATA_NAME.tar.bz2
|
||||
echo "Extracting.."
|
||||
tar -xf $PERFORMANCE_DATA_NAME.tar.bz2
|
||||
|
||||
echo "Downloading beatmap dump $BEATMAPS_DATA_NAME.."
|
||||
wget -q -nc https://data.ppy.sh/$BEATMAPS_DATA_NAME.tar.bz2
|
||||
echo "Extracting.."
|
||||
tar -xf $BEATMAPS_DATA_NAME.tar.bz2
|
||||
|
||||
cd $PERFORMANCE_DATA_NAME
|
||||
|
||||
for db in osu_master osu_pr
|
||||
do
|
||||
echo "Setting up database $db.."
|
||||
|
||||
mysql -e "CREATE DATABASE $db"
|
||||
|
||||
echo "Importing beatmaps.."
|
||||
cat osu_beatmaps.sql | mysql $db
|
||||
echo "Importing beatmapsets.."
|
||||
cat osu_beatmapsets.sql | mysql $db
|
||||
|
||||
echo "Creating table structure.."
|
||||
mysql $db -e 'CREATE TABLE `osu_beatmap_difficulty` (
|
||||
`beatmap_id` int unsigned NOT NULL,
|
||||
`mode` tinyint NOT NULL DEFAULT 0,
|
||||
`mods` int unsigned NOT NULL,
|
||||
`diff_unified` float NOT NULL,
|
||||
`last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
PRIMARY KEY (`beatmap_id`,`mode`,`mods`),
|
||||
KEY `diff_sort` (`mode`,`mods`,`diff_unified`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;'
|
||||
# Add comment environment
|
||||
echo "$COMMENT_BODY" | sed -r 's/\r$//' | grep -E '^\w+=' | while read -r line; do
|
||||
opt=$(echo "${line}" | cut -d '=' -f1)
|
||||
sed -i "s;^${opt}=.*$;${line};" "${{ needs.directory.outputs.GENERATOR_ENV }}"
|
||||
done
|
||||
|
||||
- name: Run diffcalc (master)
|
||||
env:
|
||||
DB_NAME: osu_master
|
||||
- name: Add dispatch environment
|
||||
if: ${{ github.event_name == 'workflow_dispatch' }}
|
||||
run: |
|
||||
cd $GITHUB_WORKSPACE/master/osu-difficulty-calculator/osu.Server.DifficultyCalculator
|
||||
dotnet run -c:Release -- all -m ${{ matrix.ruleset.id }} -ac -c ${{ env.CONCURRENCY }}
|
||||
- name: Run diffcalc (pr)
|
||||
env:
|
||||
DB_NAME: osu_pr
|
||||
run: |
|
||||
cd $GITHUB_WORKSPACE/pr/osu-difficulty-calculator/osu.Server.DifficultyCalculator
|
||||
dotnet run -c:Release -- all -m ${{ matrix.ruleset.id }} -ac -c ${{ env.CONCURRENCY }}
|
||||
sed -i 's;^OSU_B=.*$;OSU_B=${{ inputs.osu-b }};' "${{ needs.directory.outputs.GENERATOR_ENV }}"
|
||||
sed -i 's/^RULESET=.*$/RULESET=${{ inputs.ruleset }}/' "${{ needs.directory.outputs.GENERATOR_ENV }}"
|
||||
sed -i 's/^GENERATORS=.*$/GENERATORS=${{ inputs.generators }}/' "${{ needs.directory.outputs.GENERATOR_ENV }}"
|
||||
|
||||
- name: Print diffs
|
||||
run: |
|
||||
mysql -e "
|
||||
SELECT
|
||||
m.beatmap_id,
|
||||
m.mods,
|
||||
b.filename,
|
||||
m.diff_unified as 'sr_master',
|
||||
p.diff_unified as 'sr_pr',
|
||||
(p.diff_unified - m.diff_unified) as 'diff'
|
||||
FROM osu_master.osu_beatmap_difficulty m
|
||||
JOIN osu_pr.osu_beatmap_difficulty p
|
||||
ON m.beatmap_id = p.beatmap_id
|
||||
AND m.mode = p.mode
|
||||
AND m.mods = p.mods
|
||||
JOIN osu_pr.osu_beatmaps b
|
||||
ON b.beatmap_id = p.beatmap_id
|
||||
WHERE abs(m.diff_unified - p.diff_unified) > 0.1
|
||||
ORDER BY abs(m.diff_unified - p.diff_unified)
|
||||
DESC
|
||||
LIMIT 10000;"
|
||||
if [[ '${{ inputs.osu-a }}' != 'latest' ]]; then
|
||||
sed -i 's;^OSU_A=.*$;OSU_A=${{ inputs.osu-a }};' "${{ needs.directory.outputs.GENERATOR_ENV }}"
|
||||
fi
|
||||
|
||||
# Todo: Run ppcalc
|
||||
if [[ '${{ inputs.difficulty-calculator-a }}' != 'latest' ]]; then
|
||||
sed -i 's;^DIFFICULTY_CALCULATOR_A=.*$;DIFFICULTY_CALCULATOR_A=${{ inputs.difficulty-calculator-a }};' "${{ needs.directory.outputs.GENERATOR_ENV }}"
|
||||
fi
|
||||
|
||||
if [[ '${{ inputs.difficulty-calculator-b }}' != 'latest' ]]; then
|
||||
sed -i 's;^DIFFICULTY_CALCULATOR_B=.*$;DIFFICULTY_CALCULATOR_B=${{ inputs.difficulty-calculator-b }};' "${{ needs.directory.outputs.GENERATOR_ENV }}"
|
||||
fi
|
||||
|
||||
if [[ '${{ inputs.score-processor-a }}' != 'latest' ]]; then
|
||||
sed -i 's;^SCORE_PROCESSOR_A=.*$;SCORE_PROCESSOR_A=${{ inputs.score-processor-a }};' "${{ needs.directory.outputs.GENERATOR_ENV }}"
|
||||
fi
|
||||
|
||||
if [[ '${{ inputs.score-processor-b }}' != 'latest' ]]; then
|
||||
sed -i 's;^SCORE_PROCESSOR_B=.*$;SCORE_PROCESSOR_B=${{ inputs.score-processor-b }};' "${{ needs.directory.outputs.GENERATOR_ENV }}"
|
||||
fi
|
||||
|
||||
if [[ '${{ inputs.converts }}' == 'true' ]]; then
|
||||
sed -i 's/^NO_CONVERTS=.*$/NO_CONVERTS=0/' "${{ needs.directory.outputs.GENERATOR_ENV }}"
|
||||
else
|
||||
sed -i 's/^NO_CONVERTS=.*$/NO_CONVERTS=1/' "${{ needs.directory.outputs.GENERATOR_ENV }}"
|
||||
fi
|
||||
|
||||
if [[ '${{ inputs.ranked-only }}' == 'true' ]]; then
|
||||
sed -i 's/^RANKED_ONLY=.*$/RANKED_ONLY=1/' "${{ needs.directory.outputs.GENERATOR_ENV }}"
|
||||
else
|
||||
sed -i 's/^RANKED_ONLY=.*$/RANKED_ONLY=0/' "${{ needs.directory.outputs.GENERATOR_ENV }}"
|
||||
fi
|
||||
|
||||
scores:
|
||||
name: Setup scores
|
||||
needs: [ directory, environment ]
|
||||
runs-on: self-hosted
|
||||
steps:
|
||||
- name: Query latest data
|
||||
id: query
|
||||
run: |
|
||||
ruleset=$(cat ${{ needs.directory.outputs.GENERATOR_ENV }} | grep -E '^RULESET=' | cut -d '=' -f2-)
|
||||
performance_data_name=$(curl -s "https://data.ppy.sh/" | grep "performance_${ruleset}_top_1000\b" | tail -1 | awk -F "'" '{print $2}' | sed 's/\.tar\.bz2//g')
|
||||
|
||||
echo "TARGET_DIR=${{ needs.directory.outputs.GENERATOR_DIR }}/sql/${ruleset}" >> "${GITHUB_OUTPUT}"
|
||||
echo "DATA_NAME=${performance_data_name}" >> "${GITHUB_OUTPUT}"
|
||||
|
||||
- name: Restore cache
|
||||
id: restore-cache
|
||||
uses: maxnowack/local-cache@038cc090b52e4f205fbc468bf5b0756df6f68775 # v1
|
||||
with:
|
||||
path: ${{ steps.query.outputs.DATA_NAME }}.tar.bz2
|
||||
key: ${{ steps.query.outputs.DATA_NAME }}
|
||||
|
||||
- name: Download
|
||||
if: steps.restore-cache.outputs.cache-hit != 'true'
|
||||
run: |
|
||||
wget -q -nc "https://data.ppy.sh/${{ steps.query.outputs.DATA_NAME }}.tar.bz2"
|
||||
|
||||
- name: Extract
|
||||
run: |
|
||||
tar -I lbzip2 -xf "${{ steps.query.outputs.DATA_NAME }}.tar.bz2"
|
||||
rm -r "${{ steps.query.outputs.TARGET_DIR }}"
|
||||
mv "${{ steps.query.outputs.DATA_NAME }}" "${{ steps.query.outputs.TARGET_DIR }}"
|
||||
|
||||
beatmaps:
|
||||
name: Setup beatmaps
|
||||
needs: directory
|
||||
runs-on: self-hosted
|
||||
steps:
|
||||
- name: Query latest data
|
||||
id: query
|
||||
run: |
|
||||
beatmaps_data_name=$(curl -s "https://data.ppy.sh/" | grep "osu_files" | tail -1 | awk -F "'" '{print $2}' | sed 's/\.tar\.bz2//g')
|
||||
|
||||
echo "TARGET_DIR=${{ needs.directory.outputs.GENERATOR_DIR }}/beatmaps" >> "${GITHUB_OUTPUT}"
|
||||
echo "DATA_NAME=${beatmaps_data_name}" >> "${GITHUB_OUTPUT}"
|
||||
|
||||
- name: Restore cache
|
||||
id: restore-cache
|
||||
uses: maxnowack/local-cache@038cc090b52e4f205fbc468bf5b0756df6f68775 # v1
|
||||
with:
|
||||
path: ${{ steps.query.outputs.DATA_NAME }}.tar.bz2
|
||||
key: ${{ steps.query.outputs.DATA_NAME }}
|
||||
|
||||
- name: Download
|
||||
if: steps.restore-cache.outputs.cache-hit != 'true'
|
||||
run: |
|
||||
wget -q -nc "https://data.ppy.sh/${{ steps.query.outputs.DATA_NAME }}.tar.bz2"
|
||||
|
||||
- name: Extract
|
||||
run: |
|
||||
tar -I lbzip2 -xf "${{ steps.query.outputs.DATA_NAME }}.tar.bz2"
|
||||
rm -r "${{ steps.query.outputs.TARGET_DIR }}"
|
||||
mv "${{ steps.query.outputs.DATA_NAME }}" "${{ steps.query.outputs.TARGET_DIR }}"
|
||||
|
||||
generator:
|
||||
name: Run generator
|
||||
needs: [ directory, environment, scores, beatmaps ]
|
||||
runs-on: self-hosted
|
||||
timeout-minutes: 720
|
||||
outputs:
|
||||
TARGET: ${{ steps.run.outputs.TARGET }}
|
||||
SPREADSHEET_LINK: ${{ steps.run.outputs.SPREADSHEET_LINK }}
|
||||
steps:
|
||||
- name: Run
|
||||
id: run
|
||||
run: |
|
||||
# Add the GitHub token. This needs to be done here because it's unique per-job.
|
||||
sed -i 's/^GH_TOKEN=.*$/GH_TOKEN=${{ github.token }}/' "${{ needs.directory.outputs.GENERATOR_ENV }}"
|
||||
|
||||
cd "${{ needs.directory.outputs.GENERATOR_DIR }}"
|
||||
docker-compose up --build generator
|
||||
|
||||
link=$(docker-compose logs generator -n 10 | grep 'http' | sed -E 's/^.*(http.*)$/\1/')
|
||||
target=$(cat "${{ needs.directory.outputs.GENERATOR_ENV }}" | grep -E '^OSU_B=' | cut -d '=' -f2-)
|
||||
|
||||
echo "TARGET=${target}" >> "${GITHUB_OUTPUT}"
|
||||
echo "SPREADSHEET_LINK=${link}" >> "${GITHUB_OUTPUT}"
|
||||
|
||||
- name: Shutdown
|
||||
if: ${{ always() }}
|
||||
run: |
|
||||
cd "${{ needs.directory.outputs.GENERATOR_DIR }}"
|
||||
docker-compose down -v
|
||||
|
||||
output-cli:
|
||||
name: Output info
|
||||
needs: generator
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Output info
|
||||
run: |
|
||||
echo "Target: ${{ needs.generator.outputs.TARGET }}"
|
||||
echo "Spreadsheet: ${{ needs.generator.outputs.SPREADSHEET_LINK }}"
|
||||
|
||||
cleanup:
|
||||
name: Cleanup
|
||||
needs: [ directory, generator ]
|
||||
if: ${{ always() && needs.directory.result == 'success' }}
|
||||
runs-on: self-hosted
|
||||
steps:
|
||||
- name: Cleanup
|
||||
run: |
|
||||
rm -rf "${{ needs.directory.outputs.GENERATOR_DIR }}"
|
||||
|
||||
update-comment:
|
||||
name: Update PR comment
|
||||
needs: [ create-comment, generator ]
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ always() && needs.create-comment.result == 'success' }}
|
||||
steps:
|
||||
- name: Update comment on success
|
||||
if: ${{ needs.generator.result == 'success' }}
|
||||
uses: thollander/actions-comment-pull-request@363c6f6eae92cc5c3a66e95ba016fc771bb38943 # v2.4.2
|
||||
with:
|
||||
comment_tag: ${{ env.EXECUTION_ID }}
|
||||
mode: upsert
|
||||
create_if_not_exists: false
|
||||
message: |
|
||||
Target: ${{ needs.generator.outputs.TARGET }}
|
||||
Spreadsheet: ${{ needs.generator.outputs.SPREADSHEET_LINK }}
|
||||
|
||||
- name: Update comment on failure
|
||||
if: ${{ needs.generator.result == 'failure' }}
|
||||
uses: thollander/actions-comment-pull-request@363c6f6eae92cc5c3a66e95ba016fc771bb38943 # v2.4.2
|
||||
with:
|
||||
comment_tag: ${{ env.EXECUTION_ID }}
|
||||
mode: upsert
|
||||
create_if_not_exists: false
|
||||
message: |
|
||||
Difficulty calculation failed: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
|
||||
|
||||
- name: Update comment on cancellation
|
||||
if: ${{ needs.generator.result == 'cancelled' }}
|
||||
uses: thollander/actions-comment-pull-request@363c6f6eae92cc5c3a66e95ba016fc771bb38943 # v2.4.2
|
||||
with:
|
||||
comment_tag: ${{ env.EXECUTION_ID }}
|
||||
mode: delete
|
||||
message: '.' # Appears to be required by this action for non-error status code.
|
||||
|
||||
@@ -13,7 +13,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
|
||||
@@ -0,0 +1,53 @@
|
||||
name: Update osu-web mod definitions
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '*'
|
||||
|
||||
permissions:
|
||||
contents: read # to fetch code (actions/checkout)
|
||||
|
||||
jobs:
|
||||
update-mod-definitions:
|
||||
name: Update osu-web mod definitions
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Install .NET 6.0.x
|
||||
uses: actions/setup-dotnet@v3
|
||||
with:
|
||||
dotnet-version: "6.0.x"
|
||||
|
||||
- name: Checkout ppy/osu
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
path: osu
|
||||
|
||||
- name: Checkout ppy/osu-tools
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
repository: ppy/osu-tools
|
||||
path: osu-tools
|
||||
|
||||
- name: Checkout ppy/osu-web
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
repository: ppy/osu-web
|
||||
path: osu-web
|
||||
|
||||
- name: Setup local game checkout for tools
|
||||
run: ./UseLocalOsu.sh
|
||||
working-directory: ./osu-tools
|
||||
|
||||
- name: Regenerate mod definitions
|
||||
run: dotnet run --project PerformanceCalculator -- mods > ../osu-web/database/mods.json
|
||||
working-directory: ./osu-tools
|
||||
|
||||
- name: Create pull request with changes
|
||||
uses: peter-evans/create-pull-request@v5
|
||||
with:
|
||||
title: Update mod definitions
|
||||
body: "This PR has been auto-generated to update the mod definitions to match ppy/osu@${{ github.ref_name }}."
|
||||
branch: update-mod-definitions
|
||||
commit-message: Update mod definitions
|
||||
path: osu-web
|
||||
token: ${{ secrets.OSU_WEB_PULL_REQUEST_PAT }}
|
||||
@@ -339,6 +339,5 @@ inspectcode
|
||||
|
||||
# Fody (pulled in by Realm) - schema file
|
||||
FodyWeavers.xsd
|
||||
**/FodyWeavers.xml
|
||||
|
||||
.idea/.idea.osu.Desktop/.idea/misc.xml
|
||||
+2
-2
@@ -59,7 +59,7 @@ The [issue tracker](https://github.com/ppy/osu/issues) should provide plenty of
|
||||
|
||||
In the case of simple issues, a direct PR is okay. However, if you decide to work on an existing issue which doesn't seem trivial, **please ask us first**. This way we can try to estimate if it is a good fit for you and provide the correct direction on how to address it. In addition, note that while we do not rule out external contributors from working on roadmapped issues, we will generally prefer to handle them ourselves unless they're not very time sensitive.
|
||||
|
||||
If you'd like to propose a subjective change to one of the visual aspects of the game, or there is a bigger task you'd like to work on, but there is no corresponding issue or discussion thread yet for it, **please open a discussion or issue first** to avoid wasted effort. This in particular applies if you want to work on [one of the available designs from the osu! public Figma library](https://www.figma.com/file/6m10GiGEncVFWmgOoSyakH/osu!-Figma-Library).
|
||||
If you'd like to propose a subjective change to one of the visual aspects of the game, or there is a bigger task you'd like to work on, but there is no corresponding issue or discussion thread yet for it, **please open a discussion or issue first** to avoid wasted effort. This in particular applies if you want to work on [one of the available designs from the osu! Figma master library](https://www.figma.com/file/VIkXMYNPMtQem2RJg9k2iQ/Master-Library).
|
||||
|
||||
Aside from the above, below is a brief checklist of things to watch out when you're preparing your code changes:
|
||||
|
||||
@@ -85,4 +85,4 @@ If you're uncertain about some part of the codebase or some inner workings of th
|
||||
- [Development roadmap](https://github.com/orgs/ppy/projects/7/views/6): What the core team is currently working on
|
||||
- [`ppy/osu-framework` wiki](https://github.com/ppy/osu-framework/wiki): Contains introductory information about osu!framework, the bespoke 2D game framework we use for the game
|
||||
- [`ppy/osu` wiki](https://github.com/ppy/osu/wiki): Contains articles about various technical aspects of the game
|
||||
- [Public Figma library](https://www.figma.com/file/6m10GiGEncVFWmgOoSyakH/osu!-Figma-Library): Contains finished and draft designs for osu!
|
||||
- [Figma master library](https://www.figma.com/file/VIkXMYNPMtQem2RJg9k2iQ/Master-Library): Contains finished and draft designs for osu!
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<!-- Contains required properties for osu!framework projects. -->
|
||||
<Project>
|
||||
<PropertyGroup Label="C#">
|
||||
<LangVersion>9.0</LangVersion>
|
||||
<LangVersion>10.0</LangVersion>
|
||||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
@@ -17,7 +17,7 @@
|
||||
<EmbeddedResource Include="Resources\**\*.*" />
|
||||
</ItemGroup>
|
||||
<ItemGroup Label="Code Analysis">
|
||||
<PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers" Version="3.3.3" PrivateAssets="All" />
|
||||
<PackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers" Version="3.3.4" PrivateAssets="All" />
|
||||
<AdditionalFiles Include="$(MSBuildThisFileDirectory)CodeAnalysis\BannedSymbols.txt" />
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Code Analysis">
|
||||
|
||||
@@ -1,6 +0,0 @@
|
||||
source "https://rubygems.org"
|
||||
|
||||
gem "fastlane"
|
||||
|
||||
plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
|
||||
eval_gemfile(plugins_path) if File.exist?(plugins_path)
|
||||
-234
@@ -1,234 +0,0 @@
|
||||
GEM
|
||||
remote: https://rubygems.org/
|
||||
specs:
|
||||
CFPropertyList (3.0.5)
|
||||
rexml
|
||||
addressable (2.8.1)
|
||||
public_suffix (>= 2.0.2, < 6.0)
|
||||
artifactory (3.0.15)
|
||||
atomos (0.1.3)
|
||||
aws-eventstream (1.2.0)
|
||||
aws-partitions (1.653.0)
|
||||
aws-sdk-core (3.166.0)
|
||||
aws-eventstream (~> 1, >= 1.0.2)
|
||||
aws-partitions (~> 1, >= 1.651.0)
|
||||
aws-sigv4 (~> 1.5)
|
||||
jmespath (~> 1, >= 1.6.1)
|
||||
aws-sdk-kms (1.59.0)
|
||||
aws-sdk-core (~> 3, >= 3.165.0)
|
||||
aws-sigv4 (~> 1.1)
|
||||
aws-sdk-s3 (1.117.1)
|
||||
aws-sdk-core (~> 3, >= 3.165.0)
|
||||
aws-sdk-kms (~> 1)
|
||||
aws-sigv4 (~> 1.4)
|
||||
aws-sigv4 (1.5.2)
|
||||
aws-eventstream (~> 1, >= 1.0.2)
|
||||
babosa (1.0.4)
|
||||
claide (1.1.0)
|
||||
colored (1.2)
|
||||
colored2 (3.1.2)
|
||||
commander (4.6.0)
|
||||
highline (~> 2.0.0)
|
||||
declarative (0.0.20)
|
||||
digest-crc (0.6.4)
|
||||
rake (>= 12.0.0, < 14.0.0)
|
||||
domain_name (0.5.20190701)
|
||||
unf (>= 0.0.5, < 1.0.0)
|
||||
dotenv (2.8.1)
|
||||
emoji_regex (3.2.3)
|
||||
excon (0.93.1)
|
||||
faraday (1.10.2)
|
||||
faraday-em_http (~> 1.0)
|
||||
faraday-em_synchrony (~> 1.0)
|
||||
faraday-excon (~> 1.1)
|
||||
faraday-httpclient (~> 1.0)
|
||||
faraday-multipart (~> 1.0)
|
||||
faraday-net_http (~> 1.0)
|
||||
faraday-net_http_persistent (~> 1.0)
|
||||
faraday-patron (~> 1.0)
|
||||
faraday-rack (~> 1.0)
|
||||
faraday-retry (~> 1.0)
|
||||
ruby2_keywords (>= 0.0.4)
|
||||
faraday-cookie_jar (0.0.7)
|
||||
faraday (>= 0.8.0)
|
||||
http-cookie (~> 1.0.0)
|
||||
faraday-em_http (1.0.0)
|
||||
faraday-em_synchrony (1.0.0)
|
||||
faraday-excon (1.1.0)
|
||||
faraday-httpclient (1.0.1)
|
||||
faraday-multipart (1.0.4)
|
||||
multipart-post (~> 2)
|
||||
faraday-net_http (1.0.1)
|
||||
faraday-net_http_persistent (1.2.0)
|
||||
faraday-patron (1.0.0)
|
||||
faraday-rack (1.0.0)
|
||||
faraday-retry (1.0.3)
|
||||
faraday_middleware (1.2.0)
|
||||
faraday (~> 1.0)
|
||||
fastimage (2.2.6)
|
||||
fastlane (2.210.1)
|
||||
CFPropertyList (>= 2.3, < 4.0.0)
|
||||
addressable (>= 2.8, < 3.0.0)
|
||||
artifactory (~> 3.0)
|
||||
aws-sdk-s3 (~> 1.0)
|
||||
babosa (>= 1.0.3, < 2.0.0)
|
||||
bundler (>= 1.12.0, < 3.0.0)
|
||||
colored
|
||||
commander (~> 4.6)
|
||||
dotenv (>= 2.1.1, < 3.0.0)
|
||||
emoji_regex (>= 0.1, < 4.0)
|
||||
excon (>= 0.71.0, < 1.0.0)
|
||||
faraday (~> 1.0)
|
||||
faraday-cookie_jar (~> 0.0.6)
|
||||
faraday_middleware (~> 1.0)
|
||||
fastimage (>= 2.1.0, < 3.0.0)
|
||||
gh_inspector (>= 1.1.2, < 2.0.0)
|
||||
google-apis-androidpublisher_v3 (~> 0.3)
|
||||
google-apis-playcustomapp_v1 (~> 0.1)
|
||||
google-cloud-storage (~> 1.31)
|
||||
highline (~> 2.0)
|
||||
json (< 3.0.0)
|
||||
jwt (>= 2.1.0, < 3)
|
||||
mini_magick (>= 4.9.4, < 5.0.0)
|
||||
multipart-post (~> 2.0.0)
|
||||
naturally (~> 2.2)
|
||||
optparse (~> 0.1.1)
|
||||
plist (>= 3.1.0, < 4.0.0)
|
||||
rubyzip (>= 2.0.0, < 3.0.0)
|
||||
security (= 0.1.3)
|
||||
simctl (~> 1.6.3)
|
||||
terminal-notifier (>= 2.0.0, < 3.0.0)
|
||||
terminal-table (>= 1.4.5, < 2.0.0)
|
||||
tty-screen (>= 0.6.3, < 1.0.0)
|
||||
tty-spinner (>= 0.8.0, < 1.0.0)
|
||||
word_wrap (~> 1.0.0)
|
||||
xcodeproj (>= 1.13.0, < 2.0.0)
|
||||
xcpretty (~> 0.3.0)
|
||||
xcpretty-travis-formatter (>= 0.0.3)
|
||||
fastlane-plugin-clean_testflight_testers (0.3.0)
|
||||
fastlane-plugin-souyuz (0.11.1)
|
||||
souyuz (= 0.11.1)
|
||||
fastlane-plugin-xamarin (0.6.3)
|
||||
gh_inspector (1.1.3)
|
||||
google-apis-androidpublisher_v3 (0.29.0)
|
||||
google-apis-core (>= 0.9.0, < 2.a)
|
||||
google-apis-core (0.9.1)
|
||||
addressable (~> 2.5, >= 2.5.1)
|
||||
googleauth (>= 0.16.2, < 2.a)
|
||||
httpclient (>= 2.8.1, < 3.a)
|
||||
mini_mime (~> 1.0)
|
||||
representable (~> 3.0)
|
||||
retriable (>= 2.0, < 4.a)
|
||||
rexml
|
||||
webrick
|
||||
google-apis-iamcredentials_v1 (0.15.0)
|
||||
google-apis-core (>= 0.9.0, < 2.a)
|
||||
google-apis-playcustomapp_v1 (0.12.0)
|
||||
google-apis-core (>= 0.9.1, < 2.a)
|
||||
google-apis-storage_v1 (0.19.0)
|
||||
google-apis-core (>= 0.9.0, < 2.a)
|
||||
google-cloud-core (1.6.0)
|
||||
google-cloud-env (~> 1.0)
|
||||
google-cloud-errors (~> 1.0)
|
||||
google-cloud-env (1.6.0)
|
||||
faraday (>= 0.17.3, < 3.0)
|
||||
google-cloud-errors (1.3.0)
|
||||
google-cloud-storage (1.43.0)
|
||||
addressable (~> 2.8)
|
||||
digest-crc (~> 0.4)
|
||||
google-apis-iamcredentials_v1 (~> 0.1)
|
||||
google-apis-storage_v1 (~> 0.19.0)
|
||||
google-cloud-core (~> 1.6)
|
||||
googleauth (>= 0.16.2, < 2.a)
|
||||
mini_mime (~> 1.0)
|
||||
googleauth (1.3.0)
|
||||
faraday (>= 0.17.3, < 3.a)
|
||||
jwt (>= 1.4, < 3.0)
|
||||
memoist (~> 0.16)
|
||||
multi_json (~> 1.11)
|
||||
os (>= 0.9, < 2.0)
|
||||
signet (>= 0.16, < 2.a)
|
||||
highline (2.0.3)
|
||||
http-cookie (1.0.5)
|
||||
domain_name (~> 0.5)
|
||||
httpclient (2.8.3)
|
||||
jmespath (1.6.1)
|
||||
json (2.6.2)
|
||||
jwt (2.5.0)
|
||||
memoist (0.16.2)
|
||||
mini_magick (4.11.0)
|
||||
mini_mime (1.1.2)
|
||||
mini_portile2 (2.8.0)
|
||||
multi_json (1.15.0)
|
||||
multipart-post (2.0.0)
|
||||
nanaimo (0.3.0)
|
||||
naturally (2.2.1)
|
||||
nokogiri (1.13.9)
|
||||
mini_portile2 (~> 2.8.0)
|
||||
racc (~> 1.4)
|
||||
optparse (0.1.1)
|
||||
os (1.1.4)
|
||||
plist (3.6.0)
|
||||
public_suffix (5.0.0)
|
||||
racc (1.6.0)
|
||||
rake (13.0.6)
|
||||
representable (3.2.0)
|
||||
declarative (< 0.1.0)
|
||||
trailblazer-option (>= 0.1.1, < 0.2.0)
|
||||
uber (< 0.2.0)
|
||||
retriable (3.1.2)
|
||||
rexml (3.2.5)
|
||||
rouge (2.0.7)
|
||||
ruby2_keywords (0.0.5)
|
||||
rubyzip (2.3.2)
|
||||
security (0.1.3)
|
||||
signet (0.17.0)
|
||||
addressable (~> 2.8)
|
||||
faraday (>= 0.17.5, < 3.a)
|
||||
jwt (>= 1.5, < 3.0)
|
||||
multi_json (~> 1.10)
|
||||
simctl (1.6.8)
|
||||
CFPropertyList
|
||||
naturally
|
||||
souyuz (0.11.1)
|
||||
fastlane (>= 2.182.0)
|
||||
highline (~> 2.0)
|
||||
nokogiri (~> 1.7)
|
||||
terminal-notifier (2.0.0)
|
||||
terminal-table (1.8.0)
|
||||
unicode-display_width (~> 1.1, >= 1.1.1)
|
||||
trailblazer-option (0.1.2)
|
||||
tty-cursor (0.7.1)
|
||||
tty-screen (0.8.1)
|
||||
tty-spinner (0.9.3)
|
||||
tty-cursor (~> 0.7)
|
||||
uber (0.1.0)
|
||||
unf (0.1.4)
|
||||
unf_ext
|
||||
unf_ext (0.0.8.2)
|
||||
unicode-display_width (1.8.0)
|
||||
webrick (1.7.0)
|
||||
word_wrap (1.0.0)
|
||||
xcodeproj (1.22.0)
|
||||
CFPropertyList (>= 2.3.3, < 4.0)
|
||||
atomos (~> 0.1.3)
|
||||
claide (>= 1.0.2, < 2.0)
|
||||
colored2 (~> 3.1)
|
||||
nanaimo (~> 0.3.0)
|
||||
rexml (~> 3.2.4)
|
||||
xcpretty (0.3.0)
|
||||
rouge (~> 2.0.7)
|
||||
xcpretty-travis-formatter (1.0.1)
|
||||
xcpretty (~> 0.2, >= 0.0.7)
|
||||
|
||||
PLATFORMS
|
||||
ruby
|
||||
|
||||
DEPENDENCIES
|
||||
fastlane
|
||||
fastlane-plugin-clean_testflight_testers
|
||||
fastlane-plugin-souyuz
|
||||
fastlane-plugin-xamarin
|
||||
|
||||
BUNDLED WITH
|
||||
2.0.1
|
||||
@@ -12,47 +12,48 @@
|
||||
|
||||
A free-to-win rhythm game. Rhythm is just a *click* away!
|
||||
|
||||
The future of [osu!](https://osu.ppy.sh) and the beginning of an open era! Currently known by and released under the release codename "*lazer*". As in sharper than cutting-edge.
|
||||
This is the future – and final – iteration of the [osu!](https://osu.ppy.sh) game client which marks the beginning of an open era! Currently known by and released under the release codename "*lazer*". As in sharper than cutting-edge.
|
||||
|
||||
## Status
|
||||
|
||||
This project is under heavy development, but is in a stable state. Users are encouraged to try it out and keep it installed alongside the stable *osu!* client. It will continue to evolve to the point of eventually replacing the existing stable client as an update.
|
||||
This project is under constant development, but we do our best to keep things in a stable state. Players are encouraged to install from a release alongside their stable *osu!* client. This project will continue to evolve until we eventually reach the point where most users prefer it over the previous "osu!stable" release.
|
||||
|
||||
**IMPORTANT:** Gameplay mechanics (and other features which you may have come to know and love) are in a constant state of flux. Game balance and final quality-of-life passes come at the end of development, preceded by experimentation and changes which may potentially **reduce playability or usability**. This is done in order to allow us to move forward as developers and designers more efficiently. If this offends you, please consider sticking to the stable releases of osu! (found on the website). We are not yet open to heated discussion over game mechanics and will not be using github as a forum for such discussions just yet.
|
||||
|
||||
We are accepting bug reports (please report with as much detail as possible and follow the existing issue templates). Feature requests are also welcome, but understand that our focus is on completing the game to feature parity before adding new features. A few resources are available as starting points to getting involved and understanding the project:
|
||||
A few resources are available as starting points to getting involved and understanding the project:
|
||||
|
||||
- Detailed release changelogs are available on the [official osu! site](https://osu.ppy.sh/home/changelog/lazer).
|
||||
- You can learn more about our approach to [project management](https://github.com/ppy/osu/wiki/Project-management).
|
||||
- Read peppy's [blog post](https://blog.ppy.sh/a-definitive-lazer-faq/) exploring where the project is currently and the roadmap going forward.
|
||||
- Track our current efforts [towards full "ranked play" support](https://github.com/orgs/ppy/projects/13?query=is%3Aopen+sort%3Aupdated-desc).
|
||||
|
||||
## Running osu!
|
||||
|
||||
If you are looking to install or test osu! without setting up a development environment, you can consume our [binary releases](https://github.com/ppy/osu/releases). Handy links below will download the latest version for your operating system of choice:
|
||||
If you are just looking to give the game a whirl, you can grab the latest release for your platform:
|
||||
|
||||
**Latest build:**
|
||||
### Latest release:
|
||||
|
||||
| [Windows 8.1+ (x64)](https://github.com/ppy/osu/releases/latest/download/install.exe) | macOS 10.15+ ([Intel](https://github.com/ppy/osu/releases/latest/download/osu.app.Intel.zip), [Apple Silicon](https://github.com/ppy/osu/releases/latest/download/osu.app.Apple.Silicon.zip)) | [Linux (x64)](https://github.com/ppy/osu/releases/latest/download/osu.AppImage) | [iOS 13.4+](https://osu.ppy.sh/home/testflight) | [Android 5+](https://github.com/ppy/osu/releases/latest/download/sh.ppy.osulazer.apk) |
|
||||
| ------------- | ------------- | ------------- | ------------- | ------------- |
|
||||
|
||||
- The iOS testflight link may fill up (Apple has a hard limit of 10,000 users). We reset it occasionally when this happens. Please do not ask about this. Check back regularly for link resets or follow [peppy](https://twitter.com/ppy) on twitter for announcements of link resets.
|
||||
You can also generally download a version for your current device from the [osu! site](https://osu.ppy.sh/home/download).
|
||||
|
||||
If your platform is not listed above, there is still a chance you can manually build it by following the instructions below.
|
||||
|
||||
**For iOS/iPadOS users**: The iOS testflight link fills up very fast (Apple has a hard limit of 10,000 users). We reset it occasionally. Please do not ask about this. Check back regularly for link resets or follow [peppy](https://twitter.com/ppy) on twitter for announcements. Our goal is to get the game on mobile app stores in early 2024.
|
||||
|
||||
## Developing a custom ruleset
|
||||
|
||||
osu! is designed to have extensible modular gameplay modes, called "rulesets". Building one of these allows a developer to harness the power of osu! for their own game style. To get started working on a ruleset, we have some templates available [here](https://github.com/ppy/osu/tree/master/Templates).
|
||||
osu! is designed to allow user-created gameplay variations, called "rulesets". Building one of these allows a developer to harness the power of the osu! beatmap library, game engine, and general UX for a new style of gameplay. To get started working on a ruleset, we have some templates available [here](https://github.com/ppy/osu/tree/master/Templates).
|
||||
|
||||
You can see some examples of custom rulesets by visiting the [custom ruleset directory](https://github.com/ppy/osu/discussions/13096).
|
||||
|
||||
## Developing osu!
|
||||
|
||||
### Prerequisites
|
||||
|
||||
Please make sure you have the following prerequisites:
|
||||
|
||||
- A desktop platform with the [.NET 6.0 SDK](https://dotnet.microsoft.com/download) installed.
|
||||
- When developing with mobile, [Xamarin](https://docs.microsoft.com/en-us/xamarin/) is required, which is shipped together with Visual Studio or [Visual Studio for Mac](https://visualstudio.microsoft.com/vs/mac/).
|
||||
- When working with the codebase, we recommend using an IDE with intelligent code completion and syntax highlighting, such as the latest version of [Visual Studio](https://visualstudio.microsoft.com/vs/), [JetBrains Rider](https://www.jetbrains.com/rider/) or [Visual Studio Code](https://code.visualstudio.com/).
|
||||
- When running on Linux, please have a system-wide FFmpeg installation available to support video decoding.
|
||||
|
||||
When working with the codebase, we recommend using an IDE with intelligent code completion and syntax highlighting, such as the latest version of [Visual Studio](https://visualstudio.microsoft.com/vs/), [JetBrains Rider](https://www.jetbrains.com/rider/), or [Visual Studio Code](https://code.visualstudio.com/) with the [EditorConfig](https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig) and [C#](https://marketplace.visualstudio.com/items?itemName=ms-dotnettools.csharp) plugin installed.
|
||||
|
||||
### Downloading the source code
|
||||
|
||||
@@ -71,9 +72,19 @@ git pull
|
||||
|
||||
### Building
|
||||
|
||||
Build configurations for the recommended IDEs (listed above) are included. You should use the provided Build/Run functionality of your IDE to get things going. When testing or building new components, it's highly encouraged you use the `VisualTests` project/configuration. More information on this is provided [below](#contributing).
|
||||
#### From an IDE
|
||||
|
||||
- Visual Studio / Rider users should load the project via one of the platform-specific `.slnf` files, rather than the main `.sln`. This will allow access to template run configurations.
|
||||
You should load the solution via one of the platform-specific `.slnf` files, rather than the main `.sln`. This will reduce dependencies and hide platforms that you don't care about. Valid `.slnf` files are:
|
||||
|
||||
- `osu.Desktop.slnf` (most common)
|
||||
- `osu.Android.slnf`
|
||||
- `osu.iOS.slnf`
|
||||
|
||||
Run configurations for the recommended IDEs (listed above) are included. You should use the provided Build/Run functionality of your IDE to get things going. When testing or building new components, it's highly encouraged you use the `osu! (Tests)` project/configuration. More information on this is provided [below](#contributing).
|
||||
|
||||
To build for mobile platforms, you will likely need to run `sudo dotnet workload restore` if you haven't done so previously. This will install Android/iOS tooling required to complete the build.
|
||||
|
||||
#### From CLI
|
||||
|
||||
You can also build and run *osu!* from the command-line with a single command:
|
||||
|
||||
@@ -81,15 +92,35 @@ You can also build and run *osu!* from the command-line with a single command:
|
||||
dotnet run --project osu.Desktop
|
||||
```
|
||||
|
||||
If you are not interested in debugging *osu!*, you can add `-c Release` to gain performance. In this case, you must replace `Debug` with `Release` in any commands mentioned in this document.
|
||||
When running locally to do any kind of performance testing, make sure to add `-c Release` to the build command, as the overhead of running with the default `Debug` configuration can be large (especially when testing with local framework modifications as below).
|
||||
|
||||
If the build fails, try to restore NuGet packages with `dotnet restore`.
|
||||
|
||||
_Due to a historical feature gap between .NET Core and Xamarin, running `dotnet` CLI from the root directory will not work for most commands. This can be resolved by specifying a target `.csproj` or the helper project at `build/Desktop.proj`. Configurations have been provided to work around this issue for all supported IDEs mentioned above._
|
||||
|
||||
### Testing with resource/framework modifications
|
||||
|
||||
Sometimes it may be necessary to cross-test changes in [osu-resources](https://github.com/ppy/osu-resources) or [osu-framework](https://github.com/ppy/osu-framework). This can be achieved by running some commands as documented on the [osu-resources](https://github.com/ppy/osu-resources/wiki/Testing-local-resources-checkout-with-other-projects) and [osu-framework](https://github.com/ppy/osu-framework/wiki/Testing-local-framework-checkout-with-other-projects) wiki pages.
|
||||
Sometimes it may be necessary to cross-test changes in [osu-resources](https://github.com/ppy/osu-resources) or [osu-framework](https://github.com/ppy/osu-framework). This can be quickly achieved using included commands:
|
||||
|
||||
Windows:
|
||||
|
||||
```ps
|
||||
UseLocalFramework.ps1
|
||||
UseLocalResources.ps1
|
||||
```
|
||||
|
||||
macOS / Linux:
|
||||
|
||||
```ps
|
||||
UseLocalFramework.sh
|
||||
UseLocalResources.sh
|
||||
```
|
||||
|
||||
Note that these commands assume you have the relevant project(s) checked out in adjacent directories:
|
||||
|
||||
```
|
||||
|- osu // this repository
|
||||
|- osu-framework
|
||||
|- osu-resources
|
||||
```
|
||||
|
||||
### Code analysis
|
||||
|
||||
@@ -105,7 +136,7 @@ When it comes to contributing to the project, the two main things you can do to
|
||||
|
||||
If you wish to help with localisation efforts, head over to [crowdin](https://crowdin.com/project/osu-web).
|
||||
|
||||
For those interested, we love to reward quality contributions via [bounties](https://docs.google.com/spreadsheets/d/1jNXfj_S3Pb5PErA-czDdC9DUu4IgUbe1Lt8E7CYUJuE/view?&rm=minimal#gid=523803337), paid out via PayPal or osu!supporter tags. Don't hesitate to [request a bounty](https://docs.google.com/forms/d/e/1FAIpQLSet_8iFAgPMG526pBZ2Kic6HSh7XPM3fE8xPcnWNkMzINDdYg/viewform) for your work on this project.
|
||||
We love to reward quality contributions. If you have made a large contribution, or are a regular contributor, you are welcome to [submit an expense via opencollective](https://opencollective.com/ppy/expenses/new). If you have any questions, feel free to [reach out to peppy](mailto:pe@ppy.sh) before doing so.
|
||||
|
||||
## Licence
|
||||
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ Templates for use when creating osu! dependent projects. Create a fully-testable
|
||||
```bash
|
||||
# install (or update) templates package.
|
||||
# this only needs to be done once
|
||||
dotnet new -i ppy.osu.Game.Templates
|
||||
dotnet new install ppy.osu.Game.Templates
|
||||
|
||||
# create an empty freeform ruleset
|
||||
dotnet new ruleset -n MyCoolRuleset
|
||||
|
||||
+2
-2
@@ -9,9 +9,9 @@
|
||||
<GenerateProgramFile>false</GenerateProgramFile>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Label="Package References">
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
|
||||
<PackageReference Include="NUnit" Version="3.13.3" />
|
||||
<PackageReference Include="NUnit3TestAdapter" Version="4.3.0" />
|
||||
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\osu.Game.Rulesets.EmptyFreeform\osu.Game.Rulesets.EmptyFreeform.csproj" />
|
||||
|
||||
+2
-2
@@ -9,9 +9,9 @@
|
||||
<GenerateProgramFile>false</GenerateProgramFile>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Label="Package References">
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
|
||||
<PackageReference Include="NUnit" Version="3.13.3" />
|
||||
<PackageReference Include="NUnit3TestAdapter" Version="4.3.0" />
|
||||
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\osu.Game.Rulesets.Pippidon\osu.Game.Rulesets.Pippidon.csproj" />
|
||||
|
||||
+1
-2
@@ -8,7 +8,6 @@ using osu.Framework.Graphics;
|
||||
using osu.Framework.Graphics.Sprites;
|
||||
using osu.Framework.Graphics.Textures;
|
||||
using osu.Game.Audio;
|
||||
using osu.Game.Beatmaps.ControlPoints;
|
||||
using osu.Game.Rulesets.Objects.Drawables;
|
||||
using osu.Game.Rulesets.Scoring;
|
||||
using osuTK;
|
||||
@@ -44,7 +43,7 @@ namespace osu.Game.Rulesets.Pippidon.Objects.Drawables
|
||||
|
||||
public override IEnumerable<HitSampleInfo> GetSamples() => new[]
|
||||
{
|
||||
new HitSampleInfo(HitSampleInfo.HIT_NORMAL, SampleControlPoint.DEFAULT_BANK)
|
||||
new HitSampleInfo(HitSampleInfo.HIT_NORMAL)
|
||||
};
|
||||
|
||||
protected override void CheckForResult(bool userTriggered, double timeOffset)
|
||||
|
||||
+2
-2
@@ -9,9 +9,9 @@
|
||||
<GenerateProgramFile>false</GenerateProgramFile>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Label="Package References">
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
|
||||
<PackageReference Include="NUnit" Version="3.13.3" />
|
||||
<PackageReference Include="NUnit3TestAdapter" Version="4.3.0" />
|
||||
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\osu.Game.Rulesets.EmptyScrolling\osu.Game.Rulesets.EmptyScrolling.csproj" />
|
||||
|
||||
+2
-2
@@ -9,9 +9,9 @@
|
||||
<GenerateProgramFile>false</GenerateProgramFile>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Label="Package References">
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
|
||||
<PackageReference Include="NUnit" Version="3.13.3" />
|
||||
<PackageReference Include="NUnit3TestAdapter" Version="4.3.0" />
|
||||
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\osu.Game.Rulesets.Pippidon\osu.Game.Rulesets.Pippidon.csproj" />
|
||||
|
||||
+1
-2
@@ -8,7 +8,6 @@ using osu.Framework.Graphics;
|
||||
using osu.Framework.Graphics.Sprites;
|
||||
using osu.Framework.Graphics.Textures;
|
||||
using osu.Game.Audio;
|
||||
using osu.Game.Beatmaps.ControlPoints;
|
||||
using osu.Game.Rulesets.Objects.Drawables;
|
||||
using osu.Game.Rulesets.Pippidon.UI;
|
||||
using osu.Game.Rulesets.Scoring;
|
||||
@@ -44,7 +43,7 @@ namespace osu.Game.Rulesets.Pippidon.Objects.Drawables
|
||||
|
||||
public override IEnumerable<HitSampleInfo> GetSamples() => new[]
|
||||
{
|
||||
new HitSampleInfo(HitSampleInfo.HIT_NORMAL, SampleControlPoint.DEFAULT_BANK)
|
||||
new HitSampleInfo(HitSampleInfo.HIT_NORMAL)
|
||||
};
|
||||
|
||||
protected override void CheckForResult(bool userTriggered, double timeOffset)
|
||||
|
||||
+43
-5
@@ -3,15 +3,53 @@
|
||||
#
|
||||
# https://github.com/ppy/osu-framework/wiki/Testing-local-framework-checkout-with-other-projects
|
||||
|
||||
$CSPROJ="osu.Game/osu.Game.csproj"
|
||||
$GAME_CSPROJ="osu.Game/osu.Game.csproj"
|
||||
$ANDROID_PROPS="osu.Android.props"
|
||||
$IOS_PROPS="osu.iOS.props"
|
||||
$SLN="osu.sln"
|
||||
|
||||
dotnet remove $CSPROJ package ppy.osu.Framework;
|
||||
dotnet sln $SLN add ../osu-framework/osu.Framework/osu.Framework.csproj ../osu-framework/osu.Framework.NativeLibs/osu.Framework.NativeLibs.csproj;
|
||||
dotnet add $CSPROJ reference ../osu-framework/osu.Framework/osu.Framework.csproj
|
||||
dotnet remove $GAME_CSPROJ reference ppy.osu.Framework;
|
||||
dotnet remove $ANDROID_PROPS reference ppy.osu.Framework.Android;
|
||||
dotnet remove $IOS_PROPS reference ppy.osu.Framework.iOS;
|
||||
|
||||
dotnet sln $SLN add ../osu-framework/osu.Framework/osu.Framework.csproj `
|
||||
../osu-framework/osu.Framework.NativeLibs/osu.Framework.NativeLibs.csproj `
|
||||
../osu-framework/osu.Framework.Android/osu.Framework.Android.csproj `
|
||||
../osu-framework/osu.Framework.iOS/osu.Framework.iOS.csproj;
|
||||
|
||||
dotnet add $GAME_CSPROJ reference ../osu-framework/osu.Framework/osu.Framework.csproj;
|
||||
dotnet add $ANDROID_PROPS reference ../osu-framework/osu.Framework.Android/osu.Framework.Android.csproj;
|
||||
dotnet add $IOS_PROPS reference ../osu-framework/osu.Framework.iOS/osu.Framework.iOS.csproj;
|
||||
|
||||
# workaround for dotnet add not inserting $(MSBuildThisFileDirectory) on props files
|
||||
(Get-Content "osu.Android.props") -replace "`"..\\osu-framework", "`"`$(MSBuildThisFileDirectory)..\osu-framework" | Set-Content "osu.Android.props"
|
||||
(Get-Content "osu.iOS.props") -replace "`"..\\osu-framework", "`"`$(MSBuildThisFileDirectory)..\osu-framework" | Set-Content "osu.iOS.props"
|
||||
|
||||
# needed because iOS framework nupkg includes a set of properties to work around certain issues during building,
|
||||
# and those get ignored when referencing framework via project, threfore we have to manually include it via props reference.
|
||||
(Get-Content "osu.iOS.props") |
|
||||
Foreach-Object {
|
||||
if ($_ -match "</Project>")
|
||||
{
|
||||
" <Import Project=`"`$(MSBuildThisFileDirectory)../osu-framework/osu.Framework.iOS.props`"/>"
|
||||
}
|
||||
|
||||
$_
|
||||
} | Set-Content "osu.iOS.props"
|
||||
|
||||
$TMP=New-TemporaryFile
|
||||
|
||||
$SLNF=Get-Content "osu.Desktop.slnf" | ConvertFrom-Json
|
||||
$TMP=New-TemporaryFile
|
||||
$SLNF.solution.projects += ("../osu-framework/osu.Framework/osu.Framework.csproj", "../osu-framework/osu.Framework.NativeLibs/osu.Framework.NativeLibs.csproj")
|
||||
ConvertTo-Json $SLNF | Out-File $TMP -Encoding UTF8
|
||||
Move-Item -Path $TMP -Destination "osu.Desktop.slnf" -Force
|
||||
|
||||
$SLNF=Get-Content "osu.Android.slnf" | ConvertFrom-Json
|
||||
$SLNF.solution.projects += ("../osu-framework/osu.Framework/osu.Framework.csproj", "../osu-framework/osu.Framework.NativeLibs/osu.Framework.NativeLibs.csproj", "../osu-framework/osu.Framework.Android/osu.Framework.Android.csproj")
|
||||
ConvertTo-Json $SLNF | Out-File $TMP -Encoding UTF8
|
||||
Move-Item -Path $TMP -Destination "osu.Android.slnf" -Force
|
||||
|
||||
$SLNF=Get-Content "osu.iOS.slnf" | ConvertFrom-Json
|
||||
$SLNF.solution.projects += ("../osu-framework/osu.Framework/osu.Framework.csproj", "../osu-framework/osu.Framework.NativeLibs/osu.Framework.NativeLibs.csproj", "../osu-framework/osu.Framework.iOS/osu.Framework.iOS.csproj")
|
||||
ConvertTo-Json $SLNF | Out-File $TMP -Encoding UTF8
|
||||
Move-Item -Path $TMP -Destination "osu.iOS.slnf" -Force
|
||||
|
||||
+33
-6
@@ -5,14 +5,41 @@
|
||||
#
|
||||
# https://github.com/ppy/osu-framework/wiki/Testing-local-framework-checkout-with-other-projects
|
||||
|
||||
CSPROJ="osu.Game/osu.Game.csproj"
|
||||
GAME_CSPROJ="osu.Game/osu.Game.csproj"
|
||||
ANDROID_PROPS="osu.Android.props"
|
||||
IOS_PROPS="osu.iOS.props"
|
||||
SLN="osu.sln"
|
||||
|
||||
dotnet remove $CSPROJ package ppy.osu.Framework
|
||||
dotnet sln $SLN add ../osu-framework/osu.Framework/osu.Framework.csproj ../osu-framework/osu.Framework.NativeLibs/osu.Framework.NativeLibs.csproj
|
||||
dotnet add $CSPROJ reference ../osu-framework/osu.Framework/osu.Framework.csproj
|
||||
dotnet remove $GAME_CSPROJ reference ppy.osu.Framework
|
||||
dotnet remove $ANDROID_PROPS reference ppy.osu.Framework.Android
|
||||
dotnet remove $IOS_PROPS reference ppy.osu.Framework.iOS
|
||||
|
||||
dotnet sln $SLN add ../osu-framework/osu.Framework/osu.Framework.csproj \
|
||||
../osu-framework/osu.Framework.NativeLibs/osu.Framework.NativeLibs.csproj \
|
||||
../osu-framework/osu.Framework.Android/osu.Framework.Android.csproj \
|
||||
../osu-framework/osu.Framework.iOS/osu.Framework.iOS.csproj
|
||||
|
||||
dotnet add $GAME_CSPROJ reference ../osu-framework/osu.Framework/osu.Framework.csproj
|
||||
dotnet add $ANDROID_PROPS reference ../osu-framework/osu.Framework.Android/osu.Framework.Android.csproj
|
||||
dotnet add $IOS_PROPS reference ../osu-framework/osu.Framework.iOS/osu.Framework.iOS.csproj
|
||||
|
||||
# workaround for dotnet add not inserting $(MSBuildThisFileDirectory) on props files
|
||||
sed -i.bak 's:"..\\osu-framework:"$(MSBuildThisFileDirectory)..\\osu-framework:g' ./osu.Android.props && rm osu.Android.props.bak
|
||||
sed -i.bak 's:"..\\osu-framework:"$(MSBuildThisFileDirectory)..\\osu-framework:g' ./osu.iOS.props && rm osu.iOS.props.bak
|
||||
|
||||
# needed because iOS framework nupkg includes a set of properties to work around certain issues during building,
|
||||
# and those get ignored when referencing framework via project, threfore we have to manually include it via props reference.
|
||||
sed -i.bak '/<\/Project>/i\
|
||||
<Import Project=\"$(MSBuildThisFileDirectory)../osu-framework/osu.Framework.iOS.props\"/>\
|
||||
' ./osu.iOS.props && rm osu.iOS.props.bak
|
||||
|
||||
SLNF="osu.Desktop.slnf"
|
||||
tmp=$(mktemp)
|
||||
|
||||
jq '.solution.projects += ["../osu-framework/osu.Framework/osu.Framework.csproj", "../osu-framework/osu.Framework.NativeLibs/osu.Framework.NativeLibs.csproj"]' osu.Desktop.slnf > $tmp
|
||||
mv -f $tmp $SLNF
|
||||
mv -f $tmp osu.Desktop.slnf
|
||||
|
||||
jq '.solution.projects += ["../osu-framework/osu.Framework/osu.Framework.csproj", "../osu-framework/osu.Framework.NativeLibs/osu.Framework.NativeLibs.csproj", "../osu-framework/osu.Framework.Android/osu.Framework.Android.csproj"]' osu.Android.slnf > $tmp
|
||||
mv -f $tmp osu.Android.slnf
|
||||
|
||||
jq '.solution.projects += ["../osu-framework/osu.Framework/osu.Framework.csproj", "../osu-framework/osu.Framework.NativeLibs/osu.Framework.NativeLibs.csproj", "../osu-framework/osu.Framework.iOS/osu.Framework.iOS.csproj"]' osu.iOS.slnf > $tmp
|
||||
mv -f $tmp osu.iOS.slnf
|
||||
|
||||
+2
-24
@@ -1,6 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<asmv1:assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
|
||||
<assemblyIdentity version="1.0.0.0" name="osu!" />
|
||||
<SquirrelAwareVersion xmlns="urn:schema-squirrel-com:asm.v1">1</SquirrelAwareVersion>
|
||||
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
|
||||
<security>
|
||||
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||
@@ -14,33 +15,10 @@
|
||||
</trustInfo>
|
||||
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
|
||||
<application>
|
||||
<!-- Windows Vista -->
|
||||
<supportedOS Id="{e2011457-1546-43c5-a5fe-008deee3d3f0}" />
|
||||
<!-- Windows 7 -->
|
||||
<supportedOS Id="{35138b9a-5d96-4fbd-8e2d-a2440225f93a}" />
|
||||
<!-- Windows 8 -->
|
||||
<supportedOS Id="{4a2f28e3-53b9-4441-ba9c-d69d4a4a6e38}" />
|
||||
<!-- Windows 8.1 -->
|
||||
<supportedOS Id="{1f676c76-80e1-4239-95bb-83d0f6d0da78}" />
|
||||
<!-- Windows 10 -->
|
||||
<!-- Windows 10 and Windows 11 -->
|
||||
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" />
|
||||
</application>
|
||||
</compatibility>
|
||||
<asmv3:application>
|
||||
<asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
|
||||
<dpiAware>true</dpiAware>
|
||||
</asmv3:windowsSettings>
|
||||
</asmv3:application>
|
||||
<dependency>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity
|
||||
type="win32"
|
||||
name="Microsoft.Windows.Common-Controls"
|
||||
version="6.0.0.0"
|
||||
processorArchitecture="*"
|
||||
publicKeyToken="6595b64144ccf1df"
|
||||
language="*"
|
||||
/>
|
||||
</dependentAssembly>
|
||||
</dependency>
|
||||
</asmv1:assembly>
|
||||
|
||||
@@ -1,2 +0,0 @@
|
||||
app_identifier("sh.ppy.osulazer") # The bundle identifier of your app
|
||||
apple_id("apple-dev@ppy.sh") # Your Apple email address
|
||||
@@ -1,147 +0,0 @@
|
||||
update_fastlane
|
||||
|
||||
platform :android do
|
||||
desc 'Deploy to play store'
|
||||
lane :beta do |options|
|
||||
|
||||
update_version(
|
||||
version: options[:version],
|
||||
build: options[:build],
|
||||
)
|
||||
|
||||
build(options)
|
||||
|
||||
supply(
|
||||
apk: './osu.Android/bin/Release/sh.ppy.osulazer-Signed.apk',
|
||||
package_name: 'sh.ppy.osulazer',
|
||||
track: 'alpha', # upload to alpha, we can promote it later
|
||||
json_key: options[:json_key],
|
||||
)
|
||||
end
|
||||
|
||||
desc 'Deploy to github release'
|
||||
lane :build_github do |options|
|
||||
|
||||
update_version(
|
||||
version: options[:version],
|
||||
build: options[:build],
|
||||
)
|
||||
|
||||
build(options)
|
||||
|
||||
client = HTTPClient.new
|
||||
changelog = client.get_content 'https://gist.githubusercontent.com/peppy/aaa2ec1a323554b619671cac6dbbb776/raw'
|
||||
changelog.gsub!('$BUILD_ID', options[:build])
|
||||
|
||||
set_github_release(
|
||||
repository_name: "ppy/osu",
|
||||
api_token: ENV["GITHUB_TOKEN"],
|
||||
name: options[:build],
|
||||
tag_name: options[:build],
|
||||
is_draft: true,
|
||||
description: changelog,
|
||||
commitish: "master",
|
||||
upload_assets: ["osu.Android/bin/Release/sh.ppy.osulazer.apk"]
|
||||
)
|
||||
|
||||
end
|
||||
|
||||
desc 'Compile the project'
|
||||
lane :build do |options|
|
||||
nuget_restore(project_path: 'osu.Android/osu.Android.csproj')
|
||||
nuget_restore(project_path: 'osu.Game/osu.Game.csproj')
|
||||
nuget_restore(project_path: 'osu.Game.Rulesets.Osu/osu.Game.Rulesets.Osu.csproj')
|
||||
nuget_restore(project_path: 'osu.Game.Rulesets.Taiko/osu.Game.Rulesets.Taiko.csproj')
|
||||
nuget_restore(project_path: 'osu.Game.Rulesets.Catch/osu.Game.Rulesets.Catch.csproj')
|
||||
nuget_restore(project_path: 'osu.Game.Rulesets.Mania/osu.Game.Rulesets.Mania.csproj')
|
||||
|
||||
souyuz(
|
||||
build_configuration: 'Release',
|
||||
solution_path: 'osu.sln',
|
||||
platform: "android",
|
||||
output_path: "osu.Android/bin/Release/",
|
||||
keystore_path: options[:keystore_path],
|
||||
keystore_alias: options[:keystore_alias],
|
||||
keystore_password: ENV["KEYSTORE_PASSWORD"]
|
||||
)
|
||||
end
|
||||
|
||||
lane :update_version do |options|
|
||||
|
||||
split = options[:build].split('.')
|
||||
split[1] = split[1].to_s.rjust(4, '0')
|
||||
android_build = split.join('')
|
||||
|
||||
app_version(
|
||||
solution_path: 'osu.sln',
|
||||
version: options[:version],
|
||||
build: android_build,
|
||||
)
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
platform :ios do
|
||||
desc 'Deploy to testflight'
|
||||
lane :beta do |options|
|
||||
update_version(options)
|
||||
|
||||
provision(
|
||||
type: 'appstore'
|
||||
)
|
||||
|
||||
build(
|
||||
build_configuration: 'Release',
|
||||
build_platform: 'iPhone'
|
||||
)
|
||||
|
||||
client = HTTPClient.new
|
||||
changelog = client.get_content 'https://gist.githubusercontent.com/peppy/ab89c29dcc0dce95f39eb218e8fad197/raw'
|
||||
changelog.gsub!('$BUILD_ID', options[:build])
|
||||
|
||||
pilot(
|
||||
wait_processing_interval: 900,
|
||||
changelog: changelog,
|
||||
groups: ['osu! supporters', 'public'],
|
||||
distribute_external: true,
|
||||
ipa: './osu.iOS/bin/iPhone/Release/osu.iOS.ipa'
|
||||
)
|
||||
end
|
||||
|
||||
desc 'Compile the project'
|
||||
lane :build do
|
||||
nuget_restore(project_path: 'osu.iOS/osu.iOS.csproj')
|
||||
nuget_restore(project_path: 'osu.Game/osu.Game.csproj')
|
||||
nuget_restore(project_path: 'osu.Game.Rulesets.Osu/osu.Game.Rulesets.Osu.csproj')
|
||||
nuget_restore(project_path: 'osu.Game.Rulesets.Taiko/osu.Game.Rulesets.Taiko.csproj')
|
||||
nuget_restore(project_path: 'osu.Game.Rulesets.Catch/osu.Game.Rulesets.Catch.csproj')
|
||||
nuget_restore(project_path: 'osu.Game.Rulesets.Mania/osu.Game.Rulesets.Mania.csproj')
|
||||
|
||||
souyuz(
|
||||
platform: "ios",
|
||||
plist_path: "osu.iOS/Info.plist"
|
||||
)
|
||||
end
|
||||
|
||||
desc 'Install provisioning profiles using match'
|
||||
lane :provision do |options|
|
||||
if Helper.is_ci?
|
||||
options[:readonly] = true
|
||||
end
|
||||
|
||||
match(options)
|
||||
end
|
||||
|
||||
lane :update_version do |options|
|
||||
options[:plist_path] = 'osu.iOS/Info.plist'
|
||||
app_version(options)
|
||||
end
|
||||
|
||||
lane :testflight_prune_dry do
|
||||
clean_testflight_testers(days_of_inactivity:30, dry_run: true)
|
||||
end
|
||||
|
||||
lane :testflight_prune do
|
||||
clean_testflight_testers(days_of_inactivity: 30)
|
||||
end
|
||||
end
|
||||
@@ -1 +0,0 @@
|
||||
git_url('https://github.com/peppy/apple-certificates')
|
||||
@@ -1,7 +0,0 @@
|
||||
# Autogenerated by fastlane
|
||||
#
|
||||
# Ensure this file is checked in to source control!
|
||||
|
||||
gem 'fastlane-plugin-clean_testflight_testers'
|
||||
gem 'fastlane-plugin-souyuz'
|
||||
gem 'fastlane-plugin-xamarin'
|
||||
@@ -1,109 +0,0 @@
|
||||
fastlane documentation
|
||||
----
|
||||
|
||||
# Installation
|
||||
|
||||
Make sure you have the latest version of the Xcode command line tools installed:
|
||||
|
||||
```sh
|
||||
xcode-select --install
|
||||
```
|
||||
|
||||
For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane)
|
||||
|
||||
# Available Actions
|
||||
|
||||
## Android
|
||||
|
||||
### android beta
|
||||
|
||||
```sh
|
||||
[bundle exec] fastlane android beta
|
||||
```
|
||||
|
||||
Deploy to play store
|
||||
|
||||
### android build_github
|
||||
|
||||
```sh
|
||||
[bundle exec] fastlane android build_github
|
||||
```
|
||||
|
||||
Deploy to github release
|
||||
|
||||
### android build
|
||||
|
||||
```sh
|
||||
[bundle exec] fastlane android build
|
||||
```
|
||||
|
||||
Compile the project
|
||||
|
||||
### android update_version
|
||||
|
||||
```sh
|
||||
[bundle exec] fastlane android update_version
|
||||
```
|
||||
|
||||
|
||||
|
||||
----
|
||||
|
||||
|
||||
## iOS
|
||||
|
||||
### ios beta
|
||||
|
||||
```sh
|
||||
[bundle exec] fastlane ios beta
|
||||
```
|
||||
|
||||
Deploy to testflight
|
||||
|
||||
### ios build
|
||||
|
||||
```sh
|
||||
[bundle exec] fastlane ios build
|
||||
```
|
||||
|
||||
Compile the project
|
||||
|
||||
### ios provision
|
||||
|
||||
```sh
|
||||
[bundle exec] fastlane ios provision
|
||||
```
|
||||
|
||||
Install provisioning profiles using match
|
||||
|
||||
### ios update_version
|
||||
|
||||
```sh
|
||||
[bundle exec] fastlane ios update_version
|
||||
```
|
||||
|
||||
|
||||
|
||||
### ios testflight_prune_dry
|
||||
|
||||
```sh
|
||||
[bundle exec] fastlane ios testflight_prune_dry
|
||||
```
|
||||
|
||||
|
||||
|
||||
### ios testflight_prune
|
||||
|
||||
```sh
|
||||
[bundle exec] fastlane ios testflight_prune
|
||||
```
|
||||
|
||||
|
||||
|
||||
----
|
||||
|
||||
This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run.
|
||||
|
||||
More information about _fastlane_ can be found on [fastlane.tools](https://fastlane.tools).
|
||||
|
||||
The documentation of _fastlane_ can be found on [docs.fastlane.tools](https://docs.fastlane.tools).
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"sdk": {
|
||||
"version": "6.0.100",
|
||||
"rollForward": "latestFeature"
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -10,7 +10,7 @@
|
||||
<EmbedAssembliesIntoApk>true</EmbedAssembliesIntoApk>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="ppy.osu.Framework.Android" Version="2023.120.0" />
|
||||
<PackageReference Include="ppy.osu.Framework.Android" Version="2023.1219.0" />
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<!-- Fody does not handle Android build well, and warns when unchanged.
|
||||
|
||||
@@ -0,0 +1,63 @@
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// See the LICENCE file in the repository root for full licence text.
|
||||
|
||||
using System.IO;
|
||||
using System.Threading.Tasks;
|
||||
using Android.Content;
|
||||
using Android.Net;
|
||||
using Android.Provider;
|
||||
using osu.Game.Database;
|
||||
|
||||
namespace osu.Android
|
||||
{
|
||||
public class AndroidImportTask : ImportTask
|
||||
{
|
||||
private readonly ContentResolver contentResolver;
|
||||
|
||||
private readonly Uri uri;
|
||||
|
||||
private AndroidImportTask(Stream stream, string filename, ContentResolver contentResolver, Uri uri)
|
||||
: base(stream, filename)
|
||||
{
|
||||
this.contentResolver = contentResolver;
|
||||
this.uri = uri;
|
||||
}
|
||||
|
||||
public override void DeleteFile()
|
||||
{
|
||||
contentResolver.Delete(uri, null, null);
|
||||
}
|
||||
|
||||
public static async Task<AndroidImportTask?> Create(ContentResolver contentResolver, Uri uri)
|
||||
{
|
||||
// there are more performant overloads of this method, but this one is the most backwards-compatible
|
||||
// (dates back to API 1).
|
||||
|
||||
var cursor = contentResolver.Query(uri, null, null, null, null);
|
||||
|
||||
if (cursor == null)
|
||||
return null;
|
||||
|
||||
if (!cursor.MoveToFirst())
|
||||
return null;
|
||||
|
||||
int filenameColumn = cursor.GetColumnIndex(IOpenableColumns.DisplayName);
|
||||
string filename = cursor.GetString(filenameColumn) ?? uri.Path ?? string.Empty;
|
||||
|
||||
// SharpCompress requires archive streams to be seekable, which the stream opened by
|
||||
// OpenInputStream() seems to not necessarily be.
|
||||
// copy to an arbitrary-access memory stream to be able to proceed with the import.
|
||||
var copy = new MemoryStream();
|
||||
|
||||
using (var stream = contentResolver.OpenInputStream(uri))
|
||||
{
|
||||
if (stream == null)
|
||||
return null;
|
||||
|
||||
await stream.CopyToAsync(copy).ConfigureAwait(false);
|
||||
}
|
||||
|
||||
return new AndroidImportTask(copy, filename, contentResolver, uri);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="sh.ppy.osulazer" android:installLocation="auto">
|
||||
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="31" />
|
||||
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="33" />
|
||||
<application android:allowBackup="true" android:supportsRtl="true" android:label="osu!" android:icon="@drawable/lazer" />
|
||||
</manifest>
|
||||
<!-- for editor usage -->
|
||||
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
|
||||
<uses-permission android:name="android.permission.READ_MEDIA_AUDIO" />
|
||||
<!--
|
||||
READ_MEDIA_* permissions are available only on API 33 or greater. Devices with older android versions
|
||||
don't understand the new permissions, so request the old READ_EXTERNAL_STORAGE permission to get storage access.
|
||||
Since the old permission has no effect on >= API 33, don't request it.
|
||||
|
||||
Care needs to be taken to ensure runtime permission checks target the correct permission for the API level.
|
||||
-->
|
||||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" android:maxSdkVersion="32"/>
|
||||
</manifest>
|
||||
|
||||
@@ -70,7 +70,7 @@ namespace osu.Android
|
||||
},
|
||||
new SettingsCheckbox
|
||||
{
|
||||
LabelText = MouseSettingsStrings.DisableMouseButtons,
|
||||
LabelText = MouseSettingsStrings.DisableClicksDuringGameplay,
|
||||
Current = osuConfig.GetBindable<bool>(OsuSetting.MouseDisableButtons),
|
||||
},
|
||||
});
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// See the LICENCE file in the repository root for full licence text.
|
||||
|
||||
#nullable disable
|
||||
|
||||
using Android.Content.PM;
|
||||
using osu.Framework.Allocation;
|
||||
using osu.Framework.Bindables;
|
||||
@@ -13,10 +11,10 @@ namespace osu.Android
|
||||
{
|
||||
public partial class GameplayScreenRotationLocker : Component
|
||||
{
|
||||
private Bindable<bool> localUserPlaying;
|
||||
private Bindable<bool> localUserPlaying = null!;
|
||||
|
||||
[Resolved]
|
||||
private OsuGameActivity gameActivity { get; set; }
|
||||
private OsuGameActivity gameActivity { get; set; } = null!;
|
||||
|
||||
[BackgroundDependencyLoader]
|
||||
private void load(OsuGame game)
|
||||
|
||||
@@ -1,11 +1,8 @@
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// See the LICENCE file in the repository root for full licence text.
|
||||
|
||||
#nullable disable
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Reflection;
|
||||
using System.Threading.Tasks;
|
||||
@@ -14,9 +11,9 @@ using Android.Content;
|
||||
using Android.Content.PM;
|
||||
using Android.Graphics;
|
||||
using Android.OS;
|
||||
using Android.Provider;
|
||||
using Android.Views;
|
||||
using osu.Framework.Android;
|
||||
using osu.Framework.Extensions.ObjectExtensions;
|
||||
using osu.Game.Database;
|
||||
using Debug = System.Diagnostics.Debug;
|
||||
using Uri = Android.Net.Uri;
|
||||
@@ -53,11 +50,11 @@ namespace osu.Android
|
||||
/// <remarks>Adjusted on startup to match expected UX for the current device type (phone/tablet).</remarks>
|
||||
public ScreenOrientation DefaultOrientation = ScreenOrientation.Unspecified;
|
||||
|
||||
private OsuGameAndroid game;
|
||||
private OsuGameAndroid game = null!;
|
||||
|
||||
protected override Framework.Game CreateGame() => game = new OsuGameAndroid(this);
|
||||
|
||||
protected override void OnCreate(Bundle savedInstanceState)
|
||||
protected override void OnCreate(Bundle? savedInstanceState)
|
||||
{
|
||||
base.OnCreate(savedInstanceState);
|
||||
|
||||
@@ -94,15 +91,15 @@ namespace osu.Android
|
||||
Assembly.Load("osu.Game.Rulesets.Mania");
|
||||
}
|
||||
|
||||
protected override void OnNewIntent(Intent intent) => handleIntent(intent);
|
||||
protected override void OnNewIntent(Intent? intent) => handleIntent(intent);
|
||||
|
||||
private void handleIntent(Intent intent)
|
||||
private void handleIntent(Intent? intent)
|
||||
{
|
||||
switch (intent.Action)
|
||||
switch (intent?.Action)
|
||||
{
|
||||
case Intent.ActionDefault:
|
||||
if (intent.Scheme == ContentResolver.SchemeContent)
|
||||
handleImportFromUris(intent.Data);
|
||||
handleImportFromUris(intent.Data.AsNonNull());
|
||||
else if (osu_url_schemes.Contains(intent.Scheme))
|
||||
game.HandleLink(intent.DataString);
|
||||
break;
|
||||
@@ -116,7 +113,7 @@ namespace osu.Android
|
||||
{
|
||||
var content = intent.ClipData?.GetItemAt(i);
|
||||
if (content != null)
|
||||
uris.Add(content.Uri);
|
||||
uris.Add(content.Uri.AsNonNull());
|
||||
}
|
||||
|
||||
handleImportFromUris(uris.ToArray());
|
||||
@@ -131,28 +128,14 @@ namespace osu.Android
|
||||
|
||||
await Task.WhenAll(uris.Select(async uri =>
|
||||
{
|
||||
// there are more performant overloads of this method, but this one is the most backwards-compatible
|
||||
// (dates back to API 1).
|
||||
var cursor = ContentResolver?.Query(uri, null, null, null, null);
|
||||
var task = await AndroidImportTask.Create(ContentResolver!, uri).ConfigureAwait(false);
|
||||
|
||||
if (cursor == null)
|
||||
return;
|
||||
|
||||
cursor.MoveToFirst();
|
||||
|
||||
int filenameColumn = cursor.GetColumnIndex(IOpenableColumns.DisplayName);
|
||||
string filename = cursor.GetString(filenameColumn);
|
||||
|
||||
// SharpCompress requires archive streams to be seekable, which the stream opened by
|
||||
// OpenInputStream() seems to not necessarily be.
|
||||
// copy to an arbitrary-access memory stream to be able to proceed with the import.
|
||||
var copy = new MemoryStream();
|
||||
using (var stream = ContentResolver.OpenInputStream(uri))
|
||||
await stream.CopyToAsync(copy).ConfigureAwait(false);
|
||||
|
||||
lock (tasks)
|
||||
if (task != null)
|
||||
{
|
||||
tasks.Add(new ImportTask(copy, filename));
|
||||
lock (tasks)
|
||||
{
|
||||
tasks.Add(task);
|
||||
}
|
||||
}
|
||||
})).ConfigureAwait(false);
|
||||
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// See the LICENCE file in the repository root for full licence text.
|
||||
|
||||
#nullable disable
|
||||
|
||||
using System;
|
||||
using Android.App;
|
||||
using Microsoft.Maui.Devices;
|
||||
using osu.Framework.Allocation;
|
||||
using osu.Framework.Android.Input;
|
||||
using osu.Framework.Extensions.ObjectExtensions;
|
||||
using osu.Framework.Input.Handlers;
|
||||
using osu.Framework.Platform;
|
||||
using osu.Game;
|
||||
using osu.Game.Overlays.Settings;
|
||||
using osu.Game.Overlays.Settings.Sections.Input;
|
||||
using osu.Game.Updater;
|
||||
using osu.Game.Utils;
|
||||
|
||||
@@ -32,7 +32,7 @@ namespace osu.Android
|
||||
{
|
||||
get
|
||||
{
|
||||
var packageInfo = Application.Context.ApplicationContext.PackageManager.GetPackageInfo(Application.Context.ApplicationContext.PackageName, 0);
|
||||
var packageInfo = Application.Context.ApplicationContext!.PackageManager!.GetPackageInfo(Application.Context.ApplicationContext.PackageName!, 0).AsNonNull();
|
||||
|
||||
try
|
||||
{
|
||||
@@ -45,7 +45,7 @@ namespace osu.Android
|
||||
// Basic conversion format (as done in Fastfile): 2020.606.0 -> 202006060
|
||||
|
||||
// https://stackoverflow.com/questions/52977079/android-sdk-28-versioncode-in-packageinfo-has-been-deprecated
|
||||
string versionName = string.Empty;
|
||||
string versionName;
|
||||
|
||||
if (OperatingSystem.IsAndroidVersionAtLeast(28))
|
||||
{
|
||||
@@ -68,7 +68,7 @@ namespace osu.Android
|
||||
{
|
||||
}
|
||||
|
||||
return new Version(packageInfo.VersionName);
|
||||
return new Version(packageInfo.VersionName.AsNonNull());
|
||||
}
|
||||
}
|
||||
|
||||
@@ -98,6 +98,9 @@ namespace osu.Android
|
||||
case AndroidJoystickHandler jh:
|
||||
return new AndroidJoystickSettings(jh);
|
||||
|
||||
case AndroidTouchHandler th:
|
||||
return new TouchSettings(th);
|
||||
|
||||
default:
|
||||
return base.CreateSettingsSubsectionFor(handler);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// See the LICENCE file in the repository root for full licence text.
|
||||
|
||||
#nullable disable
|
||||
|
||||
using Android;
|
||||
using Android.App;
|
||||
|
||||
|
||||
@@ -9,7 +9,6 @@ using osu.Framework.Allocation;
|
||||
using osu.Framework.Bindables;
|
||||
using osu.Framework.Graphics;
|
||||
using osu.Framework.Logging;
|
||||
using osu.Game.Beatmaps;
|
||||
using osu.Game.Configuration;
|
||||
using osu.Game.Extensions;
|
||||
using osu.Game.Online.API;
|
||||
@@ -34,7 +33,7 @@ namespace osu.Desktop
|
||||
[Resolved]
|
||||
private IAPIProvider api { get; set; } = null!;
|
||||
|
||||
private readonly IBindable<UserStatus> status = new Bindable<UserStatus>();
|
||||
private readonly IBindable<UserStatus?> status = new Bindable<UserStatus?>();
|
||||
private readonly IBindable<UserActivity> activity = new Bindable<UserActivity>();
|
||||
|
||||
private readonly Bindable<DiscordRichPresenceMode> privacyMode = new Bindable<DiscordRichPresenceMode>();
|
||||
@@ -54,9 +53,6 @@ namespace osu.Desktop
|
||||
|
||||
client.OnReady += onReady;
|
||||
|
||||
// safety measure for now, until we performance test / improve backoff for failed connections.
|
||||
client.OnConnectionFailed += (_, _) => client.Deinitialize();
|
||||
|
||||
client.OnError += (_, e) => Logger.Log($"An error occurred with Discord RPC Client: {e.Code} {e.Message}", LoggingTarget.Network);
|
||||
|
||||
config.BindWith(OsuSetting.DiscordRichPresence, privacyMode);
|
||||
@@ -90,25 +86,26 @@ namespace osu.Desktop
|
||||
if (!client.IsInitialized)
|
||||
return;
|
||||
|
||||
if (status.Value is UserStatusOffline || privacyMode.Value == DiscordRichPresenceMode.Off)
|
||||
if (status.Value == UserStatus.Offline || privacyMode.Value == DiscordRichPresenceMode.Off)
|
||||
{
|
||||
client.ClearPresence();
|
||||
return;
|
||||
}
|
||||
|
||||
if (status.Value is UserStatusOnline && activity.Value != null)
|
||||
if (status.Value == UserStatus.Online && activity.Value != null)
|
||||
{
|
||||
presence.State = truncate(activity.Value.Status);
|
||||
presence.Details = truncate(getDetails(activity.Value));
|
||||
bool hideIdentifiableInformation = privacyMode.Value == DiscordRichPresenceMode.Limited;
|
||||
presence.State = truncate(activity.Value.GetStatus(hideIdentifiableInformation));
|
||||
presence.Details = truncate(activity.Value.GetDetails(hideIdentifiableInformation) ?? string.Empty);
|
||||
|
||||
if (getBeatmap(activity.Value) is IBeatmapInfo beatmap && beatmap.OnlineID > 0)
|
||||
if (getBeatmapID(activity.Value) is int beatmapId && beatmapId > 0)
|
||||
{
|
||||
presence.Buttons = new[]
|
||||
{
|
||||
new Button
|
||||
{
|
||||
Label = "View beatmap",
|
||||
Url = $@"{api.WebsiteRootUrl}/beatmapsets/{beatmap.BeatmapSet?.OnlineID}#{ruleset.Value.ShortName}/{beatmap.OnlineID}"
|
||||
Url = $@"{api.WebsiteRootUrl}/beatmaps/{beatmapId}?mode={ruleset.Value.ShortName}"
|
||||
}
|
||||
};
|
||||
}
|
||||
@@ -162,37 +159,20 @@ namespace osu.Desktop
|
||||
});
|
||||
}
|
||||
|
||||
private IBeatmapInfo? getBeatmap(UserActivity activity)
|
||||
private int? getBeatmapID(UserActivity activity)
|
||||
{
|
||||
switch (activity)
|
||||
{
|
||||
case UserActivity.InGame game:
|
||||
return game.BeatmapInfo;
|
||||
return game.BeatmapID;
|
||||
|
||||
case UserActivity.Editing edit:
|
||||
return edit.BeatmapInfo;
|
||||
case UserActivity.EditingBeatmap edit:
|
||||
return edit.BeatmapID;
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
private string getDetails(UserActivity activity)
|
||||
{
|
||||
switch (activity)
|
||||
{
|
||||
case UserActivity.InGame game:
|
||||
return game.BeatmapInfo.ToString() ?? string.Empty;
|
||||
|
||||
case UserActivity.Editing edit:
|
||||
return edit.BeatmapInfo.ToString() ?? string.Empty;
|
||||
|
||||
case UserActivity.InLobby lobby:
|
||||
return privacyMode.Value == DiscordRichPresenceMode.Limited ? string.Empty : lobby.Room.Name.Value;
|
||||
}
|
||||
|
||||
return string.Empty;
|
||||
}
|
||||
|
||||
protected override void Dispose(bool isDisposing)
|
||||
{
|
||||
client.Dispose();
|
||||
|
||||
@@ -75,7 +75,7 @@ namespace osu.Desktop.LegacyIpc
|
||||
case LegacyIpcDifficultyCalculationRequest req:
|
||||
try
|
||||
{
|
||||
WorkingBeatmap beatmap = new FlatFileWorkingBeatmap(req.BeatmapFile);
|
||||
WorkingBeatmap beatmap = new FlatWorkingBeatmap(req.BeatmapFile);
|
||||
var ruleset = beatmap.BeatmapInfo.Ruleset.CreateInstance();
|
||||
Mod[] mods = ruleset.ConvertFromLegacyMods((LegacyMods)req.Mods).ToArray();
|
||||
|
||||
|
||||
@@ -2,13 +2,10 @@
|
||||
// See the LICENCE file in the repository root for full licence text.
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Diagnostics;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Reflection;
|
||||
using System.Runtime.Versioning;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.Win32;
|
||||
using osu.Desktop.Security;
|
||||
using osu.Framework.Platform;
|
||||
@@ -18,9 +15,9 @@ using osu.Framework;
|
||||
using osu.Framework.Logging;
|
||||
using osu.Game.Updater;
|
||||
using osu.Desktop.Windows;
|
||||
using osu.Framework.Threading;
|
||||
using osu.Game.IO;
|
||||
using osu.Game.IPC;
|
||||
using osu.Game.Online.Multiplayer;
|
||||
using osu.Game.Utils;
|
||||
using SDL2;
|
||||
|
||||
@@ -29,6 +26,7 @@ namespace osu.Desktop
|
||||
internal partial class OsuGameDesktop : OsuGame
|
||||
{
|
||||
private OsuSchemeLinkIPCChannel? osuSchemeLinkIPCChannel;
|
||||
private ArchiveImportIPCChannel? archiveImportIPCChannel;
|
||||
|
||||
public OsuGameDesktop(string[]? args = null)
|
||||
: base(args)
|
||||
@@ -111,6 +109,25 @@ namespace osu.Desktop
|
||||
}
|
||||
}
|
||||
|
||||
public override bool RestartAppWhenExited()
|
||||
{
|
||||
switch (RuntimeInfo.OS)
|
||||
{
|
||||
case RuntimeInfo.Platform.Windows:
|
||||
Debug.Assert(OperatingSystem.IsWindows());
|
||||
|
||||
// Of note, this is an async method in squirrel that adds an arbitrary delay before returning
|
||||
// likely to ensure the external process is in a good state.
|
||||
//
|
||||
// We're not waiting on that here, but the outro playing before the actual exit should be enough
|
||||
// to cover this.
|
||||
Squirrel.UpdateManager.RestartAppWhenExited().FireAndForget();
|
||||
return true;
|
||||
}
|
||||
|
||||
return base.RestartAppWhenExited();
|
||||
}
|
||||
|
||||
protected override void LoadComplete()
|
||||
{
|
||||
base.LoadComplete();
|
||||
@@ -123,64 +140,28 @@ namespace osu.Desktop
|
||||
LoadComponentAsync(new ElevatedPrivilegesChecker(), Add);
|
||||
|
||||
osuSchemeLinkIPCChannel = new OsuSchemeLinkIPCChannel(Host, this);
|
||||
archiveImportIPCChannel = new ArchiveImportIPCChannel(Host, this);
|
||||
}
|
||||
|
||||
public override void SetHost(GameHost host)
|
||||
{
|
||||
base.SetHost(host);
|
||||
|
||||
var desktopWindow = (SDL2DesktopWindow)host.Window;
|
||||
|
||||
var iconStream = Assembly.GetExecutingAssembly().GetManifestResourceStream(GetType(), "lazer.ico");
|
||||
if (iconStream != null)
|
||||
desktopWindow.SetIconFromStream(iconStream);
|
||||
host.Window.SetIconFromStream(iconStream);
|
||||
|
||||
desktopWindow.CursorState |= CursorState.Hidden;
|
||||
desktopWindow.Title = Name;
|
||||
desktopWindow.DragDrop += f => fileDrop(new[] { f });
|
||||
host.Window.CursorState |= CursorState.Hidden;
|
||||
host.Window.Title = Name;
|
||||
}
|
||||
|
||||
protected override BatteryInfo CreateBatteryInfo() => new SDL2BatteryInfo();
|
||||
|
||||
private readonly List<string> importableFiles = new List<string>();
|
||||
private ScheduledDelegate? importSchedule;
|
||||
|
||||
private void fileDrop(string[] filePaths)
|
||||
{
|
||||
lock (importableFiles)
|
||||
{
|
||||
string firstExtension = Path.GetExtension(filePaths.First());
|
||||
|
||||
if (filePaths.Any(f => Path.GetExtension(f) != firstExtension)) return;
|
||||
|
||||
importableFiles.AddRange(filePaths);
|
||||
|
||||
Logger.Log($"Adding {filePaths.Length} files for import");
|
||||
|
||||
// File drag drop operations can potentially trigger hundreds or thousands of these calls on some platforms.
|
||||
// In order to avoid spawning multiple import tasks for a single drop operation, debounce a touch.
|
||||
importSchedule?.Cancel();
|
||||
importSchedule = Scheduler.AddDelayed(handlePendingImports, 100);
|
||||
}
|
||||
}
|
||||
|
||||
private void handlePendingImports()
|
||||
{
|
||||
lock (importableFiles)
|
||||
{
|
||||
Logger.Log($"Handling batch import of {importableFiles.Count} files");
|
||||
|
||||
string[] paths = importableFiles.ToArray();
|
||||
importableFiles.Clear();
|
||||
|
||||
Task.Factory.StartNew(() => Import(paths), TaskCreationOptions.LongRunning);
|
||||
}
|
||||
}
|
||||
|
||||
protected override void Dispose(bool isDisposing)
|
||||
{
|
||||
base.Dispose(isDisposing);
|
||||
osuSchemeLinkIPCChannel?.Dispose();
|
||||
archiveImportIPCChannel?.Dispose();
|
||||
}
|
||||
|
||||
private class SDL2BatteryInfo : BatteryInfo
|
||||
|
||||
@@ -85,7 +85,7 @@ namespace osu.Desktop
|
||||
}
|
||||
}
|
||||
|
||||
using (DesktopGameHost host = Host.GetSuitableDesktopHost(gameName, new HostOptions { BindIPC = true }))
|
||||
using (DesktopGameHost host = Host.GetSuitableDesktopHost(gameName, new HostOptions { BindIPC = !tournamentClient }))
|
||||
{
|
||||
if (!host.IsPrimaryInstance)
|
||||
{
|
||||
|
||||
@@ -9,8 +9,9 @@ using osu.Framework.Logging;
|
||||
using osu.Game;
|
||||
using osu.Game.Overlays;
|
||||
using osu.Game.Overlays.Notifications;
|
||||
using Squirrel;
|
||||
using osu.Game.Screens.Play;
|
||||
using Squirrel.SimpleSplat;
|
||||
using Squirrel.Sources;
|
||||
using LogLevel = Squirrel.SimpleSplat.LogLevel;
|
||||
using UpdateManager = osu.Game.Updater.UpdateManager;
|
||||
|
||||
@@ -36,6 +37,9 @@ namespace osu.Desktop.Updater
|
||||
[Resolved]
|
||||
private OsuGameBase game { get; set; } = null!;
|
||||
|
||||
[Resolved]
|
||||
private ILocalUserPlayInfo? localUserInfo { get; set; }
|
||||
|
||||
[BackgroundDependencyLoader]
|
||||
private void load(INotificationOverlay notifications)
|
||||
{
|
||||
@@ -55,7 +59,11 @@ namespace osu.Desktop.Updater
|
||||
|
||||
try
|
||||
{
|
||||
updateManager ??= new GithubUpdateManager(@"https://github.com/ppy/osu", false, github_token, @"osulazer");
|
||||
// Avoid any kind of update checking while gameplay is running.
|
||||
if (localUserInfo?.IsPlaying.Value == true)
|
||||
return false;
|
||||
|
||||
updateManager ??= new Squirrel.UpdateManager(new GithubSource(@"https://github.com/ppy/osu", github_token, false), @"osulazer");
|
||||
|
||||
var info = await updateManager.CheckForUpdate(!useDeltaPatching).ConfigureAwait(false);
|
||||
|
||||
|
||||
@@ -1,21 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<asmv1:assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
|
||||
<assemblyIdentity version="1.0.0.0" name="osu!" />
|
||||
<SquirrelAwareVersion xmlns="urn:schema-squirrel-com:asm.v1">1</SquirrelAwareVersion>
|
||||
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
|
||||
<security>
|
||||
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
||||
</requestedPrivileges>
|
||||
<applicationRequestMinimum>
|
||||
<defaultAssemblyRequest permissionSetReference="Custom" />
|
||||
<PermissionSet class="System.Security.PermissionSet" version="1" Unrestricted="true" ID="Custom" SameSite="site" />
|
||||
</applicationRequestMinimum>
|
||||
</security>
|
||||
</trustInfo>
|
||||
<asmv3:application>
|
||||
<asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
|
||||
<dpiAware>true</dpiAware>
|
||||
</asmv3:windowsSettings>
|
||||
</asmv3:application>
|
||||
</asmv1:assembly>
|
||||
@@ -8,7 +8,6 @@
|
||||
<Title>osu!</Title>
|
||||
<Product>osu!(lazer)</Product>
|
||||
<ApplicationIcon>lazer.ico</ApplicationIcon>
|
||||
<ApplicationManifest>app.manifest</ApplicationManifest>
|
||||
<Version>0.0.0</Version>
|
||||
<FileVersion>0.0.0</FileVersion>
|
||||
</PropertyGroup>
|
||||
@@ -24,10 +23,10 @@
|
||||
<ProjectReference Include="..\osu.Game.Rulesets.Taiko\osu.Game.Rulesets.Taiko.csproj" />
|
||||
</ItemGroup>
|
||||
<ItemGroup Label="Package References">
|
||||
<PackageReference Include="Clowd.Squirrel" Version="2.9.42" />
|
||||
<PackageReference Include="Clowd.Squirrel" Version="2.10.2" />
|
||||
<PackageReference Include="Mono.Posix.NETStandard" Version="1.0.0" />
|
||||
<PackageReference Include="System.IO.Packaging" Version="6.0.0" />
|
||||
<PackageReference Include="DiscordRichPresence" Version="1.1.1.14" />
|
||||
<PackageReference Include="System.IO.Packaging" Version="7.0.0" />
|
||||
<PackageReference Include="DiscordRichPresence" Version="1.2.1.24" />
|
||||
</ItemGroup>
|
||||
<ItemGroup Label="Resources">
|
||||
<EmbeddedResource Include="lazer.ico" />
|
||||
|
||||
@@ -0,0 +1,123 @@
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// See the LICENCE file in the repository root for full licence text.
|
||||
|
||||
using BenchmarkDotNet.Attributes;
|
||||
using osu.Game.Beatmaps;
|
||||
using osu.Game.Rulesets;
|
||||
using osu.Game.Screens.Select;
|
||||
using osu.Game.Screens.Select.Carousel;
|
||||
|
||||
namespace osu.Game.Benchmarks
|
||||
{
|
||||
public class BenchmarkCarouselFilter : BenchmarkTest
|
||||
{
|
||||
private BeatmapInfo getExampleBeatmap() => new BeatmapInfo
|
||||
{
|
||||
Ruleset = new RulesetInfo
|
||||
{
|
||||
ShortName = "osu",
|
||||
OnlineID = 0
|
||||
},
|
||||
StarRating = 4.0d,
|
||||
Difficulty = new BeatmapDifficulty
|
||||
{
|
||||
ApproachRate = 5.0f,
|
||||
DrainRate = 3.0f,
|
||||
CircleSize = 2.0f,
|
||||
},
|
||||
Metadata = new BeatmapMetadata
|
||||
{
|
||||
Artist = "The Artist",
|
||||
ArtistUnicode = "check unicode too",
|
||||
Title = "Title goes here",
|
||||
TitleUnicode = "Title goes here",
|
||||
Author = { Username = "The Author" },
|
||||
Source = "unit tests",
|
||||
Tags = "look for tags too",
|
||||
},
|
||||
DifficultyName = "version as well",
|
||||
Length = 2500,
|
||||
BPM = 160,
|
||||
BeatDivisor = 12,
|
||||
Status = BeatmapOnlineStatus.Loved
|
||||
};
|
||||
|
||||
private CarouselBeatmap carouselBeatmap = null!;
|
||||
private FilterCriteria criteria1 = null!;
|
||||
private FilterCriteria criteria2 = null!;
|
||||
private FilterCriteria criteria3 = null!;
|
||||
private FilterCriteria criteria4 = null!;
|
||||
private FilterCriteria criteria5 = null!;
|
||||
private FilterCriteria criteria6 = null!;
|
||||
|
||||
public override void SetUp()
|
||||
{
|
||||
var beatmap = getExampleBeatmap();
|
||||
beatmap.OnlineID = 20201010;
|
||||
beatmap.BeatmapSet = new BeatmapSetInfo { OnlineID = 1535 };
|
||||
carouselBeatmap = new CarouselBeatmap(beatmap);
|
||||
criteria1 = new FilterCriteria();
|
||||
criteria2 = new FilterCriteria
|
||||
{
|
||||
Ruleset = new RulesetInfo { ShortName = "catch" }
|
||||
};
|
||||
criteria3 = new FilterCriteria
|
||||
{
|
||||
Ruleset = new RulesetInfo { OnlineID = 6 },
|
||||
AllowConvertedBeatmaps = true,
|
||||
BPM = new FilterCriteria.OptionalRange<double>
|
||||
{
|
||||
IsUpperInclusive = false,
|
||||
Max = 160d
|
||||
}
|
||||
};
|
||||
criteria4 = new FilterCriteria
|
||||
{
|
||||
Ruleset = new RulesetInfo { OnlineID = 6 },
|
||||
AllowConvertedBeatmaps = true,
|
||||
SearchText = "an artist"
|
||||
};
|
||||
criteria5 = new FilterCriteria
|
||||
{
|
||||
Creator = new FilterCriteria.OptionalTextFilter { SearchTerm = "the author AND then something else" }
|
||||
};
|
||||
criteria6 = new FilterCriteria { SearchText = "20201010" };
|
||||
}
|
||||
|
||||
[Benchmark]
|
||||
public void CarouselBeatmapFilter()
|
||||
{
|
||||
carouselBeatmap.Filter(criteria1);
|
||||
}
|
||||
|
||||
[Benchmark]
|
||||
public void CriteriaMatchingSpecificRuleset()
|
||||
{
|
||||
carouselBeatmap.Filter(criteria2);
|
||||
}
|
||||
|
||||
[Benchmark]
|
||||
public void CriteriaMatchingRangeMax()
|
||||
{
|
||||
carouselBeatmap.Filter(criteria3);
|
||||
}
|
||||
|
||||
[Benchmark]
|
||||
public void CriteriaMatchingTerms()
|
||||
{
|
||||
carouselBeatmap.Filter(criteria4);
|
||||
}
|
||||
|
||||
[Benchmark]
|
||||
public void CriteriaMatchingCreator()
|
||||
{
|
||||
carouselBeatmap.Filter(criteria5);
|
||||
}
|
||||
|
||||
[Benchmark]
|
||||
public void CriteriaMatchingBeatmapIDs()
|
||||
{
|
||||
carouselBeatmap.Filter(criteria6);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -7,9 +7,9 @@
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="BenchmarkDotNet" Version="0.13.2" />
|
||||
<PackageReference Include="BenchmarkDotNet" Version="0.13.9" />
|
||||
<PackageReference Include="nunit" Version="3.13.3" />
|
||||
<PackageReference Include="NUnit3TestAdapter" Version="4.3.0" />
|
||||
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- using a different name because package name cannot contain 'catch' -->
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="osu.Game.Rulesets.Catch_Tests.Android" android:installLocation="auto">
|
||||
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="31" />
|
||||
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="33" />
|
||||
<application android:allowBackup="true" android:supportsRtl="true" android:label="osu!catch Test" />
|
||||
</manifest>
|
||||
@@ -1,8 +1,6 @@
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// See the LICENCE file in the repository root for full licence text.
|
||||
|
||||
#nullable disable
|
||||
|
||||
using Android.App;
|
||||
using osu.Framework.Android;
|
||||
using osu.Game.Tests;
|
||||
|
||||
@@ -1,17 +0,0 @@
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// See the LICENCE file in the repository root for full licence text.
|
||||
|
||||
#nullable disable
|
||||
|
||||
using Foundation;
|
||||
using osu.Framework.iOS;
|
||||
using osu.Game.Tests;
|
||||
|
||||
namespace osu.Game.Rulesets.Catch.Tests.iOS
|
||||
{
|
||||
[Register("AppDelegate")]
|
||||
public class AppDelegate : GameAppDelegate
|
||||
{
|
||||
protected override Framework.Game CreateGame() => new OsuTestBrowser();
|
||||
}
|
||||
}
|
||||
@@ -1,9 +1,8 @@
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// See the LICENCE file in the repository root for full licence text.
|
||||
|
||||
#nullable disable
|
||||
|
||||
using UIKit;
|
||||
using osu.Framework.iOS;
|
||||
using osu.Game.Tests;
|
||||
|
||||
namespace osu.Game.Rulesets.Catch.Tests.iOS
|
||||
{
|
||||
@@ -11,7 +10,7 @@ namespace osu.Game.Rulesets.Catch.Tests.iOS
|
||||
{
|
||||
public static void Main(string[] args)
|
||||
{
|
||||
UIApplication.Main(args, null, typeof(AppDelegate));
|
||||
GameApplication.Main(new OsuTestBrowser());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<key>CFBundleName</key>
|
||||
<string>osu.Game.Rulesets.Catch.Tests.iOS</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>ppy.osu-Game-Rulesets-Catch-Tests-iOS</string>
|
||||
<string>sh.ppy.catch-ruleset-tests</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
<key>CFBundleVersion</key>
|
||||
@@ -42,4 +42,4 @@
|
||||
<key>CADisableMinimumFrameDurationOnPhone</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</plist>
|
||||
</plist>
|
||||
@@ -1,8 +1,6 @@
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// See the LICENCE file in the repository root for full licence text.
|
||||
|
||||
#nullable disable
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
@@ -18,7 +16,7 @@ namespace osu.Game.Rulesets.Catch.Tests
|
||||
[TestFixture]
|
||||
public class CatchBeatmapConversionTest : BeatmapConversionTest<ConvertValue>
|
||||
{
|
||||
protected override string ResourceAssembly => "osu.Game.Rulesets.Catch";
|
||||
protected override string ResourceAssembly => "osu.Game.Rulesets.Catch.Tests";
|
||||
|
||||
[TestCase("basic")]
|
||||
[TestCase("spinner")]
|
||||
@@ -29,6 +27,32 @@ namespace osu.Game.Rulesets.Catch.Tests
|
||||
[TestCase("hardrock-spinner", new[] { typeof(CatchModHardRock) })]
|
||||
[TestCase("right-bound-hr-offset", new[] { typeof(CatchModHardRock) })]
|
||||
[TestCase("basic-hyperdash")]
|
||||
[TestCase("pixel-jump")]
|
||||
[TestCase("tiny-ticks")]
|
||||
[TestCase("v8-tick-distance")]
|
||||
[TestCase("spinner-precision")]
|
||||
[TestCase("37902", new[] { typeof(CatchModDoubleTime), typeof(CatchModHardRock), typeof(CatchModHidden) })]
|
||||
[TestCase("39206", new[] { typeof(CatchModDoubleTime), typeof(CatchModHidden) })]
|
||||
[TestCase("42587")]
|
||||
[TestCase("50859", new[] { typeof(CatchModDoubleTime), typeof(CatchModHidden) })]
|
||||
[TestCase("75858", new[] { typeof(CatchModHardRock), typeof(CatchModHidden) })]
|
||||
[TestCase("103019", new[] { typeof(CatchModHidden) })]
|
||||
[TestCase("104973", new[] { typeof(CatchModHardRock), typeof(CatchModHidden) })]
|
||||
[TestCase("871815", new[] { typeof(CatchModDoubleTime), typeof(CatchModHidden) })]
|
||||
[TestCase("1284935", new[] { typeof(CatchModDoubleTime), typeof(CatchModHardRock) })]
|
||||
[TestCase("1431386", new[] { typeof(CatchModDoubleTime), typeof(CatchModHardRock), typeof(CatchModHidden) })]
|
||||
[TestCase("1597806", new[] { typeof(CatchModDoubleTime), typeof(CatchModHidden) })]
|
||||
[TestCase("2190499", new[] { typeof(CatchModDoubleTime), typeof(CatchModHidden) })]
|
||||
[TestCase("2571731", new[] { typeof(CatchModHardRock), typeof(CatchModHidden) })]
|
||||
[TestCase("2768615", new[] { typeof(CatchModDoubleTime), typeof(CatchModHardRock) })]
|
||||
[TestCase("2781126", new[] { typeof(CatchModHidden) })]
|
||||
[TestCase("3152510", new[] { typeof(CatchModDoubleTime) })]
|
||||
[TestCase("3227428", new[] { typeof(CatchModHardRock), typeof(CatchModHidden) })]
|
||||
[TestCase("3524302", new[] { typeof(CatchModDoubleTime), typeof(CatchModEasy) })]
|
||||
[TestCase("3644427", new[] { typeof(CatchModEasy), typeof(CatchModFlashlight) })]
|
||||
[TestCase("3689906", new[] { typeof(CatchModDoubleTime), typeof(CatchModEasy) })]
|
||||
[TestCase("3949367", new[] { typeof(CatchModDoubleTime), typeof(CatchModEasy) })]
|
||||
[TestCase("112643")]
|
||||
public new void Test(string name, params Type[] mods) => base.Test(name, mods);
|
||||
|
||||
protected override IEnumerable<ConvertValue> CreateConvertValue(HitObject hitObject)
|
||||
@@ -62,7 +86,7 @@ namespace osu.Game.Rulesets.Catch.Tests
|
||||
/// <summary>
|
||||
/// A sane value to account for osu!stable using ints everwhere.
|
||||
/// </summary>
|
||||
private const float conversion_lenience = 2;
|
||||
private const float conversion_lenience = 3;
|
||||
|
||||
[JsonIgnore]
|
||||
public readonly CatchHitObject HitObject;
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// See the LICENCE file in the repository root for full licence text.
|
||||
|
||||
#nullable disable
|
||||
|
||||
using NUnit.Framework;
|
||||
using osu.Game.Beatmaps;
|
||||
using osu.Game.Rulesets.Catch.Difficulty;
|
||||
@@ -14,7 +12,7 @@ namespace osu.Game.Rulesets.Catch.Tests
|
||||
{
|
||||
public class CatchDifficultyCalculatorTest : DifficultyCalculatorTest
|
||||
{
|
||||
protected override string ResourceAssembly => "osu.Game.Rulesets.Catch";
|
||||
protected override string ResourceAssembly => "osu.Game.Rulesets.Catch.Tests";
|
||||
|
||||
[TestCase(4.0505463516206195d, 127, "diffcalc-test")]
|
||||
public void Test(double expectedStarRating, int expectedMaxCombo, string name)
|
||||
|
||||
@@ -1,12 +1,11 @@
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// See the LICENCE file in the repository root for full licence text.
|
||||
|
||||
#nullable disable
|
||||
|
||||
using System;
|
||||
using NUnit.Framework;
|
||||
using osu.Game.Beatmaps.Legacy;
|
||||
using osu.Game.Rulesets.Catch.Mods;
|
||||
using osu.Game.Rulesets.Mods;
|
||||
using osu.Game.Tests.Beatmaps;
|
||||
|
||||
namespace osu.Game.Rulesets.Catch.Tests
|
||||
@@ -26,7 +25,8 @@ namespace osu.Game.Rulesets.Catch.Tests
|
||||
new object[] { LegacyMods.HalfTime, new[] { typeof(CatchModHalfTime) } },
|
||||
new object[] { LegacyMods.Flashlight, new[] { typeof(CatchModFlashlight) } },
|
||||
new object[] { LegacyMods.Autoplay, new[] { typeof(CatchModAutoplay) } },
|
||||
new object[] { LegacyMods.HardRock | LegacyMods.DoubleTime, new[] { typeof(CatchModHardRock), typeof(CatchModDoubleTime) } }
|
||||
new object[] { LegacyMods.HardRock | LegacyMods.DoubleTime, new[] { typeof(CatchModHardRock), typeof(CatchModDoubleTime) } },
|
||||
new object[] { LegacyMods.ScoreV2, new[] { typeof(ModScoreV2) } },
|
||||
};
|
||||
|
||||
[TestCaseSource(nameof(catch_mod_mapping))]
|
||||
|
||||
@@ -0,0 +1,52 @@
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// See the LICENCE file in the repository root for full licence text.
|
||||
|
||||
using System.Collections.Generic;
|
||||
using NUnit.Framework;
|
||||
using osu.Game.Beatmaps;
|
||||
|
||||
namespace osu.Game.Rulesets.Catch.Tests
|
||||
{
|
||||
[TestFixture]
|
||||
public class CatchRateAdjustedDisplayDifficultyTest
|
||||
{
|
||||
private static IEnumerable<float> difficultyValuesToTest()
|
||||
{
|
||||
for (float i = 0; i <= 10; i += 0.5f)
|
||||
yield return i;
|
||||
}
|
||||
|
||||
[TestCaseSource(nameof(difficultyValuesToTest))]
|
||||
public void TestApproachRateIsUnchangedWithRateEqualToOne(float originalApproachRate)
|
||||
{
|
||||
var ruleset = new CatchRuleset();
|
||||
var difficulty = new BeatmapDifficulty { ApproachRate = originalApproachRate };
|
||||
|
||||
var adjustedDifficulty = ruleset.GetRateAdjustedDisplayDifficulty(difficulty, 1);
|
||||
|
||||
Assert.That(adjustedDifficulty.ApproachRate, Is.EqualTo(originalApproachRate));
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void TestRateBelowOne()
|
||||
{
|
||||
var ruleset = new CatchRuleset();
|
||||
var difficulty = new BeatmapDifficulty();
|
||||
|
||||
var adjustedDifficulty = ruleset.GetRateAdjustedDisplayDifficulty(difficulty, 0.75);
|
||||
|
||||
Assert.That(adjustedDifficulty.ApproachRate, Is.EqualTo(1.67).Within(0.01));
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void TestRateAboveOne()
|
||||
{
|
||||
var ruleset = new CatchRuleset();
|
||||
var difficulty = new BeatmapDifficulty();
|
||||
|
||||
var adjustedDifficulty = ruleset.GetRateAdjustedDisplayDifficulty(difficulty, 1.5);
|
||||
|
||||
Assert.That(adjustedDifficulty.ApproachRate, Is.EqualTo(7.67).Within(0.01));
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,8 +1,6 @@
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// See the LICENCE file in the repository root for full licence text.
|
||||
|
||||
#nullable disable
|
||||
|
||||
using NUnit.Framework;
|
||||
using osu.Framework.IO.Stores;
|
||||
using osu.Game.Rulesets.Catch.Skinning;
|
||||
@@ -30,9 +28,9 @@ namespace osu.Game.Rulesets.Catch.Tests
|
||||
|
||||
private class TestLegacySkin : LegacySkin
|
||||
{
|
||||
public TestLegacySkin(SkinInfo skin, IResourceStore<byte[]> storage)
|
||||
public TestLegacySkin(SkinInfo skin, IResourceStore<byte[]> fallbackStore)
|
||||
// Bypass LegacySkinResourceStore to avoid returning null for retrieving files due to bad skin info (SkinInfo.Files = null).
|
||||
: base(skin, null, storage)
|
||||
: base(skin, null, fallbackStore)
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// See the LICENCE file in the repository root for full licence text.
|
||||
|
||||
#nullable disable
|
||||
|
||||
using osu.Game.Tests.Visual;
|
||||
|
||||
namespace osu.Game.Rulesets.Catch.Tests
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// See the LICENCE file in the repository root for full licence text.
|
||||
|
||||
#nullable disable
|
||||
|
||||
using osu.Framework.Allocation;
|
||||
using osu.Framework.Graphics;
|
||||
using osu.Framework.Graphics.Containers;
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// See the LICENCE file in the repository root for full licence text.
|
||||
|
||||
#nullable disable
|
||||
|
||||
using osu.Framework.Allocation;
|
||||
using osu.Framework.Graphics;
|
||||
using osu.Framework.Graphics.Containers;
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// See the LICENCE file in the repository root for full licence text.
|
||||
|
||||
#nullable disable
|
||||
|
||||
using System.Linq;
|
||||
using NUnit.Framework;
|
||||
using osu.Framework.Testing;
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// See the LICENCE file in the repository root for full licence text.
|
||||
|
||||
#nullable disable
|
||||
|
||||
using osu.Framework.Allocation;
|
||||
using osu.Framework.Graphics;
|
||||
using osu.Framework.Graphics.Containers;
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// See the LICENCE file in the repository root for full licence text.
|
||||
|
||||
#nullable disable
|
||||
|
||||
using NUnit.Framework;
|
||||
using osu.Game.Tests.Visual;
|
||||
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// See the LICENCE file in the repository root for full licence text.
|
||||
|
||||
#nullable disable
|
||||
|
||||
using System.Linq;
|
||||
using NUnit.Framework;
|
||||
using osu.Framework.Utils;
|
||||
|
||||
@@ -45,7 +45,7 @@ namespace osu.Game.Rulesets.Catch.Tests.Editor
|
||||
AddAssert("end time is correct", () => Precision.AlmostEquals(lastObject.EndTime, times[1]));
|
||||
AddAssert("start position is correct", () => Precision.AlmostEquals(lastObject.OriginalX, positions[0]));
|
||||
AddAssert("end position is correct", () => Precision.AlmostEquals(lastObject.EndX, positions[1]));
|
||||
AddAssert("default slider velocity", () => lastObject.DifficultyControlPoint.SliderVelocityBindable.IsDefault);
|
||||
AddAssert("default slider velocity", () => lastObject.SliderVelocityMultiplierBindable.IsDefault);
|
||||
}
|
||||
|
||||
[Test]
|
||||
@@ -76,7 +76,7 @@ namespace osu.Game.Rulesets.Catch.Tests.Editor
|
||||
addPlacementSteps(times, positions);
|
||||
addPathCheckStep(times, positions);
|
||||
|
||||
AddAssert("slider velocity changed", () => !lastObject.DifficultyControlPoint.SliderVelocityBindable.IsDefault);
|
||||
AddAssert("slider velocity changed", () => !lastObject.SliderVelocityMultiplierBindable.IsDefault);
|
||||
}
|
||||
|
||||
[Test]
|
||||
|
||||
@@ -108,11 +108,11 @@ namespace osu.Game.Rulesets.Catch.Tests.Editor
|
||||
double[] times = { 100, 300 };
|
||||
float[] positions = { 200, 300 };
|
||||
addBlueprintStep(times, positions);
|
||||
AddAssert("default slider velocity", () => hitObject.DifficultyControlPoint.SliderVelocityBindable.IsDefault);
|
||||
AddAssert("default slider velocity", () => hitObject.SliderVelocityMultiplierBindable.IsDefault);
|
||||
|
||||
addDragStartStep(times[1], positions[1]);
|
||||
AddMouseMoveStep(times[1], 400);
|
||||
AddAssert("slider velocity changed", () => !hitObject.DifficultyControlPoint.SliderVelocityBindable.IsDefault);
|
||||
AddAssert("slider velocity changed", () => !hitObject.SliderVelocityMultiplierBindable.IsDefault);
|
||||
}
|
||||
|
||||
[Test]
|
||||
@@ -140,7 +140,7 @@ namespace osu.Game.Rulesets.Catch.Tests.Editor
|
||||
|
||||
AddStep("update hit object path", () =>
|
||||
{
|
||||
hitObject.Path = new SliderPath(PathType.PerfectCurve, new[]
|
||||
hitObject.Path = new SliderPath(PathType.PERFECT_CURVE, new[]
|
||||
{
|
||||
Vector2.Zero,
|
||||
new Vector2(100, 100),
|
||||
@@ -190,16 +190,16 @@ namespace osu.Game.Rulesets.Catch.Tests.Editor
|
||||
[Test]
|
||||
public void TestVertexResampling()
|
||||
{
|
||||
addBlueprintStep(100, 100, new SliderPath(PathType.PerfectCurve, new[]
|
||||
addBlueprintStep(100, 100, new SliderPath(PathType.PERFECT_CURVE, new[]
|
||||
{
|
||||
Vector2.Zero,
|
||||
new Vector2(100, 100),
|
||||
new Vector2(50, 200),
|
||||
}), 0.5);
|
||||
AddAssert("1 vertex per 1 nested HO", () => getVertices().Count == hitObject.NestedHitObjects.Count);
|
||||
AddAssert("slider path not yet changed", () => hitObject.Path.ControlPoints[0].Type == PathType.PerfectCurve);
|
||||
AddAssert("slider path not yet changed", () => hitObject.Path.ControlPoints[0].Type == PathType.PERFECT_CURVE);
|
||||
addAddVertexSteps(150, 150);
|
||||
AddAssert("slider path change to linear", () => hitObject.Path.ControlPoints[0].Type == PathType.Linear);
|
||||
AddAssert("slider path change to linear", () => hitObject.Path.ControlPoints[0].Type == PathType.LINEAR);
|
||||
}
|
||||
|
||||
private void addBlueprintStep(double time, float x, SliderPath sliderPath, double velocity) => AddStep("add selection blueprint", () =>
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// See the LICENCE file in the repository root for full licence text.
|
||||
|
||||
#nullable disable
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
@@ -156,7 +154,7 @@ namespace osu.Game.Rulesets.Catch.Tests
|
||||
} while (rng.Next(2) != 0);
|
||||
|
||||
int length = sliderPath.ControlPoints.Count - start + 1;
|
||||
sliderPath.ControlPoints[start].Type = length <= 2 ? PathType.Linear : length == 3 ? PathType.PerfectCurve : PathType.Bezier;
|
||||
sliderPath.ControlPoints[start].Type = length <= 2 ? PathType.LINEAR : length == 3 ? PathType.PERFECT_CURVE : PathType.BEZIER;
|
||||
} while (rng.Next(3) != 0);
|
||||
|
||||
if (rng.Next(5) == 0)
|
||||
@@ -217,7 +215,7 @@ namespace osu.Game.Rulesets.Catch.Tests
|
||||
|
||||
foreach (var point in sliderPath.ControlPoints)
|
||||
{
|
||||
Assert.That(point.Type, Is.EqualTo(PathType.Linear).Or.Null);
|
||||
Assert.That(point.Type, Is.EqualTo(PathType.LINEAR).Or.Null);
|
||||
Assert.That(sliderStartY + point.Position.Y, Is.InRange(0, JuiceStreamPath.OSU_PLAYFIELD_HEIGHT));
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// See the LICENCE file in the repository root for full licence text.
|
||||
|
||||
using NUnit.Framework;
|
||||
using osu.Game.Rulesets.Catch.Mods;
|
||||
using osu.Game.Tests.Visual;
|
||||
|
||||
namespace osu.Game.Rulesets.Catch.Tests.Mods
|
||||
{
|
||||
public partial class TestSceneCatchModFloatingFruits : ModTestScene
|
||||
{
|
||||
protected override Ruleset CreatePlayerRuleset() => new CatchRuleset();
|
||||
|
||||
[Test]
|
||||
public void TestFloating() => CreateModTest(new ModTestData
|
||||
{
|
||||
Mod = new CatchModFloatingFruits(),
|
||||
PassCondition = () => true
|
||||
});
|
||||
}
|
||||
}
|
||||
@@ -11,7 +11,7 @@ using osuTK;
|
||||
|
||||
namespace osu.Game.Rulesets.Catch.Tests.Mods
|
||||
{
|
||||
public partial class TestSceneCatchModPerfect : ModPerfectTestScene
|
||||
public partial class TestSceneCatchModPerfect : ModFailConditionTestScene
|
||||
{
|
||||
protected override Ruleset CreatePlayerRuleset() => new CatchRuleset();
|
||||
|
||||
@@ -35,7 +35,7 @@ namespace osu.Game.Rulesets.Catch.Tests.Mods
|
||||
var stream = new JuiceStream
|
||||
{
|
||||
StartTime = 1000,
|
||||
Path = new SliderPath(PathType.Linear, new[]
|
||||
Path = new SliderPath(PathType.LINEAR, new[]
|
||||
{
|
||||
Vector2.Zero,
|
||||
new Vector2(100, 0),
|
||||
|
||||
@@ -51,7 +51,7 @@ namespace osu.Game.Rulesets.Catch.Tests.Mods
|
||||
{
|
||||
X = CatchPlayfield.CENTER_X,
|
||||
StartTime = 3000,
|
||||
Path = new SliderPath(PathType.Linear, new[] { Vector2.Zero, Vector2.UnitY * 200 })
|
||||
Path = new SliderPath(PathType.LINEAR, new[] { Vector2.Zero, Vector2.UnitY * 200 })
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+1
File diff suppressed because one or more lines are too long
@@ -0,0 +1,329 @@
|
||||
osu file format v9
|
||||
|
||||
[General]
|
||||
StackLeniency: 0.3
|
||||
Mode: 0
|
||||
|
||||
[Difficulty]
|
||||
HPDrainRate:5
|
||||
CircleSize:4
|
||||
OverallDifficulty:5
|
||||
ApproachRate:7
|
||||
SliderMultiplier:1.4
|
||||
SliderTickRate:2
|
||||
|
||||
[Events]
|
||||
//Background and Video events
|
||||
//Break Periods
|
||||
//Storyboard Layer 0 (Background)
|
||||
//Storyboard Layer 1 (Fail)
|
||||
//Storyboard Layer 2 (Pass)
|
||||
//Storyboard Layer 3 (Foreground)
|
||||
//Storyboard Sound Samples
|
||||
//Background Colour Transformations
|
||||
3,100,163,162,255
|
||||
|
||||
[TimingPoints]
|
||||
571.114342485549,342.857142857143,4,1,0,60,1,0
|
||||
11542,-100,4,1,0,90,0,0
|
||||
59542,-100,4,2,0,90,0,0
|
||||
60913,-100,4,1,0,90,0,0
|
||||
65028,-100,4,1,0,90,0,0
|
||||
66399,-100,4,1,0,90,0,1
|
||||
77371,-100,4,1,0,90,0,0
|
||||
86971,-200,4,1,0,90,0,0
|
||||
87999,-50,4,1,0,90,0,0
|
||||
88342,-100,4,1,0,90,0,0
|
||||
110285,-100,4,1,0,90,0,1
|
||||
119885,-100,4,1,0,100,0,0
|
||||
121574,-50,4,2,0,90,0,0
|
||||
121917,-50,4,2,0,80,0,0
|
||||
122260,-50,4,2,0,70,0,0
|
||||
122603,-50,4,2,0,60,0,0
|
||||
122946,-50,4,2,0,50,0,0
|
||||
123288,-50,4,2,0,40,0,0
|
||||
123631,-50,4,2,0,30,0,0
|
||||
123974,-50,4,2,0,5,0,0
|
||||
|
||||
[HitObjects]
|
||||
184,192,571,6,0,B|168:104|256:45|344:104|328:192,1,280
|
||||
256,312,1599,2,0,B|256:160,3,140
|
||||
256,32,2971,5,0
|
||||
128,88,3313,1,0
|
||||
128,232,3656,2,0,B|128:328,2,70
|
||||
384,232,4342,2,0,B|384:328,2,70
|
||||
384,160,4856,1,0
|
||||
384,88,5028,1,0
|
||||
256,32,5371,37,2
|
||||
256,352,5713,1,2
|
||||
128,296,6056,22,0,B|72:272|72:272|72:192,1,140
|
||||
384,296,6742,2,0,B|440:272|440:272|440:192,1,140
|
||||
256,72,7428,2,0,B|224:136|296:136|256:208,2,140
|
||||
256,296,8456,1,2
|
||||
256,192,8799,12,0,11199
|
||||
256,192,11542,5,4
|
||||
60,192,11885,2,0,B|28:240|60:304|132:280,2,140,8|0|8
|
||||
256,192,12913,5,0
|
||||
452,192,13256,2,0,B|484:144|452:80|380:104,2,140,8|0|8
|
||||
256,192,14285,1,0
|
||||
88,64,14799,6,0,B|56:40,10,35
|
||||
32,192,15999,1,8
|
||||
96,220,16171,1,0
|
||||
160,248,16342,1,0
|
||||
224,120,16685,1,8
|
||||
328,24,17028,6,0,B|352:100,1,70
|
||||
412,56,17371,2,0,B|436:136,1,70,8|0
|
||||
448,192,17713,2,0,B|520:224,1,70
|
||||
472,280,18056,2,0,B|408:252,1,70,8|0
|
||||
388,320,18399,2,0,B|360:388,1,70
|
||||
300,348,18742,2,0,B|328:280,1,70,8|0
|
||||
344,216,19085,1,0
|
||||
156,192,19428,1,0
|
||||
256,76,19771,5,4
|
||||
256,76,20456,1,4
|
||||
124,324,21142,1,2
|
||||
256,372,21485,1,2
|
||||
388,324,21828,1,2
|
||||
504,32,22513,6,0,B|424:32,1,70,4|0
|
||||
448,104,22856,1,8
|
||||
376,104,23028,1,0
|
||||
360,32,23199,2,0,B|280:32,1,70
|
||||
304,104,23542,1,8
|
||||
232,104,23713,1,0
|
||||
216,32,23885,2,0,B|144:32,1,70
|
||||
160,104,24228,1,8
|
||||
88,104,24399,1,0
|
||||
72,32,24571,2,8,B|0:32,2,70,2|8|10
|
||||
8,352,25256,6,0,B|88:352,1,70
|
||||
64,280,25599,1,8
|
||||
136,280,25771,1,0
|
||||
152,352,25942,2,0,B|232:352,1,70
|
||||
208,280,26285,1,8
|
||||
280,280,26456,1,0
|
||||
296,352,26628,2,0,B|368:352,1,70
|
||||
352,280,26971,1,8
|
||||
424,280,27142,1,0
|
||||
440,352,27313,2,0,B|512:352,2,70,2|0|10
|
||||
40,228,27999,6,0,B|40:148,1,70,6|0
|
||||
112,196,28342,2,0,B|112:232,2,35,8|0|0
|
||||
184,156,28685,2,0,B|184:236,1,70,2|0
|
||||
260,188,29028,2,0,B|260:152,2,35,8|0|0
|
||||
336,188,29371,2,0,B|376:248,1,70,2|0
|
||||
440,216,29713,2,0,B|392:148,1,70,8|0
|
||||
460,124,30056,2,0,B|484:160,4,35,10|0|8|0|10
|
||||
328,72,30742,6,0,B|288:72,3,35
|
||||
256,72,31085,2,0,B|208:72,3,35,8|0|0|0
|
||||
184,72,31428,2,0,B|128:72,3,35,0|0|0|0
|
||||
112,72,31771,2,0,B|72:72,3,35,8|0|0|0
|
||||
40,72,32113,5,8
|
||||
40,216,32456,1,0
|
||||
184,216,32799,1,8
|
||||
184,360,33142,1,0
|
||||
304,288,33485,6,0,B|400:184,1,140,0|8
|
||||
256,32,34342,1,0
|
||||
256,32,34513,1,8
|
||||
136,112,34856,2,0,B|136:256,1,140,0|10
|
||||
104,320,35371,2,0,B|144:344|224:304|208:240,1,140,0|2
|
||||
212,192,35885,1,8
|
||||
408,336,36228,6,0,B|488:304|480:224,1,140,0|8
|
||||
360,56,37085,1,0
|
||||
360,56,37256,1,8
|
||||
232,120,37599,2,0,B|184:64|96:72,1,140,0|10
|
||||
56,120,38113,2,0,B|16:72|40:16|80:0|104:8,1,140,0|2
|
||||
156,4,38628,1,8
|
||||
256,100,38971,6,0,B|160:204,1,140,0|8
|
||||
256,352,39828,1,0
|
||||
256,352,39999,1,8
|
||||
376,272,40342,2,0,B|376:128,1,140,0|10
|
||||
408,64,40856,2,0,B|368:40|288:80|304:144,1,140,0|2
|
||||
300,192,41371,1,8
|
||||
104,48,41713,6,0,B|24:80|32:160,1,140,0|8
|
||||
152,328,42571,1,0
|
||||
152,328,42742,1,8
|
||||
256,232,43085,6,0,B|256:184,8,35,0|0|0|0|8|0|0|0|8
|
||||
256,92,44113,1,2
|
||||
124,140,44456,5,4
|
||||
72,92,44628,2,0,B|16:144|80:260|184:192,1,210
|
||||
256,92,45485,1,8
|
||||
388,140,45828,5,0
|
||||
440,92,45999,2,0,B|496:144|432:260|328:192,1,210
|
||||
256,92,46856,1,8
|
||||
256,232,47199,2,0,B|216:296|296:296|252:368,3,140,0|8|0|8
|
||||
392,320,48571,6,0,B|392:176,1,140,0|8
|
||||
464,184,49085,2,0,B|448:96|376:88|320:128|324:184,1,210,0|8
|
||||
187,170,49942,6,0,B|188:128|140:88|60:96|48:180,1,210,4|8
|
||||
120,180,50628,2,0,B|120:320,1,140,0|8
|
||||
257,363,51313,2,0,B|216:296|296:296|256:232,3,140,0|8|0|8
|
||||
256,92,52685,5,0
|
||||
169,196,53028,2,0,B|80:248|16:140|80:84,1,210,8|0
|
||||
124,140,53713,1,8
|
||||
68,268,54056,6,0,B|56:304,2,35
|
||||
156,296,54399,1,8
|
||||
444,268,54742,6,0,B|456:304,2,35
|
||||
356,296,55085,1,8
|
||||
356,96,55428,6,0,B|296:96|256:9|256:9|216:96|152:96,1,280
|
||||
160,20,56285,1,0
|
||||
92,56,56456,1,8
|
||||
84,132,56628,1,0
|
||||
156,96,56799,6,0,B|156:155|242:195|242:195|156:236|155:300,1,280
|
||||
92,252,57656,1,0
|
||||
88,328,57828,1,8
|
||||
148,376,57999,1,0
|
||||
155,299,58171,6,0,B|215:299|255:386|255:386|295:299|359:299,1,280
|
||||
356,376,59028,1,0
|
||||
424,336,59199,1,8
|
||||
428,260,59371,1,0
|
||||
356,298,59542,6,0,B|356:239|270:199|270:199|356:158|357:94,1,280
|
||||
424,140,60399,1,0
|
||||
428,64,60571,1,8
|
||||
360,24,60742,1,0
|
||||
284,24,60913,6,0,B|212:24,1,70
|
||||
136,24,61256,1,8
|
||||
60,24,61428,1,0
|
||||
60,36,61513,1,0
|
||||
60,48,61599,2,0,B|60:124,1,70
|
||||
60,196,61942,1,8
|
||||
136,196,62113,1,0
|
||||
136,184,62199,1,0
|
||||
136,172,62285,6,0,B|136:96,1,70
|
||||
212,104,62628,1,8
|
||||
212,180,62799,1,0
|
||||
212,192,62885,1,0
|
||||
212,204,62971,2,0,B|212:292,1,70,8|0
|
||||
136,272,63313,2,0,B|60:272,1,70,8|0
|
||||
256,192,63656,12,0,65028
|
||||
256,324,65713,6,0,B|256:360,2,35,0|0|0
|
||||
288,256,66056,1,0
|
||||
328,316,66228,1,8
|
||||
400,288,66399,6,0,B|448:264|448:204,1,70,6|0
|
||||
380,192,66742,1,8
|
||||
444,148,66913,2,0,B|420:100|360:100,1,70,2|0
|
||||
316,124,67256,2,0,B|292:96|292:96|300:64,1,70,0|10
|
||||
224,48,67599,2,0,B|196:72|196:72|164:64,1,70,0|2
|
||||
104,112,67942,2,0,B|128:140|128:140|120:172,1,70,0|10
|
||||
80,240,68285,2,0,B|108:264|108:264|140:256,1,70,0|2
|
||||
200,208,68628,2,0,B|216:128,2,70,0|10|0
|
||||
212,284,69142,5,2
|
||||
256,356,69313,1,0
|
||||
256,356,69485,1,0
|
||||
292,280,69656,1,2
|
||||
292,280,69828,1,0
|
||||
368,308,69999,1,0
|
||||
376,304,70085,1,0
|
||||
384,300,70171,1,10
|
||||
392,296,70256,1,0
|
||||
400,292,70342,1,0
|
||||
408,288,70428,1,0
|
||||
416,284,70513,2,8,B|472:240|444:156,3,140,10|10|10|10
|
||||
312,44,71885,5,2
|
||||
312,44,72056,1,0
|
||||
224,32,72228,1,8
|
||||
216,40,72313,1,0
|
||||
208,48,72399,1,2
|
||||
200,56,72485,1,0
|
||||
192,64,72571,1,0
|
||||
124,28,72742,1,0
|
||||
48,36,72913,2,0,B|60:84|100:104,1,70,10|0
|
||||
44,160,73256,6,0,B|44:228,1,70,2|0
|
||||
116,200,73599,2,0,B|116:272,1,70,10|0
|
||||
188,240,73942,2,0,B|188:312,2,70,2|0|10
|
||||
188,164,74456,1,0
|
||||
260,196,74628,6,0,B|324:256,1,70,2|0
|
||||
361,195,74971,2,0,B|311:243,1,70,8|2
|
||||
260,292,75313,2,0,B|324:232,1,70
|
||||
360,294,75656,2,0,B|311:244,1,70,10|0
|
||||
256,192,75999,12,0,77028
|
||||
48,192,77371,6,0,B|48:48,1,140
|
||||
152,192,78056,2,0,B|152:336,1,140
|
||||
152,192,78742,2,0,B|152:48,1,140
|
||||
256,192,79427,2,0,B|256:336,1,140
|
||||
256,192,80113,6,0,B|256:32,2,140
|
||||
256,304,81142,2,0,B|416:304,2,140
|
||||
468,304,82171,1,0
|
||||
468,304,82513,1,0
|
||||
352,112,82856,6,0,B|408:69,3,70
|
||||
448,128,83542,1,0
|
||||
324,192,83885,1,0
|
||||
160,112,84228,6,0,B|103:69,3,70
|
||||
64,128,84913,1,0
|
||||
188,192,85256,1,0
|
||||
352,272,85599,6,0,B|408:314,3,70
|
||||
356,364,86285,1,0
|
||||
356,364,86456,1,0
|
||||
356,364,86628,1,0
|
||||
160,272,86971,6,0,B|128:300,4,35
|
||||
256,64,87999,1,12
|
||||
104,80,88342,6,0,B|20:200|96:376|336:380|344:128,1,560,4|0
|
||||
408,100,89885,1,0
|
||||
416,168,90056,1,0
|
||||
400,236,90228,1,0
|
||||
360,296,90399,6,0,B|300:412|104:424|24:300|16:224,1,420
|
||||
60,196,91599,1,0
|
||||
24,136,91771,2,0,B|140:60,1,140
|
||||
256,192,92285,12,0,93828
|
||||
64,168,94513,6,0,B|24:272|168:376|244:280,1,280
|
||||
300,300,95371,1,0
|
||||
340,244,95542,1,0
|
||||
404,272,95713,1,0
|
||||
448,216,95885,6,0,B|488:112|344:8|268:104,1,280
|
||||
256,228,96913,1,0
|
||||
464,336,97256,6,0,B|388:296|388:364|320:324,1,140
|
||||
252,328,97771,1,0
|
||||
176,328,97942,2,0,B|104:328,7,70,0|0|0|0|0|0|8|0
|
||||
28,328,99313,6,0,B|-16:184|72:68|216:64|260:160,1,420,4|8
|
||||
484,328,100685,2,0,B|528:184|440:68|296:64|244:168,1,420,0|8
|
||||
160,264,102056,6,0,B|160:336|256:385|352:336|352:264,2,280,0|8|0
|
||||
48,152,103771,1,8
|
||||
256,72,104113,1,0
|
||||
464,152,104456,1,8
|
||||
352,264,104799,5,0
|
||||
272,264,104971,2,0,B|208:264,2,35,0|0|8
|
||||
240,184,105313,2,0,B|304:184,2,35
|
||||
272,104,105656,2,0,B|208:104,2,35,0|0|8
|
||||
240,28,105999,2,0,B|304:28,2,35
|
||||
168,64,106342,6,0,B|80:104,1,70,0|8
|
||||
56,192,106685,2,0,B|128:192,1,70
|
||||
104,291,107028,2,0,B|168:320,1,70,0|8
|
||||
256,192,107371,1,0
|
||||
344,64,107542,6,0,B|432:104,1,70,8|0
|
||||
456,192,107885,2,0,B|384:192,1,70,8|0
|
||||
408,291,108228,2,0,B|344:320,1,70,8|0
|
||||
256,192,108571,2,0,B|256:160,6,23.3333333333333,0|0|0|0|0|0|4
|
||||
256,192,108999,12,8,109942
|
||||
168,120,110285,6,0,B|232:56,1,70
|
||||
344,120,110628,2,0,B|280:56,1,70,8|0
|
||||
207,192,110971,2,0,B|271:128,1,70
|
||||
305,192,111313,2,0,B|241:128,1,70,8|0
|
||||
216,304,111656,2,0,B|256:247|256:247|296:304,3,140,0|8|0|8
|
||||
352,112,113028,5,0
|
||||
360,192,113199,2,0,B|368:256,2,35,0|0|8
|
||||
424,144,113542,1,0
|
||||
352,112,113713,1,0
|
||||
408,64,113885,2,0,B|456:48,2,35,0|0|8
|
||||
336,40,114228,1,0
|
||||
352,112,114399,1,0
|
||||
280,88,114571,2,0,B|248:72,2,35,0|0|8
|
||||
352,112,114913,1,0
|
||||
296,160,115085,1,8
|
||||
368,184,115256,1,8
|
||||
424,136,115428,1,8
|
||||
128,72,115771,6,0,B|88:56|88:88|56:72,1,70
|
||||
64,152,116113,2,0,B|104:168|104:136|136:152,1,70,8|0
|
||||
136,232,116456,2,0,B|96:216|96:248|64:232,1,70
|
||||
72,312,116798,2,0,B|112:328|112:296|144:312,1,70,8|0
|
||||
216,312,117142,5,0
|
||||
216,192,117313,1,0
|
||||
216,72,117485,1,8
|
||||
296,296,117828,5,0
|
||||
296,176,117999,1,0
|
||||
296,56,118171,1,8
|
||||
448,64,118513,6,0,B|392:104,1,70
|
||||
392,184,118856,1,8
|
||||
392,192,118942,1,0
|
||||
392,200,119028,1,0
|
||||
392,288,119199,2,0,B|392:328,2,35
|
||||
464,240,119542,1,8
|
||||
464,248,119628,1,0
|
||||
464,256,119713,1,0
|
||||
464,336,119885,6,2,B|256:360|256:360|48:336,1,420
|
||||
256,192,121256,12,0,123999
|
||||
+1
File diff suppressed because one or more lines are too long
@@ -0,0 +1,491 @@
|
||||
osu file format v9
|
||||
|
||||
[General]
|
||||
StackLeniency: 0.7
|
||||
Mode: 0
|
||||
|
||||
[Difficulty]
|
||||
HPDrainRate:6
|
||||
CircleSize:4
|
||||
OverallDifficulty:6
|
||||
ApproachRate:6
|
||||
SliderMultiplier:2
|
||||
SliderTickRate:2
|
||||
|
||||
[Events]
|
||||
//Background and Video events
|
||||
//Break Periods
|
||||
2,100846,120263
|
||||
//Storyboard Layer 0 (Background)
|
||||
//Storyboard Layer 1 (Fail)
|
||||
//Storyboard Layer 2 (Pass)
|
||||
//Storyboard Layer 3 (Foreground)
|
||||
//Storyboard Sound Samples
|
||||
//Background Colour Transformations
|
||||
3,100,163,162,255
|
||||
|
||||
[TimingPoints]
|
||||
1980,666.666666666667,4,2,2,20,1,0
|
||||
12647,-100,4,2,2,42,0,0
|
||||
39646,-100,4,2,1,22,0,0
|
||||
39813,-100,4,2,2,42,0,0
|
||||
40313,-100,4,2,1,22,0,0
|
||||
40480,-100,4,2,2,42,0,0
|
||||
57980,-100,4,2,2,47,0,1
|
||||
75313,-100,4,2,1,22,0,1
|
||||
75646,-100,4,2,2,47,0,1
|
||||
79646,-100,4,2,1,22,0,1
|
||||
79813,-100,4,2,2,47,0,1
|
||||
80313,-100,4,2,1,22,0,1
|
||||
80480,-100,4,2,2,47,0,1
|
||||
80980,-100,4,2,1,22,0,1
|
||||
81146,-100,4,2,2,47,0,1
|
||||
81646,-100,4,2,1,22,0,1
|
||||
81813,-100,4,2,2,47,0,1
|
||||
100646,-100,4,2,2,42,0,0
|
||||
148980,-100,4,2,1,22,0,0
|
||||
149146,-100,4,2,2,42,0,0
|
||||
149646,-100,4,2,1,22,0,0
|
||||
149813,-100,4,2,2,42,0,0
|
||||
167313,-100,4,2,2,47,0,1
|
||||
178313,-100,4,2,1,22,0,1
|
||||
178480,-100,4,2,2,47,0,1
|
||||
178980,-100,4,2,1,22,0,1
|
||||
179146,-100,4,2,2,47,0,1
|
||||
179646,-100,4,2,1,22,0,1
|
||||
179813,-100,4,2,2,47,0,1
|
||||
180313,-100,4,2,1,22,0,1
|
||||
180480,-100,4,2,2,47,0,1
|
||||
187980,-100,4,2,2,42,0,0
|
||||
212646,-100,4,2,2,47,0,1
|
||||
260646,-100,4,2,2,42,0,0
|
||||
|
||||
[HitObjects]
|
||||
152,72,11980,1,0
|
||||
248,144,12313,1,0
|
||||
132,176,12647,2,0,B|44:112,2,100,0|0|8
|
||||
132,176,13646,1,0
|
||||
240,232,13980,2,0,B|164:296,2,100,0|0|12
|
||||
240,232,14980,1,0
|
||||
304,128,15313,6,0,B|416:184,1,100,0|0
|
||||
496,240,15980,2,0,B|466:289|384:312,1,100,8|0
|
||||
296,304,16647,2,0,B|192:296|128:192,2,200,2|12|0
|
||||
296,184,18312,5,0
|
||||
296,184,18646,1,8
|
||||
416,184,18980,2,0,B|376:64,1,100,0|0
|
||||
268,116,19646,1,0
|
||||
268,116,19980,1,12
|
||||
168,184,20313,2,0,B|80:248,2,100,0|0|2
|
||||
232,80,21313,2,0,B|128:56,2,100,8|0|2
|
||||
453,174,22647,5,12
|
||||
408,284,22980,1,0
|
||||
336,188,23313,1,2
|
||||
448,236,23647,1,0
|
||||
336,188,23980,2,0,B|336:300,2,100,8|0|2
|
||||
256,60,24980,1,0
|
||||
112,104,25313,5,12
|
||||
228,136,25647,1,0
|
||||
132,208,25979,1,2
|
||||
176,96,26313,1,0
|
||||
132,208,26646,2,0,B|252:200,2,100,8|0|2
|
||||
256,292,27647,1,0
|
||||
404,280,27980,6,0,B|460:256|476:176,1,100,12|0
|
||||
348,184,28646,1,2
|
||||
348,184,28980,1,0
|
||||
336,64,29313,2,0,B|280:72|248:152,1,100,8|0
|
||||
304,236,29979,1,2
|
||||
304,236,30313,1,0
|
||||
304,236,30646,1,12
|
||||
24,120,31313,5,2
|
||||
60,264,31646,1,0
|
||||
96,120,31979,1,8
|
||||
132,264,32313,1,0
|
||||
264,192,32647,1,2
|
||||
488,108,33313,5,12
|
||||
488,108,33647,2,0,B|432:236,1,100,0|0
|
||||
380,300,34313,2,0,B|356:348,2,50,0|0|8
|
||||
312,200,34980,2,0,B|248:208|208:168,1,100,0|2
|
||||
116,112,35646,2,0,B|60:112,2,50,0|0|12
|
||||
232,80,36313,2,0,B|292:76|340:112,1,100,0|0
|
||||
356,156,36813,2,0,B|420:156,2,50,2|0|0
|
||||
296,156,37313,1,8
|
||||
176,156,37646,2,0,B|120:156,2,50,0|2|0
|
||||
176,156,38313,1,2
|
||||
60,128,38647,5,12
|
||||
168,88,38980,1,0
|
||||
60,128,39313,2,0,B|76:216|140:264,1,150,2|0
|
||||
148,312,39980,2,0,B|224:316|296:252,1,150,8|0
|
||||
285,261,40647,1,2
|
||||
392,204,40980,2,0,B|448:192,2,50,2|2|12
|
||||
292,140,41647,2,0,B|244:108|164:100,1,100
|
||||
176,160,42147,2,0,B|176:256,1,50,2|0
|
||||
140,258,42480,2,0,B|76:258,1,50,0|8
|
||||
210,258,42980,2,0,B|266:258,2,50,0|2|0
|
||||
257,147,43647,1,2
|
||||
256,28,43980,5,4
|
||||
256,28,44313,1,0
|
||||
344,108,44647,2,0,B|464:156,1,100,2|0
|
||||
340,216,45313,2,0,B|244:320,1,100,8|0
|
||||
236,176,45980,2,0,B|196:80,1,100,2|0
|
||||
92,144,46647,2,0,B|64:192|96:244,1,100,12|0
|
||||
204,192,47313,1,2
|
||||
324,192,47647,2,0,B|380:192,2,50,0|0|8
|
||||
212,144,48313,2,0,B|180:192|220:248,1,100,0|2
|
||||
324,192,48980,1,0
|
||||
324,192,49313,1,12
|
||||
256,292,49647,6,0,B|256:340,2,50,0|0|2
|
||||
324,192,50313,1,0
|
||||
324,192,50647,1,8
|
||||
256,92,50980,2,0,B|256:28,2,50,0|0|2
|
||||
200,200,51647,2,0,B|304:200,1,100,0|12
|
||||
136,24,52647,5,6
|
||||
256,112,52980,2,0,B|368:184,2,100,0|2|0
|
||||
376,24,53980,1,6
|
||||
256,112,54313,2,0,B|144:184,2,100,0|2|0
|
||||
256,264,55313,1,6
|
||||
256,112,55647,2,0,B|256:0,2,100,0|2|0
|
||||
256,112,56647,1,6
|
||||
488,48,57313,5,12
|
||||
488,48,57647,2,0,B|485:103|448:160,1,100,0|2
|
||||
360,72,58313,2,0,B|320:104|312:176,1,100,8|8
|
||||
428,200,58980,1,0
|
||||
344,288,59313,1,2
|
||||
224,288,59647,2,0,B|208:352,2,50,2|2|12
|
||||
256,172,60313,1,0
|
||||
256,172,60647,1,2
|
||||
136,192,60980,2,0,B|64:204,2,50,2|2|8
|
||||
256,172,61647,5,0
|
||||
352,244,61980,1,2
|
||||
420,144,62313,1,8
|
||||
324,72,62647,1,12
|
||||
204,72,62980,2,0,B|132:80,2,50,2|2|0
|
||||
324,72,63647,2,0,B|372:120|324:200,1,100,0|8
|
||||
252,244,64313,1,0
|
||||
148,184,64647,1,2
|
||||
36,224,64980,2,0,B|68:344,2,100,0|12|8
|
||||
24,104,65980,6,0,B|81:72|168:144|232:88,1,200,2|8
|
||||
340,84,66980,2,0,B|404:92|444:164,1,100,0|2
|
||||
436,252,67647,2,0,B|404:292|404:292,2,50,0|0|12
|
||||
436,252,68313,1,0
|
||||
332,192,68646,6,0,B|248:120,1,100,0|8
|
||||
272,248,69313,2,0,B|176:312,1,100,8|0
|
||||
208,184,69980,2,0,B|112:112,1,100,0|8
|
||||
128,244,70647,2,0,B|40:300,1,100,12|0
|
||||
20,180,71313,5,0
|
||||
72,72,71647,2,0,B|40:24,2,50,2|2|8
|
||||
192,80,72313,1,0
|
||||
300,132,72647,1,2
|
||||
300,252,72980,1,8
|
||||
192,304,73313,1,12
|
||||
72,320,73647,2,0,B|16:368,2,50,2|2|0
|
||||
112,208,74313,5,2
|
||||
112,208,74647,2,0,B|232:96|264:216|384:72,1,300,8|2
|
||||
492,104,75980,2,0,B|428:144|477:263|428:304,1,200,12|0
|
||||
320,268,76980,2,0,B|360:156,1,100,0|8
|
||||
256,76,77646,2,0,B|256:180,1,100,0|2
|
||||
192,268,78313,2,0,B|152:156,1,100,8|12
|
||||
216,68,78980,5,0
|
||||
320,128,79313,2,0,B|392:160|424:252,1,150,2|0
|
||||
408,276,79980,2,0,B|325:276|256:356,1,150,8|0
|
||||
236,336,80647,2,0,B|180:272|92:272,1,150,2|0
|
||||
88,236,81313,2,0,B|120:152|208:116,1,150,8|0
|
||||
224,112,81980,1,2
|
||||
344,116,82313,6,0,B|408:116,2,50,2|2|8
|
||||
252,192,82980,1,8
|
||||
344,268,83313,1,2
|
||||
436,192,83647,1,2
|
||||
344,116,83980,1,12
|
||||
228,80,84313,6,0,B|228:24,2,50,2|2|0
|
||||
120,132,84980,1,8
|
||||
120,252,85313,1,8
|
||||
120,132,85647,1,0
|
||||
120,252,85980,1,2
|
||||
224,192,86313,1,0
|
||||
104,192,86647,1,12
|
||||
104,192,86980,1,0
|
||||
104,192,87313,6,0,B|312:192,2,200,2|8|2
|
||||
12,112,88980,1,0
|
||||
104,192,89313,1,12
|
||||
124,72,89647,1,2
|
||||
244,56,89980,6,0,B|355:55|444:144,1,200,2|8
|
||||
416,248,90980,1,2
|
||||
312,308,91313,2,0,B|216:308|112:228,1,200,2|12
|
||||
88,124,92313,2,0,B|102:102|160:116|192:92,1,100,2|2
|
||||
292,144,92980,2,0,B|300:216,2,50,0|0|8
|
||||
280,24,93647,1,0
|
||||
392,68,93980,1,2
|
||||
408,188,94313,1,8
|
||||
320,272,94647,1,12
|
||||
200,284,94980,6,0,B|208:212,2,50,2|2|0
|
||||
80,260,95647,1,2
|
||||
20,156,95980,2,0,B|108:76|212:140,1,200,8|0
|
||||
304,204,96980,1,8
|
||||
416,252,97313,2,0,B|392:300|336:316,2,100,12|0|6
|
||||
256,192,98146,12,4,100646
|
||||
104,104,121313,6,0,B|216:104,1,100,12|0
|
||||
176,220,121980,2,0,B|368:132,1,200,2|8
|
||||
240,120,122980,2,0,B|320:80,2,50,2|2|0
|
||||
136,180,123647,2,0,B|264:228,1,100,0|12
|
||||
348,240,124313,2,0,B|252:288,1,100,0|2
|
||||
192,184,124980,1,2
|
||||
308,160,125313,1,8
|
||||
192,132,125647,1,0
|
||||
256,32,125980,6,0,B|256:240,1,200,2|12
|
||||
356,296,126980,1,0
|
||||
240,328,127313,2,0,B|128:360|56:264,1,200,2|8
|
||||
24,156,128313,2,0,B|76:148|80:176|128:164,1,100,2|0
|
||||
240,192,128980,2,0,B|232:248,2,50,2|2|12
|
||||
208,76,129647,2,0,B|268:72|312:112,1,100,2|0
|
||||
388,188,130313,1,0
|
||||
388,188,130647,1,8
|
||||
336,296,130980,1,0
|
||||
336,296,131313,1,2
|
||||
128,176,131980,5,12
|
||||
128,176,132313,1,2
|
||||
128,176,132647,2,0,B|171:149|240:168,1,100,2|0
|
||||
264,176,133147,1,0
|
||||
272,216,133313,2,0,B|239:264|176:256,1,100,8|0
|
||||
68,232,133980,1,2
|
||||
68,232,134313,1,0
|
||||
88,112,134647,6,0,B|115:65|176:48,1,100,12|2
|
||||
204,40,135147,1,0
|
||||
244,40,135313,2,0,B|316:48|356:120,1,100,2|0
|
||||
400,184,135980,2,0,B|408:248|336:292,1,100,8|0
|
||||
252,316,136647,1,2
|
||||
252,316,136980,1,0
|
||||
240,196,137313,6,0,B|288:180|312:116,1,100,12|2
|
||||
300,88,137813,1,0
|
||||
276,56,137980,2,0,B|180:16,1,100,2|0
|
||||
144,152,138647,2,0,B|24:200,1,100,8|0
|
||||
176,252,139313,2,0,B|96:348,1,100,2|0
|
||||
252,336,139980,2,0,B|332:240,1,100,12|0
|
||||
436,252,140647,2,0,B|382:158|258:151,1,200,2|8
|
||||
152,152,141647,2,0,B|104:152,2,50,2|2|0
|
||||
388,116,142647,6,0,B|496:32,2,100,12|0|2
|
||||
272,152,143647,2,0,B|252:248,1,100,2|8
|
||||
251,249,144313,1,2
|
||||
130,250,144647,2,0,B|98:298,2,50,2|2|0
|
||||
200,152,145313,1,12
|
||||
200,152,145647,1,2
|
||||
304,92,145980,6,0,B|360:68,1,50,0|2
|
||||
400,180,146480,2,0,B|384:236,1,50,0|8
|
||||
272,192,146980,1,0
|
||||
152,192,147313,2,0,B|96:192,4,50,2|0|2|0|12
|
||||
240,272,148313,5,0
|
||||
360,296,148647,2,0,B|448:240|456:176,1,150,2|0
|
||||
396,168,149313,2,0,B|428:120|428:8,1,150,8|0
|
||||
427,23,149980,1,2
|
||||
316,68,150313,2,0,B|364:36,2,50,2|2|12
|
||||
436,76,150980,2,0,B|324:148,1,100
|
||||
296,152,151480,6,0,B|224:172,1,50,2|2
|
||||
292,208,151813,2,0,B|288:256,1,50,0|8
|
||||
248,212,152147,2,0,B|176:236,1,50,2|2
|
||||
244,268,152480,2,0,B|236:336,1,50,0|0
|
||||
256,76,153313,5,12
|
||||
256,76,153647,1,0
|
||||
256,76,153980,2,0,B|48:196,1,200,2|8
|
||||
256,76,154980,1,0
|
||||
140,44,155313,2,0,B|252:228,1,200,2|12
|
||||
140,44,156313,1,0
|
||||
84,152,156647,6,0,B|148:264,1,100,2|2
|
||||
164,264,157147,1,0
|
||||
204,272,157313,1,8
|
||||
324,268,157647,2,0,B|428:236,1,100,2|2
|
||||
336,152,158313,2,0,B|248:64,1,100,0|12
|
||||
164,148,158980,5,0
|
||||
164,148,159313,1,2
|
||||
48,120,159646,2,0,B|24:48,2,50,2|0|8
|
||||
112,224,160313,1,0
|
||||
224,272,160647,1,2
|
||||
344,248,160980,1,0
|
||||
416,152,161313,1,12
|
||||
256,336,161980,5,6
|
||||
360,272,162313,2,0,B|464:272,2,100,0|8|0
|
||||
256,216,163313,1,6
|
||||
152,152,163646,2,0,B|48:152,2,100,0|8|0
|
||||
256,96,164647,1,6
|
||||
360,40,164980,2,0,B|464:40,2,100,0|8|0
|
||||
256,96,165980,1,6
|
||||
16,80,166646,6,0,B|24:136|56:200,1,100,12|0
|
||||
116,80,167313,2,0,B|158:111|220:112,1,100,2|2
|
||||
248,112,167814,1,0
|
||||
288,112,167980,2,0,B|341:115|384:152,1,100,12|8
|
||||
412,172,168480,1,0
|
||||
428,208,168647,2,0,B|380:248|300:208,1,100,2|2
|
||||
296,208,169147,1,0
|
||||
260,192,169313,6,0,B|212:168|140:184,1,100,12|2
|
||||
124,188,169814,1,0
|
||||
88,204,169980,2,0,B|96:260|200:284,1,100,2|2
|
||||
192,284,170480,1,0
|
||||
232,288,170647,2,0,B|288:296|336:256,1,100,8|8
|
||||
424,196,171314,1,2
|
||||
424,196,171647,1,2
|
||||
424,196,171980,6,0,B|416:136|360:108,1,100,12|0
|
||||
336,100,172480,1,2
|
||||
296,88,172646,2,0,B|248:72|192:104,2,100,2|0|8
|
||||
256,204,173647,1,8
|
||||
164,124,173980,2,0,B|108:112|68:164,2,100,0|0|12
|
||||
132,240,174980,2,0,B|92:280|108:344,1,100,2|0
|
||||
212,280,175646,2,0,B|272:264|276:184,2,100,2|8|2
|
||||
212,280,176647,1,2
|
||||
8,136,177313,6,0,B|29:82|104:64,1,100,12|0
|
||||
200,64,177980,2,0,B|352:104,1,150,2|0
|
||||
344,144,178647,2,0,B|184:168,1,150,8|0
|
||||
196,208,179313,2,0,B|348:232,1,150,2|0
|
||||
344,272,179980,2,0,B|184:288,1,150,12|0
|
||||
136,276,180647,2,0,B|58:233|64:140,2,150,2|2|2
|
||||
188,168,181980,1,2
|
||||
188,168,182647,5,12
|
||||
76,124,182980,2,0,B|20:100,2,50,2|2|0
|
||||
188,168,183647,1,8
|
||||
300,212,183980,2,0,B|356:228|428:204,2,100,8|0|2
|
||||
256,324,184980,2,0,B|200:316|168:260,2,100,0|12|0
|
||||
256,324,185980,1,2
|
||||
256,84,186647,5,8
|
||||
316,188,186980,1,0
|
||||
196,188,187313,1,2
|
||||
408,300,187980,5,12
|
||||
432,184,188313,1,0
|
||||
320,228,188647,1,2
|
||||
224,300,188980,2,0,B|176:332,2,50,0|0|8
|
||||
120,240,189647,2,0,B|64:248,2,50,0|0|2
|
||||
96,120,190313,2,0,B|48:96,2,50,0|0|12
|
||||
188,40,190980,2,0,B|236:60|272:132,1,100
|
||||
320,212,191646,2,0,B|376:236,2,50,0|0|8
|
||||
316,92,192313,1,0
|
||||
316,92,192646,1,2
|
||||
320,212,192980,1,2
|
||||
320,212,193313,1,12
|
||||
404,124,193647,6,0,B|444:76,2,50,0|0|2
|
||||
404,244,194313,2,0,B|404:356,1,100,0|8
|
||||
344,216,194980,2,0,B|288:312,1,100,0|2
|
||||
300,164,195647,2,0,B|188:212,1,100,0|12
|
||||
300,96,196313,2,0,B|180:80,2,100,0|2|0
|
||||
420,116,197313,1,8
|
||||
420,116,197647,1,0
|
||||
300,96,197980,2,0,B|196:80,1,100
|
||||
80,72,198647,1,12
|
||||
80,72,198980,1,0
|
||||
200,68,199313,6,0,B|256:88|272:140,1,100,2|0
|
||||
284,172,199813,1,0
|
||||
284,212,199980,1,8
|
||||
164,224,200313,1,8
|
||||
284,212,200647,6,0,B|288:276|228:316,1,100,2|0
|
||||
212,324,201147,1,0
|
||||
176,344,201314,1,12
|
||||
164,224,201647,1,8
|
||||
176,344,201980,6,0,B|124:352|72:296,1,100,2|0
|
||||
60,280,202480,1,0
|
||||
44,244,202647,1,8
|
||||
164,224,202980,1,8
|
||||
44,244,203313,6,0,B|24:196|44:140,2,100,2|0|12
|
||||
152,192,204313,2,0,B|80:192,2,50,2|2|0
|
||||
272,192,204980,1,2
|
||||
272,192,205313,2,0,B|272:104|153:100|152:200,1,200,8|0
|
||||
152,312,206313,6,0,B|152:360,2,50,2|2|12
|
||||
152,192,206980,1,0
|
||||
152,192,207313,1,14
|
||||
152,72,207646,2,0,B|152:16,2,50,0|0|2
|
||||
248,144,208313,2,0,B|272:192|240:272,1,100,0|12
|
||||
256,192,208980,12,12,209980
|
||||
256,192,210313,12,12,211313
|
||||
440,208,211980,6,0,B|320:184,1,100,12|0
|
||||
324,68,212647,2,0,B|148:164,1,200,2|8
|
||||
80,264,213647,1,8
|
||||
192,312,213980,1,2
|
||||
312,296,214313,1,2
|
||||
424,256,214647,1,12
|
||||
472,144,214980,6,0,B|480:88,2,50,2|2|0
|
||||
352,120,215647,2,0,B|336:56,2,50,2|2|8
|
||||
296,224,216313,1,0
|
||||
176,208,216647,1,0
|
||||
152,88,216980,1,8
|
||||
272,104,217313,1,12
|
||||
360,184,217647,6,0,B|392:264,2,50,2|2|0
|
||||
248,144,218313,2,0,B|200:176|184:248,1,100,0|8
|
||||
208,344,218980,1,8
|
||||
192,224,219313,1,2
|
||||
192,224,219647,2,0,B|200:176|248:144,1,100,0|12
|
||||
344,72,220313,2,0,B|400:32,2,50,2|0|2
|
||||
320,192,220980,2,0,B|296:248|224:288,1,100,0|8
|
||||
140,296,221647,2,0,B|68:304,2,50,2|0|2
|
||||
252,248,222313,5,0
|
||||
316,144,222647,1,12
|
||||
372,248,222980,1,0
|
||||
252,248,223313,1,2
|
||||
252,248,223646,5,8
|
||||
316,144,223980,1,2
|
||||
212,80,224313,1,0
|
||||
212,80,224647,5,2
|
||||
212,176,224980,1,8
|
||||
212,176,225313,1,12
|
||||
212,176,225647,1,0
|
||||
212,296,225980,6,0,B|266:312|316:296,1,100,2|0
|
||||
348,284,226480,1,2
|
||||
380,260,226647,1,8
|
||||
280,192,226980,1,8
|
||||
372,116,227313,2,0,B|319:99|268:116,1,100,2|0
|
||||
236,128,227813,1,2
|
||||
208,156,227980,1,12
|
||||
256,268,228313,1,0
|
||||
256,268,228647,1,2
|
||||
136,284,228980,5,2
|
||||
136,284,229147,1,0
|
||||
136,284,229313,2,0,B|115:183|160:60,1,200,8|0
|
||||
256,20,230313,1,0
|
||||
352,92,230647,2,0,B|385:194|336:332,1,200,12|0
|
||||
236,336,231647,2,0,B|156:344,2,50,0|0|8
|
||||
236,336,232313,1,2
|
||||
236,336,232647,1,2
|
||||
256,96,233313,6,0,B|200:104|168:160,1,100,12|0
|
||||
192,268,233980,2,0,B|304:260|352:148,2,200,2|8|2
|
||||
164,152,235647,1,0
|
||||
256,76,235980,1,12
|
||||
256,196,236313,2,0,B|256:260,2,50,2|2|0
|
||||
256,76,236980,2,0,B|256:20,2,50,2|2|8
|
||||
256,76,237647,1,8
|
||||
256,76,237980,1,2
|
||||
344,156,238313,2,0,B|432:236,1,100,0|12
|
||||
328,304,238980,5,2
|
||||
328,304,239147,1,0
|
||||
328,304,239313,2,0,B|192:304,1,100,2|0
|
||||
288,200,239980,2,0,B|160:160,1,100,8|8
|
||||
72,152,240647,1,2
|
||||
72,272,240980,1,0
|
||||
72,152,241313,1,12
|
||||
72,272,241647,1,0
|
||||
152,184,241980,2,0,B|240:80,3,100,2|0|8|0
|
||||
216,107,243313,1,2
|
||||
444,176,243980,5,12
|
||||
368,268,244313,1,0
|
||||
248,280,244647,1,2
|
||||
128,256,244980,1,2
|
||||
128,256,245147,1,0
|
||||
128,256,245313,2,0,B|80:216|72:144,1,100,8|8
|
||||
72,52,245980,5,2
|
||||
192,72,246313,1,2
|
||||
192,72,246480,1,0
|
||||
192,72,246647,2,0,B|248:160|368:192,1,200,12|8
|
||||
402,78,247646,5,2
|
||||
402,78,247813,1,0
|
||||
402,78,247980,2,0,B|453:111|474:166,1,100,8|8
|
||||
352,187,248647,1,2
|
||||
467,153,248980,2,0,B|459:217|419:249,1,100,0|12
|
||||
312,280,249647,5,2
|
||||
256,300,249813,1,0
|
||||
200,280,249980,1,2
|
||||
280,192,250313,1,0
|
||||
280,192,250647,1,8
|
||||
320,80,250980,1,0
|
||||
280,192,251313,1,2
|
||||
196,108,251647,1,0
|
||||
280,192,251980,1,12
|
||||
256,56,252647,5,2
|
||||
256,328,253313,1,2
|
||||
120,192,253980,1,2
|
||||
392,192,254646,1,2
|
||||
256,192,255313,1,2
|
||||
256,192,255647,1,2
|
||||
256,192,255813,1,0
|
||||
256,192,255980,1,12
|
||||
256,192,256146,12,4,260646
|
||||
+1
File diff suppressed because one or more lines are too long
@@ -0,0 +1,582 @@
|
||||
osu file format v9
|
||||
|
||||
[General]
|
||||
StackLeniency: 0.7
|
||||
Mode: 0
|
||||
|
||||
[Difficulty]
|
||||
HPDrainRate:7
|
||||
CircleSize:5
|
||||
OverallDifficulty:8
|
||||
ApproachRate:8
|
||||
SliderMultiplier:3.2
|
||||
SliderTickRate:2
|
||||
|
||||
[Events]
|
||||
//Background and Video events
|
||||
//Break Periods
|
||||
2,16325,17625
|
||||
2,32325,33875
|
||||
2,66325,67375
|
||||
2,120135,127375
|
||||
//Storyboard Layer 0 (Background)
|
||||
//Storyboard Layer 1 (Fail)
|
||||
//Storyboard Layer 2 (Pass)
|
||||
//Storyboard Layer 3 (Foreground)
|
||||
//Storyboard Sound Samples
|
||||
//Background Colour Transformations
|
||||
3,100,163,162,255
|
||||
|
||||
[TimingPoints]
|
||||
125,500,4,1,0,50,1,0
|
||||
36125,-100,4,1,0,50,0,1
|
||||
66125,-100,4,1,0,50,0,0
|
||||
88125,-100,4,1,0,50,0,1
|
||||
120125,-100,4,1,0,50,0,0
|
||||
170125,-100,4,2,0,5,0,0
|
||||
170250,-100,4,1,0,50,0,0
|
||||
172125,-100,4,1,0,50,0,1
|
||||
200125,-100,4,1,0,50,0,0
|
||||
|
||||
[HitObjects]
|
||||
64,80,2375,5,0
|
||||
172,192,2625,1,2
|
||||
152,36,2875,1,0
|
||||
80,176,3125,1,2
|
||||
224,112,3375,1,0
|
||||
192,256,3625,1,8
|
||||
136,116,3875,1,0
|
||||
272,32,4125,2,2,B|376:0|408:56|412:125|320:144|304:176|328:216|368:272|496:208,1,400,6|0
|
||||
504,216,4875,2,2,B|376:232|288:280|248:384,1,320
|
||||
384,344,5625,1,8
|
||||
272,216,5875,1,0
|
||||
272,216,6000,1,0
|
||||
272,216,6125,1,4
|
||||
92,280,6375,5,0
|
||||
124,108,6625,1,8
|
||||
256,8,6875,1,0
|
||||
388,108,7125,1,2
|
||||
420,280,7375,1,8
|
||||
256,296,7625,1,8
|
||||
256,120,7875,1,0
|
||||
443,152,8125,2,2,B|397:202|305:219|256:192|203:163|114:181|68:231,1,400,2|0
|
||||
24,256,8875,2,2,B|112:227|141:134|122:36|37:1,1,320
|
||||
16,132,9625,1,8
|
||||
136,280,9875,1,0
|
||||
136,280,10000,1,0
|
||||
136,280,10125,1,4
|
||||
256,172,10375,5,0
|
||||
368,56,10625,1,8
|
||||
196,116,10875,1,0
|
||||
316,116,11125,1,2
|
||||
144,56,11375,1,0
|
||||
256,0,11625,1,8
|
||||
112,128,11875,1,0
|
||||
164,280,12125,6,0,B|256:316,1,80,4|2
|
||||
100,348,12500,2,0,B|8:312,1,80,0|2
|
||||
144,212,12875,2,0,B|52:176,1,80,0|2
|
||||
208,144,13250,2,0,B|300:180,1,80,0|2
|
||||
332,324,13625,1,8
|
||||
180,324,13875,1,0
|
||||
256,240,14125,5,4
|
||||
256,240,14250,1,2
|
||||
324,112,14500,1,0
|
||||
324,112,14625,1,2
|
||||
192,56,14875,1,4
|
||||
192,56,15000,1,2
|
||||
256,164,15250,1,0
|
||||
256,164,15375,1,2
|
||||
256,20,15625,1,8
|
||||
120,56,15875,1,0
|
||||
256,92,16125,1,6
|
||||
20,152,18375,5,0
|
||||
180,136,18625,1,8
|
||||
52,228,18875,1,0
|
||||
120,84,19125,1,2
|
||||
128,244,19375,1,0
|
||||
48,84,19625,1,8
|
||||
192,212,19875,1,0
|
||||
300,72,20125,2,4,B|396:36|444:84|396:144|352:184|372:224|416:260|532:224|528:164,1,320,4|0
|
||||
472,40,20875,2,2,B|376:72|304:164|272:260|280:320,1,320
|
||||
404,352,21625,1,8
|
||||
432,196,21875,1,0
|
||||
432,196,22000,1,0
|
||||
432,196,22125,1,4
|
||||
296,100,22375,5,0
|
||||
168,196,22625,2,0,B|32:296,1,160,8|0
|
||||
268,212,23125,2,0,B|168:76,1,160,2|8
|
||||
252,312,23625,2,0,B|388:212,1,160,8|0
|
||||
484,96,24125,2,2,B|412:0|320:36|288:120|240:136|200:132|156:116|132:96|80:44,1,400,2|0
|
||||
72,24,24875,2,2,B|158:66|148:177|67:253|-19:210,1,320
|
||||
56,108,25625,1,8
|
||||
176,200,25875,1,0
|
||||
176,200,26000,1,0
|
||||
176,200,26125,1,4
|
||||
316,92,26375,5,0
|
||||
464,164,26625,2,0,B|394:224|412:336,1,160,2|0
|
||||
232,316,27125,2,0,B|306:256|284:144,1,160,2|8
|
||||
136,88,27625,1,8
|
||||
60,224,27875,1,0
|
||||
212,132,28125,6,0,B|256:32,1,80,4|2
|
||||
340,228,28500,2,0,B|384:128,1,80,0|2
|
||||
256,284,28875,2,0,B|212:184,1,80,4|2
|
||||
128,380,29250,2,0,B|84:280,1,80,0|2
|
||||
238,383,29625,2,0,B|406:379,1,160,8|0
|
||||
512,267,30125,5,4
|
||||
512,267,30250,1,2
|
||||
416,152,30500,1,0
|
||||
416,152,30625,1,2
|
||||
300,264,30875,1,4
|
||||
300,264,31000,1,2
|
||||
236,100,31250,1,0
|
||||
236,100,31375,1,2
|
||||
152,256,31625,1,8
|
||||
300,160,31875,1,0
|
||||
256,332,32125,1,6
|
||||
52,52,34625,5,0
|
||||
152,164,34875,1,0
|
||||
256,56,35125,1,4
|
||||
256,56,35625,1,2
|
||||
256,56,36125,2,4,B|331:63|364:136|320:224,1,160,4|0
|
||||
320,312,36625,1,8
|
||||
204,228,36875,1,0
|
||||
104,328,37125,2,2,B|24:287|44:188,1,160
|
||||
92,60,37625,1,8
|
||||
212,148,37875,1,0
|
||||
268,104,38000,1,0
|
||||
324,60,38125,2,0,B|452:184,1,160,4|0
|
||||
504,300,38625,1,8
|
||||
364,340,38875,1,0
|
||||
232,280,39125,6,2,B|150:282|69:198|105:87|179:53,2,320,2|2|6
|
||||
280,148,40375,1,0
|
||||
400,228,40625,2,0,B|520:368,1,160,8|0
|
||||
480,192,41125,1,2
|
||||
324,220,41375,1,2
|
||||
168,256,41625,1,8
|
||||
72,148,41875,1,2
|
||||
48,84,42000,1,2
|
||||
96,36,42125,2,0,B|164:108|256:44,1,160,6|0
|
||||
400,72,42625,1,2
|
||||
440,236,42875,1,2
|
||||
464,300,43000,1,2
|
||||
416,348,43125,2,0,B|348:276|256:340,1,160,6|0
|
||||
112,312,43625,1,2
|
||||
140,188,43875,1,0
|
||||
52,64,44125,5,6
|
||||
208,48,44375,1,0
|
||||
344,132,44625,1,8
|
||||
448,256,44875,2,2,B|401:321|285:337|217:242|233:163,2,320,2|2|0
|
||||
326,211,46125,2,2,B|279:146|163:130|95:225|111:304,1,320,6|0
|
||||
230,287,46875,2,2,B|277:352|393:368|461:273|445:194,1,320,6|8
|
||||
376,80,47625,1,8
|
||||
376,80,48125,6,0,B|304:128|216:96,1,160,4|0
|
||||
84,56,48625,1,8
|
||||
152,200,48875,1,0
|
||||
44,320,49125,2,0,B|121:364|204:320,1,160,4|0
|
||||
336,240,49625,5,8
|
||||
256,148,49875,1,0
|
||||
176,240,50125,1,0
|
||||
340,144,50625,1,0
|
||||
420,236,50875,1,0
|
||||
500,144,51125,1,2
|
||||
172,144,51625,1,2
|
||||
92,236,51875,1,0
|
||||
12,144,52125,6,0,B|160:48,1,160,4|0
|
||||
304,76,52625,1,8
|
||||
256,228,52875,1,0
|
||||
216,112,53125,2,0,B|364:208,1,160,2|0
|
||||
508,180,53625,1,8
|
||||
460,28,53875,1,0
|
||||
344,96,54125,1,2
|
||||
228,8,54375,1,0
|
||||
153,116,54625,1,2
|
||||
72,220,54875,1,0
|
||||
180,295,55125,1,2
|
||||
284,376,55375,1,0
|
||||
359,268,55625,1,2
|
||||
440,164,55875,1,0
|
||||
352,160,56125,6,0,B|466:294,1,160,4|0
|
||||
312,228,56625,1,8
|
||||
200,300,56875,1,0
|
||||
160,160,57125,2,0,B|46:294,1,160,4|0
|
||||
200,228,57625,1,8
|
||||
312,300,57875,1,0
|
||||
444,208,58125,2,0,B|362:164|380:56,1,160,2|0
|
||||
344,12,58500,1,0
|
||||
272,4,58625,2,0,B|232:88|120:68,1,160,2|0
|
||||
68,176,59125,2,0,B|148:220|132:328,1,160,2|0
|
||||
168,372,59500,1,0
|
||||
240,380,59625,2,0,B|280:296|392:316,1,160,2|0
|
||||
456,176,60125,5,6
|
||||
328,80,60375,1,0
|
||||
216,196,60625,1,8
|
||||
72,136,60875,2,2,B|54:209|91:305|191:336|269:306,2,320,2|2|0
|
||||
200,224,62125,2,2,B|182:150|219:54|319:23|397:53,1,320,2|0
|
||||
480,179,62875,2,2,B|499:252|462:348|362:379|284:349,1,320,2|0
|
||||
136,296,63625,2,0,B|67:220|140:136,1,160,8|0
|
||||
256,56,64125,5,6
|
||||
284,212,64375,1,0
|
||||
440,180,64625,1,8
|
||||
420,24,64875,1,0
|
||||
300,132,65125,1,6
|
||||
272,288,65375,1,0
|
||||
116,256,65625,1,8
|
||||
136,100,65875,1,0
|
||||
256,8,66125,1,4
|
||||
256,56,68125,6,0,B|298:128|244:237|123:241|74:173,1,320
|
||||
132,80,68875,2,2,B|344:328,1,320
|
||||
456,224,69625,1,8
|
||||
340,116,69875,1,0
|
||||
340,116,70000,1,0
|
||||
340,116,70125,1,4
|
||||
228,4,70375,5,0
|
||||
256,160,70625,2,0,B|186:224|88:168,1,160,2|0
|
||||
148,332,71125,2,0,B|216:396|316:340,1,160,2|8
|
||||
424,248,71625,1,8
|
||||
336,112,71875,1,0
|
||||
336,112,72000,1,0
|
||||
336,112,72125,1,4
|
||||
228,208,72375,2,0,B|139:179|144:80,1,160,0|8
|
||||
268,56,72875,2,2,B|272:164|220:272|120:308|72:308,1,320
|
||||
24,192,73625,1,8
|
||||
92,64,73875,1,0
|
||||
92,64,74000,1,0
|
||||
92,64,74125,1,4
|
||||
224,140,74375,5,0
|
||||
340,224,74625,2,0,B|412:211|428:121|363:77,1,160,2|0
|
||||
268,192,75125,2,0,B|196:205|180:295|245:339,1,160,2|0
|
||||
268,192,75625,2,0,B|104:168,1,160,8|0
|
||||
24,52,76125,6,0,B|132:40,1,80
|
||||
176,32,76375,1,2
|
||||
348,60,76625,1,2
|
||||
248,164,76875,1,2
|
||||
264,20,77125,1,2
|
||||
324,140,77375,1,2
|
||||
180,116,77625,1,2
|
||||
240,240,77875,1,0
|
||||
256,92,78125,1,4
|
||||
100,124,78375,5,0
|
||||
8,256,78625,2,0,B|64:332|176:304,1,160,8|0
|
||||
304,260,79125,2,0,B|248:184|136:212,1,160,2|0
|
||||
304,260,79625,1,8
|
||||
460,284,79875,1,2
|
||||
420,128,80125,6,0,B|332:128,1,80,4|0
|
||||
256,124,80375,1,2
|
||||
344,260,80625,1,2
|
||||
168,260,80875,1,2
|
||||
384,192,81125,1,2
|
||||
256,260,81375,1,2
|
||||
168,124,81625,1,2
|
||||
344,124,81875,1,2
|
||||
128,192,82125,1,4
|
||||
48,192,82250,6,0,B|48:84|152:52,1,160,2|0
|
||||
204,44,82625,2,0,B|204:152|308:184,1,160,2|0
|
||||
352,160,83000,2,0,B|244:160|212:264,1,160,2|0
|
||||
192,316,83375,2,0,B|84:316|52:212,1,160,2|2
|
||||
32,88,83875,1,2
|
||||
172,8,84125,1,4
|
||||
256,192,84250,12,6,86125
|
||||
256,192,86250,12,4,87125
|
||||
256,100,88125,6,2,B|308:116|368:104|404:16,1,160,6|0
|
||||
256,100,88625,1,8
|
||||
136,180,88875,1,0
|
||||
8,96,89125,2,0,B|-28:168|16:232|68:256,1,160,2|0
|
||||
164,312,89625,1,8
|
||||
288,236,89875,1,2
|
||||
288,236,90000,1,2
|
||||
288,236,90125,2,2,B|452:164,1,160,6|0
|
||||
476,32,90625,1,8
|
||||
332,104,90875,1,0
|
||||
180,104,91125,5,6
|
||||
36,32,91375,1,8
|
||||
56,164,91625,1,8
|
||||
56,164,92125,2,0,B|260:208,1,160,6|0
|
||||
84,296,92625,1,8
|
||||
220,376,92875,1,0
|
||||
320,268,93125,2,0,B|524:224,1,160,6|0
|
||||
432,80,93625,1,8
|
||||
296,152,93875,1,2
|
||||
296,152,94000,1,2
|
||||
296,152,94125,2,2,B|232:164|176:132|164:52,1,160,6|0
|
||||
216,232,94625,2,2,B|280:220|336:252|348:332,1,160,2|0
|
||||
341,304,95000,1,0
|
||||
341,304,95125,2,0,B|369:84,1,160,2|0
|
||||
171,80,95625,2,0,B|143:300,1,160,2|0
|
||||
43,358,96125,5,6
|
||||
81,219,96375,1,0
|
||||
169,332,96625,1,8
|
||||
304,272,96875,2,2,B|388:252|426:161|418:63|344:19,2,320,2|2|0
|
||||
240,144,98125,2,2,B|219:244|50:229|65:60|168:58,1,320
|
||||
240,144,98875,2,2,B|260:43|429:58|414:227|311:229,1,320,2|0
|
||||
180,292,99625,2,0,B|80:304|36:208,1,160,2|0
|
||||
48,64,100125,6,0,B|224:112,1,160,4|0
|
||||
348,52,100625,2,0,B|524:4,1,160,2|0
|
||||
504,172,101125,2,0,B|328:124,1,160,2|0
|
||||
204,184,101625,2,0,B|28:232,1,160,2|0
|
||||
49,226,102000,1,0
|
||||
49,226,102125,1,2
|
||||
256,324,102625,5,8
|
||||
384,256,102875,1,0
|
||||
256,188,103125,1,6
|
||||
256,188,103625,1,2
|
||||
128,256,103875,1,0
|
||||
256,324,104125,6,0,B|324:252|432:316,1,160,6|0
|
||||
492,168,104625,1,8
|
||||
332,188,104875,1,0
|
||||
256,60,105125,2,0,B|188:132|80:68,1,160,6|0
|
||||
20,216,105625,1,8
|
||||
180,196,105875,1,0
|
||||
368,156,106125,2,0,B|418:184|462:234|408:296,1,160,2|0
|
||||
220,80,106625,2,0,B|248:30|298:-14|360:40,1,160,2|0
|
||||
144,228,107125,2,0,B|94:200|50:150|104:88,1,160,2|0
|
||||
292,304,107625,2,0,B|264:354|214:398|152:344,1,160,2|0
|
||||
44,216,108125,6,0,B|145:221|172:132,1,160,6|0
|
||||
304,224,108625,1,8
|
||||
408,104,108875,1,0
|
||||
468,216,109125,2,0,B|367:221|340:132,1,160,6|0
|
||||
208,224,109625,1,8
|
||||
104,104,109875,1,0
|
||||
256,56,110125,2,0,B|144:180,1,160,2|0
|
||||
256,328,110625,2,0,B|368:204,1,160,2|0
|
||||
208,244,111125,2,0,B|96:368,1,160,2|0
|
||||
304,140,111625,2,0,B|416:16,1,160,2|0
|
||||
252,20,112125,5,6
|
||||
112,60,112375,1,0
|
||||
72,200,112625,1,8
|
||||
158,316,112875,2,2,B|236:321|324:259|326:152|278:89,2,320,2|2|0
|
||||
176,168,114125,2,2,B|214:236|313:276|405:220|431:145,1,320,2|0
|
||||
328,64,114875,2,2,B|259:102|219:201|275:293|350:319,1,320,2|0
|
||||
488,340,115625,2,0,B|456:172,1,160,2|0
|
||||
416,72,116125,5,6
|
||||
288,140,116375,1,0
|
||||
164,68,116625,1,8
|
||||
36,136,116875,1,0
|
||||
104,264,117125,1,6
|
||||
232,332,117375,1,0
|
||||
356,260,117625,1,8
|
||||
484,328,117875,1,0
|
||||
356,384,118125,1,6
|
||||
256,12,128125,5,4
|
||||
256,12,128250,1,2
|
||||
336,128,128500,1,0
|
||||
336,128,128625,1,2
|
||||
400,0,128875,1,0
|
||||
400,0,129000,1,2
|
||||
492,112,129250,1,0
|
||||
492,112,129375,1,2
|
||||
440,248,129625,2,2,B|272:284,1,160
|
||||
256,108,130125,5,4
|
||||
256,108,130250,1,2
|
||||
176,224,130500,1,0
|
||||
176,224,130625,1,2
|
||||
112,96,130875,1,0
|
||||
112,96,131000,1,2
|
||||
20,208,131250,1,0
|
||||
20,208,131375,1,2
|
||||
72,344,131625,2,2,B|240:380,1,160
|
||||
408,376,132125,6,0,B|512:352|584:248|592:-32|416:-48|256:-80|96:-16|56:88|8:224|88:304|144:336|184:368|256:368|256:368|328:368|368:336|424:304|504:224|456:88|416:-16|256:-80|96:-48|-80:-32|-72:248|0:352|104:376,1,2240,6|0
|
||||
256,192,135875,5,2
|
||||
256,192,136000,1,0
|
||||
256,192,136125,1,4
|
||||
136,104,136375,1,0
|
||||
132,240,136625,1,8
|
||||
133,240,136750,1,0
|
||||
256,280,137000,1,0
|
||||
255,280,137125,1,8
|
||||
256,280,137250,1,0
|
||||
256,280,137375,1,0
|
||||
380,240,137625,1,8
|
||||
376,104,137875,1,0
|
||||
256,124,138125,5,4
|
||||
256,124,138375,1,0
|
||||
144,192,138625,1,8
|
||||
144,192,138750,1,0
|
||||
256,260,139000,1,0
|
||||
256,260,139125,1,8
|
||||
256,260,139250,1,0
|
||||
256,260,139375,1,0
|
||||
368,192,139625,1,8
|
||||
256,124,139875,1,0
|
||||
256,124,140000,1,0
|
||||
256,124,140125,2,2,B|188:112|212:76|188:36|256:20,1,160,6|2
|
||||
332,128,140625,5,8
|
||||
332,128,140750,1,0
|
||||
332,256,141000,1,0
|
||||
332,256,141125,1,8
|
||||
332,256,141250,1,0
|
||||
332,256,141375,1,0
|
||||
180,256,141625,1,8
|
||||
180,128,141875,1,0
|
||||
256,56,142125,5,4
|
||||
256,56,142375,1,0
|
||||
256,160,142625,1,8
|
||||
256,160,142750,1,0
|
||||
256,264,143000,1,0
|
||||
256,264,143125,1,8
|
||||
256,264,143250,1,0
|
||||
256,264,143375,1,0
|
||||
188,352,143625,1,8
|
||||
324,352,143875,1,0
|
||||
324,352,144000,1,0
|
||||
324,352,144125,2,0,B|492:352,1,160,6|2
|
||||
392,280,144625,5,8
|
||||
392,280,144750,1,0
|
||||
324,192,145000,1,0
|
||||
324,192,145125,1,8
|
||||
324,192,145250,1,0
|
||||
324,192,145375,1,0
|
||||
188,192,145625,1,8
|
||||
120,280,145875,1,0
|
||||
256,288,146125,5,4
|
||||
256,288,146375,1,0
|
||||
256,176,146625,1,8
|
||||
256,176,146750,1,0
|
||||
176,96,147000,1,0
|
||||
176,96,147125,1,8
|
||||
176,96,147250,1,0
|
||||
176,96,147375,1,0
|
||||
256,16,147625,1,8
|
||||
336,96,147875,1,0
|
||||
336,96,148000,1,0
|
||||
336,96,148125,2,6,B|400:156|388:224|364:248,1,160,6|2
|
||||
256,272,148625,5,8
|
||||
240,264,148750,1,0
|
||||
240,180,149000,1,0
|
||||
256,172,149125,1,8
|
||||
272,164,149250,1,0
|
||||
288,156,149375,1,0
|
||||
256,64,149625,1,8
|
||||
256,64,149875,1,0
|
||||
116,180,150125,5,0
|
||||
120,200,150250,1,0
|
||||
132,224,150375,1,0
|
||||
152,236,150500,1,0
|
||||
176,240,150625,1,8
|
||||
208,240,150750,1,0
|
||||
232,236,150875,1,0
|
||||
248,216,151000,1,0
|
||||
256,192,151125,1,8
|
||||
260,168,151250,1,0
|
||||
272,144,151375,1,8
|
||||
292,132,151500,1,0
|
||||
316,128,151625,1,8
|
||||
348,128,151750,1,8
|
||||
372,132,151875,1,8
|
||||
388,152,152000,1,0
|
||||
404,184,152125,6,0,B|436:250|377:334|292:300,1,160,6|0
|
||||
108,200,152625,2,0,B|76:134|135:50|220:84,1,160,6|0
|
||||
256,192,153125,2,0,B|256:100,1,80,2|0
|
||||
256,192,153375,2,0,B|256:368,2,160,2|8|0
|
||||
360,60,154125,5,0
|
||||
360,60,154250,1,0
|
||||
360,60,154375,1,2
|
||||
256,12,154625,1,0
|
||||
256,12,154750,1,0
|
||||
256,12,154875,1,2
|
||||
154,64,155125,1,0
|
||||
154,64,155250,1,2
|
||||
155,63,155375,2,0,B|87:119|115:191|179:211|227:179,2,160,0|8|0
|
||||
163,74,156000,5,0
|
||||
163,74,156125,1,0
|
||||
163,74,156250,2,2,B|174:151|299:265|445:180|473:106,1,400,2|0
|
||||
320,80,157125,2,2,B|224:88|184:188|224:288|320:295,1,320
|
||||
348,292,157750,1,0
|
||||
380,280,157875,1,0
|
||||
404,260,158000,1,0
|
||||
412,236,158125,1,0
|
||||
412,208,158250,1,0
|
||||
404,180,158375,1,0
|
||||
264,68,158625,2,0,B|184:104,2,80,2|0|2
|
||||
164,216,159125,2,0,B|244:180,2,80,2|0|2
|
||||
56,144,159625,5,8
|
||||
64,276,159875,1,8
|
||||
64,276,160000,1,8
|
||||
64,276,160125,2,0,B|24:352,2,80,2|0|0
|
||||
128,288,160500,2,0,B|136:188,2,80,2|0|0
|
||||
192,300,160875,2,0,B|200:400,2,80,2|0|0
|
||||
240,256,161250,2,0,B|304:176,2,80,2|0|0
|
||||
284,304,161625,2,0,B|356:380,2,80,2|0|0
|
||||
328,256,162000,6,0,B|456:236,2,80,0|2|0
|
||||
308,192,162375,2,0,B|180:172,2,80,0|2|0
|
||||
340,136,162750,2,0,B|468:116,2,80,0|2|0
|
||||
284,100,163125,2,0,B|264:-28,2,80,0|2|0
|
||||
224,128,163500,2,0,B|204:256,2,80,0|2|0
|
||||
180,76,163875,6,0,B|92:52,2,80,2|0|0
|
||||
144,132,164250,2,0,B|72:184,2,80,2|0|0
|
||||
168,196,164625,2,0,B|240:248,2,80,2|0|0
|
||||
136,256,165000,2,0,B|96:340,2,80,2|0|0
|
||||
188,296,165375,2,0,B|228:380,2,80,2|0|0
|
||||
236,252,165750,1,0
|
||||
236,252,165875,1,2
|
||||
364,276,166125,6,2,B|408:176|360:156|320:168|296:176|268:132|264:112|272:76|304:52|328:40,1,240,2|0
|
||||
264,24,166625,2,2,B|308:124|260:144|220:132|196:124|168:168|164:188|172:224|204:248|228:260,1,240,2|0
|
||||
192,280,167125,1,0
|
||||
320,376,167375,1,0
|
||||
192,376,167625,1,0
|
||||
256,328,167750,1,0
|
||||
320,280,167875,1,0
|
||||
256,124,168125,1,6
|
||||
256,192,168250,12,0,170125
|
||||
256,192,171125,12,6,172125
|
||||
48,56,172375,5,0
|
||||
20,184,172625,2,0,B|16:264|92:316|152:304,1,160,8|0
|
||||
240,300,173125,1,2
|
||||
200,176,173375,1,0
|
||||
324,220,173625,2,0,B|360:220|416:258|412:338,1,160,8|0
|
||||
412,334,174000,1,0
|
||||
412,334,174125,2,0,B|456:156,1,160,6|0
|
||||
398,35,174625,2,0,B|220:-8,1,160,2|0
|
||||
245,0,175000,1,0
|
||||
245,0,175125,2,0,B|201:178,1,160,6|0
|
||||
259,299,175625,2,0,B|437:342,1,160,2|0
|
||||
424,176,176125,5,6
|
||||
272,128,176375,1,0
|
||||
116,152,176625,1,8
|
||||
173,253,176875,2,2,B|257:233|295:142|287:44|213:0,2,320,2|2|0
|
||||
28,204,178125,2,2,B|356:316,1,320
|
||||
172,360,178875,2,2,B|500:248,1,320,2|0
|
||||
384,148,179625,2,0,B|292:168|224:96|232:44,1,160,2|0
|
||||
244,93,180000,1,0
|
||||
244,93,180125,6,0,B|64:120,1,160,6|0
|
||||
100,268,180625,2,0,B|256:296,1,160,8|0
|
||||
257,296,181000,1,0
|
||||
256,296,181125,2,0,B|413:267,1,160,6|0
|
||||
426,116,181625,2,0,B|267:93,1,160,8|2
|
||||
267,93,182000,5,2
|
||||
267,93,182125,2,2,B|180:112|168:212,1,160,2|0
|
||||
140,380,182625,2,0,B|227:361|239:261,1,160,8|0
|
||||
62,169,183125,2,2,B|80:256|180:268,1,160,2|0
|
||||
348,296,183625,2,0,B|329:208|229:196,1,160,8|0
|
||||
64,172,184125,1,6
|
||||
256,192,184250,12,2,185625
|
||||
48,188,186125,6,2,B|96:108|256:108|256:192|256:276|416:276|464:196,1,480,2|0
|
||||
328,144,187125,2,0,B|296:316,1,160,2|0
|
||||
184,240,187625,2,0,B|216:68,1,160,2|0
|
||||
256,192,188125,1,6
|
||||
256,192,188250,12,2,189625
|
||||
464,188,190125,6,2,B|416:108|256:108|256:192|256:276|96:276|48:196,1,480,2|0
|
||||
184,144,191125,2,0,B|216:316,1,160,2|0
|
||||
328,240,191625,2,0,B|296:68,1,160,2|0
|
||||
164,32,192125,5,6
|
||||
28,84,192375,1,0
|
||||
28,228,192625,1,8
|
||||
128,332,192875,2,2,B|160:224|300:172|408:244,2,320,2|2|0
|
||||
276,356,194125,2,2,B|384:324|436:184|364:76,1,320
|
||||
236,28,194875,2,2,B|128:60|76:200|148:308,1,320,2|0
|
||||
280,268,195625,2,0,B|232:116,1,160,2|0
|
||||
104,52,196125,5,6
|
||||
136,192,196375,1,0
|
||||
116,344,196625,1,8
|
||||
256,312,196875,1,0
|
||||
332,312,197000,1,0
|
||||
408,332,197125,1,6
|
||||
392,264,197250,1,0
|
||||
376,192,197375,1,0
|
||||
396,40,197625,1,8
|
||||
256,72,197875,5,0
|
||||
256,72,198000,1,0
|
||||
256,72,198125,1,6
|
||||
136,192,198625,1,6
|
||||
256,312,199125,1,6
|
||||
376,192,199625,1,6
|
||||
256,192,200125,1,6
|
||||
+1
File diff suppressed because one or more lines are too long
@@ -0,0 +1,210 @@
|
||||
osu file format v14
|
||||
|
||||
[General]
|
||||
StackLeniency: 0.7
|
||||
Mode: 2
|
||||
|
||||
[Difficulty]
|
||||
HPDrainRate:3
|
||||
CircleSize:2.5
|
||||
OverallDifficulty:6
|
||||
ApproachRate:6
|
||||
SliderMultiplier:1
|
||||
SliderTickRate:1
|
||||
|
||||
[Events]
|
||||
//Background and Video events
|
||||
//Break Periods
|
||||
2,80241,81249
|
||||
//Storyboard Layer 0 (Background)
|
||||
//Storyboard Layer 1 (Fail)
|
||||
//Storyboard Layer 2 (Pass)
|
||||
//Storyboard Layer 3 (Foreground)
|
||||
//Storyboard Sound Samples
|
||||
|
||||
[TimingPoints]
|
||||
41,333.333333333333,4,2,1,50,1,0
|
||||
707,-100,4,2,1,50,0,0
|
||||
2707,-100,4,2,1,85,0,0
|
||||
12040,-86.9565217391304,4,2,1,85,0,0
|
||||
12707,-100,4,2,1,85,0,0
|
||||
13374,-100,4,2,1,85,0,0
|
||||
34207,-100,4,2,1,75,0,0
|
||||
34374,-100,4,2,1,65,0,0
|
||||
34540,-100,4,2,1,55,0,0
|
||||
34707,-100,4,2,1,85,0,0
|
||||
45374,-133.333333333333,4,2,1,85,0,0
|
||||
54707,-133.333333333333,4,2,1,30,0,0
|
||||
56040,-100,4,2,1,85,0,1
|
||||
72040,-125,4,2,1,85,0,0
|
||||
72707,-100,4,2,1,85,0,0
|
||||
74707,-125,4,2,1,85,0,0
|
||||
75207,-100,4,2,1,85,0,0
|
||||
82374,-200,4,2,1,85,0,0
|
||||
85374,-100,4,2,1,85,0,0
|
||||
88040,-100,4,2,1,85,0,1
|
||||
98707,-100,4,2,1,85,0,0
|
||||
99040,-100,4,2,1,20,0,0
|
||||
|
||||
[HitObjects]
|
||||
256,192,707,12,0,2374,0:0:0:0:
|
||||
368,64,2707,6,2,L|256:64,1,100,2|2,0:0|0:0,0:0:0:0:
|
||||
288,128,3207,2,2,L|304:192,1,50,2|8,0:0|0:0,0:0:0:0:
|
||||
192,192,3707,6,2,L|64:192,2,100,2|2|2,0:0|0:0|0:0,0:0:0:0:
|
||||
288,192,4707,1,8,0:0:0:0:
|
||||
144,128,5041,1,10,0:0:0:0:
|
||||
304,288,5374,6,6,L|448:144,2,200,6|8|0,0:0|0:0|0:0,0:0:0:0:
|
||||
208,288,7041,1,0,0:0:0:0:
|
||||
304,160,7374,2,10,L|320:48,1,100,10|8,0:0|0:0,0:0:0:0:
|
||||
160,32,8041,6,6,L|48:32,1,100,6|2,0:0|0:0,0:0:0:0:
|
||||
112,80,8541,1,0,0:0:0:0:
|
||||
160,128,8707,2,8,P|208:160|128:232,1,200,8|6,0:0|0:0,0:0:0:0:
|
||||
224,256,9707,5,2,0:0:0:0:
|
||||
352,224,10041,2,8,L|240:224,1,100,8|2,0:0|0:0,0:0:0:0:
|
||||
416,336,10707,6,6,P|464:320|416:216,1,200,6|12,0:0|0:0,0:0:0:0:
|
||||
224,96,11874,1,2,0:0:0:0:
|
||||
160,96,12041,2,2,P|116:152|160:232,1,172.500003290176,2|2,0:0|0:0,0:0:0:0:
|
||||
224,232,12707,1,2,0:0:0:0:
|
||||
464,64,13374,6,6,L|304:64,1,150,6|2,0:0|0:0,0:0:0:0:
|
||||
240,64,14041,2,8,P|192:112|240:160,1,150,8|2,0:0|0:0,0:0:0:0:
|
||||
320,160,14707,6,2,L|208:160,1,100,2|0,0:0|0:0,0:0:0:0:
|
||||
320,256,15374,2,8,L|360:164,1,100,8|8,0:0|0:0,0:0:0:0:
|
||||
192,64,16041,6,4,L|80:64,1,100,4|2,0:0|0:0,0:0:0:0:
|
||||
144,80,16541,1,2,0:0:0:0:
|
||||
192,96,16707,1,8,0:0:0:0:
|
||||
336,96,17041,1,2,0:0:0:0:
|
||||
288,96,17207,6,2,P|240:128|288:192,1,150,2|0,0:0|0:0,0:0:0:0:
|
||||
384,192,18041,1,8,0:0:0:0:
|
||||
256,192,18374,1,2,0:0:0:0:
|
||||
416,192,18707,6,6,L|432:16,1,150,6|2,0:0|0:0,0:0:0:0:
|
||||
336,32,19374,2,8,L|224:32,1,100,8|0,0:0|0:0,0:0:0:0:
|
||||
256,32,20041,6,2,P|304:80|256:128,1,150,2|2,0:0|0:0,0:0:0:0:
|
||||
196,128,20707,2,8,L|156:220,1,100,8|8,0:0|0:0,0:0:0:0:
|
||||
320,224,21374,6,6,P|360:288|320:352,1,150,6|2,0:0|0:0,0:0:0:0:
|
||||
224,352,22041,2,8,L|112:352,1,100,8|2,0:0|0:0,0:0:0:0:
|
||||
192,224,22541,1,2,0:0:0:0:
|
||||
204,272,22707,5,2,0:0:0:0:
|
||||
96,288,23041,1,0,0:0:0:0:
|
||||
208,288,23374,2,8,L|224:176,1,100,8|0,0:0|0:0,0:0:0:0:
|
||||
80,96,24041,6,6,L|240:96,1,150,6|0,0:0|0:0,0:0:0:0:
|
||||
176,96,24707,1,8,0:0:0:0:
|
||||
256,128,25041,6,2,L|240:80,1,50,2|0,0:0|0:0,0:0:0:0:
|
||||
352,96,25541,2,2,L|356:44,1,50,2|2,0:0|0:0,0:0:0:0:
|
||||
192,176,26041,2,8,L|176:288,1,100,8|8,0:0|0:0,0:0:0:0:
|
||||
272,336,26707,6,0,L|384:336,1,100,0|2,0:0|0:0,0:0:0:0:
|
||||
320,288,27207,1,0,0:0:0:0:
|
||||
272,240,27374,1,8,0:0:0:0:
|
||||
416,240,27707,2,2,L|432:176,1,50,2|0,0:0|0:0,0:0:0:0:
|
||||
288,176,28207,6,2,L|176:176,1,100,2|0,0:0|0:0,0:0:0:0:
|
||||
256,368,28707,2,8,L|270:269,1,100,8|8,0:0|0:0,0:0:0:0:
|
||||
128,256,29374,6,6,P|64:192|128:128,1,200,6|8,0:0|0:0,0:0:0:0:
|
||||
224,128,30374,1,2,0:0:0:0:
|
||||
368,128,30707,5,6,0:0:0:0:
|
||||
432,128,30874,2,2,L|448:240,1,100,2|0,0:0|0:0,0:0:0:0:
|
||||
384,256,31374,1,8,0:0:0:0:
|
||||
240,256,31707,2,8,L|224:192,1,50,8|0,0:0|0:0,0:0:0:0:
|
||||
304,192,32041,6,14,P|352:176|288:80,1,200,14|12,0:0|0:0,0:0:0:0:
|
||||
160,80,33041,1,0,0:0:0:0:
|
||||
304,80,33374,5,12,0:0:0:0:
|
||||
368,80,33541,2,2,P|380:128|368:176,1,100,2|2,0:0|0:0,0:0:0:0:
|
||||
224,176,34207,1,8,3:0:0:0:
|
||||
176,176,34374,1,8,3:0:0:0:
|
||||
128,176,34541,1,8,3:0:0:0:
|
||||
200,144,34707,5,6,0:0:0:0:
|
||||
336,272,35041,2,8,L|352:160,1,100,8|2,0:0|0:0,0:0:0:0:
|
||||
208,144,35707,2,8,L|192:192,1,50,8|0,0:0|0:0,0:0:0:0:
|
||||
336,208,36207,2,2,L|352:160,1,50,2|8,0:0|0:0,0:0:0:0:
|
||||
208,160,36707,2,2,L|96:160,1,100,2|8,0:0|0:0,0:0:0:0:
|
||||
256,160,37374,5,2,0:0:0:0:
|
||||
320,160,37541,2,0,L|336:264,1,100,0|2,0:0|0:0,0:0:0:0:
|
||||
272,272,38041,1,0,0:0:0:0:
|
||||
416,272,38374,2,8,L|432:224,1,50,8|0,0:0|0:0,0:0:0:0:
|
||||
288,224,38874,6,2,L|272:176,1,50,2|8,0:0|0:0,0:0:0:0:
|
||||
336,160,39207,2,2,L|448:160,1,100,2|2,0:0|0:0,0:0:0:0:
|
||||
384,160,39707,1,8,0:0:0:0:
|
||||
240,160,40041,5,4,0:0:0:0:
|
||||
384,64,40374,2,8,L|400:176,1,100,8|2,0:0|0:0,0:0:0:0:
|
||||
256,176,41041,1,8,0:0:0:0:
|
||||
112,176,41374,5,2,0:0:0:0:
|
||||
48,224,41541,2,0,L|32:112,1,100,0|0,0:0|0:0,0:0:0:0:
|
||||
96,112,42041,1,2,0:0:0:0:
|
||||
240,112,42374,1,8,0:0:0:0:
|
||||
96,112,42707,6,4,P|48:160|96:208,1,150,4|2,0:0|0:0,0:0:0:0:
|
||||
160,208,43374,1,2,0:0:0:0:
|
||||
288,208,43707,1,8,0:0:0:0:
|
||||
160,208,44040,5,6,0:0:0:0:
|
||||
304,288,44374,2,8,P|352:240|288:128,1,200,8|8,0:0|0:0,0:0:0:0:
|
||||
136,128,45374,6,6,L|24:192,2,112.500004291535,6|0|0,0:0|0:0|0:0,0:0:0:0:
|
||||
368,128,46874,2,0,L|384:240,1,112.500004291535,0|2,0:0|0:0,0:0:0:0:
|
||||
272,256,47707,1,0,0:0:0:0:
|
||||
144,256,48041,6,6,L|48:191,2,112.500004291535,6|0|0,0:0|0:0|0:0,0:0:0:0:
|
||||
256,256,49374,2,2,P|304:224|224:112,1,225.000008583069,2|8,0:0|0:0,0:0:0:0:
|
||||
384,96,50707,6,6,L|496:96,1,112.500004291535,6|0,0:0|0:0,0:0:0:0:
|
||||
448,96,51374,1,8,0:0:0:0:
|
||||
244,92,51874,2,2,L|132:108,1,112.500004291535,0|2,0:0|0:0,0:0:0:0:
|
||||
208,288,52707,2,8,L|288:288,1,75.0000028610231,8|0,0:0|0:0,0:0:0:0:
|
||||
368,288,53373,6,6,L|383:191,1,75.0000028610231,6|2,0:0|0:0,0:0:0:0:
|
||||
255,192,54040,2,8,L|176:192,1,75.0000028610231,8|2,0:0|0:0,0:0:0:0:
|
||||
272,80,54707,1,0,0:0:0:0:
|
||||
160,272,55374,6,2,L|144:176,1,75.0000028610231,2|2,0:0|0:0,0:0:0:0:
|
||||
320,144,56041,6,6,L|432:144,1,100,6|8,0:0|0:0,0:0:0:0:
|
||||
256,240,56707,2,2,L|240:128,1,100,2|8,0:0|0:0,0:0:0:0:
|
||||
328,112,57207,2,0,P|376:144|328:208,1,150,2|8,0:0|0:0,0:0:0:0:
|
||||
176,208,58041,2,2,L|64:208,1,100,2|8,0:0|0:0,0:0:0:0:
|
||||
208,208,58707,6,2,L|320:208,2,100,2|8|2,0:0|0:0|0:0,0:0:0:0:
|
||||
64,208,59707,1,8,0:0:0:0:
|
||||
128,208,59874,2,0,L|144:96,1,100,0|0,0:0|0:0,0:0:0:0:
|
||||
80,96,60374,2,8,L|8:168,2,100,8|2|8,0:0|0:0|0:0,0:0:0:0:
|
||||
224,96,61374,6,6,P|296:152|224:208,1,200,6|2,0:0|0:0,0:0:0:0:
|
||||
96,224,62374,1,8,0:0:0:0:
|
||||
32,224,62541,6,0,P|16:168|32:128,1,100,0|2,0:0|0:0,0:0:0:0:
|
||||
92,112,63041,2,8,L|204:112,1,100,8|2,0:0|0:0,0:0:0:0:
|
||||
336,112,63707,1,8,0:0:0:0:
|
||||
192,112,64041,6,2,L|64:112,2,100,2|8|2,0:0|0:0|0:0,0:0:0:0:
|
||||
336,112,65041,2,8,P|384:144|336:256,1,200,8|8,0:0|0:0,0:0:0:0:
|
||||
208,256,66041,2,8,L|320:256,1,100,8|8,0:0|0:0,0:0:0:0:
|
||||
144,160,66707,6,4,L|32:160,1,100,4|8,0:0|0:0,0:0:0:0:
|
||||
192,256,67373,2,2,L|208:144,1,100,2|8,0:0|0:0,0:0:0:0:
|
||||
120,128,67874,2,0,P|72:160|120:224,1,150,0|8,0:0|0:0,0:0:0:0:
|
||||
272,224,68707,2,2,L|384:224,1,100,2|8,0:0|0:0,0:0:0:0:
|
||||
237,223,69374,6,2,L|128:224,2,100,2|8|2,0:0|0:0|0:0,0:0:0:0:
|
||||
384,208,70373,1,0,0:0:0:0:
|
||||
448,208,70540,2,2,L|464:96,1,100,2|2,0:0|0:0,0:0:0:0:
|
||||
400,96,71040,2,2,L|288:96,2,100,10|8|10,0:0|0:0|0:0,0:0:0:0:
|
||||
256,96,72040,6,6,P|200:136|232:208,1,160,6|2,0:0|0:0,0:0:0:0:
|
||||
400,208,73040,1,2,0:0:0:0:
|
||||
472,208,73207,6,2,L|480:96,1,100,2|0,0:0|0:0,0:0:0:0:
|
||||
416,80,73707,2,0,L|316:80,1,100,0|8,0:0|0:0,0:0:0:0:
|
||||
176,80,74373,1,0,0:0:0:0:
|
||||
304,80,74707,6,6,L|400:80,2,80,6|0|12,0:0|0:0|0:0,0:0:0:0:
|
||||
160,80,75707,2,0,P|112:112|160:224,1,200,0|2,0:0|0:0,0:0:0:0:
|
||||
304,224,76707,6,8,L|416:224,1,100,10|8,0:0|0:0,0:0:0:0:
|
||||
212,224,77374,1,12,0:0:0:0:
|
||||
256,192,77707,12,2,80041,0:0:0:0:
|
||||
368,192,82374,5,0,0:0:0:0:
|
||||
224,192,82707,2,6,P|176:160|224:104,1,150,6|0,0:0|0:0,0:0:0:0:
|
||||
368,80,84041,2,6,L|384:240,1,150,6|0,0:0|0:0,0:0:0:0:
|
||||
240,256,85374,6,6,P|168:212|240:160,1,200,6|10,0:0|0:0,0:0:0:0:
|
||||
368,160,86374,1,0,0:0:0:0:
|
||||
224,160,86707,6,8,L|112:160,1,100,8|0,0:0|0:0,0:0:0:0:
|
||||
256,128,87374,2,8,L|368:128,1,100,8|2,0:0|0:0,0:0:0:0:
|
||||
184,128,88041,5,6,0:0:0:0:
|
||||
352,128,88374,2,8,L|368:240,1,100,8|8,0:0|0:0,0:0:0:0:
|
||||
224,240,89041,1,8,0:0:0:0:
|
||||
366,228,89374,6,0,L|472:224,2,100,2|8|8,0:0|0:0|0:0,0:0:0:0:
|
||||
248,240,90374,1,8,0:0:0:0:
|
||||
368,232,90707,6,0,L|376:128,1,100,2|8,0:0|0:0,0:0:0:0:
|
||||
256,104,91374,2,0,L|152:104,1,100,8|8,0:0|0:0,0:0:0:0:
|
||||
256,240,92041,6,2,L|368:240,1,100,2|8,0:0|0:0,0:0:0:0:
|
||||
224,240,92707,2,8,L|120:240,1,100,8|2,0:0|0:0,0:0:0:0:
|
||||
256,144,93374,5,6,0:0:0:0:
|
||||
128,144,93707,2,8,L|16:144,2,100,8|8|8,0:0|0:0|0:0,0:0:0:0:
|
||||
256,144,94707,6,2,L|264:248,1,100,2|8,0:0|0:0,0:0:0:0:
|
||||
144,312,95374,1,8,0:0:0:0:
|
||||
96,312,95540,1,8,0:0:0:0:
|
||||
48,312,95707,1,8,0:0:0:0:
|
||||
168,208,96041,6,6,L|272:208,1,100,6|0,0:0|0:0,0:0:0:0:
|
||||
152,104,96707,2,8,L|144:208,1,100
|
||||
280,296,97374,6,8,P|369:254|422:171,1,200,10|8,0:0|0:0,0:0:0:0:
|
||||
144,144,98707,1,14,0:0:0:0:
|
||||
256,192,99040,12,0,105373,0:0:0:0:
|
||||
+1
File diff suppressed because one or more lines are too long
@@ -0,0 +1,560 @@
|
||||
osu file format v14
|
||||
|
||||
[General]
|
||||
StackLeniency: 0.7
|
||||
Mode: 0
|
||||
|
||||
[Difficulty]
|
||||
HPDrainRate:4
|
||||
CircleSize:3.3
|
||||
OverallDifficulty:4
|
||||
ApproachRate:5
|
||||
SliderMultiplier:1.6
|
||||
SliderTickRate:1
|
||||
|
||||
[Events]
|
||||
//Background and Video events
|
||||
//Break Periods
|
||||
2,86704,92468
|
||||
2,208494,214259
|
||||
2,253271,258363
|
||||
//Storyboard Layer 0 (Background)
|
||||
//Storyboard Layer 1 (Fail)
|
||||
//Storyboard Layer 2 (Pass)
|
||||
//Storyboard Layer 3 (Foreground)
|
||||
//Storyboard Sound Samples
|
||||
|
||||
[TimingPoints]
|
||||
534,447.761194029851,4,2,1,40,1,0
|
||||
4116,-100,4,2,1,20,0,0
|
||||
4563,-100,4,2,1,40,0,0
|
||||
5011,-100,4,2,1,60,0,0
|
||||
5459,-100,4,2,1,80,0,0
|
||||
5907,-100,4,2,1,80,0,0
|
||||
6242,-100,4,2,1,80,0,0
|
||||
6578,-100,4,2,1,80,0,0
|
||||
6802,-100,4,2,1,80,0,0
|
||||
7250,-100,4,2,1,80,0,0
|
||||
7922,-100,4,2,1,80,0,0
|
||||
14862,-100,4,2,1,80,0,0
|
||||
16653,-100,4,2,1,80,0,0
|
||||
22922,-100,4,2,1,80,0,0
|
||||
23369,-100,4,2,1,80,0,0
|
||||
24041,-100,4,2,1,80,0,0
|
||||
24265,-100,4,2,1,80,0,0
|
||||
26728,-100,4,2,1,80,0,0
|
||||
26951,-100,4,2,1,80,0,0
|
||||
27175,-100,4,2,1,80,0,0
|
||||
27399,-100,4,2,1,80,0,0
|
||||
29414,-100,4,2,1,80,0,0
|
||||
30981,-100,4,2,1,80,0,0
|
||||
38145,-100,4,2,1,80,0,0
|
||||
40832,-100,4,2,1,80,0,0
|
||||
41728,-100,4,2,1,80,0,0
|
||||
45310,-100,4,2,1,40,0,0
|
||||
45757,-100,4,2,1,40,0,0
|
||||
46205,-100,4,2,1,60,0,0
|
||||
46653,-100,4,2,1,80,0,0
|
||||
47101,-100,4,2,1,80,0,1
|
||||
47436,-100,4,2,1,80,0,1
|
||||
47772,-100,4,2,1,80,0,1
|
||||
47996,-100,4,2,1,80,0,0
|
||||
48892,-100,4,2,1,80,0,1
|
||||
56504,-100,4,2,1,80,0,1
|
||||
56728,-100,4,2,1,80,0,1
|
||||
58295,-100,4,2,1,80,0,1
|
||||
58519,-100,4,2,1,80,0,1
|
||||
62772,-100,4,2,1,80,0,1
|
||||
63220,-100,4,2,1,80,0,1
|
||||
63444,-100,4,2,1,80,0,1
|
||||
63668,-100,4,2,1,80,0,1
|
||||
70832,-100,4,2,1,80,0,1
|
||||
71056,-100,4,2,1,80,0,1
|
||||
72623,-100,4,2,1,80,0,1
|
||||
73071,-100,4,2,1,80,0,1
|
||||
73519,-100,4,2,1,80,0,1
|
||||
73966,-100,4,2,1,80,0,1
|
||||
75757,-100,4,2,1,80,0,1
|
||||
75981,-100,4,2,1,80,0,1
|
||||
77325,-100,4,2,1,80,0,1
|
||||
77548,-100,4,2,1,80,0,0
|
||||
80235,-100,4,2,1,80,0,0
|
||||
81131,-100,4,2,1,80,0,0
|
||||
82922,-100,4,2,1,80,0,0
|
||||
84713,-100,4,2,1,80,0,1
|
||||
85048,-100,4,2,1,80,0,1
|
||||
85384,-100,4,2,1,80,0,1
|
||||
85608,-100,4,2,1,80,0,1
|
||||
86056,-100,4,2,1,80,0,0
|
||||
93444,-100,4,2,1,80,0,0
|
||||
93668,-100,4,2,1,80,0,0
|
||||
101728,-100,4,2,1,80,0,0
|
||||
102175,-100,4,2,0,80,0,0
|
||||
102623,-100,4,2,1,80,0,0
|
||||
102847,-100,4,2,1,80,0,0
|
||||
103071,-100,4,2,1,80,0,0
|
||||
116951,-100,4,2,1,80,0,0
|
||||
119638,-100,4,2,1,80,0,0
|
||||
120534,-100,4,2,1,80,0,0
|
||||
124116,-100,4,2,0,80,0,0
|
||||
125459,-100,4,2,1,80,0,0
|
||||
125907,-100,4,2,1,80,0,1
|
||||
126242,-100,4,2,1,80,0,1
|
||||
126578,-100,4,2,1,80,0,1
|
||||
126802,-100,4,2,1,80,0,0
|
||||
127474,-100,4,2,1,80,0,0
|
||||
127698,-100,4,2,1,80,0,1
|
||||
135310,-100,4,2,1,80,0,1
|
||||
135534,-100,4,2,1,80,0,1
|
||||
137101,-100,4,2,1,80,0,1
|
||||
137325,-100,4,2,1,80,0,1
|
||||
142250,-100,4,2,1,80,0,1
|
||||
142474,-100,4,2,1,80,0,1
|
||||
149638,-100,4,2,1,80,0,1
|
||||
149862,-100,4,2,1,80,0,1
|
||||
151429,-100,4,2,1,80,0,1
|
||||
151877,-100,4,2,1,80,0,1
|
||||
152325,-100,4,2,1,80,0,1
|
||||
152772,-100,4,2,1,80,0,1
|
||||
154563,-100,4,2,1,80,0,1
|
||||
154787,-100,4,2,1,80,0,1
|
||||
156354,-100,4,2,1,80,0,0
|
||||
159041,-100,4,2,1,80,0,0
|
||||
159936,-100,4,2,1,80,0,0
|
||||
161168,-100,4,2,0,80,0,0
|
||||
161728,-100,4,2,1,80,0,0
|
||||
162623,-100,4,2,1,80,0,1
|
||||
163519,-100,4,2,1,80,0,0
|
||||
164414,-100,4,2,1,80,0,1
|
||||
165310,-100,4,2,1,80,0,0
|
||||
166205,-100,4,2,1,80,0,1
|
||||
167101,-100,4,2,1,80,0,0
|
||||
168332,-100,4,2,1,80,0,0
|
||||
168892,-100,4,2,1,80,0,0
|
||||
169787,-100,4,2,1,80,0,1
|
||||
170683,-100,4,2,1,80,0,0
|
||||
171578,-100,4,2,1,80,0,1
|
||||
172474,-100,4,2,1,80,0,0
|
||||
173369,-100,4,2,1,80,0,1
|
||||
173705,-100,4,2,1,80,0,0
|
||||
173929,-100,4,2,0,80,0,0
|
||||
174265,-100,4,2,1,80,0,0
|
||||
175048,-100,4,2,1,80,0,0
|
||||
175608,-100,4,2,1,80,0,0
|
||||
175832,-100,4,2,1,80,0,0
|
||||
176056,-100,4,2,1,80,0,1
|
||||
186131,-100,4,2,1,80,0,1
|
||||
186354,-100,4,2,1,80,0,1
|
||||
190384,-100,4,2,1,80,0,0
|
||||
206504,-100,4,2,1,80,0,0
|
||||
206839,-100,4,2,1,80,0,0
|
||||
207175,-100,4,2,1,80,0,0
|
||||
207399,-100,4,2,1,80,0,0
|
||||
207623,-100,4,2,1,80,0,0
|
||||
208071,-100,4,2,1,80,0,0
|
||||
208295,-100,4,2,1,80,0,0
|
||||
219041,-100,4,2,1,80,0,0
|
||||
220832,-100,4,2,1,80,0,0
|
||||
223071,-100,4,2,1,80,0,1
|
||||
223407,-100,4,2,1,80,0,0
|
||||
224414,-100,4,2,1,80,0,1
|
||||
225086,-100,4,2,1,80,0,1
|
||||
225422,-100,4,2,1,80,0,0
|
||||
226205,-100,4,2,1,80,0,1
|
||||
230235,-100,4,2,1,80,0,1
|
||||
230683,-100,4,2,1,80,0,1
|
||||
232026,-100,4,2,1,80,0,1
|
||||
232474,-100,4,2,1,80,0,1
|
||||
232922,-100,4,2,1,80,0,1
|
||||
233369,-100,4,2,1,80,0,1
|
||||
236951,-100,4,2,1,80,0,0
|
||||
239414,-100,4,2,1,80,0,0
|
||||
240533,-100,4,2,1,80,0,0
|
||||
244116,-100,4,2,1,80,0,0
|
||||
247698,-100,4,2,1,80,0,0
|
||||
250384,-100,4,2,1,80,0,0
|
||||
251280,-100,4,2,1,80,0,0
|
||||
251616,-100,4,2,1,80,0,0
|
||||
251951,-100,4,2,1,80,0,0
|
||||
252175,-100,4,2,1,80,0,0
|
||||
252623,-100,4,2,1,80,0,0
|
||||
253071,-100,4,2,1,80,0,0
|
||||
259563,-100,4,2,1,80,0,0
|
||||
260235,-100,4,2,1,80,0,0
|
||||
263593,-100,4,2,1,80,0,0
|
||||
263817,-100,4,2,1,80,0,0
|
||||
267399,-100,4,2,1,80,0,0
|
||||
268742,-100,4,2,1,80,0,0
|
||||
269414,-100,4,2,1,5,0,0
|
||||
|
||||
[HitObjects]
|
||||
333,114,534,6,0,B|379:97|379:97|497:110,2,160,4|0|0,3:2|0:2|0:2,0:0:0:0:
|
||||
182,204,1877,1,0,0:2:0:0:
|
||||
333,290,2325,6,0,B|385:301|385:301|441:292|441:292|497:303,2,160,4|0|0,3:2|0:2|0:2,0:0:0:0:
|
||||
182,204,3668,1,0,0:2:0:0:
|
||||
26,121,4116,6,0,L|30:34,2,80,12|8|8,3:2|0:2|0:2,0:0:0:0:
|
||||
20,297,5011,2,0,P|58:297|100:311,1,80,8|8,0:2|0:2,0:0:0:0:
|
||||
178,348,5459,2,0,P|217:335|258:335,1,80,8|8,0:2|0:2,0:0:0:0:
|
||||
308,264,5907,6,0,L|445:280,2,120,12|12|12,3:2|3:2|3:2,0:0:0:0:
|
||||
224,234,6802,2,0,P|197:171|223:66,1,160,12|12,3:2|0:2,0:0:0:0:
|
||||
372,10,7698,6,0,P|389:44|391:94,1,80,4|8,3:2|0:2,0:0:0:0:
|
||||
390,173,8145,2,0,L|516:164,2,120,0|0|8,3:2|0:2|0:2,0:0:0:0:
|
||||
330,237,9041,2,0,L|234:230,1,80,0|8,3:2|0:2,0:0:0:0:
|
||||
171,190,9489,6,0,P|118:184|79:197,1,80,0|8,3:2|0:2,0:0:0:0:
|
||||
9,219,9936,2,0,L|0:99,2,120,0|0|8,3:2|0:2|0:2,0:0:0:0:
|
||||
28,305,10832,2,0,P|67:300|105:311,1,80,0|8,3:2|0:2,0:0:0:0:
|
||||
184,353,11280,5,0,3:2:0:0:
|
||||
343,277,11728,2,0,P|404:295|470:285,2,120,0|0|8,3:2|0:2|0:2,0:0:0:0:
|
||||
290,206,12623,2,0,L|297:118,1,80,0|8,3:2|0:2,0:0:0:0:
|
||||
265,43,13071,6,0,P|222:34|179:42,1,80,0|8,3:2|0:2,0:0:0:0:
|
||||
123,100,13519,2,0,L|3:92,2,120,0|0|0,3:2|0:2|0:2,0:0:0:0:
|
||||
187,160,14414,1,8,0:2:0:0:
|
||||
184,336,14862,6,0,P|218:348|274:342,1,80,4|2,3:2|0:2,0:0:0:0:
|
||||
343,310,15310,2,0,L|466:328,2,120,2|2|0,0:2|0:2|3:2,0:0:0:0:
|
||||
297,234,16205,1,8,0:2:0:0:
|
||||
219,76,16653,6,0,P|176:72|131:90,1,80,4|8,3:2|0:2,0:0:0:0:
|
||||
65,129,17101,2,0,P|26:85|17:27,2,120,0|0|8,3:2|0:2|0:2,0:0:0:0:
|
||||
144,170,17996,2,0,L|137:250,1,80,0|8,3:2|0:2,0:0:0:0:
|
||||
156,336,18444,6,0,P|198:347|241:341,1,80,0|8,3:2|0:2,0:0:0:0:
|
||||
309,296,18892,2,0,L|430:310,2,120,0|0|8,3:2|0:2|0:2,0:0:0:0:
|
||||
237,245,19787,2,0,P|229:197|236:162,1,80,0|8,3:2|0:2,0:0:0:0:
|
||||
296,103,20235,6,0,P|344:95|379:102,1,80,0|8,3:2|0:2,0:0:0:0:
|
||||
441,157,20683,2,0,P|423:95|448:35,2,120,0|0|8,3:2|0:2|0:2,0:0:0:0:
|
||||
501,220,21578,1,0,3:2:0:0:
|
||||
386,353,22026,6,0,B|304:367|241:304|241:304|164:362|79:328,2,320,0|2|0,3:2|3:2|3:2,0:0:0:0:
|
||||
465,315,24041,5,12,0:2:0:0:
|
||||
497,233,24265,2,0,L|486:100,2,120,0|0|8,3:2|0:2|0:2,0:0:0:0:
|
||||
410,247,25160,2,0,P|365:251|331:241,1,80,0|8,3:2|0:2,0:0:0:0:
|
||||
262,187,25608,6,0,P|223:176|183:181,1,80,0|8,3:2|0:2,0:0:0:0:
|
||||
136,254,26056,2,0,L|145:381,2,120,0|0|8,3:2|0:2|0:2,0:0:0:0:
|
||||
67,198,26951,1,0,3:2:0:0:
|
||||
118,29,27399,6,0,P|170:19|228:167,1,240,4|8,3:2|0:2,0:0:0:0:
|
||||
162,107,28295,2,0,B|240:90|240:90|316:114|316:114|409:97,1,240,4|8,3:2|0:2,0:0:0:0:
|
||||
481,84,29190,5,0,3:2:0:0:
|
||||
499,170,29414,1,12,0:2:0:0:
|
||||
454,246,29638,2,0,L|472:376,2,120,8|8|0,0:2|3:2|0:0,0:0:0:0:
|
||||
375,205,30533,2,0,P|329:207|286:227,1,80,8|8,0:2|0:2,0:0:0:0:
|
||||
220,263,30981,6,0,P|144:238|52:250,2,160,4|2|2,3:3|3:3|3:3,0:0:0:0:
|
||||
365,362,32325,1,2,3:3:0:0:
|
||||
480,229,32772,6,0,L|464:55,1,160,2|2,3:3|3:3,0:0:0:0:
|
||||
393,18,33444,1,10,0:3:0:0:
|
||||
323,72,33668,2,0,L|243:64,1,80,2|10,3:3|0:3,0:0:0:0:
|
||||
162,27,34116,2,0,L|82:35,1,80,2|10,3:3|0:3,0:0:0:0:
|
||||
31,106,34563,6,0,P|9:176|23:263,2,160,2|2|2,3:3|3:3|3:3,0:0:0:0:
|
||||
183,194,35907,1,2,3:3:0:0:
|
||||
336,278,36354,6,0,P|407:241|496:243,2,160,2|2|0,3:3|3:3|3:2,0:0:0:0:
|
||||
278,344,37474,1,0,3:2:0:0:
|
||||
218,278,37698,2,0,P|180:262|137:257,1,80,8|0,0:2|0:2,0:0:0:0:
|
||||
55,272,38145,6,0,B|29:230|29:230|47:114,1,160,4|8,3:2|0:2,0:0:0:0:
|
||||
188,16,39041,2,0,B|214:58|214:58|196:174,1,160,2|8,3:3|0:2,0:0:0:0:
|
||||
305,306,39936,6,0,B|348:305|380:330|380:330|405:305|459:300,1,160,2|8,3:3|0:2,0:0:0:0:
|
||||
486,127,40832,2,0,P|475:67|430:19,2,120,4|12|12,3:2|0:2|0:2,0:0:0:0:
|
||||
415,180,41728,6,0,P|334:166|260:194,2,160,8|8|8,0:2|0:2|0:2,0:0:0:0:
|
||||
353,344,43071,1,8,0:2:0:0:
|
||||
181,303,43519,6,0,L|16:319,1,160,8|8,0:2|0:2,0:0:0:0:
|
||||
21,142,44414,2,0,L|186:158,1,160,8|8,0:2|0:2,0:0:0:0:
|
||||
257,114,45086,1,0,3:2:0:0:
|
||||
329,63,45310,6,0,P|485:169|281:268,1,480,12|8,0:2|0:2,0:0:0:0:
|
||||
257,114,47101,6,0,B|200:92|200:92|130:110,2,120,12|12|12,0:2|0:2|0:2,0:0:0:0:
|
||||
336,151,47996,1,12,0:2:0:0:
|
||||
417,185,48220,2,0,L|507:180,2,80,8|8|8,0:2|0:2|0:2,0:0:0:0:
|
||||
379,264,48892,6,0,P|338:281|294:280,1,80,4|10,3:2|0:2,0:0:0:0:
|
||||
218,257,49339,2,0,P|257:302|263:376,2,120,0|0|10,3:2|0:2|0:2,0:0:0:0:
|
||||
142,210,50235,2,0,L|135:124,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
75,65,50683,6,0,P|132:92|231:60,1,160,0|0,3:2|0:0,0:0:0:0:
|
||||
295,116,51354,2,0,P|352:89|451:121,1,160,10|10,0:2|0:2,0:0:0:0:
|
||||
498,180,52026,1,0,3:2:0:0:
|
||||
404,329,52474,6,0,L|320:323,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
251,272,52922,2,0,P|206:288|132:281,2,120,0|0|10,3:2|0:2|0:2,0:0:0:0:
|
||||
298,196,53817,2,0,L|295:111,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
249,40,54265,6,0,B|189:34|189:34|145:50|145:50|73:41,1,160,0|0,3:2|3:2,0:0:0:0:
|
||||
8,197,55160,2,0,P|46:210|95:206,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
165,171,55608,2,0,P|203:158|252:162,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
329,173,56056,6,0,B|368:223|368:223|361:320,1,160,4|0,3:2|3:2,0:0:0:0:
|
||||
189,360,56951,2,0,P|146:358|102:342,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
44,288,57399,2,0,P|46:245|62:201,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
97,131,57847,6,0,B|153:113|203:139|203:139|258:107,1,160,0|0,3:2|3:2,0:0:0:0:
|
||||
396,20,58742,2,0,L|409:118,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
473,156,59190,2,0,L|460:254,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
450,322,59638,6,0,P|380:312|293:343,1,160,4|4,3:2|3:2,0:0:0:0:
|
||||
215,373,60310,1,10,0:2:0:0:
|
||||
127,363,60534,2,0,L|121:273,1,80,4|10,3:2|0:0,0:0:0:0:
|
||||
116,195,60981,1,4,3:2:0:0:
|
||||
110,18,61429,6,0,P|166:33|232:23,2,120,4|0|10,3:2|0:2|0:2,0:0:0:0:
|
||||
22,13,62325,2,0,L|18:107,1,80,0|0,3:2|0:2,0:0:0:0:
|
||||
10,180,62772,1,8,0:2:0:0:
|
||||
76,238,62996,1,0,3:2:0:0:
|
||||
154,197,63220,6,0,P|194:194|242:207,1,80,0|14,3:2|0:2,0:0:0:0:
|
||||
307,250,63668,2,0,L|303:371,2,120,0|0|10,3:2|0:2|0:2,0:0:0:0:
|
||||
311,162,64563,2,0,P|351:159|399:172,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
435,243,65011,6,0,L|427:53,1,160,0|0,3:2|0:0,0:0:0:0:
|
||||
350,41,65683,2,0,P|282:66|196:50,1,160,10|10,0:2|0:2,0:0:0:0:
|
||||
116,17,66354,1,0,3:2:0:0:
|
||||
44,177,66802,6,0,P|40:219|56:268,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
131,287,67250,2,0,P|83:294|29:360,2,120,0|0|10,3:2|0:2|0:2,0:0:0:0:
|
||||
206,332,68145,2,0,L|306:325,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
354,270,68593,6,0,B|360:215|360:215|340:168|340:168|348:100,1,160,0|0,3:2|3:2,0:0:0:0:
|
||||
479,230,69489,2,0,L|470:322,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
395,354,69936,2,0,P|357:363|307:352,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
239,314,70384,6,0,B|179:303|125:325|125:325|84:301,1,160,4|0,3:2|3:2,0:0:0:0:
|
||||
11,143,71280,2,0,L|114:130,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
152,69,71728,2,0,L|255:82,1,80,0|10,3:2|0:0,0:0:0:0:
|
||||
271,157,72175,6,0,P|271:100|345:26,1,160,4|4,3:2|3:2,0:0:0:0:
|
||||
425,16,72847,1,10,0:2:0:0:
|
||||
489,75,73071,2,0,L|481:176,1,80,4|10,3:2|0:2,0:0:0:0:
|
||||
408,203,73519,2,0,L|416:304,1,80,4|0,3:2|0:0,0:0:0:0:
|
||||
482,338,73966,6,0,B|402:317|398:370|320:339,1,160,4|0,3:2|3:2,0:0:0:0:
|
||||
157,287,74862,2,0,L|71:295,2,80,0|10|0,3:2|0:2|3:2,0:0:0:0:
|
||||
226,231,75534,1,10,0:2:0:0:
|
||||
288,169,75757,6,0,P|357:197|451:165,2,160,4|0|0,3:2|3:2|3:2,0:0:0:0:
|
||||
225,106,76877,2,0,L|233:21,2,80,0|8|0,0:0|0:2|3:2,0:0:0:0:
|
||||
172,176,77548,6,0,B|145:218|145:218|165:339,1,160,4|12,3:2|0:2,0:0:0:0:
|
||||
9,239,78444,2,0,B|36:197|36:197|16:76,1,160,0|12,3:2|0:2,0:0:0:0:
|
||||
186,37,79339,6,0,P|236:79|349:68,1,160,0|12,3:2|0:2,0:0:0:0:
|
||||
405,37,80011,1,0,0:2:0:0:
|
||||
482,77,80235,2,0,L|472:159,1,80,0|0,3:2|3:2,0:0:0:0:
|
||||
392,195,80683,2,0,L|402:277,1,80,12|8,0:2|0:2,0:0:0:0:
|
||||
474,324,81131,6,0,P|422:301|298:337,1,160,6|2,3:2|0:2,0:0:0:0:
|
||||
148,296,82026,2,0,P|125:244|161:120,1,160,6|2,3:2|0:2,0:0:0:0:
|
||||
287,44,82922,6,0,B|364:10|444:39|444:39|356:94|357:165|357:165|441:232|413:331,1,480,6|10,3:2|0:2,0:0:0:0:
|
||||
242,304,84713,6,0,L|111:320,2,120,12|12|12,3:2|3:2|3:2,0:0:0:0:
|
||||
277,223,85608,2,0,P|214:163|127:159,1,160,12|8,3:2|0:2,0:0:0:0:
|
||||
11,270,86504,5,4,3:2:0:0:
|
||||
321,111,93668,6,0,P|261:76|315:180,2,320,4|0|4,3:2|0:0|3:2,0:0:0:0:
|
||||
321,111,97250,6,0,B|393:147|468:85|468:85|424:181|468:248,2,320,0|0|0,3:2|0:0|3:2,0:0:0:0:
|
||||
321,111,100832,6,0,B|284:85|246:78|246:78|175:111|175:111|91:89|91:89|56:104|31:129,2,320,0|2|0,3:2|0:2|3:2,0:0:0:0:
|
||||
385,170,102847,5,12,0:2:0:0:
|
||||
322,231,103071,2,0,L|185:220,2,120,0|0|8,3:2|0:2|0:2,0:0:0:0:
|
||||
404,262,103966,2,0,P|401:311|382:350,1,80,0|8,3:2|0:2,0:0:0:0:
|
||||
308,374,104414,6,0,P|259:371|220:352,1,80,0|8,3:2|0:2,0:0:0:0:
|
||||
164,300,104862,2,0,L|35:315,2,120,0|0|8,3:2|0:2|0:2,0:0:0:0:
|
||||
202,221,105757,1,0,3:2:0:0:
|
||||
276,61,106205,6,0,P|371:63|426:190,1,240,4|8,3:2|0:2,0:0:0:0:
|
||||
354,230,107101,2,0,B|280:260|202:209|202:209|162:220|122:249,1,240,4|8,3:2|0:2,0:0:0:0:
|
||||
55,290,107996,5,0,3:2:0:0:
|
||||
0,220,108220,1,12,0:2:0:0:
|
||||
43,143,108444,2,0,L|37:23,2,120,8|8|0,0:2|3:2|0:2,0:0:0:0:
|
||||
128,164,109339,2,0,P|167:161|212:139,1,80,8|8,0:2|0:2,0:0:0:0:
|
||||
242,64,109787,6,0,P|227:110|276:215,2,160,4|2|2,3:3|3:3|3:3,0:0:0:0:
|
||||
411,14,111131,1,2,3:3:0:0:
|
||||
503,163,111578,6,0,L|484:335,1,160,2|2,3:3|3:3,0:0:0:0:
|
||||
405,360,112250,1,10,0:3:0:0:
|
||||
333,308,112474,2,0,L|250:316,1,80,2|10,3:3|0:3,0:0:0:0:
|
||||
175,357,112922,2,0,L|92:349,1,80,2|10,3:3|0:3,0:0:0:0:
|
||||
28,292,113369,6,0,P|13:201|47:120,2,160,2|2|2,3:3|3:3|3:3,0:0:0:0:
|
||||
190,222,114713,1,2,3:3:0:0:
|
||||
349,148,115160,6,0,B|433:133|419:192|504:176,2,160,2|2|0,3:3|3:3|3:2,0:0:0:0:
|
||||
265,176,116280,1,0,3:2:0:0:
|
||||
224,254,116504,2,0,L|239:354,1,80,8|0,0:2|0:2,0:0:0:0:
|
||||
320,357,116951,6,0,B|428:339|428:339|485:355,1,160,4|8,3:2|0:2,0:0:0:0:
|
||||
501,176,117847,2,0,B|393:194|393:194|336:178,1,160,2|8,3:3|0:2,0:0:0:0:
|
||||
200,78,118742,6,0,B|159:68|120:86|120:86|86:64|44:71,1,160,2|8,3:3|0:2,0:0:0:0:
|
||||
16,244,119638,2,0,L|30:372,2,120,4|12|12,3:2|0:2|0:2,0:0:0:0:
|
||||
88,193,120534,6,0,B|142:216|142:216|266:202,2,160,8|8|8,0:2|0:2|0:2,0:0:0:0:
|
||||
172,38,121877,1,8,0:2:0:0:
|
||||
322,129,122325,6,0,P|351:191|322:281,1,160,8|8,0:2|0:2,0:0:0:0:
|
||||
150,284,123220,2,0,P|121:222|150:132,1,160,8|8,0:2|0:2,0:0:0:0:
|
||||
194,63,123892,1,0,3:2:0:0:
|
||||
277,35,124116,6,0,B|353:64|424:16|424:16|380:99|432:172|432:172|347:133|256:169,1,480,4|8,0:2|0:2,0:0:0:0:
|
||||
121,246,125907,6,0,L|133:371,2,120,12|12|12,3:2|3:2|3:2,0:0:0:0:
|
||||
104,160,126802,1,12,3:2:0:0:
|
||||
88,72,127026,2,0,P|49:66|10:73,2,80,8|8|8,0:2|0:2|0:2,0:0:0:0:
|
||||
171,103,127698,6,0,L|257:94,1,80,4|10,3:2|0:2,0:0:0:0:
|
||||
333,66,128145,2,0,P|395:41|463:49,2,120,0|0|10,3:2|0:2|0:2,0:0:0:0:
|
||||
318,153,129041,2,0,L|312:254,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
304,320,129489,6,0,P|367:359|471:352,1,160,0|0,3:2|0:0,0:0:0:0:
|
||||
506,291,130160,2,0,L|489:116,1,160,10|10,0:2|0:2,0:0:0:0:
|
||||
483,43,130832,1,0,3:2:0:0:
|
||||
308,67,131280,6,0,P|270:81|216:76,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
142,85,131728,2,0,L|157:220,2,120,0|0|10,3:2|0:2|0:2,0:0:0:0:
|
||||
55,69,132623,2,0,L|43:169,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
33,235,133071,6,0,P|65:294|164:331,1,160,0|0,3:2|3:2,0:0:0:0:
|
||||
275,210,133966,2,0,L|363:214,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
389,294,134414,2,0,L|477:290,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
503,208,134862,6,0,B|511:92|511:92|489:44,1,160,4|0,3:2|3:2,0:0:0:0:
|
||||
318,30,135757,2,0,L|230:34,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
204,114,136205,2,0,L|116:110,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
49,62,136653,6,0,B|15:110|19:171|19:171|42:219,1,160,0|0,3:2|3:2,0:0:0:0:
|
||||
200,278,137548,2,0,P|215:245|220:193,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
204,114,137996,2,0,P|189:81|184:29,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
270,23,138444,6,0,B|322:48|322:48|446:22,1,160,4|4,3:2|3:2,0:0:0:0:
|
||||
490,83,139116,1,10,0:2:0:0:
|
||||
504,169,139339,2,0,P|503:213|486:254,1,80,4|10,3:2|0:2,0:0:0:0:
|
||||
428,309,139787,1,4,3:2:0:0:
|
||||
268,241,140235,6,0,P|272:303|278:371,2,120,4|0|10,3:2|0:2|0:2,0:0:0:0:
|
||||
207,176,141131,2,0,L|107:180,1,80,0|0,3:2|0:2,0:0:0:0:
|
||||
39,184,141578,1,8,0:2:0:0:
|
||||
8,101,141802,1,0,3:2:0:0:
|
||||
71,40,142026,6,0,P|127:30|162:36,1,80,0|14,3:2|0:2,0:0:0:0:
|
||||
220,85,142474,2,0,L|342:76,2,120,0|0|10,3:2|0:2|0:2,0:0:0:0:
|
||||
158,148,143369,2,0,P|150:196|161:241,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
192,306,143817,6,0,B|282:279|272:350|373:314,1,160,0|0,3:2|0:0,0:0:0:0:
|
||||
431,294,144489,2,0,L|440:125,1,160,10|10,0:2|0:2,0:0:0:0:
|
||||
448,46,145160,1,0,3:2:0:0:
|
||||
272,31,145608,6,0,P|223:30|180:43,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
127,96,146056,2,0,L|8:86,2,120,0|0|10,3:2|0:2|0:2,0:0:0:0:
|
||||
193,154,146951,2,0,P|194:203|181:246,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
109,276,147399,6,0,B|165:270|165:270|212:283|212:283|271:276,1,160,0|0,3:2|3:2,0:0:0:0:
|
||||
441,253,148295,2,0,L|445:166,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
482,93,148742,2,0,L|478:6,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
390,23,149190,6,0,B|351:44|351:44|215:33,1,160,4|0,3:2|3:2,0:0:0:0:
|
||||
59,21,150086,2,0,P|43:61|44:104,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
94,169,150534,2,0,P|110:209|109:252,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
42,301,150981,6,0,P|112:280|190:309,1,160,4|4,3:2|3:2,0:0:0:0:
|
||||
257,368,151653,1,10,0:2:0:0:
|
||||
335,327,151877,2,0,L|327:241,1,80,4|10,3:2|0:2,0:0:0:0:
|
||||
264,185,152325,2,0,L|272:99,1,80,12|8,0:0|0:0,0:0:0:0:
|
||||
318,30,152772,6,0,P|392:21|479:78,1,160,4|0,3:2|3:2,0:0:0:0:
|
||||
494,234,153668,2,0,L|509:340,2,80,0|10|0,3:2|0:2|3:2,0:0:0:0:
|
||||
413,198,154339,1,10,0:2:0:0:
|
||||
332,234,154563,6,0,P|275:249|179:220,2,160,4|0|0,3:2|3:2|3:2,0:0:0:0:
|
||||
413,198,155683,2,0,L|500:212,2,80,0|8|0,0:2|0:2|3:2,0:0:0:0:
|
||||
379,116,156354,6,0,B|340:88|340:88|200:105,1,160,4|12,3:2|0:2,0:0:0:0:
|
||||
103,225,157250,2,0,B|142:197|142:197|282:214,1,160,0|12,3:2|0:2,0:0:0:0:
|
||||
131,338,158145,6,0,P|53:330|-1:274,1,160,0|12,3:2|0:2,0:0:0:0:
|
||||
14,187,158817,1,0,0:2:0:0:
|
||||
54,108,159041,2,0,L|144:98,1,80,0|0,3:2|3:2,0:0:0:0:
|
||||
194,35,159489,2,0,L|284:45,1,80,12|8,0:2|0:2,0:0:0:0:
|
||||
354,78,159936,6,0,P|379:136|369:252,1,160,4|0,3:2|0:2,0:0:0:0:
|
||||
242,346,160832,2,0,P|217:288|227:172,1,160,4|0,3:2|0:2,0:0:0:0:
|
||||
354,78,161728,5,4,3:2:0:0:
|
||||
182,37,162175,2,0,L|98:30,1,80,10|2,0:2|3:2,0:0:0:0:
|
||||
22,68,162623,2,0,B|5:128|5:128|20:185,2,120,12|12|12,0:2|0:2|0:2,0:0:0:0:
|
||||
98,112,163519,5,4,3:2:0:0:
|
||||
202,253,163966,2,0,L|303:248,1,80,10|2,0:2|3:2,0:0:0:0:
|
||||
355,199,164414,2,0,B|415:182|415:182|472:197,2,120,12|12|12,0:2|0:2|0:2,0:0:0:0:
|
||||
274,161,165310,5,4,3:2:0:0:
|
||||
110,225,165757,2,0,L|125:325,1,80,10|2,0:2|3:2,0:0:0:0:
|
||||
188,362,166205,2,0,B|248:379|248:379|305:364,2,120,12|12|12,0:2|0:2|0:2,0:0:0:0:
|
||||
206,275,167101,6,0,P|262:242|380:262,2,160,4|12|12,3:2|0:2|0:2,0:0:0:0:
|
||||
98,352,168332,2,0,L|78:212,1,120,4|8,3:2|0:2,0:0:0:0:
|
||||
74,144,168892,5,4,3:2:0:0:
|
||||
246,110,169339,2,0,L|330:120,1,80,10|2,0:2|3:2,0:0:0:0:
|
||||
385,184,169787,2,0,B|445:167|445:167|502:182,2,120,12|12|12,0:2|0:2|0:2,0:0:0:0:
|
||||
304,221,170683,5,4,3:2:0:0:
|
||||
161,117,171131,2,0,L|59:124,1,80,10|2,0:2|3:2,0:0:0:0:
|
||||
22,188,171578,2,0,B|5:248|5:248|20:305,2,120,12|12|12,0:2|0:2|0:2,0:0:0:0:
|
||||
108,207,172474,1,4,3:2:0:0:
|
||||
279,244,172922,6,0,L|365:238,1,80,10|2,0:2|3:2,0:0:0:0:
|
||||
385,154,173369,2,0,B|445:171|445:171|502:156,2,120,12|12|4,0:2|0:2|0:3,0:0:0:0:
|
||||
307,111,174265,6,0,L|211:122,1,80,6|2,0:2|3:2,0:0:0:0:
|
||||
148,159,174713,2,0,L|5:142,2,120,14|6|0,0:2|3:2|0:2,0:0:0:0:
|
||||
222,206,175608,1,8,0:2:0:0:
|
||||
387,266,176056,6,0,P|416:206|409:150,2,120,6|2|8,3:2|0:2|0:2,0:0:0:0:
|
||||
302,291,176951,2,0,B|212:264|234:332|122:296,1,160,0|2,3:2|3:2,0:0:0:0:
|
||||
66,266,177623,1,10,0:2:0:0:
|
||||
93,182,177847,6,0,L|197:173,2,80,2|10|2,3:2|0:2|3:2,0:0:0:0:
|
||||
20,131,178519,2,0,P|47:58|150:26,1,160,10|8,0:2|0:2,0:0:0:0:
|
||||
205,17,179190,1,0,3:2:0:0:
|
||||
381,12,179638,6,0,L|485:21,1,80,2|10,3:2|0:2,0:0:0:0:
|
||||
499,99,180086,2,0,P|500:152|472:220,2,120,2|2|10,3:2|0:2|0:2,0:0:0:0:
|
||||
411,111,180981,1,2,3:2:0:0:
|
||||
237,142,181429,6,0,L|139:134,1,80,2|10,3:2|0:2,0:0:0:0:
|
||||
69,124,181877,2,0,P|48:55|48:-4,2,120,2|2|12,3:2|0:2|0:2,0:0:0:0:
|
||||
102,205,182772,1,4,3:2:0:0:
|
||||
172,258,182996,1,12,0:2:0:0:
|
||||
258,276,183220,6,0,B|350:261|319:316|412:306,1,160,2|2,3:2|3:2,0:0:0:0:
|
||||
500,154,184116,2,0,L|509:25,2,120,2|2|10,3:2|0:2|0:2,0:0:0:0:
|
||||
424,198,185011,6,0,P|354:203|335:196,1,80,2|10,3:2|0:2,0:0:0:0:
|
||||
273,148,185459,2,0,P|185:136|141:162,1,120,2|2,3:2|0:2,0:0:0:0:
|
||||
66,243,186131,2,0,B|108:269|108:269|218:257,1,160,14|10,0:2|0:2,0:0:0:0:
|
||||
301,230,186802,6,0,L|398:240,1,80,2|10,3:2|0:2,0:0:0:0:
|
||||
468,250,187250,2,0,P|483:178|488:111,2,120,2|2|10,3:2|0:2|0:2,0:0:0:0:
|
||||
430,329,188145,1,2,3:2:0:0:
|
||||
255,364,188593,6,0,L|157:353,1,80,2|14,3:2|0:2,0:0:0:0:
|
||||
140,274,189041,2,0,P|68:289|1:294,2,120,2|2|0,3:2|3:2|0:0,0:0:0:0:
|
||||
205,215,189936,1,0,3:2:0:0:
|
||||
297,64,190384,6,0,L|424:52,2,120,4|0|10,3:3|0:2|0:3,0:0:0:0:
|
||||
233,125,191280,2,0,P|263:228|384:244,1,240,2|10,3:3|0:3,0:0:0:0:
|
||||
468,231,192175,6,0,L|462:375,2,120,2|0|10,3:3|0:2|0:3,0:0:0:0:
|
||||
497,146,193071,2,0,P|461:39|348:26,1,240,2|10,3:3|0:3,0:0:0:0:
|
||||
292,94,193966,6,0,L|298:238,2,120,2|0|10,3:3|0:2|0:3,0:0:0:0:
|
||||
233,27,194862,2,0,P|120:39|84:147,1,240,2|10,3:3|0:3,0:0:0:0:
|
||||
120,227,195757,5,2,3:3:0:0:
|
||||
292,261,196205,2,0,L|436:247,2,120,2|0|10,3:3|0:2|0:3,0:0:0:0:
|
||||
224,317,197101,2,0,L|124:307,1,80,2|10,3:3|0:3,0:0:0:0:
|
||||
66,267,197548,6,0,P|49:324|12:370,2,120,6|0|10,3:3|0:2|0:3,0:0:0:0:
|
||||
42,181,198444,2,0,P|104:79|251:69,1,240,2|10,3:3|0:3,0:0:0:0:
|
||||
292,100,199339,6,0,B|344:83|344:83|418:94,2,120,2|0|10,3:3|0:2|0:3,0:0:0:0:
|
||||
235,168,200235,2,0,P|259:282|359:341,1,240,2|10,3:3|0:3,0:0:0:0:
|
||||
447,330,201131,5,6,3:3:0:0:
|
||||
472,156,201578,2,0,L|371:143,1,80,2|10,3:3|0:3,0:0:0:0:
|
||||
323,90,202026,2,0,P|264:83|212:50,2,120,6|0|10,3:3|0:2|0:3,0:0:0:0:
|
||||
370,15,202922,5,6,3:3:0:0:
|
||||
472,156,203369,2,0,L|457:251,1,80,2|10,3:3|0:3,0:0:0:0:
|
||||
373,256,203817,2,0,P|397:327|399:371,2,120,6|0|10,3:3|0:2|0:3,0:0:0:0:
|
||||
294,214,204713,6,0,B|224:243|224:243|111:225,1,160,6|6,3:3|3:3,0:0:0:0:
|
||||
29,93,205608,2,0,B|99:64|99:64|212:82,1,160,6|10,3:3|0:3,0:0:0:0:
|
||||
267,99,206280,1,2,3:3:0:0:
|
||||
344,141,206504,6,0,P|407:124|472:149,2,120,12|12|12,3:2|3:2|3:2,0:0:0:0:
|
||||
294,214,207399,2,0,P|325:292|499:216,1,320,12|4,3:2|3:2,0:0:0:0:
|
||||
256,192,215459,12,6,218145,3:2:0:0:
|
||||
205,114,219041,6,0,B|119:107|119:107|44:141,1,160,12|12,3:2|3:2,0:0:0:0:
|
||||
75,311,219936,2,0,B|161:318|161:318|236:284,1,160,12|12,3:2|3:2,0:0:0:0:
|
||||
337,149,220832,6,0,L|325:15,2,120,12|12|12,3:2|3:2|3:2,0:0:0:0:
|
||||
457,277,221951,2,0,L|447:377,2,80,0|8|8,3:2|0:2|0:2,0:0:0:0:
|
||||
471,189,222623,5,2,0:2:0:0:
|
||||
331,81,223071,2,0,B|279:103|279:103|200:94,2,120,4|8|0,3:2|0:2|3:2,0:0:0:0:
|
||||
399,26,223966,1,8,0:2:0:0:
|
||||
471,189,224414,6,0,L|453:333,1,120,12|12,3:2|3:2,0:0:0:0:
|
||||
326,335,225086,2,0,B|276:306|276:306|149:326,1,160,12|0,3:2|0:2,0:0:0:0:
|
||||
88,340,225757,2,0,P|75:299|76:251,1,80,8|8,0:2|0:2,0:0:0:0:
|
||||
140,204,226205,6,0,L|144:123,1,80,4|10,3:2|0:2,0:0:0:0:
|
||||
116,40,226653,2,0,P|58:49|3:25,2,120,0|0|10,3:2|0:2|0:2,0:0:0:0:
|
||||
202,21,227548,2,0,L|283:25,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
370,29,227996,6,0,B|404:72|404:72|392:196,1,160,0|0,3:2|3:2,0:0:0:0:
|
||||
291,320,228892,2,0,L|178:329,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
136,373,229339,2,0,L|23:364,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
20,285,229787,6,0,B|8:231|8:231|24:183|24:183|14:121,1,160,4|0,3:2|3:2,0:0:0:0:
|
||||
156,24,230683,2,0,P|182:74|187:103,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
264,138,231131,2,0,P|238:188|233:217,1,80,0|10,3:2|0:2,0:0:0:0:
|
||||
262,293,231578,6,0,B|312:314|312:314|440:299,1,160,4|4,3:2|3:2,0:0:0:0:
|
||||
479,239,232250,1,10,0:2:0:0:
|
||||
500,153,232474,2,0,P|499:119|481:77,1,80,4|10,3:2|0:2,0:0:0:0:
|
||||
396,50,232922,2,0,P|362:51|320:69,1,80,4|0,3:2|0:0,0:0:0:0:
|
||||
264,138,233369,6,0,B|173:153|201:102|101:116,1,160,4|0,3:2|3:2,0:0:0:0:
|
||||
39,277,234265,2,0,L|32:359,2,80,0|10|0,3:2|0:2|3:2,0:0:0:0:
|
||||
123,252,234936,1,10,0:2:0:0:
|
||||
206,225,235160,6,0,P|261:245|383:213,2,160,4|0|0,3:2|3:2|3:2,0:0:0:0:
|
||||
136,169,236280,2,0,L|48:175,2,80,0|8|0,0:2|0:2|3:2,0:0:0:0:
|
||||
203,112,236951,6,0,B|253:81|253:81|377:98,1,160,4|12,3:2|0:2,0:0:0:0:
|
||||
468,228,237847,2,0,B|418:197|418:197|294:214,1,160,0|12,3:2|0:2,0:0:0:0:
|
||||
180,321,238742,6,0,P|120:328|31:252,1,160,0|12,3:2|0:2,0:0:0:0:
|
||||
16,188,239414,1,0,0:2:0:0:
|
||||
65,115,239638,2,0,L|147:107,1,80,0|0,3:2|3:2,0:0:0:0:
|
||||
205,43,240086,2,0,L|287:51,1,80,12|0,0:2|0:2,0:0:0:0:
|
||||
366,83,240534,6,0,P|389:155|382:244,1,160,0|12,3:2|0:2,0:0:0:0:
|
||||
238,338,241429,2,0,P|215:266|222:177,1,160,0|12,3:2|0:2,0:0:0:0:
|
||||
297,24,242325,6,0,P|369:54|462:47,2,160,0|12|0,3:2|0:2|3:2,0:0:0:0:
|
||||
216,60,243444,1,0,3:2:0:0:
|
||||
136,96,243668,2,0,L|56:89,1,80,8|8,0:2|0:2,0:0:0:0:
|
||||
2,18,244116,6,0,P|26:102|26:206,1,160,4|0,3:2|3:2,0:0:0:0:
|
||||
5,259,244787,1,8,0:2:0:0:
|
||||
64,324,245011,2,0,L|156:326,1,80,0|8,3:2|0:2,0:0:0:0:
|
||||
223,364,245459,2,0,L|315:362,1,80,0|8,3:2|0:2,0:0:0:0:
|
||||
379,318,245907,6,0,P|395:247|390:145,1,160,4|0,3:2|3:2,0:0:0:0:
|
||||
240,72,246802,2,0,P|225:116|220:149,1,80,8|8,3:2|3:2,0:0:0:0:
|
||||
152,205,247250,2,0,P|167:249|172:282,1,80,8|8,3:2|3:2,0:0:0:0:
|
||||
118,352,247698,6,0,P|174:314|275:316,1,160,4|0,3:2|0:0,0:0:0:0:
|
||||
427,377,248593,2,0,P|465:321|463:220,1,160,4|0,3:2|0:0,0:0:0:0:
|
||||
411,63,249489,6,0,B|326:66|257:31|257:31|306:192|306:192|227:143|142:154,1,480,4|10,3:2|0:2,0:0:0:0:
|
||||
21,259,251280,6,0,L|32:378,2,120,12|12|12,3:2|3:2|3:2,0:0:0:0:
|
||||
2,173,252175,2,0,P|19:77|84:24,1,160,12|12,3:2|0:2,0:0:0:0:
|
||||
236,14,253071,5,4,3:2:0:0:
|
||||
293,276,259563,6,0,L|392:265,2,80,12|4|12,0:2|3:2|0:2,0:0:0:0:
|
||||
219,324,260235,5,0,3:2:0:0:
|
||||
115,181,260683,2,0,P|59:205|-18:200,2,120,0|0|8,3:2|0:2|0:2,0:0:0:0:
|
||||
189,133,261578,2,0,L|274:137,1,80,0|8,3:2|0:2,0:0:0:0:
|
||||
334,195,262026,6,0,L|419:191,1,80,0|8,3:2|0:2,0:0:0:0:
|
||||
480,132,262474,2,0,P|469:74|471:13,2,120,0|0|8,3:2|0:2|0:2,0:0:0:0:
|
||||
497,218,263369,2,0,P|500:258|494:305,1,80,0|8,3:2|0:2,0:0:0:0:
|
||||
434,361,263817,5,0,3:2:0:0:
|
||||
262,319,264265,2,0,L|138:333,2,120,0|0|8,3:2|0:2|0:2,0:0:0:0:
|
||||
329,262,265160,2,0,L|316:154,1,80,0|8,3:2|0:2,0:0:0:0:
|
||||
254,123,265608,6,0,P|205:120|161:140,1,80,0|8,3:2|0:2,0:0:0:0:
|
||||
95,164,266056,2,0,L|78:17,2,120,0|0|0,3:2|0:2|0:2,0:0:0:0:
|
||||
112,250,266951,1,8,0:2:0:0:
|
||||
178,308,267175,1,8,0:2:0:0:
|
||||
264,289,267399,6,0,P|301:284|368:300,1,80,2|2,3:2|0:2,0:0:0:0:
|
||||
395,218,267847,2,0,P|451:236|510:225,2,120,2|2|0,0:2|0:2|3:2,0:0:0:0:
|
||||
326,162,268742,6,0,B|274:185|274:185|158:154|158:154|231:119,1,240,12|0,0:2|0:0,0:0:0:0:
|
||||
+1
File diff suppressed because one or more lines are too long
@@ -0,0 +1,152 @@
|
||||
osu file format v14
|
||||
|
||||
[General]
|
||||
StackLeniency: 0.4
|
||||
Mode: 0
|
||||
|
||||
[Difficulty]
|
||||
HPDrainRate:6
|
||||
CircleSize:7
|
||||
OverallDifficulty:8
|
||||
ApproachRate:8
|
||||
SliderMultiplier:1.5
|
||||
SliderTickRate:1
|
||||
|
||||
[Events]
|
||||
//Background and Video events
|
||||
//Break Periods
|
||||
//Storyboard Layer 0 (Background)
|
||||
//Storyboard Layer 1 (Fail)
|
||||
//Storyboard Layer 2 (Pass)
|
||||
//Storyboard Layer 3 (Foreground)
|
||||
//Storyboard Sound Samples
|
||||
|
||||
[TimingPoints]
|
||||
42,401.875418620228,3,1,0,50,1,0
|
||||
18528,-100,3,1,0,40,0,0
|
||||
18930,-100,3,1,0,30,0,0
|
||||
19332,-100,3,1,0,50,0,1
|
||||
24154,-100,3,1,0,50,0,1
|
||||
27771,-100,3,1,0,50,0,0
|
||||
28977,-100,3,1,0,50,0,0
|
||||
30182,-100,3,1,0,50,0,0
|
||||
31388,-100,3,1,0,50,0,0
|
||||
32593,-100,3,1,0,50,0,0
|
||||
33799,-100,3,1,0,50,0,0
|
||||
|
||||
[HitObjects]
|
||||
288,165,42,6,0,P|255:181|209:175,1,75,4|0,0:0|0:0,0:0:0:0:
|
||||
125,38,443,2,0,P|155:58|173:101,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
95,236,845,2,0,P|97:199|125:162,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
250,271,1247,6,0,L|164:295,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
277,199,1649,2,0,L|363:175,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
448,85,2051,2,0,L|376:106,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
499,211,2453,6,0,P|502:258|491:298,1,75,4|0,0:0|0:0,0:0:0:0:
|
||||
397,374,2855,2,0,P|400:336|394:300,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
295,211,3257,2,0,P|298:248|292:284,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
134,307,3658,6,0,L|227:315,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
95,143,4060,2,0,L|134:228,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
217,28,4462,2,0,L|163:105,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
268,199,4864,6,0,P|261:152|270:113,1,75,4|0,0:0|0:0,0:0:0:0:
|
||||
418,214,5266,2,0,P|380:243|342:255,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
356,76,5668,2,0,P|400:93|429:120,1,75,4|0,0:0|0:0,0:0:0:0:
|
||||
265,125,6070,6,0,L|184:140,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
35,204,6472,2,0,L|116:219,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
265,283,6873,2,0,L|184:298,1,75,4|0,0:0|0:0,0:0:0:0:
|
||||
323,195,7275,6,0,P|366:203|403:237,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
493,117,7677,2,0,P|450:125|413:159,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
323,39,8079,2,0,P|366:47|403:81,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
273,140,8481,5,4,0:0:0:0:
|
||||
187,31,8682,1,0,0:0:0:0:
|
||||
101,140,8883,1,8,0:0:0:0:
|
||||
187,249,9084,1,0,0:0:0:0:
|
||||
101,358,9285,1,8,0:0:0:0:
|
||||
15,249,9486,1,0,0:0:0:0:
|
||||
187,249,9687,6,0,L|112:266,1,75,4|0,0:0|0:0,0:0:0:0:
|
||||
264,181,10088,2,0,L|286:107,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
287,283,10490,2,0,L|339:339,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
422,222,10892,6,0,P|425:180|411:133,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
287,283,11294,2,0,P|324:264|358:228,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
166,196,11696,2,0,P|200:219|248:230,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
332,83,12098,6,0,L|236:102,1,75,4|0,0:0|0:0,0:0:0:0:
|
||||
394,139,12500,2,0,L|490:158,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
332,195,12902,2,0,L|236:214,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
413,321,13303,6,0,P|419:253|399:213,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
327,121,13705,2,0,P|333:189|313:229,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
241,321,14107,2,0,P|247:253|227:213,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
118,175,14509,6,0,L|212:188,1,75,4|0,0:0|0:0,0:0:0:0:
|
||||
297,100,14911,2,0,L|238:174,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
273,292,15313,2,0,L|237:204,1,75,4|0,0:0|0:0,0:0:0:0:
|
||||
235,357,15715,6,0,P|272:368|321:351,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
441,286,16117,2,0,P|404:297|355:280,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
235,215,16518,2,0,P|272:226|321:209,1,75,4|0,0:0|0:0,0:0:0:0:
|
||||
436,127,16920,6,0,L|447:217,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
345,22,17322,2,0,L|428:57,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
208,48,17724,2,0,L|280:-6,1,75,4|0,0:0|0:0,0:0:0:0:
|
||||
187,162,18126,5,4,0:0:0:0:
|
||||
187,162,18528,1,8,0:0:0:0:
|
||||
187,162,18930,1,8,0:0:0:0:
|
||||
187,162,19332,5,4,0:0:0:0:
|
||||
187,263,19532,1,0,0:0:0:0:
|
||||
345,107,19733,1,8,0:0:0:0:
|
||||
257,157,19933,1,0,0:0:0:0:
|
||||
471,216,20135,1,8,0:0:0:0:
|
||||
384,165,20335,1,0,0:0:0:0:
|
||||
284,300,20537,5,4,0:0:0:0:
|
||||
371,249,20737,1,0,0:0:0:0:
|
||||
157,190,20938,1,8,0:0:0:0:
|
||||
244,241,21140,1,0,0:0:0:0:
|
||||
188,27,21340,1,4,0:0:0:0:
|
||||
188,127,21542,1,0,0:0:0:0:
|
||||
345,40,21743,5,4,0:0:0:0:
|
||||
250,77,21944,1,0,0:0:0:0:
|
||||
419,147,22145,2,0,L|328:147,1,75,4|0,0:0|0:0,0:0:0:0:
|
||||
196,219,22547,2,0,L|287:219,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
419,291,22948,5,4,0:0:0:0:
|
||||
344,224,23149,1,0,0:0:0:0:
|
||||
305,352,23350,2,0,P|310:313|305:269,1,75,4|0,0:0|0:0,0:0:0:0:
|
||||
240,122,23752,2,0,P|235:161|240:205,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
429,207,24154,6,0,L|342:213,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
232,272,24556,2,0,L|319:278,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
429,337,24958,2,0,L|342:343,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
501,280,25360,5,4,0:0:0:0:
|
||||
429,207,25561,1,0,0:0:0:0:
|
||||
491,62,25762,2,0,L|490:145,1,75,4|0,0:0|0:0,0:0:0:0:
|
||||
372,236,26163,2,0,L|373:153,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
372,7,26565,5,4,0:0:0:0:
|
||||
431,121,26766,1,0,0:0:0:0:
|
||||
372,236,26967,1,8,0:0:0:0:
|
||||
314,121,27168,1,0,0:0:0:0:
|
||||
254,236,27369,1,8,0:0:0:0:
|
||||
313,351,27570,1,0,0:0:0:0:
|
||||
372,236,27771,6,0,B|473:236|473:236|473:121|473:121|306:121,1,375,4|0,0:0|0:0,0:0:0:0:
|
||||
185,192,28977,6,0,B|256:214|256:214|328:192,1,150,4|0,0:0|0:0,0:0:0:0:
|
||||
256,94,29579,6,0,L|256:43,2,37.5,4|0|8,0:0|0:0|0:0,0:0:0:0:
|
||||
467,188,30182,5,4,0:0:0:0:
|
||||
395,307,30383,1,0,0:0:0:0:
|
||||
323,188,30584,1,8,0:0:0:0:
|
||||
251,307,30785,1,0,0:0:0:0:
|
||||
179,188,30986,1,8,0:0:0:0:
|
||||
107,307,31187,1,0,0:0:0:0:
|
||||
35,188,31388,6,0,L|35:39,1,150,4|0,0:0|0:0,0:0:0:0:
|
||||
105,116,31991,2,0,L|154:116,2,37.5,4|0|8,0:0|0:0|0:0,0:0:0:0:
|
||||
314,4,32593,5,4,0:0:0:0:
|
||||
434,66,32794,1,0,0:0:0:0:
|
||||
314,128,32995,1,8,0:0:0:0:
|
||||
434,190,33196,1,0,0:0:0:0:
|
||||
314,252,33397,1,8,0:0:0:0:
|
||||
434,314,33598,1,0,0:0:0:0:
|
||||
314,384,33799,6,0,L|357:313,1,75,4|0,0:0|0:0,0:0:0:0:
|
||||
117,340,34201,2,0,L|200:342,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
56,148,34603,2,0,L|95:221,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
192,0,35005,2,0,L|149:70,1,75,4|0,0:0|0:0,0:0:0:0:
|
||||
389,42,35407,2,0,L|305:39,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
450,234,35808,2,0,L|410:160,1,75,8|0,0:0|0:0,0:0:0:0:
|
||||
314,384,36210,1,4,0:0:0:0:
|
||||
123,192,36612,5,4,0:0:0:0:
|
||||
230,327,36813,1,0,0:0:0:0:
|
||||
337,192,37014,1,8,0:0:0:0:
|
||||
230,57,37215,1,0,0:0:0:0:
|
||||
232,193,37416,5,4,0:0:0:0:
|
||||
232,193,37516,1,0,0:0:0:0:
|
||||
232,193,37617,1,8,0:0:0:0:
|
||||
+1
File diff suppressed because one or more lines are too long
@@ -0,0 +1,977 @@
|
||||
osu file format v14
|
||||
|
||||
[General]
|
||||
StackLeniency: 0.7
|
||||
Mode: 0
|
||||
|
||||
[Difficulty]
|
||||
HPDrainRate:4.7
|
||||
CircleSize:3.7
|
||||
OverallDifficulty:8.4
|
||||
ApproachRate:9
|
||||
SliderMultiplier:1.57
|
||||
SliderTickRate:1
|
||||
|
||||
[Events]
|
||||
//Background and Video events
|
||||
//Break Periods
|
||||
2,78991,87033
|
||||
2,129518,133770
|
||||
2,224254,233560
|
||||
//Storyboard Layer 0 (Background)
|
||||
//Storyboard Layer 1 (Fail)
|
||||
//Storyboard Layer 2 (Pass)
|
||||
//Storyboard Layer 3 (Foreground)
|
||||
//Storyboard Layer 4 (Overlay)
|
||||
//Storyboard Sound Samples
|
||||
|
||||
[TimingPoints]
|
||||
476,315.789473684211,4,2,1,50,1,0
|
||||
1739,-212.76595744681,4,2,1,50,0,0
|
||||
17054,-212.76595744681,4,2,1,5,0,0
|
||||
17133,-212.76595744681,4,2,1,50,0,0
|
||||
17370,-212.76595744681,4,2,1,5,0,0
|
||||
17449,-212.76595744681,4,2,1,50,0,0
|
||||
17686,-212.76595744681,4,2,1,50,0,0
|
||||
17765,-212.76595744681,4,2,1,5,0,0
|
||||
17844,-212.76595744681,4,2,1,50,0,0
|
||||
18160,-103.092783505155,4,2,1,70,0,0
|
||||
27239,-212.76595744681,4,2,1,70,0,0
|
||||
27318,-103.092783505155,4,2,1,70,0,0
|
||||
27554,-212.76595744681,4,2,1,70,0,0
|
||||
27633,-103.092783505155,4,2,1,70,0,0
|
||||
28265,-114.942528735633,4,2,1,60,0,0
|
||||
38370,-129.87012987013,4,2,1,50,0,0
|
||||
47765,-129.87012987013,4,2,1,5,0,0
|
||||
47844,-129.87012987013,4,2,1,50,0,0
|
||||
48081,-129.87012987013,4,2,1,5,0,0
|
||||
48160,-129.87012987013,4,2,1,50,0,0
|
||||
48476,-103.092783505155,4,2,1,70,0,0
|
||||
68686,-114.942528735633,4,2,1,60,0,0
|
||||
78791,-129.87012987013,4,2,1,50,0,0
|
||||
79344,-129.87012987013,4,2,1,5,0,0
|
||||
79423,-129.87012987013,4,2,1,50,0,0
|
||||
81870,-129.87012987013,4,2,1,5,0,0
|
||||
81949,-129.87012987013,4,2,1,50,0,0
|
||||
82502,-129.87012987013,4,2,1,5,0,0
|
||||
82581,-129.87012987013,4,2,1,50,0,0
|
||||
87633,-114.942528735633,4,2,1,60,0,0
|
||||
87870,-114.942528735633,4,2,1,5,0,0
|
||||
87949,-114.942528735633,4,2,1,60,0,0
|
||||
88186,-114.942528735633,4,2,1,5,0,0
|
||||
88265,-114.942528735633,4,2,1,60,0,0
|
||||
88502,-114.942528735633,4,2,1,5,0,0
|
||||
88581,-114.942528735633,4,2,1,60,0,0
|
||||
88897,-93.4579439252336,4,2,1,75,0,0
|
||||
109107,-129.87012987013,4,2,1,70,0,0
|
||||
111239,-129.87012987013,4,2,1,5,0,0
|
||||
111318,-129.87012987013,4,2,1,70,0,0
|
||||
113765,-129.87012987013,4,2,1,5,0,0
|
||||
113844,-129.87012987013,4,2,1,70,0,0
|
||||
114160,-93.4579439252336,4,2,1,75,0,0
|
||||
119054,-103.092783505155,4,2,1,75,0,0
|
||||
119212,-103.092783505155,4,2,1,70,0,0
|
||||
119449,-103.092783505155,4,2,1,5,0,0
|
||||
119528,-103.092783505155,4,2,1,70,0,0
|
||||
120081,-103.092783505155,4,2,1,5,0,0
|
||||
120160,-103.092783505155,4,2,1,70,0,0
|
||||
120712,-103.092783505155,4,2,1,5,0,0
|
||||
120791,-103.092783505155,4,2,1,70,0,0
|
||||
121344,-103.092783505155,4,2,1,5,0,0
|
||||
121423,-103.092783505155,4,2,1,70,0,0
|
||||
121976,-103.092783505155,4,2,1,5,0,0
|
||||
122054,-103.092783505155,4,2,1,70,0,0
|
||||
122607,-103.092783505155,4,2,1,5,0,0
|
||||
122686,-103.092783505155,4,2,1,70,0,0
|
||||
122923,-103.092783505155,4,2,1,5,0,0
|
||||
123002,-103.092783505155,4,2,1,70,0,0
|
||||
124265,-93.4579439252336,4,2,1,75,0,0
|
||||
129318,-129.87012987013,4,2,1,50,0,0
|
||||
133502,-129.87012987013,4,2,1,5,0,0
|
||||
133581,-129.87012987013,4,2,1,50,0,0
|
||||
134370,-114.942528735633,4,2,1,70,0,0
|
||||
137133,-114.942528735633,4,2,1,5,0,0
|
||||
137212,-114.942528735633,4,2,1,70,0,0
|
||||
137449,-114.942528735633,4,2,1,5,0,0
|
||||
137528,-114.942528735633,4,2,1,70,0,0
|
||||
137765,-114.942528735633,4,2,1,5,0,0
|
||||
137844,-114.942528735633,4,2,1,70,0,0
|
||||
142502,-114.942528735633,4,2,1,5,0,0
|
||||
142581,-114.942528735633,4,2,1,70,0,0
|
||||
145976,-114.942528735633,4,2,1,5,0,0
|
||||
146054,-114.942528735633,4,2,1,70,0,0
|
||||
146291,-114.942528735633,4,2,1,5,0,0
|
||||
146370,-114.942528735633,4,2,1,70,0,0
|
||||
146607,-114.942528735633,4,2,1,5,0,0
|
||||
146686,-114.942528735633,4,2,1,70,0,0
|
||||
151344,-114.942528735633,4,2,1,5,0,0
|
||||
151423,-114.942528735633,4,2,1,70,0,0
|
||||
152054,-103.092783505155,4,2,1,70,0,0
|
||||
161133,-103.092783505155,4,2,1,5,0,0
|
||||
161212,-103.092783505155,4,2,1,70,0,0
|
||||
161449,-103.092783505155,4,2,1,5,0,0
|
||||
161528,-103.092783505155,4,2,1,70,0,0
|
||||
161765,-103.092783505155,4,2,1,5,0,0
|
||||
161844,-103.092783505155,4,2,1,70,0,0
|
||||
162160,-93.4579439252336,4,2,1,75,0,0
|
||||
182370,-129.87012987013,4,2,1,70,0,0
|
||||
184502,-129.87012987013,4,2,1,5,0,0
|
||||
184581,-129.87012987013,4,2,1,70,0,0
|
||||
187028,-129.87012987013,4,2,1,5,0,0
|
||||
187107,-129.87012987013,4,2,1,70,0,0
|
||||
187423,-93.4579439252336,4,2,1,75,0,0
|
||||
192318,-103.092783505155,4,2,1,75,0,0
|
||||
192476,-103.092783505155,4,2,1,70,0,0
|
||||
192712,-103.092783505155,4,2,1,5,0,0
|
||||
192791,-103.092783505155,4,2,1,70,0,0
|
||||
193344,-103.092783505155,4,2,1,5,0,0
|
||||
193423,-103.092783505155,4,2,1,70,0,0
|
||||
193976,-103.092783505155,4,2,1,5,0,0
|
||||
194054,-103.092783505155,4,2,1,70,0,0
|
||||
194607,-103.092783505155,4,2,1,5,0,0
|
||||
194686,-103.092783505155,4,2,1,70,0,0
|
||||
195239,-103.092783505155,4,2,1,5,0,0
|
||||
195318,-103.092783505155,4,2,1,70,0,0
|
||||
195870,-103.092783505155,4,2,1,5,0,0
|
||||
195949,-103.092783505155,4,2,1,70,0,0
|
||||
196186,-103.092783505155,4,2,1,5,0,0
|
||||
196265,-103.092783505155,4,2,1,70,0,0
|
||||
197528,-93.4579439252336,4,2,1,75,0,0
|
||||
202581,-129.87012987013,4,2,1,70,0,0
|
||||
203844,-103.092783505155,4,2,1,70,0,0
|
||||
224054,-129.87012987013,4,2,1,60,0,0
|
||||
235423,-93.4579439252336,4,2,1,75,0,0
|
||||
255633,-129.87012987013,4,2,1,60,0,0
|
||||
260686,-93.4579439252336,4,2,1,75,0,0
|
||||
265581,-103.092783505155,4,2,1,75,0,0
|
||||
265739,-103.092783505155,4,2,1,70,0,0
|
||||
265976,-103.092783505155,4,2,1,5,0,0
|
||||
266054,-103.092783505155,4,2,1,70,0,0
|
||||
266607,-103.092783505155,4,2,1,5,0,0
|
||||
266686,-103.092783505155,4,2,1,70,0,0
|
||||
267239,-103.092783505155,4,2,1,5,0,0
|
||||
267318,-103.092783505155,4,2,1,70,0,0
|
||||
267870,-103.092783505155,4,2,1,5,0,0
|
||||
267949,-103.092783505155,4,2,1,70,0,0
|
||||
268502,-103.092783505155,4,2,1,5,0,0
|
||||
268581,-103.092783505155,4,2,1,70,0,0
|
||||
269133,-103.092783505155,4,2,1,5,0,0
|
||||
269212,-103.092783505155,4,2,1,70,0,0
|
||||
269449,-103.092783505155,4,2,1,5,0,0
|
||||
269528,-103.092783505155,4,2,1,70,0,0
|
||||
270791,-93.4579439252336,4,2,1,75,0,0
|
||||
275844,-129.87012987013,4,2,1,60,0,0
|
||||
278370,-93.4579439252336,4,2,1,75,0,0
|
||||
278607,-93.4579439252336,4,2,1,5,0,0
|
||||
278686,-93.4579439252336,4,2,1,75,0,0
|
||||
278923,-93.4579439252336,4,2,1,5,0,0
|
||||
279002,-78.7401574803149,4,2,1,75,0,0
|
||||
279239,-78.7401574803149,4,2,1,5,0,0
|
||||
279318,-78.7401574803149,4,2,1,75,0,0
|
||||
279554,-78.7401574803149,4,2,1,5,0,0
|
||||
279633,-129.87012987013,4,2,1,70,0,0
|
||||
280265,-270.270270270271,4,2,1,70,0,0
|
||||
283423,-270.270270270271,4,2,1,10,0,0
|
||||
|
||||
[HitObjects]
|
||||
367,158,1739,6,0,B|277:179|338:219|236:236,1,147.579997748108,2|2,0:0|0:0,0:0:0:0:
|
||||
161,20,3002,6,0,P|188:41|234:156,1,147.579997748108,2|2,0:0|0:0,0:0:0:0:
|
||||
47,263,4265,6,0,P|91:234|115:230,1,73.789998874054,2|2,0:0|0:0,0:0:0:0:
|
||||
235,344,4897,2,0,P|299:349|342:311,1,110.684998311081,2|2,0:0|0:0,0:0:0:0:
|
||||
372,233,5528,2,0,P|351:171|339:79,1,147.579997748108,2|0,0:0|0:0,0:0:0:0:
|
||||
55,109,6791,6,0,P|89:141|126:149,1,73.789998874054,2|2,0:0|0:0,0:0:0:0:
|
||||
240,23,7423,2,0,P|203:58|189:121,1,110.684998311081,2|2,0:0|0:0,0:0:0:0:
|
||||
273,203,8054,2,0,P|300:186|348:175,2,73.789998874054,2|2|2,0:0|0:0|0:0,0:0:0:0:
|
||||
147,324,9002,2,0,P|124:323|97:314,1,36.894999437027,2|2,0:0|0:0,0:0:0:0:
|
||||
59,247,9318,6,0,P|51:213|39:175,2,73.789998874054,2|2|2,0:0|0:0|0:0,0:0:0:0:
|
||||
133,53,10265,1,2,0:0:0:0:
|
||||
256,192,10581,12,0,11844,0:0:0:0:
|
||||
256,192,13107,12,0,14370,0:0:0:0:
|
||||
74,66,15633,6,0,B|151:62|120:116|198:112,1,138.356247888851,2|2,0:0|0:0,0:0:0:0:
|
||||
189,105,17844,5,4,0:0:0:0:
|
||||
189,105,18160,6,0,P|222:130|274:136,1,76.1450018009148,6|2,1:2|0:0,0:0:0:0:
|
||||
402,27,18476,2,0,P|365:36|335:59,1,76.1450018009148,10|0,0:2|0:0,0:0:0:0:
|
||||
383,259,18791,2,0,P|400:173|404:106,1,152.29000360183,2|10,1:2|0:2,0:0:0:0:
|
||||
254,55,19265,1,0,0:0:0:0:
|
||||
178,227,19423,6,0,P|140:242|92:242,1,76.1450018009148,2|0,1:2|0:0,0:0:0:0:
|
||||
245,84,19739,2,0,P|282:86|317:100,1,76.1450018009148,10|0,0:2|0:0,0:0:0:0:
|
||||
287,315,20054,2,0,P|270:229|266:162,1,152.29000360183,2|8,1:2|0:2,0:0:0:0:
|
||||
167,252,20528,1,0,0:0:0:0:
|
||||
110,91,20686,6,0,P|77:65|24:58,1,76.1450018009148,6|0,1:2|0:0,0:0:0:0:
|
||||
158,225,21002,2,0,P|194:214|223:190,1,76.1450018009148,10|0,0:2|0:0,0:0:0:0:
|
||||
105,73,21318,2,0,P|72:47|19:40,1,76.1450018009148,2|0,1:2|0:0,0:0:0:0:
|
||||
153,207,21634,2,0,P|189:196|218:172,1,76.1450018009148,10|0,0:2|0:0,0:0:0:0:
|
||||
321,19,21949,5,6,1:2:0:0:
|
||||
372,198,22107,1,2,0:0:0:0:
|
||||
345,14,22265,2,0,P|334:50|326:104,1,76.1450018009148,10|2,0:2|0:0,0:0:0:0:
|
||||
413,295,22581,1,6,1:2:0:0:
|
||||
442,141,22739,1,10,0:2:0:0:
|
||||
409,316,22897,2,0,P|370:337|316:337,1,76.1450018009148,10|2,0:2|0:0,0:0:0:0:
|
||||
205,239,23212,6,0,P|219:282|226:330,1,76.1450018009148,6|0,1:2|0:0,0:0:0:0:
|
||||
73,189,23528,2,0,P|59:232|52:280,1,76.1450018009148,10|0,0:2|0:0,0:0:0:0:
|
||||
240,312,23844,2,0,P|233:275|221:239,1,76.1450018009148,2|0,1:2|0:0,0:0:0:0:
|
||||
88,189,24160,2,0,P|76:225|69:262,1,76.1450018009148,10|0,0:2|0:0,0:0:0:0:
|
||||
206,54,24476,6,0,L|301:45,1,76.1450018009148,6|0,1:2|0:0,0:0:0:0:
|
||||
425,174,24791,2,0,L|330:165,1,76.1450018009148,10|0,0:2|0:0,0:0:0:0:
|
||||
196,41,25107,2,0,L|291:32,1,76.1450018009148,2|0,1:2|0:0,0:0:0:0:
|
||||
415,161,25423,1,10,0:2:0:0:
|
||||
363,43,25581,1,0,0:0:0:0:
|
||||
263,180,25739,6,0,P|272:216|279:261,1,76.1450018009148,6|0,1:2|0:0,0:0:0:0:
|
||||
418,374,26054,2,0,P|424:336|433:299,1,76.1450018009148,10|0,0:2|0:0,0:0:0:0:
|
||||
251,184,26370,2,0,P|260:220|267:265,1,76.1450018009148,6|0,1:2|0:0,0:0:0:0:
|
||||
406,378,26686,2,0,P|412:340|421:303,1,76.1450018009148,10|0,0:2|0:0,0:0:0:0:
|
||||
326,119,27002,6,0,P|266:96|196:111,1,114.217502701372,14|0,0:2|0:0,0:0:0:0:
|
||||
215,85,27318,2,0,P|271:80|323:102,1,114.217502701372,8|0,0:2|0:0,0:0:0:0:
|
||||
324,89,27633,2,0,P|250:68|174:92,1,152.29000360183,12|4,0:2|0:2,0:0:0:0:
|
||||
65,343,28265,6,0,B|57:248|105:312|97:183,1,136.590001146309,6|8,1:2|0:2,0:0:0:0:
|
||||
153,332,28739,1,2,1:2:0:0:
|
||||
153,332,28897,1,2,0:0:0:0:
|
||||
215,226,29054,2,0,P|247:210|288:209,1,68.2950005731545,2|8,1:2|0:2,0:0:0:0:
|
||||
332,322,29370,2,0,P|298:319|267:303,1,68.2950005731545,2|0,0:0|1:2,0:0:0:0:
|
||||
371,217,29686,1,2,0:0:0:0:
|
||||
371,217,29844,1,10,0:2:0:0:
|
||||
444,302,30002,1,2,1:2:0:0:
|
||||
444,302,30160,2,0,P|460:262|462:211,1,68.2950005731545,2|0,0:0|1:2,0:0:0:0:
|
||||
393,130,30476,2,0,P|377:90|375:39,1,68.2950005731545,10|0,0:2|0:0,0:0:0:0:
|
||||
265,134,30791,6,0,L|169:122,1,68.2950005731545,2|0,1:2|0:0,0:0:0:0:
|
||||
80,53,31107,2,0,L|147:44,1,68.2950005731545,10|0,0:2|1:2,0:0:0:0:
|
||||
124,189,31423,2,0,L|57:181,1,68.2950005731545,2|0,0:0|1:2,0:0:0:0:
|
||||
164,296,31739,1,10,0:2:0:0:
|
||||
164,296,31897,2,0,L|231:287,1,68.2950005731545,2|0,0:0|1:2,0:0:0:0:
|
||||
365,211,32212,1,2,0:0:0:0:
|
||||
365,211,32370,2,0,P|379:246|384:289,1,68.2950005731545,10|0,0:2|1:2,0:0:0:0:
|
||||
488,162,32686,2,0,P|472:228|468:310,1,136.590001146309,2|8,0:0|0:2,0:0:0:0:
|
||||
406,132,33160,1,0,1:2:0:0:
|
||||
277,224,33318,6,0,B|197:212|245:168|149:160,1,136.590001146309,6|8,1:2|0:2,0:0:0:0:
|
||||
283,146,33791,1,2,1:2:0:0:
|
||||
283,146,33949,1,2,0:0:0:0:
|
||||
158,238,34107,2,0,P|123:253|68:253,1,68.2950005731545,2|8,1:2|0:2,0:0:0:0:
|
||||
19,126,34423,2,0,P|52:130|83:144,1,68.2950005731545,2|0,1:2|1:2,0:0:0:0:
|
||||
158,238,34739,1,2,0:0:0:0:
|
||||
158,238,34897,1,10,0:2:0:0:
|
||||
204,124,35054,1,2,1:2:0:0:
|
||||
204,124,35212,2,0,P|213:84|217:31,1,68.2950005731545,2|2,0:0|1:2,0:0:0:0:
|
||||
345,175,35528,2,0,P|336:141|332:108,1,68.2950005731545,10|0,0:2|1:2,0:0:0:0:
|
||||
461,237,35844,6,0,P|424:218|324:207,2,136.590001146309,2|10|2,1:2|0:2|1:2,0:0:0:0:
|
||||
248,360,36791,1,10,0:2:0:0:
|
||||
248,360,36949,2,0,P|259:318|261:281,1,68.2950005731545,2|8,0:0|0:2,0:0:0:0:
|
||||
189,145,37265,5,2,1:2:0:0:
|
||||
130,295,37423,2,0,P|96:312|48:311,1,68.2950005731545,10|0,0:2|1:2,0:0:0:0:
|
||||
32,119,37739,5,10,0:2:0:0:
|
||||
79,229,37897,1,0,1:2:0:0:
|
||||
126,47,38054,5,12,0:2:0:0:
|
||||
67,202,38212,1,0,1:2:0:0:
|
||||
189,145,38370,6,0,P|236:139|304:205,1,120.889997601975,4|2,1:2|0:0,0:0:0:0:
|
||||
281,297,38844,2,0,P|256:311|215:316,2,60.4449988009873,2|2|2,0:0|0:0|0:0,0:0:0:0:
|
||||
367,240,39318,2,0,P|396:245|423:259,1,60.4449988009873,2|2,0:0|0:0,0:0:0:0:
|
||||
493,325,39633,1,2,0:0:0:0:
|
||||
493,325,39791,2,0,L|500:262,1,60.4449988009873,2|2,1:2|0:0,0:0:0:0:
|
||||
450,183,40107,2,0,L|443:120,1,60.4449988009873,2|2,0:0|0:0,0:0:0:0:
|
||||
379,41,40423,1,2,1:2:0:0:
|
||||
379,41,40581,1,2,0:0:0:0:
|
||||
312,120,40739,6,0,B|229:114|279:80|188:72,1,120.889997601975,2|2,0:0|0:0,0:0:0:0:
|
||||
120,125,41212,2,0,P|107:98|107:68,2,60.4449988009873,2|2|2,0:0|0:0|0:0,0:0:0:0:
|
||||
195,158,41686,2,0,P|195:187|182:215,1,60.4449988009873,2|2,0:0|0:0,0:0:0:0:
|
||||
81,267,42002,1,2,0:0:0:0:
|
||||
81,267,42160,1,2,0:0:0:0:
|
||||
157,335,42318,1,2,1:2:0:0:
|
||||
157,335,42476,2,0,L|233:329,1,60.4449988009873,2|0,0:0|0:0,0:0:0:0:
|
||||
314,250,42791,2,0,L|374:254,1,60.4449988009873,2|2,1:2|0:0,0:0:0:0:
|
||||
224,343,43107,6,0,L|92:351,1,120.889997601975,2|0,0:0|0:0,0:0:0:0:
|
||||
18,308,43581,2,0,L|26:248,2,60.4449988009873,2|2|2,1:2|0:0|0:0,0:0:0:0:
|
||||
118,245,44054,2,0,L|109:185,1,60.4449988009873,2|2,0:0|0:0,0:0:0:0:
|
||||
32,119,44370,1,2,0:0:0:0:
|
||||
32,119,44528,2,0,L|39:56,1,60.4449988009873,2|2,0:0|0:0,0:0:0:0:
|
||||
131,30,44844,1,2,1:2:0:0:
|
||||
131,30,45002,2,0,L|124:90,1,60.4449988009873,2|2,0:0|0:0,0:0:0:0:
|
||||
215,147,45318,1,2,0:0:0:0:
|
||||
215,147,45476,2,0,L|289:140,1,60.4449988009873,2|2,1:2|0:0,0:0:0:0:
|
||||
362,98,45791,5,2,0:0:0:0:
|
||||
362,98,45949,1,2,1:2:0:0:
|
||||
350,203,46107,2,0,L|356:278,1,60.4449988009873,2|0,0:0|0:0,0:0:0:0:
|
||||
421,352,46423,1,2,0:0:0:0:
|
||||
421,352,46581,1,2,1:2:0:0:
|
||||
343,276,46739,2,0,L|268:282,1,60.4449988009873,2|0,0:0|0:0,0:0:0:0:
|
||||
212,353,47054,5,2,0:0:0:0:
|
||||
176,245,47212,1,2,1:2:0:0:
|
||||
104,346,47370,1,2,0:0:0:0:
|
||||
104,346,47449,1,2,0:0:0:0:
|
||||
104,346,47528,2,0,P|96:290|81:231,1,90.6674982014809,2|0,1:2|0:0,0:0:0:0:
|
||||
73,246,47844,2,0,P|81:190|96:131,1,90.6674982014809,2|0,1:2|0:0,0:0:0:0:
|
||||
108,144,48160,1,4,0:2:0:0:
|
||||
108,144,48476,6,0,P|146:167|197:167,1,76.1450018009148,6|0,1:2|0:0,0:0:0:0:
|
||||
259,24,48791,2,0,P|221:29|190:50,1,76.1450018009148,10|0,0:2|1:2,0:0:0:0:
|
||||
329,179,49107,2,0,B|429:161|369:117|469:97,1,152.29000360183,2|8,0:0|0:2,0:0:0:0:
|
||||
328,96,49581,1,0,0:0:0:0:
|
||||
472,190,49739,6,0,P|462:222|454:274,1,76.1450018009148,6|0,1:2|0:0,0:0:0:0:
|
||||
324,372,50054,2,0,P|317:334|306:298,1,76.1450018009148,10|0,0:2|1:2,0:0:0:0:
|
||||
190,174,50370,2,0,P|128:184|85:268,1,152.29000360183,2|8,0:0|0:2,0:0:0:0:
|
||||
206,294,50844,1,0,0:0:0:0:
|
||||
313,170,51002,6,0,P|323:125|328:78,1,76.1450018009148,6|0,1:2|0:0,0:0:0:0:
|
||||
223,271,51318,2,0,P|212:226|208:179,1,76.1450018009148,10|0,0:2|1:2,0:0:0:0:
|
||||
268,40,51633,2,0,P|302:19|358:19,1,76.1450018009148,2|0,0:0|1:2,0:0:0:0:
|
||||
382,195,51949,2,0,P|344:189|312:169,1,76.1450018009148,10|0,0:2|0:0,0:0:0:0:
|
||||
191,14,52265,6,0,B|176:109|235:65|217:167,1,152.29000360183,6|10,1:2|0:2,0:0:0:0:
|
||||
145,291,52739,1,0,1:2:0:0:
|
||||
75,165,52897,2,0,P|106:144|152:135,1,76.1450018009148,2|0,0:0|1:2,0:0:0:0:
|
||||
223,271,53212,2,0,P|254:292|291:300,1,76.1450018009148,10|0,0:2|0:0,0:0:0:0:
|
||||
423,166,53528,5,2,1:2:0:0:
|
||||
383,316,53686,2,0,P|364:275|364:218,1,76.1450018009148,2|8,0:0|0:2,0:0:0:0:
|
||||
445,94,54002,2,0,P|439:131|422:165,1,76.1450018009148,2|0,1:2|0:0,0:0:0:0:
|
||||
346,37,54318,1,2,1:2:0:0:
|
||||
268,179,54476,2,0,P|230:173|196:156,1,76.1450018009148,10|0,0:2|0:0,0:0:0:0:
|
||||
79,28,54791,6,0,P|101:82|110:184,1,152.29000360183,2|10,1:2|0:2,0:0:0:0:
|
||||
38,334,55265,2,0,P|44:293|61:244,1,76.1450018009148,2|0,1:2|0:0,0:0:0:0:
|
||||
189,362,55581,1,0,1:2:0:0:
|
||||
125,198,55739,2,0,P|135:234|141:272,1,76.1450018009148,10|0,0:2|0:0,0:0:0:0:
|
||||
279,380,56054,6,0,P|329:379|372:344,1,76.1450018009148,2|0,1:2|0:0,0:0:0:0:
|
||||
470,222,56370,2,0,P|432:219|397:234,1,76.1450018009148,10|0,0:2|1:2,0:0:0:0:
|
||||
438,384,56686,2,0,P|444:338|446:293,1,76.1450018009148,2|0,0:0|1:2,0:0:0:0:
|
||||
287,222,57002,2,0,P|289:259|294:297,1,76.1450018009148,10|0,0:2|0:0,0:0:0:0:
|
||||
334,124,57318,6,0,P|311:115|285:110,3,38.0725009004574,6|2|2|2,1:2|0:0|0:0|0:0,0:0:0:0:
|
||||
230,148,57633,2,0,P|201:173|146:180,1,76.1450018009148,6|2,1:2|0:0,0:0:0:0:
|
||||
42,81,57949,2,0,P|56:112|68:176,1,76.1450018009148,6|0,1:2|0:0,0:0:0:0:
|
||||
188,17,58265,2,0,P|174:48|162:112,1,76.1450018009148,14|0,0:2|0:0,0:0:0:0:
|
||||
230,245,58581,6,0,P|265:266|320:270,1,76.1450018009148,6|0,1:2|0:0,0:0:0:0:
|
||||
146,162,58897,2,0,P|108:169|76:189,1,76.1450018009148,10|0,0:2|1:2,0:0:0:0:
|
||||
293,188,59212,2,0,P|315:102|318:24,1,152.29000360183,2|8,0:2|0:2,0:0:0:0:
|
||||
224,147,59686,1,0,0:0:0:0:
|
||||
405,82,59844,6,0,P|407:124|415:170,1,76.1450018009148,2|0,1:2|0:0,0:0:0:0:
|
||||
500,268,60160,2,0,P|467:249|410:247,1,76.1450018009148,10|0,0:2|1:2,0:0:0:0:
|
||||
303,384,60476,2,0,B|401:376|349:337|442:328,1,152.29000360183,2|8,0:0|0:2,0:0:0:0:
|
||||
311,298,60949,1,0,0:0:0:0:
|
||||
143,368,61107,6,0,P|155:325|155:273,1,76.1450018009148,2|0,1:2|0:0,0:0:0:0:
|
||||
63,156,61423,2,0,P|65:193|76:230,1,76.1450018009148,10|0,0:2|1:2,0:0:0:0:
|
||||
160,367,61739,2,0,P|172:324|172:272,1,76.1450018009148,2|0,0:0|1:2,0:0:0:0:
|
||||
80,155,62055,2,0,P|82:192|93:229,1,76.1450018009148,10|0,0:2|0:0,0:0:0:0:
|
||||
184,86,62370,6,0,B|260:109|205:146|318:171,1,152.29000360183,2|10,1:2|0:2,0:0:0:0:
|
||||
406,65,62844,1,0,1:2:0:0:
|
||||
473,202,63002,2,0,P|462:240|454:292,1,76.1450018009148,2|0,0:0|1:2,0:0:0:0:
|
||||
331,146,63318,2,0,P|341:184|349:236,1,76.1450018009148,10|0,0:2|0:0,0:0:0:0:
|
||||
234,347,63633,1,2,1:2:0:0:
|
||||
160,216,63791,6,0,P|202:198|234:200,1,76.1450018009148,2|8,0:0|0:2,0:0:0:0:
|
||||
147,367,64107,2,0,P|109:366|75:350,1,76.1450018009148,2|0,1:2|0:0,0:0:0:0:
|
||||
35,213,64423,1,2,1:2:0:0:
|
||||
148,349,64581,2,0,P|110:348|76:332,1,76.1450018009148,10|0,0:2|0:0,0:0:0:0:
|
||||
18,190,64897,5,2,1:2:0:0:
|
||||
133,269,65054,2,0,P|143:231|150:180,1,76.1450018009148,2|8,0:0|0:2,0:0:0:0:
|
||||
224,55,65370,2,0,P|231:127|249:214,1,152.29000360183,2|0,1:2|1:2,0:0:0:0:
|
||||
367,345,65844,2,0,P|405:365|463:364,1,76.1450018009148,10|0,0:2|0:0,0:0:0:0:
|
||||
456,181,66160,6,0,P|439:219|428:272,1,76.1450018009148,2|0,1:2|0:0,0:0:0:0:
|
||||
310,127,66476,2,0,P|327:165|338:218,1,76.1450018009148,10|0,0:2|1:2,0:0:0:0:
|
||||
452,31,66791,2,0,P|435:69|424:122,1,76.1450018009148,2|0,0:0|1:2,0:0:0:0:
|
||||
250,41,67107,2,0,P|267:79|278:132,1,76.1450018009148,10|0,0:2|0:0,0:0:0:0:
|
||||
143,235,67423,6,0,L|54:241,1,76.1450018009148,6|0,1:2|0:0,0:0:0:0:
|
||||
8,75,67739,2,0,L|97:81,1,76.1450018009148,4|0,1:2|0:0,0:0:0:0:
|
||||
153,254,68054,2,0,L|-30:266,1,152.29000360183,4|8,1:2|0:2,0:0:0:0:
|
||||
162,272,68686,6,0,P|153:306|149:343,2,68.2950005731545,6|2|10,1:2|0:0|0:2,0:0:0:0:
|
||||
264,197,69160,1,2,1:2:0:0:
|
||||
264,197,69318,2,0,B|339:217|287:248|378:266,1,136.590001146309,2|10,1:2|0:2,0:0:0:0:
|
||||
477,162,69791,2,0,P|462:186|451:227,1,68.2950005731545,2|0,0:0|1:2,0:0:0:0:
|
||||
352,127,70107,1,2,1:2:0:0:
|
||||
352,127,70265,2,0,P|369:156|377:189,1,68.2950005731545,10|0,0:2|1:2,0:0:0:0:
|
||||
252,75,70581,2,0,B|176:96|234:131|127:146,1,136.590001146309,2|8,1:2|0:2,0:0:0:0:
|
||||
139,143,71212,6,0,P|125:177|114:231,1,68.2950005731545,2|0,1:2|0:0,0:0:0:0:
|
||||
197,312,71528,1,10,0:2:0:0:
|
||||
197,312,71686,1,2,1:2:0:0:
|
||||
246,212,71844,2,0,P|281:197|322:197,1,68.2950005731545,2|2,1:2|0:0,0:0:0:0:
|
||||
382,297,72160,1,10,0:2:0:0:
|
||||
382,297,72318,2,0,P|395:222|417:157,1,136.590001146309,2|0,0:0|1:2,0:0:0:0:
|
||||
483,40,72791,2,0,P|454:60|408:66,1,68.2950005731545,10|0,0:2|1:2,0:0:0:0:
|
||||
316,8,73107,1,2,1:2:0:0:
|
||||
316,8,73265,1,8,0:2:0:0:
|
||||
213,106,73423,2,0,P|240:125|273:132,1,68.2950005731545,8|0,0:2|0:0,0:0:0:0:
|
||||
151,36,73739,6,0,P|176:103|187:195,1,136.590001146309,2|10,1:2|0:2,0:0:0:0:
|
||||
71,297,74212,1,2,1:2:0:0:
|
||||
71,297,74370,2,0,P|96:230|107:138,1,136.590001146309,2|8,1:2|0:2,0:0:0:0:
|
||||
217,308,74844,2,0,P|205:264|205:212,1,68.2950005731545,2|0,0:0|1:2,0:0:0:0:
|
||||
292,129,75160,2,0,P|321:113|364:113,1,68.2950005731545,2|8,1:2|0:2,0:0:0:0:
|
||||
470,226,75476,1,2,1:2:0:0:
|
||||
470,226,75633,2,0,P|407:200|322:187,1,136.590001146309,2|10,1:2|0:2,0:0:0:0:
|
||||
339,187,76265,6,0,P|351:221|357:255,1,68.2950005731545,2|2,1:2|0:0,0:0:0:0:
|
||||
274,344,76581,1,10,0:2:0:0:
|
||||
274,344,76739,1,2,1:2:0:0:
|
||||
196,237,76897,2,0,P|183:277|174:332,1,68.2950005731545,2|0,1:2|0:0,0:0:0:0:
|
||||
76,200,77212,2,0,P|89:240|98:295,1,68.2950005731545,10|0,0:2|0:0,0:0:0:0:
|
||||
193,110,77528,6,0,P|225:91|266:91,1,68.2950005731545,2|2,1:2|0:0,0:0:0:0:
|
||||
363,209,77844,2,0,P|329:205|300:187,1,68.2950005731545,2|2,1:2|0:0,0:0:0:0:
|
||||
424,69,78160,2,0,P|392:129|373:223,1,136.590001146309,2|10,1:2|0:2,0:0:0:0:
|
||||
375,195,78791,5,6,0:0:0:0:
|
||||
59,101,87633,6,0,P|100:79|160:79,1,102.442500859732,2|0,1:2|0:0,0:0:0:0:
|
||||
157,92,87949,2,0,P|106:92|61:115,1,102.442500859732,2|0,1:2|0:0,0:0:0:0:
|
||||
65,127,88265,2,0,P|110:103|160:103,1,102.442500859732,2|0,1:2|0:0,0:0:0:0:
|
||||
162,116,88581,1,6,0:2:0:0:
|
||||
410,340,88897,6,0,P|428:292|428:236,1,83.9949974366761,6|0,1:2|0:0,0:0:0:0:
|
||||
329,109,89212,1,10,0:2:0:0:
|
||||
237,283,89370,2,0,P|219:235|219:179,1,83.9949974366761,2|0,0:2|1:2,0:0:0:0:
|
||||
412,90,89686,2,0,P|407:131|391:170,1,83.9949974366761,2|8,0:2|0:2,0:0:0:0:
|
||||
224,11,90002,6,0,P|132:31|99:124,1,167.989994873352,2|2,0:2|0:2,0:0:0:0:
|
||||
198,242,90476,1,8,0:2:0:0:
|
||||
197,90,90633,1,2,0:2:0:0:
|
||||
85,257,90791,2,0,P|94:304|99:355,1,83.9949974366761,6|0,1:2|0:0,0:0:0:0:
|
||||
308,229,91107,2,0,P|311:187|320:146,1,83.9949974366761,14|0,0:2|0:0,0:0:0:0:
|
||||
210,341,91423,6,0,P|251:326|325:317,1,83.9949974366761,6|0,1:2|0:0,0:0:0:0:
|
||||
196,202,91739,1,10,0:2:0:0:
|
||||
305,335,91897,2,0,P|346:350|420:359,1,83.9949974366761,2|0,0:2|1:2,0:0:0:0:
|
||||
212,222,92212,2,0,P|253:207|327:198,1,83.9949974366761,2|8,0:2|0:2,0:0:0:0:
|
||||
446,275,92528,6,0,P|480:177|483:88,1,167.989994873352,2|2,0:2|0:2,0:0:0:0:
|
||||
286,70,93002,1,8,0:2:0:0:
|
||||
368,232,93160,1,2,0:2:0:0:
|
||||
268,50,93318,2,0,P|230:33|158:30,1,83.9949974366761,6|0,1:2|0:0,0:0:0:0:
|
||||
349,208,93633,2,0,P|310:225|269:230,1,83.9949974366761,14|0,0:2|0:0,0:0:0:0:
|
||||
138,89,93949,6,0,P|116:133|104:208,1,83.9949974366761,6|0,1:2|0:0,0:0:0:0:
|
||||
148,304,94265,1,10,0:2:0:0:
|
||||
22,167,94423,2,0,P|44:211|56:286,1,83.9949974366761,2|0,0:2|1:2,0:0:0:0:
|
||||
243,347,94739,2,0,P|254:306|273:269,1,83.9949974366761,2|8,0:2|0:2,0:0:0:0:
|
||||
438,109,95054,6,0,B|340:127|418:167|266:192,1,167.989994873352,6|0,0:2|0:0,0:0:0:0:
|
||||
254,24,95528,2,0,P|277:62|282:122,1,83.9949974366761,10|0,0:2|0:0,0:0:0:0:
|
||||
427,285,95844,2,0,P|428:243|443:204,1,83.9949974366761,2|0,1:2|0:0,0:0:0:0:
|
||||
279,25,96160,2,0,P|302:63|307:123,1,83.9949974366761,10|0,0:2|0:0,0:0:0:0:
|
||||
225,237,96476,6,0,P|184:225|105:216,1,83.9949974366761,6|0,1:2|0:0,0:0:0:0:
|
||||
288,132,96791,1,10,0:2:0:0:
|
||||
180,316,96949,2,0,P|139:328|60:337,1,83.9949974366761,2|0,0:2|1:2,0:0:0:0:
|
||||
274,159,97265,2,0,P|315:166|355:177,1,83.9949974366761,2|8,0:2|0:2,0:0:0:0:
|
||||
417,302,97581,1,2,0:2:0:0:
|
||||
420,94,97739,6,0,P|393:134|376:202,1,83.9949974366761,2|0,1:2|0:0,0:0:0:0:
|
||||
346,384,98054,1,10,0:2:0:0:
|
||||
299,208,98212,1,0,0:0:0:0:
|
||||
337,355,98370,1,2,1:2:0:0:
|
||||
290,179,98528,1,0,0:0:0:0:
|
||||
170,364,98686,2,0,P|124:378|65:374,1,83.9949974366761,10|0,0:2|0:0,0:0:0:0:
|
||||
45,139,99002,6,0,P|70:172|96:263,1,83.9949974366761,6|0,1:2|0:0,0:0:0:0:
|
||||
164,51,99318,1,10,0:2:0:0:
|
||||
146,275,99476,2,0,P|106:294|39:288,1,83.9949974366761,2|0,0:2|1:2,0:0:0:0:
|
||||
163,76,99791,2,0,P|204:78|242:96,1,83.9949974366761,2|8,0:2|0:2,0:0:0:0:
|
||||
306,272,100107,6,0,P|261:187|261:103,1,167.989994873352,6|2,0:2|0:2,0:0:0:0:
|
||||
446,105,100581,1,8,0:2:0:0:
|
||||
376,319,100739,2,0,P|345:348|305:358,1,83.9949974366761,2|0,0:2|1:2,0:0:0:0:
|
||||
236,147,101054,1,0,0:0:0:0:
|
||||
402,242,101212,2,0,P|443:245|481:228,1,83.9949974366761,8|0,0:2|0:0,0:0:0:0:
|
||||
334,39,101528,6,0,P|346:82|350:135,1,83.9949974366761,6|0,1:2|0:0,0:0:0:0:
|
||||
219,239,101844,1,10,0:2:0:0:
|
||||
177,71,102002,2,0,P|137:51|71:45,1,83.9949974366761,2|0,0:2|1:2,0:0:0:0:
|
||||
140,267,102318,2,0,P|181:258|218:239,1,83.9949974366761,2|8,0:2|0:2,0:0:0:0:
|
||||
22,135,102633,6,0,P|64:254|68:317,1,167.989994873352,6|2,0:2|0:2,0:0:0:0:
|
||||
182,139,103107,1,8,0:2:0:0:
|
||||
200,320,103265,2,0,P|209:272|222:225,1,83.9949974366761,2|0,0:2|1:2,0:0:0:0:
|
||||
337,118,103581,1,0,0:0:0:0:
|
||||
331,305,103739,2,0,P|322:257|309:210,1,83.9949974366761,8|0,0:2|0:0,0:0:0:0:
|
||||
194,51,104054,6,0,B|300:74|225:123|355:155,1,167.989994873352,6|10,1:2|0:2,0:0:0:0:
|
||||
142,226,104528,2,0,P|91:244|21:238,1,83.9949974366761,2|0,0:2|1:2,0:0:0:0:
|
||||
187,83,104844,2,0,P|148:67|106:63,1,83.9949974366761,2|8,0:2|0:2,0:0:0:0:
|
||||
210,283,105160,6,0,P|229:235|232:181,1,83.9949974366761,6|0,0:2|1:2,0:0:0:0:
|
||||
339,35,105476,2,0,P|345:76|362:115,1,83.9949974366761,2|8,0:2|0:2,0:0:0:0:
|
||||
309,282,105791,1,2,0:2:0:0:
|
||||
454,125,105949,2,0,P|437:163|431:204,1,83.9949974366761,2|0,1:2|0:0,0:0:0:0:
|
||||
246,91,106265,2,0,P|262:129|268:170,1,83.9949974366761,10|0,0:2|0:0,0:0:0:0:
|
||||
133,354,106581,6,0,L|22:361,1,83.9949974366761,6|2,1:2|0:2,0:0:0:0:
|
||||
260,193,106897,2,0,L|371:200,1,83.9949974366761,10|2,0:2|0:2,0:0:0:0:
|
||||
127,339,107212,2,0,L|16:346,1,83.9949974366761,2|2,1:2|0:2,0:0:0:0:
|
||||
254,178,107528,2,0,L|365:185,1,83.9949974366761,10|2,0:2|0:2,0:0:0:0:
|
||||
479,344,107844,5,2,1:2:0:0:
|
||||
411,172,108002,1,10,0:2:0:0:
|
||||
400,363,108160,1,2,1:2:0:0:
|
||||
488,188,108318,1,2,0:2:0:0:
|
||||
319,384,108476,2,0,L|312:273,1,83.9949974366761,10|10,0:2|0:2,0:0:0:0:
|
||||
298,87,108791,1,2,1:2:0:0:
|
||||
220,275,108949,1,10,0:2:0:0:
|
||||
163,74,109107,5,14,0:2:0:0:
|
||||
160,0,110212,5,14,0:2:0:0:
|
||||
160,0,111002,6,0,P|188:57|194:109,1,90.6674982014809,14|0,0:2|0:0,0:0:0:0:
|
||||
214,98,111318,2,0,P|191:137|182:176,1,60.4449988009873,14|0,0:2|1:2,0:0:0:0:
|
||||
202,188,111554,1,0,1:2:0:0:
|
||||
202,188,111633,1,6,1:2:0:0:
|
||||
197,204,112739,5,14,0:2:0:0:
|
||||
197,204,113528,2,0,P|242:224|311:221,1,90.6674982014809,14|0,0:0|0:0,0:0:0:0:
|
||||
293,200,113844,2,0,P|333:181|366:180,1,60.4449988009873,14|0,0:0|1:0,0:0:0:0:
|
||||
413,235,114081,5,0,1:0:0:0:
|
||||
413,235,114160,2,0,P|420:193|433:153,1,83.9949974366761,6|0,1:2|0:0,0:0:0:0:
|
||||
328,286,114476,1,10,0:2:0:0:
|
||||
388,95,114633,2,0,P|381:53|368:13,1,83.9949974366761,2|0,0:2|1:2,0:0:0:0:
|
||||
218,171,114949,2,0,P|225:129|238:89,1,83.9949974366761,2|8,0:0|0:2,0:0:0:0:
|
||||
114,267,115265,6,0,P|99:177|71:93,1,167.989994873352,6|0,0:0|0:0,0:0:0:0:
|
||||
206,327,115739,2,0,P|174:359|99:370,1,83.9949974366761,10|0,0:2|0:0,0:0:0:0:
|
||||
247,175,116054,2,0,P|285:190|314:220,1,83.9949974366761,2|0,1:2|0:0,0:0:0:0:
|
||||
406,380,116370,2,0,P|411:328|422:274,1,83.9949974366761,8|0,0:0|0:0,0:0:0:0:
|
||||
477,101,116686,6,0,P|432:104|382:131,1,83.9949974366761,6|0,1:2|0:0,0:0:0:0:
|
||||
286,270,117002,1,10,0:2:0:0:
|
||||
210,82,117160,2,0,P|251:84|289:101,1,83.9949974366761,2|0,0:0|1:2,0:0:0:0:
|
||||
205,284,117476,2,0,P|220:236|227:166,1,83.9949974366761,2|8,0:0|0:2,0:0:0:0:
|
||||
80,62,117791,6,0,P|113:131|123:259,1,167.989994873352,2|2,0:0|0:0,0:0:0:0:
|
||||
279,362,118265,5,10,0:2:0:0:
|
||||
243,170,118423,1,2,0:0:0:0:
|
||||
306,359,118581,5,2,1:2:0:0:
|
||||
325,169,118739,1,2,0:0:0:0:
|
||||
330,355,118897,5,8,0:2:0:0:
|
||||
402,171,119054,1,10,0:2:0:0:
|
||||
402,171,119528,6,0,B|239:156|377:58|170:31,1,266.507506303202,12|0,0:2|0:0,0:0:0:0:
|
||||
184,44,120160,2,0,B|357:69|233:164|392:180,1,266.507506303202,12|0,0:0|0:0,0:0:0:0:
|
||||
385,190,120791,2,0,B|227:174|351:79|178:54,1,266.507506303202,12|0,0:0|0:0,0:0:0:0:
|
||||
171,64,121423,2,0,B|344:89|220:184|378:200,1,266.507506303202,12|0,0:0|0:0,0:0:0:0:
|
||||
373,211,122054,2,0,B|214:194|338:99|165:74,1,266.507506303202,12|0,0:0|0:0,0:0:0:0:
|
||||
156,90,122686,2,0,P|127:134|109:220,1,114.217502701372,12|0,0:0|0:0,0:0:0:0:
|
||||
129,218,123002,6,0,P|144:261|158:324,1,76.1450018009148,0|10,1:2|0:2,0:0:0:0:
|
||||
247,142,123318,1,8,0:2:0:0:
|
||||
278,283,123475,1,2,1:2:0:0:
|
||||
339,100,123633,1,8,0:2:0:0:
|
||||
272,251,123791,1,8,0:2:0:0:
|
||||
224,58,123949,1,8,0:2:0:0:
|
||||
286,225,124107,1,8,0:2:0:0:
|
||||
374,24,124265,6,0,P|414:9|473:9,1,83.9949974366761,6|0,1:2|0:0,0:0:0:0:
|
||||
368,190,124581,1,10,0:2:0:0:
|
||||
222,28,124739,2,0,P|182:13|123:13,1,83.9949974366761,2|0,0:0|1:2,0:0:0:0:
|
||||
62,237,125054,2,0,P|82:187|90:129,1,83.9949974366761,2|8,0:0|0:2,0:0:0:0:
|
||||
261,271,125370,2,0,P|241:221|233:163,1,83.9949974366761,2|0,0:0|1:2,0:0:0:0:
|
||||
86,328,125686,2,0,P|37:328|-12:298,1,83.9949974366761,2|8,0:0|0:2,0:0:0:0:
|
||||
164,160,126002,1,2,0:0:0:0:
|
||||
235,355,126160,2,0,P|276:356|315:341,1,83.9949974366761,2|0,1:2|0:0,0:0:0:0:
|
||||
454,180,126476,2,0,P|415:164|373:166,1,83.9949974366761,10|0,0:2|0:0,0:0:0:0:
|
||||
407,347,126791,6,0,L|399:240,1,83.9949974366761,6|2,1:2|0:2,0:0:0:0:
|
||||
274,71,127107,2,0,L|267:154,1,83.9949974366761,14|2,0:2|0:0,0:0:0:0:
|
||||
421,337,127423,2,0,L|413:230,1,83.9949974366761,6|2,1:2|0:0,0:0:0:0:
|
||||
288,61,127739,2,0,L|281:144,1,83.9949974366761,14|2,0:2|0:0,0:0:0:0:
|
||||
247,369,128054,5,2,1:2:0:0:
|
||||
212,184,128212,1,10,0:2:0:0:
|
||||
251,384,128370,1,10,0:2:0:0:
|
||||
216,204,128528,1,2,0:0:0:0:
|
||||
81,380,128686,2,0,L|87:296,1,83.9949974366761,10|10,0:2|0:2,0:0:0:0:
|
||||
100,65,129002,1,2,1:2:0:0:
|
||||
163,261,129160,1,10,0:2:0:0:
|
||||
91,165,129318,5,4,0:2:0:0:
|
||||
300,51,134370,5,6,1:2:0:0:
|
||||
300,51,135633,5,4,1:2:0:0:
|
||||
300,51,136897,6,0,P|260:72|200:81,1,102.442500859732,4|2,1:2|0:0,0:0:0:0:
|
||||
200,72,137212,2,0,P|250:64|296:41,1,102.442500859732,4|0,1:2|0:0,0:0:0:0:
|
||||
293,33,137528,2,0,P|247:55|196:63,1,102.442500859732,6|2,1:2|0:0,0:0:0:0:
|
||||
193,44,137844,1,12,0:2:0:0:
|
||||
337,298,138160,6,0,P|355:259|359:217,1,68.2950005731545,6|0,1:2|0:0,0:0:0:0:
|
||||
277,157,138476,1,10,0:2:0:0:
|
||||
355,302,138633,2,0,P|379:215|380:139,1,136.590001146309,2|2,1:2|1:2,0:0:0:0:
|
||||
276,58,139107,1,10,0:2:0:0:
|
||||
276,58,139265,1,2,1:2:0:0:
|
||||
209,217,139423,6,0,P|170:235|128:239,1,68.2950005731545,6|0,1:2|0:0,0:0:0:0:
|
||||
68,157,139739,1,10,0:2:0:0:
|
||||
213,235,139896,2,0,P|126:259|50:260,1,136.590001146309,2|2,1:2|1:2,0:0:0:0:
|
||||
207,118,140370,1,10,0:2:0:0:
|
||||
207,118,140528,1,2,1:2:0:0:
|
||||
308,272,140686,6,0,P|299:306|295:361,1,68.2950005731545,6|0,1:2|0:0,0:0:0:0:
|
||||
421,220,141002,1,10,0:2:0:0:
|
||||
293,252,141160,2,0,P|273:317|262:384,1,136.590001146309,2|2,1:2|1:2,0:0:0:0:
|
||||
392,137,141633,1,10,0:2:0:0:
|
||||
392,137,141791,1,2,1:2:0:0:
|
||||
392,137,142265,6,0,P|384:93|322:62,1,102.442500859732,6|0,1:2|0:0,0:0:0:0:
|
||||
326,79,142581,2,0,P|281:103|200:75,1,136.590001146309,6|12,1:2|0:2,0:0:0:0:
|
||||
203,78,143212,5,6,1:2:0:0:
|
||||
214,89,144476,5,4,1:2:0:0:
|
||||
214,90,145739,6,0,P|249:146|260:207,1,102.442500859732,6|0,1:2|0:0,0:0:0:0:
|
||||
248,201,146054,2,0,P|213:257|202:318,1,102.442500859732,6|0,1:2|0:0,0:0:0:0:
|
||||
218,313,146370,2,0,P|265:294|316:291,1,102.442500859732,6|0,1:2|0:0,0:0:0:0:
|
||||
326,305,146686,1,14,0:2:0:0:
|
||||
440,83,147002,6,0,L|430:167,1,68.2950005731545,6|0,1:2|0:0,0:0:0:0:
|
||||
346,18,147318,1,10,0:2:0:0:
|
||||
457,94,147476,2,0,L|440:231,1,136.590001146309,2|2,1:2|1:2,0:0:0:0:
|
||||
326,305,147949,1,10,0:2:0:0:
|
||||
326,305,148107,1,2,1:2:0:0:
|
||||
170,162,148265,6,0,L|180:246,1,68.2950005731545,6|0,1:2|0:0,0:0:0:0:
|
||||
264,97,148581,1,10,0:2:0:0:
|
||||
153,173,148739,2,0,L|170:310,1,136.590001146309,2|2,1:2|1:2,0:0:0:0:
|
||||
284,384,149212,1,10,0:2:0:0:
|
||||
284,384,149370,1,2,1:2:0:0:
|
||||
403,159,149528,6,0,L|393:243,1,68.2950005731545,6|0,1:2|0:0,0:0:0:0:
|
||||
309,94,149844,1,10,0:2:0:0:
|
||||
420,170,150002,2,0,L|403:307,1,136.590001146309,2|2,1:2|1:2,0:0:0:0:
|
||||
289,381,150475,1,10,0:2:0:0:
|
||||
289,381,150633,1,2,1:2:0:0:
|
||||
97,68,151107,6,0,P|140:48|196:63,1,102.442500859732,4|0,1:2|0:0,0:0:0:0:
|
||||
198,79,151423,2,0,P|154:129|139:218,1,136.590001146309,4|12,1:2|0:0,0:0:0:0:
|
||||
297,317,152054,6,0,B|391:288|336:242|424:215,1,152.29000360183,6|8,1:2|0:2,0:0:0:0:
|
||||
281,212,152528,1,0,1:2:0:0:
|
||||
446,306,152686,2,0,P|490:265|476:153,1,152.29000360183,2|8,0:0|0:2,0:0:0:0:
|
||||
343,142,153160,1,2,1:2:0:0:
|
||||
297,317,153318,6,0,P|226:345|155:276,1,152.29000360183,6|8,1:2|0:2,0:0:0:0:
|
||||
116,157,153791,2,0,P|150:228|158:309,1,152.29000360183,0|0,1:2|1:2,0:0:0:0:
|
||||
264,170,154265,2,0,P|244:206|235:263,1,76.1450018009148,10|0,0:2|1:2,0:0:0:0:
|
||||
152,77,154581,6,0,P|84:75|30:158,1,152.29000360183,6|8,1:2|0:2,0:0:0:0:
|
||||
191,214,155054,1,0,1:2:0:0:
|
||||
264,60,155212,2,0,P|331:58|385:141,1,152.29000360183,2|8,0:0|0:2,0:0:0:0:
|
||||
212,171,155686,1,0,1:2:0:0:
|
||||
405,112,155844,6,0,P|379:165|357:279,1,152.29000360183,6|8,1:2|0:2,0:0:0:0:
|
||||
158,360,156318,2,0,P|142:285|111:216,1,152.29000360183,0|0,1:2|1:2,0:0:0:0:
|
||||
9,64,156791,2,0,P|45:87|104:95,1,76.1450018009148,10|0,0:2|1:2,0:0:0:0:
|
||||
270,12,157107,6,0,P|187:35|179:115,1,152.29000360183,6|8,1:2|0:2,0:0:0:0:
|
||||
288,228,157581,2,0,P|370:204|378:124,1,152.29000360183,0|0,1:2|1:2,0:0:0:0:
|
||||
248,83,158054,2,0,P|280:97|327:97,1,76.1450018009148,10|0,0:2|1:2,0:0:0:0:
|
||||
490,16,158370,6,0,P|451:77|433:186,1,152.29000360183,6|8,1:2|0:2,0:0:0:0:
|
||||
467,312,158844,2,0,P|449:238|409:173,1,152.29000360183,0|0,1:2|1:2,0:0:0:0:
|
||||
248,208,159318,2,0,P|292:207|331:188,1,76.1450018009148,8|0,0:2|1:2,0:0:0:0:
|
||||
320,98,159633,5,2,0:0:0:0:
|
||||
118,79,160897,6,0,L|127:219,1,114.217502701372,2|0,1:2|0:0,0:0:0:0:
|
||||
146,197,161212,2,0,L|138:83,1,114.217502701372,2|0,1:2|0:0,0:0:0:0:
|
||||
158,87,161528,2,0,L|166:201,1,114.217502701372,2|0,1:2|0:0,0:0:0:0:
|
||||
185,203,161844,1,6,0:2:0:0:
|
||||
39,359,162160,6,0,P|21:311|21:255,1,83.9949974366761,6|0,1:2|0:0,0:0:0:0:
|
||||
153,158,162475,1,10,0:2:0:0:
|
||||
221,372,162633,2,0,P|239:324|239:268,1,83.9949974366761,2|0,0:2|1:2,0:0:0:0:
|
||||
64,135,162949,2,0,P|69:176|85:215,1,83.9949974366761,2|8,0:2|0:2,0:0:0:0:
|
||||
244,41,163265,6,0,P|336:61|369:154,1,167.989994873352,2|2,0:2|0:2,0:0:0:0:
|
||||
322,264,163739,1,8,0:2:0:0:
|
||||
282,124,163896,1,2,0:2:0:0:
|
||||
419,289,164054,2,0,P|410:336|405:387,1,83.9949974366761,6|0,1:2|0:0,0:0:0:0:
|
||||
214,234,164370,2,0,P|211:192|202:151,1,83.9949974366761,14|0,0:2|0:0,0:0:0:0:
|
||||
295,355,164686,6,0,P|254:340|180:331,1,83.9949974366761,6|0,1:2|0:0,0:0:0:0:
|
||||
305,196,165002,1,10,0:2:0:0:
|
||||
209,350,165160,2,0,P|168:365|94:374,1,83.9949974366761,2|0,0:2|1:2,0:0:0:0:
|
||||
294,219,165475,2,0,P|253:204|179:195,1,83.9949974366761,2|8,0:2|0:2,0:0:0:0:
|
||||
66,275,165791,6,0,P|32:177|29:88,1,167.989994873352,2|2,0:2|0:2,0:0:0:0:
|
||||
226,70,166265,1,8,0:2:0:0:
|
||||
144,232,166423,1,2,0:2:0:0:
|
||||
244,50,166581,2,0,P|282:33|354:30,1,83.9949974366761,6|0,1:2|0:0,0:0:0:0:
|
||||
163,208,166896,2,0,P|202:225|243:230,1,83.9949974366761,14|0,0:2|0:0,0:0:0:0:
|
||||
374,89,167212,6,0,P|396:133|408:208,1,83.9949974366761,6|0,1:2|0:0,0:0:0:0:
|
||||
364,304,167528,1,10,0:2:0:0:
|
||||
490,167,167686,2,0,P|468:211|456:286,1,83.9949974366761,2|0,0:2|1:2,0:0:0:0:
|
||||
269,347,168002,2,0,P|258:306|239:269,1,83.9949974366761,2|8,0:2|0:2,0:0:0:0:
|
||||
74,109,168317,6,0,B|172:127|94:167|246:192,1,167.989994873352,6|0,0:2|0:0,0:0:0:0:
|
||||
258,24,168791,2,0,P|235:62|230:122,1,83.9949974366761,10|0,0:2|0:0,0:0:0:0:
|
||||
85,285,169107,2,0,P|84:243|69:204,1,83.9949974366761,2|0,1:2|0:0,0:0:0:0:
|
||||
233,25,169423,2,0,P|210:63|205:123,1,83.9949974366761,10|0,0:2|0:0,0:0:0:0:
|
||||
296,252,169739,6,0,P|337:240|416:231,1,83.9949974366761,6|0,1:2|0:0,0:0:0:0:
|
||||
224,132,170054,1,10,0:2:0:0:
|
||||
331,331,170212,2,0,P|372:343|451:352,1,83.9949974366761,2|0,0:2|1:2,0:0:0:0:
|
||||
238,159,170528,2,0,P|197:166|157:177,1,83.9949974366761,2|8,0:2|0:2,0:0:0:0:
|
||||
95,302,170844,1,2,0:2:0:0:
|
||||
92,94,171002,6,0,P|119:134|136:202,1,83.9949974366761,2|0,1:2|0:0,0:0:0:0:
|
||||
243,353,171317,1,10,0:2:0:0:
|
||||
218,162,171475,1,0,0:0:0:0:
|
||||
237,323,171633,1,2,1:2:0:0:
|
||||
212,132,171791,1,0,0:0:0:0:
|
||||
328,311,171949,2,0,P|372:330|433:321,1,83.9949974366761,10|0,0:2|0:0,0:0:0:0:
|
||||
447,131,172265,6,0,P|422:164|396:255,1,83.9949974366761,6|0,1:2|0:0,0:0:0:0:
|
||||
349,97,172581,1,10,0:2:0:0:
|
||||
337,298,172739,2,0,P|381:317|442:308,1,83.9949974366761,2|0,0:2|1:2,0:0:0:0:
|
||||
335,81,173054,2,0,P|294:83|256:101,1,83.9949974366761,2|8,0:2|0:2,0:0:0:0:
|
||||
195,272,173370,6,0,P|240:187|240:103,1,167.989994873352,6|2,0:2|0:2,0:0:0:0:
|
||||
66,105,173844,1,8,0:2:0:0:
|
||||
125,318,174002,2,0,P|156:347|196:357,1,83.9949974366761,2|0,0:2|1:2,0:0:0:0:
|
||||
276,147,174317,1,0,0:0:0:0:
|
||||
104,236,174475,2,0,P|63:239|25:222,1,83.9949974366761,8|0,0:2|0:0,0:0:0:0:
|
||||
178,39,174791,6,0,P|166:82|162:135,1,83.9949974366761,6|0,1:2|0:0,0:0:0:0:
|
||||
293,239,175107,1,10,0:2:0:0:
|
||||
335,71,175265,2,0,P|375:51|441:45,1,83.9949974366761,2|0,0:2|1:2,0:0:0:0:
|
||||
366,284,175581,2,0,P|325:275|288:256,1,83.9949974366761,2|8,0:2|0:2,0:0:0:0:
|
||||
490,135,175896,6,0,P|448:254|444:317,1,167.989994873352,6|2,0:2|0:2,0:0:0:0:
|
||||
330,139,176370,1,8,0:2:0:0:
|
||||
312,320,176528,2,0,P|303:272|290:225,1,83.9949974366761,2|0,0:2|1:2,0:0:0:0:
|
||||
175,118,176844,1,0,0:0:0:0:
|
||||
181,305,177002,2,0,P|190:257|203:210,1,83.9949974366761,8|0,0:2|0:0,0:0:0:0:
|
||||
318,51,177317,6,0,B|212:74|287:123|157:155,1,167.989994873352,6|10,1:2|0:2,0:0:0:0:
|
||||
370,226,177791,2,0,P|421:244|491:238,1,83.9949974366761,2|0,0:2|1:2,0:0:0:0:
|
||||
325,83,178107,2,0,P|364:67|406:63,1,83.9949974366761,2|8,0:2|0:2,0:0:0:0:
|
||||
302,283,178423,6,0,P|283:235|280:181,1,83.9949974366761,6|0,0:2|1:2,0:0:0:0:
|
||||
173,35,178739,2,0,P|167:76|150:115,1,83.9949974366761,2|8,0:2|0:2,0:0:0:0:
|
||||
203,282,179054,1,2,0:2:0:0:
|
||||
58,125,179212,2,0,P|75:163|81:204,1,83.9949974366761,2|0,1:2|0:0,0:0:0:0:
|
||||
266,91,179528,2,0,P|250:129|244:170,1,83.9949974366761,10|0,0:2|0:0,0:0:0:0:
|
||||
379,354,179844,6,0,L|490:361,1,83.9949974366761,6|2,1:2|0:2,0:0:0:0:
|
||||
252,193,180160,2,0,L|141:200,1,83.9949974366761,10|2,0:2|0:2,0:0:0:0:
|
||||
385,339,180475,2,0,L|496:346,1,83.9949974366761,2|2,1:2|0:2,0:0:0:0:
|
||||
258,178,180791,2,0,L|147:185,1,83.9949974366761,10|2,0:2|0:2,0:0:0:0:
|
||||
295,333,181107,5,2,1:2:0:0:
|
||||
334,153,181265,1,10,0:2:0:0:
|
||||
306,325,181423,1,2,1:2:0:0:
|
||||
347,148,181581,1,2,0:2:0:0:
|
||||
317,319,181739,2,0,L|324:208,1,83.9949974366761,10|10,0:2|0:2,0:0:0:0:
|
||||
237,65,182054,1,2,1:2:0:0:
|
||||
440,112,182212,1,10,0:2:0:0:
|
||||
225,77,182370,5,14,0:2:0:0:
|
||||
173,281,183476,5,14,0:2:0:0:
|
||||
173,281,184265,6,0,L|263:276,1,90.6674982014809,14|0,0:2|0:0,0:0:0:0:
|
||||
266,265,184581,2,0,L|183:268,1,60.4449988009873,14|0,0:2|1:2,0:0:0:0:
|
||||
180,254,184818,1,0,1:2:0:0:
|
||||
180,254,184897,1,6,1:2:0:0:
|
||||
402,65,186002,5,14,0:2:0:0:
|
||||
402,65,186791,6,0,L|311:60,1,90.6674982014809,14|0,0:0|0:0,0:0:0:0:
|
||||
309,49,187107,2,0,L|397:54,1,60.4449988009873,14|0,0:0|1:0,0:0:0:0:
|
||||
432,107,187344,5,0,1:0:0:0:
|
||||
432,107,187423,2,0,P|420:151|413:220,1,83.9949974366761,6|0,1:2|0:0,0:0:0:0:
|
||||
460,324,187739,1,10,0:2:0:0:
|
||||
270,233,187897,2,0,P|263:191|252:151,1,83.9949974366761,2|0,0:2|1:2,0:0:0:0:
|
||||
345,361,188212,2,0,P|351:319|362:279,1,83.9949974366761,2|8,0:0|0:2,0:0:0:0:
|
||||
223,129,188528,6,0,B|121:153|190:198|70:228,1,167.989994873352,6|0,0:0|0:0,0:0:0:0:
|
||||
195,36,189002,2,0,P|245:36|304:61,1,83.9949974366761,10|0,0:2|0:0,0:0:0:0:
|
||||
315,225,189318,2,0,P|265:225|206:200,1,83.9949974366761,2|0,1:2|0:0,0:0:0:0:
|
||||
426,87,189633,2,0,P|406:131|393:207,1,83.9949974366761,8|0,0:0|0:0,0:0:0:0:
|
||||
370,384,189949,6,0,P|344:289|302:200,1,167.989994873352,6|10,1:2|0:2,0:0:0:0:
|
||||
190,82,190423,2,0,P|153:65|108:64,1,83.9949974366761,2|0,0:0|1:2,0:0:0:0:
|
||||
221,254,190739,2,0,P|262:253|300:236,1,83.9949974366761,2|8,0:0|0:2,0:0:0:0:
|
||||
189,116,191054,1,2,0:0:0:0:
|
||||
378,11,191212,6,0,P|348:92|339:178,1,167.989994873352,2|10,1:2|0:2,0:0:0:0:
|
||||
465,289,191686,1,2,0:0:0:0:
|
||||
363,105,191844,2,0,P|354:153|356:219,1,83.9949974366761,2|2,1:2|0:0,0:0:0:0:
|
||||
421,369,192160,1,8,0:2:0:0:
|
||||
421,369,192318,1,10,0:2:0:0:
|
||||
221,263,192791,6,0,B|384:248|246:150|453:123,1,266.507506303202,12|0,0:2|0:0,0:0:0:0:
|
||||
439,136,193423,2,0,B|266:161|390:256|231:272,1,266.507506303202,12|0,0:0|0:0,0:0:0:0:
|
||||
238,282,194054,2,0,B|396:266|272:171|445:146,1,266.507506303202,12|0,0:0|0:0,0:0:0:0:
|
||||
452,156,194686,2,0,B|279:181|403:276|245:292,1,266.507506303202,12|0,0:0|0:0,0:0:0:0:
|
||||
250,303,195317,2,0,B|409:286|285:191|458:166,1,266.507506303202,12|0,0:0|0:0,0:0:0:0:
|
||||
461,188,195949,2,0,P|458:133|433:68,1,114.217502701372,12|0,0:0|0:0,0:0:0:0:
|
||||
411,61,196265,6,0,P|376:85|317:90,1,76.1450018009148,0|10,1:2|0:2,0:0:0:0:
|
||||
136,47,196581,1,8,0:2:0:0:
|
||||
314,7,196739,1,2,1:2:0:0:
|
||||
120,52,196897,1,8,0:2:0:0:
|
||||
298,12,197055,1,8,0:2:0:0:
|
||||
104,58,197212,2,0,P|96:101|91:167,1,76.1450018009148,8|8,0:2|0:2,0:0:0:0:
|
||||
136,317,197528,6,0,P|205:285|247:284,1,83.9949974366761,6|0,1:2|0:0,0:0:0:0:
|
||||
384,371,197844,1,10,0:2:0:0:
|
||||
317,207,198002,2,0,P|248:175|206:174,1,83.9949974366761,2|0,0:0|1:2,0:0:0:0:
|
||||
373,345,198318,2,0,P|413:334|448:311,1,83.9949974366761,2|8,0:0|0:2,0:0:0:0:
|
||||
436,127,198633,6,0,P|419:169|412:229,1,83.9949974366761,2|0,0:0|1:2,0:0:0:0:
|
||||
264,23,198949,2,0,P|281:65|288:125,1,83.9949974366761,2|8,0:0|0:2,0:0:0:0:
|
||||
242,254,199265,1,2,0:0:0:0:
|
||||
414,124,199423,2,0,P|397:166|390:226,1,83.9949974366761,2|0,1:2|0:0,0:0:0:0:
|
||||
214,266,199739,2,0,P|206:224|190:186,1,83.9949974366761,10|0,0:2|0:0,0:0:0:0:
|
||||
38,39,200054,6,0,L|49:128,1,83.9949974366761,6|2,1:2|0:2,0:0:0:0:
|
||||
86,302,200370,2,0,L|96:218,1,83.9949974366761,14|2,0:2|0:0,0:0:0:0:
|
||||
48,34,200686,2,0,L|59:123,1,83.9949974366761,6|2,1:2|0:0,0:0:0:0:
|
||||
96,297,201002,2,0,L|106:213,1,83.9949974366761,14|2,0:2|0:0,0:0:0:0:
|
||||
223,68,201318,5,2,1:2:0:0:
|
||||
211,238,201476,1,10,0:2:0:0:
|
||||
239,61,201633,1,10,0:2:0:0:
|
||||
227,231,201791,1,2,0:0:0:0:
|
||||
255,52,201949,2,0,L|239:170,1,83.9949974366761,10|10,0:2|0:2,0:0:0:0:
|
||||
218,340,202265,1,2,1:2:0:0:
|
||||
309,179,202423,1,10,0:2:0:0:
|
||||
328,301,202581,5,6,0:2:0:0:
|
||||
459,23,203528,6,0,L|374:30,1,60.4449988009873,14|2,0:2|0:2,0:0:0:0:
|
||||
305,177,203844,5,6,1:2:0:0:
|
||||
305,177,204002,1,2,0:2:0:0:
|
||||
264,26,204160,1,10,0:2:0:0:
|
||||
264,26,204318,1,2,0:2:0:0:
|
||||
210,186,204476,1,2,1:2:0:0:
|
||||
210,186,204633,2,0,L|203:288,1,76.1450018009148,2|8,0:2|0:2,0:0:0:0:
|
||||
62,159,204949,6,0,L|69:261,1,76.1450018009148,2|0,0:0|1:2,0:0:0:0:
|
||||
192,357,205265,2,0,P|232:356|272:325,1,76.1450018009148,2|8,0:0|0:2,0:0:0:0:
|
||||
398,216,205581,2,0,P|365:197|327:197,1,76.1450018009148,2|4,0:0|1:2,0:0:0:0:
|
||||
407,341,205897,1,2,0:0:0:0:
|
||||
493,184,206054,2,0,P|487:146|478:109,1,76.1450018009148,14|2,0:2|0:0,0:0:0:0:
|
||||
311,23,206370,6,0,P|278:40|225:40,1,76.1450018009148,4|2,1:2|0:0,0:0:0:0:
|
||||
76,13,206686,1,10,0:2:0:0:
|
||||
76,13,206844,1,2,0:0:0:0:
|
||||
186,145,207002,1,2,1:2:0:0:
|
||||
186,145,207160,2,0,P|219:162|257:164,1,76.1450018009148,2|10,0:0|0:2,0:0:0:0:
|
||||
102,30,207476,6,0,P|132:97|145:198,1,152.29000360183,2|0,0:0|0:0,0:0:0:0:
|
||||
73,352,207949,1,8,0:2:0:0:
|
||||
73,352,208107,1,0,0:0:0:0:
|
||||
188,244,208265,1,6,1:2:0:0:
|
||||
188,244,208423,2,0,P|245:224|279:232,1,76.1450018009148,2|14,0:0|0:2,0:0:0:0:
|
||||
356,326,208739,1,2,0:0:0:0:
|
||||
428,170,208897,6,0,P|450:206|462:261,1,76.1450018009148,6|2,1:2|0:0,0:0:0:0:
|
||||
320,106,209212,1,10,0:2:0:0:
|
||||
320,106,209370,1,2,0:0:0:0:
|
||||
347,275,209528,1,2,1:2:0:0:
|
||||
347,275,209686,1,2,0:0:0:0:
|
||||
228,135,209844,1,10,0:2:0:0:
|
||||
135,283,210002,6,0,B|142:192|95:232|109:126,1,152.29000360183,6|2,0:0|0:0,0:0:0:0:
|
||||
226,12,210476,1,8,0:2:0:0:
|
||||
226,12,210633,1,2,0:0:0:0:
|
||||
188,167,210791,2,0,P|210:206|215:264,1,76.1450018009148,2|0,1:2|0:0,0:0:0:0:
|
||||
289,102,211107,1,10,0:2:0:0:
|
||||
289,102,211265,1,2,0:0:0:0:
|
||||
357,254,211423,6,0,P|335:293|330:351,1,76.1450018009148,6|0,1:2|0:0,0:0:0:0:
|
||||
320,177,211739,1,8,0:2:0:0:
|
||||
420,337,211897,2,0,P|438:270|437:185,1,152.29000360183,2|2,0:0|0:0,0:0:0:0:
|
||||
330,24,212370,1,8,0:2:0:0:
|
||||
188,167,212528,6,0,P|186:242|205:316,1,152.29000360183,6|0,0:0|0:0,0:0:0:0:
|
||||
89,221,213002,1,12,0:2:0:0:
|
||||
89,221,213160,1,0,0:0:0:0:
|
||||
205,316,213318,2,0,P|247:311|292:280,1,76.1450018009148,4|0,1:2|0:0,0:0:0:0:
|
||||
355,148,213633,1,12,0:2:0:0:
|
||||
355,148,213791,1,0,0:0:0:0:
|
||||
377,310,213949,6,0,P|360:265|358:210,1,76.1450018009148,6|2,1:2|0:0,0:0:0:0:
|
||||
229,84,214265,2,0,P|223:121|208:156,1,76.1450018009148,10|0,0:2|0:0,0:0:0:0:
|
||||
109,231,214581,1,2,1:2:0:0:
|
||||
109,231,214739,1,2,0:0:0:0:
|
||||
176,22,214897,2,0,P|211:7|249:5,1,76.1450018009148,10|4,0:2|0:0,0:0:0:0:
|
||||
343,176,215212,5,2,1:2:0:0:
|
||||
343,176,215370,1,2,0:0:0:0:
|
||||
304,15,215528,1,10,0:2:0:0:
|
||||
304,15,215686,1,2,0:0:0:0:
|
||||
425,197,215844,2,0,P|459:212|516:204,1,76.1450018009148,2|0,1:2|0:0,0:0:0:0:
|
||||
386,33,216160,2,0,P|348:32|313:47,1,76.1450018009148,8|0,0:2|0:0,0:0:0:0:
|
||||
269,217,216476,6,0,P|303:301|320:394,1,152.29000360183,6|10,1:2|0:2,0:0:0:0:
|
||||
343,178,216949,1,0,0:0:0:0:
|
||||
192,259,217107,2,0,P|183:301|180:354,1,76.1450018009148,2|2,1:2|0:0,0:0:0:0:
|
||||
73,212,217423,1,10,0:2:0:0:
|
||||
73,212,217581,1,4,0:0:0:0:
|
||||
197,75,217739,6,0,B|295:94|237:137|354:161,1,152.29000360183,2|8,1:2|0:2,0:0:0:0:
|
||||
194,159,218212,1,0,0:0:0:0:
|
||||
345,61,218370,2,0,P|394:48|452:48,1,76.1450018009148,6|0,1:2|0:0,0:0:0:0:
|
||||
416,260,218686,2,0,P|378:255|341:245,1,76.1450018009148,14|0,0:2|0:0,0:0:0:0:
|
||||
485,93,219002,6,0,P|451:161|435:252,1,152.29000360183,6|8,1:2|0:2,0:0:0:0:
|
||||
339,360,219476,1,0,0:0:0:0:
|
||||
374,147,219633,2,0,P|408:215|424:306,1,152.29000360183,0|10,1:2|0:2,0:0:0:0:
|
||||
248,368,220107,1,6,0:0:0:0:
|
||||
201,179,220265,5,2,1:2:0:0:
|
||||
201,179,220423,1,2,0:0:0:0:
|
||||
239,341,220581,1,10,0:2:0:0:
|
||||
239,341,220739,1,2,0:0:0:0:
|
||||
122,203,220897,2,0,P|88:189|38:184,1,76.1450018009148,2|0,1:2|0:0,0:0:0:0:
|
||||
257,253,221212,2,0,P|294:247|329:233,1,76.1450018009148,8|0,0:2|0:0,0:0:0:0:
|
||||
442,40,221528,6,0,L|434:149,1,76.1450018009148,6|2,1:2|0:0,0:0:0:0:
|
||||
417,284,221844,2,0,L|411:208,1,76.1450018009148,10|2,0:2|0:0,0:0:0:0:
|
||||
336,36,222160,2,0,L|328:145,1,76.1450018009148,2|2,1:2|0:0,0:0:0:0:
|
||||
311,280,222476,2,0,L|305:204,1,76.1450018009148,10|2,0:2|0:0,0:0:0:0:
|
||||
165,91,222791,5,2,1:2:0:0:
|
||||
143,229,222949,1,10,0:2:0:0:
|
||||
156,57,223107,1,10,0:2:0:0:
|
||||
125,249,223265,1,2,0:0:0:0:
|
||||
142,30,223423,2,0,L|67:25,1,76.1450018009148,2|10,1:2|0:2,0:0:0:0:
|
||||
209,171,223739,1,2,1:2:0:0:
|
||||
3,159,223897,1,10,0:2:0:0:
|
||||
111,129,224054,5,6,0:2:0:0:
|
||||
82,60,234160,5,2,1:2:0:0:
|
||||
82,60,234476,5,2,1:2:0:0:
|
||||
82,60,234791,5,2,1:2:0:0:
|
||||
82,60,235107,5,6,0:2:0:0:
|
||||
312,238,235423,6,0,P|360:258|414:258,1,83.9949974366761,6|0,1:2|0:0,0:0:0:0:
|
||||
262,105,235739,1,10,0:2:0:0:
|
||||
170,284,235897,2,0,P|122:304|68:304,1,83.9949974366761,2|0,0:0|1:2,0:0:0:0:
|
||||
83,113,236212,2,0,P|101:157|110:208,1,83.9949974366761,2|8,0:0|0:2,0:0:0:0:
|
||||
258,40,236528,6,0,P|226:117|210:207,1,167.989994873352,2|2,0:0|0:0,0:0:0:0:
|
||||
327,323,237002,1,10,0:2:0:0:
|
||||
170,284,237160,1,2,0:0:0:0:
|
||||
316,147,237318,2,0,P|361:132|413:134,1,83.9949974366761,6|0,1:2|0:0,0:0:0:0:
|
||||
417,319,237633,2,0,P|372:304|320:306,1,83.9949974366761,14|0,0:2|0:0,0:0:0:0:
|
||||
153,376,237949,6,0,P|177:308|188:208,1,167.989994873352,6|10,1:2|0:2,0:0:0:0:
|
||||
81,67,238423,2,0,P|85:113|102:165,1,83.9949974366761,2|0,0:0|1:2,0:0:0:0:
|
||||
277,190,238739,2,0,P|288:149|291:107,1,83.9949974366761,2|8,0:0|0:2,0:0:0:0:
|
||||
429,281,239054,6,0,P|412:222|402:108,1,167.989994873352,2|2,0:0|0:0,0:0:0:0:
|
||||
252,12,239528,1,10,0:2:0:0:
|
||||
383,93,239686,1,2,0:0:0:0:
|
||||
224,0,239844,2,0,P|237:44|245:90,1,83.9949974366761,6|0,1:2|0:0,0:0:0:0:
|
||||
282,275,240160,2,0,P|294:234|301:193,1,83.9949974366761,14|0,0:2|0:0,0:0:0:0:
|
||||
155,74,240476,6,0,P|110:54|58:51,1,83.9949974366761,6|0,1:2|0:0,0:0:0:0:
|
||||
177,214,240791,1,10,0:2:0:0:
|
||||
285,27,240949,2,0,P|330:7|382:4,1,83.9949974366761,2|0,0:0|1:2,0:0:0:0:
|
||||
190,181,241265,2,0,P|145:161|93:158,1,83.9949974366761,2|8,0:0|0:2,0:0:0:0:
|
||||
350,91,241581,6,0,P|370:154|363:271,1,167.989994873352,6|0,0:0|0:0,0:0:0:0:
|
||||
172,349,242054,2,0,P|212:328|267:318,1,83.9949974366761,10|0,0:2|0:0,0:0:0:0:
|
||||
94,180,242370,2,0,P|134:200|189:210,1,83.9949974366761,2|0,1:2|0:0,0:0:0:0:
|
||||
256,347,242686,2,0,P|215:357|177:376,1,83.9949974366761,10|0,0:2|0:0,0:0:0:0:
|
||||
291,209,243002,6,0,P|306:160|309:104,1,83.9949974366761,6|0,1:2|0:0,0:0:0:0:
|
||||
386,277,243318,1,10,0:2:0:0:
|
||||
225,165,243476,2,0,P|210:116|207:60,1,83.9949974366761,2|0,0:0|1:2,0:0:0:0:
|
||||
406,36,243791,2,0,P|400:77|387:117,1,83.9949974366761,2|8,0:0|0:2,0:0:0:0:
|
||||
308,225,244107,1,2,0:0:0:0:
|
||||
246,15,244265,6,0,P|196:10|149:27,1,83.9949974366761,2|2,1:2|0:0,0:0:0:0:
|
||||
89,217,244581,1,10,0:2:0:0:
|
||||
89,217,244739,1,2,0:0:0:0:
|
||||
242,41,244897,2,0,P|192:36|145:53,1,83.9949974366761,2|2,1:2|0:0,0:0:0:0:
|
||||
189,240,245212,1,10,0:2:0:0:
|
||||
189,240,245370,1,2,0:0:0:0:
|
||||
311,93,245528,6,0,P|355:75|401:75,1,83.9949974366761,6|0,1:2|0:0,0:0:0:0:
|
||||
400,292,245844,1,10,0:2:0:0:
|
||||
250,154,246002,2,0,P|211:137|170:134,1,83.9949974366761,2|0,0:0|1:2,0:0:0:0:
|
||||
320,311,246318,2,0,P|361:308|399:291,1,83.9949974366761,2|8,0:0|0:2,0:0:0:0:
|
||||
488,108,246633,6,0,P|474:150|464:206,1,83.9949974366761,6|0,0:0|1:2,0:0:0:0:
|
||||
314,323,246949,2,0,P|305:281|292:242,1,83.9949974366761,2|8,0:0|0:2,0:0:0:0:
|
||||
202,67,247265,2,0,P|163:54|67:145,1,167.989994873352,2|0,0:0|0:0,0:0:0:0:
|
||||
190,256,247739,1,8,0:2:0:0:
|
||||
200,100,247897,1,0,0:0:0:0:
|
||||
188,283,248054,6,0,P|228:311|277:313,1,83.9949974366761,6|0,1:2|0:0,0:0:0:0:
|
||||
342,145,248370,1,10,0:2:0:0:
|
||||
338,350,248528,2,0,P|359:307|368:260,1,83.9949974366761,2|0,0:0|1:2,0:0:0:0:
|
||||
290,80,248844,2,0,P|300:120|319:158,1,83.9949974366761,2|8,0:0|0:2,0:0:0:0:
|
||||
432,320,249160,6,0,P|453:277|462:230,1,83.9949974366761,6|0,0:0|1:2,0:0:0:0:
|
||||
384,50,249476,2,0,P|394:90|413:128,1,83.9949974366761,2|8,0:0|0:2,0:0:0:0:
|
||||
449,329,249791,2,0,P|479:256|487:165,1,167.989994873352,2|0,0:0|0:0,0:0:0:0:
|
||||
351,34,250265,1,12,0:2:0:0:
|
||||
312,187,250423,1,0,0:0:0:0:
|
||||
196,18,250581,6,0,P|215:60|224:126,1,83.9949974366761,6|0,1:2|0:0,0:0:0:0:
|
||||
161,257,250897,1,10,0:2:0:0:
|
||||
88,110,251054,2,0,P|69:152|60:218,1,83.9949974366761,2|0,0:0|1:2,0:0:0:0:
|
||||
188,336,251370,2,0,P|178:295|161:257,1,83.9949974366761,2|8,0:0|0:2,0:0:0:0:
|
||||
206,65,251686,6,0,P|265:46|305:46,1,83.9949974366761,6|0,0:0|1:2,0:0:0:0:
|
||||
381,245,252002,2,0,P|339:240|300:224,1,83.9949974366761,2|8,0:0|0:2,0:0:0:0:
|
||||
430,103,252318,1,2,0:0:0:0:
|
||||
440,308,252476,2,0,P|463:261|466:209,1,83.9949974366761,2|0,1:2|0:0,0:0:0:0:
|
||||
349,86,252791,2,0,P|342:127|322:163,1,83.9949974366761,10|0,0:2|0:0,0:0:0:0:
|
||||
217,345,253107,5,6,1:2:0:0:
|
||||
229,190,253265,1,2,0:2:0:0:
|
||||
235,365,253423,1,10,0:2:0:0:
|
||||
225,169,253581,2,0,P|187:144|119:129,1,83.9949974366761,2|2,0:2|1:2,0:0:0:0:
|
||||
318,271,253897,1,2,0:2:0:0:
|
||||
337,90,254054,1,10,0:2:0:0:
|
||||
407,267,254212,5,2,0:2:0:0:
|
||||
407,267,254291,1,2,0:2:0:0:
|
||||
407,267,254370,2,0,L|419:155,1,83.9949974366761,2|10,1:2|0:2,0:0:0:0:
|
||||
282,25,254686,1,10,0:2:0:0:
|
||||
314,248,254844,2,0,L|302:136,1,83.9949974366761,2|10,0:2|0:2,0:0:0:0:
|
||||
150,22,255160,1,10,0:2:0:0:
|
||||
297,137,255318,1,2,1:2:0:0:
|
||||
74,180,255476,1,10,0:2:0:0:
|
||||
184,109,255633,5,6,0:0:0:0:
|
||||
66,184,259423,6,0,P|114:169|135:169,1,60.4449988009873,6|0,1:2|1:2,0:0:0:0:
|
||||
227,278,259739,2,0,P|254:289|284:293,1,60.4449988009873,0|0,1:2|1:2,0:0:0:0:
|
||||
374,106,260054,1,6,1:2:0:0:
|
||||
399,293,260212,1,2,1:2:0:0:
|
||||
455,78,260370,1,8,0:2:0:0:
|
||||
396,261,260528,1,8,0:2:0:0:
|
||||
288,83,260686,6,0,P|242:58|191:51,1,83.9949974366761,6|0,1:2|0:0,0:0:0:0:
|
||||
83,215,261002,1,10,0:2:0:0:
|
||||
120,39,261160,2,0,P|139:75|150:135,1,83.9949974366761,2|0,0:2|1:2,0:0:0:0:
|
||||
168,286,261476,2,0,P|177:245|197:208,1,83.9949974366761,2|8,0:0|0:2,0:0:0:0:
|
||||
300,62,261791,6,0,B|402:90|337:130|449:151,1,167.989994873352,6|0,0:0|0:0,0:0:0:0:
|
||||
319,285,262265,2,0,P|306:238|300:177,1,83.9949974366761,10|0,0:2|0:0,0:0:0:0:
|
||||
160,42,262581,2,0,P|153:83|142:123,1,83.9949974366761,2|0,1:2|0:0,0:0:0:0:
|
||||
297,272,262897,2,0,P|284:225|278:164,1,83.9949974366761,8|0,0:0|0:0,0:0:0:0:
|
||||
430,55,263212,6,0,P|470:39|518:40,1,83.9949974366761,6|0,1:2|0:0,0:0:0:0:
|
||||
401,194,263528,1,10,0:2:0:0:
|
||||
282,28,263686,2,0,P|242:12|194:13,1,83.9949974366761,2|0,0:0|1:2,0:0:0:0:
|
||||
124,200,264002,2,0,P|165:199|204:183,1,83.9949974366761,2|8,0:0|0:2,0:0:0:0:
|
||||
93,85,264318,1,2,0:0:0:0:
|
||||
61,277,264476,6,0,P|72:313|77:364,1,83.9949974366761,2|2,1:2|0:0,0:0:0:0:
|
||||
229,203,264791,2,0,P|217:239|213:290,1,83.9949974366761,10|2,0:2|0:0,0:0:0:0:
|
||||
358,126,265107,2,0,P|369:162|374:213,1,83.9949974366761,2|2,1:2|0:0,0:0:0:0:
|
||||
470,69,265423,1,8,0:2:0:0:
|
||||
470,69,265581,1,10,0:2:0:0:
|
||||
149,40,266054,6,0,P|184:78|242:292,1,266.507506303202,12|0,0:2|0:0,0:0:0:0:
|
||||
253,277,266686,2,0,P|233:146|158:37,1,266.507506303202,12|0,0:0|0:0,0:0:0:0:
|
||||
168,33,267318,2,0,P|203:71|261:285,1,266.507506303202,12|0,0:0|0:0,0:0:0:0:
|
||||
272,270,267949,2,0,P|252:139|177:30,1,266.507506303202,12|0,0:0|0:0,0:0:0:0:
|
||||
187,23,268581,2,0,P|262:131|281:262,1,266.507506303202,12|0,0:0|0:0,0:0:0:0:
|
||||
294,261,269212,2,0,P|303:193|327:142,1,114.217502701372,12|0,0:0|0:0,0:0:0:0:
|
||||
340,145,269528,6,0,P|363:175|378:212,1,76.1450018009148,0|10,1:2|0:2,0:0:0:0:
|
||||
447,373,269844,1,8,0:2:0:0:
|
||||
465,198,270002,1,2,1:2:0:0:
|
||||
450,358,270160,1,8,0:2:0:0:
|
||||
468,183,270318,1,8,0:2:0:0:
|
||||
344,367,270476,2,0,P|303:380|248:380,1,76.1450018009148,8|8,0:2|0:2,0:0:0:0:
|
||||
146,242,270791,6,0,P|129:193|126:127,1,83.9949974366761,6|0,1:2|0:0,0:0:0:0:
|
||||
264,74,271107,1,10,0:2:0:0:
|
||||
218,287,271265,2,0,P|181:318|119:326,1,83.9949974366761,2|0,0:0|1:2,0:0:0:0:
|
||||
245,153,271581,2,0,P|284:165|315:193,1,83.9949974366761,2|8,0:0|0:2,0:0:0:0:
|
||||
349,382,271897,6,0,P|337:335|337:292,1,83.9949974366761,2|0,0:0|1:2,0:0:0:0:
|
||||
446,128,272212,2,0,P|444:169|433:210,1,83.9949974366761,2|8,0:0|0:2,0:0:0:0:
|
||||
324,72,272528,1,2,0:0:0:0:
|
||||
415,294,272686,2,0,P|464:289|506:260,1,83.9949974366761,2|0,1:2|0:0,0:0:0:0:
|
||||
349,149,273002,2,0,P|307:151|270:170,1,83.9949974366761,10|0,0:2|0:0,0:0:0:0:
|
||||
148,303,273318,6,0,P|129:259|127:210,1,83.9949974366761,6|2,1:2|0:2,0:0:0:0:
|
||||
199,70,273633,1,14,0:2:0:0:
|
||||
247,249,273791,2,0,P|266:205|268:156,1,83.9949974366761,2|6,0:0|1:2,0:0:0:0:
|
||||
242,3,274107,1,2,0:0:0:0:
|
||||
143,195,274265,2,0,P|124:151|122:102,1,83.9949974366761,14|2,0:2|0:0,0:0:0:0:
|
||||
272,13,274581,6,0,L|385:20,1,83.9949974366761,2|10,1:2|0:2,0:0:0:0:
|
||||
488,195,274897,2,0,L|375:202,1,83.9949974366761,10|2,0:2|0:0,0:0:0:0:
|
||||
285,37,275212,1,10,0:2:0:0:
|
||||
315,233,275370,1,10,0:2:0:0:
|
||||
283,20,275528,1,2,1:2:0:0:
|
||||
313,216,275686,1,10,0:2:0:0:
|
||||
254,127,275844,5,6,0:2:0:0:
|
||||
71,80,278370,6,0,B|118:74|166:40|166:40|130:88,1,125.992496155014,12|0,0:0|0:0,0:0:0:0:
|
||||
256,61,278686,2,0,B|242:43|242:43|291:77|337:83,1,125.992496155014,8|0,0:0|0:0,0:0:0:0:
|
||||
351,186,279002,2,0,B|297:179|242:141|242:141|261:165,1,149.542498859081,12|0,0:0|0:0,0:0:0:0:
|
||||
149,163,279318,2,0,B|167:138|167:138|112:176|59:183,1,149.542498859081,8|0,0:0|0:0,0:0:0:0:
|
||||
205,229,279633,5,14,0:2:0:0:
|
||||
480,25,280265,6,0,B|160:57|384:313|32:345,1,580.900014182129,6|0,1:2|0:0,0:0:0:0:
|
||||
+1
File diff suppressed because one or more lines are too long
@@ -0,0 +1,277 @@
|
||||
osu file format v14
|
||||
|
||||
[General]
|
||||
StackLeniency: 0.7
|
||||
Mode: 2
|
||||
|
||||
[Difficulty]
|
||||
HPDrainRate:2
|
||||
CircleSize:2
|
||||
OverallDifficulty:6
|
||||
ApproachRate:6
|
||||
SliderMultiplier:1.1
|
||||
SliderTickRate:1
|
||||
|
||||
[Events]
|
||||
//Background and Video events
|
||||
//Break Periods
|
||||
2,61250,70204
|
||||
//Storyboard Layer 0 (Background)
|
||||
//Storyboard Layer 1 (Fail)
|
||||
//Storyboard Layer 2 (Pass)
|
||||
//Storyboard Layer 3 (Foreground)
|
||||
//Storyboard Layer 4 (Overlay)
|
||||
//Storyboard Sound Samples
|
||||
|
||||
[TimingPoints]
|
||||
4,312.5,4,2,1,70,1,0
|
||||
7425,-100,4,2,1,75,0,0
|
||||
8754,-100,4,2,1,80,0,0
|
||||
9379,-100,4,2,1,80,0,0
|
||||
10004,-100,4,2,1,40,0,0
|
||||
10472,-100,4,2,1,55,0,0
|
||||
10629,-100,4,2,1,65,0,0
|
||||
10941,-100,4,2,1,70,0,0
|
||||
11254,-100,4,2,3,65,0,0
|
||||
12504,-100,4,2,3,65,0,0
|
||||
21254,-100,4,2,1,70,0,0
|
||||
30629,-100,4,2,1,70,0,0
|
||||
30941,-100,4,2,1,70,0,0
|
||||
31254,-100,4,2,1,70,0,0
|
||||
32191,-100,4,2,1,70,0,0
|
||||
32504,-100,4,2,1,70,0,0
|
||||
35629,-100,4,2,1,70,0,0
|
||||
36254,-100,4,2,1,70,0,0
|
||||
37035,-100,4,2,1,70,0,0
|
||||
37504,-100,4,2,1,70,0,0
|
||||
41722,-100,4,2,1,70,0,0
|
||||
42504,-100,4,2,1,70,0,0
|
||||
42816,-100,4,2,1,70,0,0
|
||||
43754,-100,4,2,1,70,0,0
|
||||
44222,-100,4,2,1,70,0,0
|
||||
44691,-100,4,2,1,70,0,0
|
||||
45004,-100,4,2,1,70,0,0
|
||||
45941,-100,4,2,1,70,0,0
|
||||
46254,-100,4,2,1,70,0,0
|
||||
46722,-100,4,2,1,70,0,0
|
||||
47504,-100,4,2,1,70,0,0
|
||||
47816,-100,4,2,1,70,0,0
|
||||
48441,-100,4,2,1,70,0,0
|
||||
48754,-100,4,2,1,70,0,0
|
||||
49222,-100,4,2,1,70,0,0
|
||||
50004,-100,4,2,1,70,0,0
|
||||
50082,-100,4,2,1,25,0,0
|
||||
50160,-100,4,2,1,25,0,0
|
||||
50238,-100,4,2,1,25,0,0
|
||||
50316,-100,4,2,1,25,0,0
|
||||
50394,-100,4,2,1,25,0,0
|
||||
50472,-100,4,2,1,25,0,0
|
||||
50550,-100,4,2,1,25,0,0
|
||||
50629,-100,4,2,1,25,0,0
|
||||
50707,-100,4,2,1,25,0,0
|
||||
50785,-100,4,2,1,25,0,0
|
||||
50863,-100,4,2,1,25,0,0
|
||||
50941,-100,4,2,1,70,0,0
|
||||
51254,-100,4,2,1,70,0,0
|
||||
53754,-100,4,2,1,70,0,0
|
||||
55004,-100,4,2,1,70,0,0
|
||||
56722,-100,4,2,1,70,0,0
|
||||
57972,-100,4,2,1,70,0,0
|
||||
58754,-100,4,2,1,70,0,0
|
||||
59847,-100,4,1,1,65,0,0
|
||||
71254,-100,4,2,1,70,0,0
|
||||
81254,-100,4,2,1,70,0,0
|
||||
83754,-100,4,2,1,70,0,0
|
||||
86254,-100,4,2,1,70,0,0
|
||||
87504,-100,4,2,1,70,0,0
|
||||
91254,-100,4,2,1,70,0,1
|
||||
93754,-100,4,2,1,70,0,1
|
||||
95004,-100,4,2,1,70,0,1
|
||||
100004,-100,4,2,1,70,0,1
|
||||
100550,-100,4,2,1,70,0,1
|
||||
100941,-100,4,2,1,70,0,1
|
||||
103754,-100,4,2,1,70,0,1
|
||||
105004,-100,4,2,1,70,0,1
|
||||
108754,-100,4,2,1,70,0,1
|
||||
110004,-100,4,2,1,70,0,1
|
||||
110629,-100,4,2,1,70,0,1
|
||||
112504,-100,4,2,1,70,0,1
|
||||
113129,-100,4,2,1,70,0,1
|
||||
113754,-100,4,2,1,70,0,1
|
||||
114379,-100,4,2,1,70,0,1
|
||||
114847,-100,4,2,1,70,0,1
|
||||
115863,-100,4,2,1,70,0,0
|
||||
115941,-100,4,2,1,70,0,1
|
||||
116019,-100,4,2,1,70,0,0
|
||||
|
||||
[HitObjects]
|
||||
229,264,1254,6,0,P|161:183|254:125,1,220,4|8,1:2|0:0,0:0:0:0:
|
||||
362,120,2191,1,2,0:0:0:0:
|
||||
228,119,2504,2,0,L|87:118,1,110,0|2,1:0|0:0,0:0:0:0:
|
||||
231,216,3129,2,0,L|372:215,1,110,8|2,0:0|0:0,0:0:0:0:
|
||||
465,214,3754,6,0,P|439:111|303:80,1,220,0|10,1:0|0:0,0:0:0:0:
|
||||
217,117,4691,1,2,0:0:0:0:
|
||||
365,123,5004,2,0,L|367:252,1,110,0|2,1:0|0:0,0:0:0:0:
|
||||
228,313,5629,2,0,L|357:315,1,110,8|2,2:0|0:0,0:0:0:0:
|
||||
197,303,6254,6,0,P|98:270|59:136,1,220,4|8,1:2|0:0,0:0:0:0:
|
||||
171,156,7191,1,2,0:0:0:0:
|
||||
290,138,7504,2,0,L|308:275,1,110,0|2,1:0|0:0,0:0:0:0:
|
||||
178,249,8129,1,8,0:0:0:0:
|
||||
308,247,8441,1,2,0:0:0:0:
|
||||
168,249,8754,6,0,L|53:245,1,110,4|0,1:2|3:0,0:0:0:0:
|
||||
226,153,9379,2,0,L|343:149,1,110,2|2,1:3|3:2,0:0:0:0:
|
||||
256,192,10004,12,2,10941,1:3:0:0:
|
||||
173,329,11254,6,0,P|79:249|178:220,1,220,4|2,0:0|1:3,0:0:0:0:
|
||||
263,211,12191,1,10,0:0:0:0:
|
||||
119,212,12504,2,0,L|103:52,1,110,2|8,1:3|0:0,0:0:0:0:
|
||||
246,65,13129,2,0,L|103:66,1,110,2|8,1:3|0:0,0:0:0:0:
|
||||
290,64,13754,6,0,P|384:120|284:162,1,220,6|2,1:3|1:3,0:0:0:0:
|
||||
182,220,14691,1,8,0:0:0:0:
|
||||
335,208,15004,2,0,L|75:142,1,220,2|2,1:3|1:3,0:0:0:0:
|
||||
275,153,15941,1,8,0:0:0:0:
|
||||
120,151,16254,6,0,P|157:258|268:282,1,220,6|2,1:3|1:3,0:0:0:0:
|
||||
405,290,17191,1,10,0:0:0:0:
|
||||
250,286,17504,2,0,L|96:264,2,110,6|8|2,1:3|0:0|1:3,0:0:0:0:
|
||||
403,275,18441,1,8,0:0:0:0:
|
||||
250,286,18754,6,0,P|186:189|264:160,1,220,6|6,1:3|1:3,0:0:0:0:
|
||||
404,157,19691,1,8,0:0:0:0:
|
||||
249,151,20004,5,6,1:3:0:0:
|
||||
245,233,20316,1,8,0:0:0:0:
|
||||
240,317,20629,1,8,0:0:0:0:
|
||||
399,222,20941,1,4,1:2:0:0:
|
||||
240,317,21254,6,0,P|140:279|114:128,1,220,4|2,1:2|1:3,0:0:0:0:
|
||||
243,184,22191,1,8,1:0:0:0:
|
||||
386,178,22504,2,0,L|403:327,1,110,0|8,1:0|1:0,0:0:0:0:
|
||||
264,338,23129,2,0,L|119:336,1,110,2|8,1:3|1:0,0:0:0:0:
|
||||
292,300,23754,6,0,P|361:228|270:161,1,220,0|2,1:0|1:3,0:0:0:0:
|
||||
147,160,24691,1,8,1:0:0:0:
|
||||
285,124,25004,2,0,L|391:50,2,110,4|10|2,1:0|1:0|1:0,0:0:0:0:
|
||||
428,128,25941,1,0,1:0:0:0:
|
||||
284,130,26254,6,0,P|319:238|428:274,1,220,4|2,1:2|1:3,0:0:0:0:
|
||||
268,276,27191,1,8,1:0:0:0:
|
||||
124,277,27504,2,0,L|109:125,1,110,0|8,1:0|0:0,0:0:0:0:
|
||||
250,126,28129,2,0,L|115:102,1,110,2|8,1:3|1:0,0:0:0:0:
|
||||
284,96,28754,6,0,P|385:143|411:266,1,220,4|2,1:0|1:0,0:0:0:0:
|
||||
273,240,29691,1,8,1:0:0:0:
|
||||
416,236,30004,5,4,1:2:0:0:
|
||||
436,94,30316,1,8,1:0:0:0:
|
||||
294,75,30629,2,0,L|144:75,1,110,6|0,1:0|3:0,0:0:0:0:
|
||||
351,138,31254,6,0,P|441:184|405:291,1,220,4|8,0:0|0:0,0:0:0:0:
|
||||
277,246,32191,1,2,1:2:0:0:
|
||||
144,299,32504,2,0,L|411:257,1,220,4|8,1:0|1:0,0:0:0:0:
|
||||
201,244,33440,1,4,1:0:0:0:
|
||||
140,283,33597,6,0,P|98:231|162:160,1,165,4|8,1:2|0:0,0:0:0:0:
|
||||
239,112,34379,2,0,L|126:97,1,110,4|8,3:0|1:0,0:0:0:0:
|
||||
264,173,35004,6,0,L|396:189,1,110,0|8,1:0|1:0,0:0:0:0:
|
||||
223,227,35629,2,0,L|218:103,1,110,10|2,1:0|1:2,0:0:0:0:
|
||||
379,115,36254,1,4,1:2:0:0:
|
||||
398,117,37035,2,0,L|403:211,1,82.5,4|4,1:0|1:0,0:0:0:0:
|
||||
284,252,37504,6,0,L|169:243,1,110,0|2,1:0|0:0,0:0:0:0:
|
||||
305,327,38129,2,0,L|423:317,1,110,2|8,0:0|1:2,0:0:0:0:
|
||||
415,223,38597,6,0,L|233:207,1,165,4|14,1:2|1:0,0:0:0:0:
|
||||
113,252,39379,2,0,L|103:126,1,110,6|6,1:0|1:0,0:0:0:0:
|
||||
244,114,40004,5,4,1:2:0:0:
|
||||
250,185,40316,1,2,2:0:0:0:
|
||||
253,260,40629,1,2,1:2:0:0:
|
||||
89,272,40941,1,0,1:0:0:0:
|
||||
256,305,41254,6,0,P|342:288|366:191,2,165,4|4|8,1:0|1:0|2:0,0:0:0:0:
|
||||
98,202,42504,2,0,P|184:185|208:88,2,165,4|4|8,1:0|1:0|1:0,0:0:0:0:
|
||||
249,82,43754,6,0,L|58:83,2,165,4|4|8,1:0|1:0|1:0,0:0:0:0:
|
||||
256,192,45004,12,2,45941,1:0:0:0:
|
||||
332,305,46254,6,0,P|396:289|434:187,2,165,4|0|0,1:0|1:0|1:0,0:0:0:0:
|
||||
180,305,47504,2,0,P|116:289|78:187,2,165,4|4|0,1:0|1:0|1:0,0:0:0:0:
|
||||
335,231,48754,6,0,L|145:232,2,165,4|4|8,1:0|1:0|1:0,0:0:0:0:
|
||||
256,192,50004,12,2,50941,0:0:0:0:
|
||||
119,198,51254,6,0,L|104:299,1,82.5,4|4,1:0|1:0,0:0:0:0:
|
||||
230,290,51722,2,0,L|252:120,1,165,4|2,1:0|1:0,0:0:0:0:
|
||||
373,113,52504,6,0,L|388:214,1,82.5,4|4,1:0|1:0,0:0:0:0:
|
||||
269,207,52972,2,0,P|240:107|282:67,1,165,4|2,1:0|1:0,0:0:0:0:
|
||||
424,88,53754,6,0,L|325:81,1,82.5,4|4,1:0|1:0,0:0:0:0:
|
||||
228,196,54222,2,0,L|408:181,1,165,4|2,1:0|1:0,0:0:0:0:
|
||||
241,238,55004,6,0,L|340:231,1,82.5,4|4,1:0|1:0,0:0:0:0:
|
||||
437,346,55472,2,0,L|257:331,1,165,2|10,1:0|1:0,0:0:0:0:
|
||||
130,320,56254,5,4,1:2:0:0:
|
||||
260,244,56488,2,0,L|272:143,1,82.5,2|2,1:0|1:0,0:0:0:0:
|
||||
162,106,56957,2,0,L|64:127,1,82.5,2|2,1:0|1:0,0:0:0:0:
|
||||
233,322,57504,5,2,1:0:0:0:
|
||||
363,246,57738,2,0,L|270:233,1,82.5,2|2,1:0|1:0,0:0:0:0:
|
||||
174,230,58207,2,0,L|76:251,1,82.5,2|2,1:0|1:0,0:0:0:0:
|
||||
261,143,58754,6,0,L|76:124,2,165,4|4|4,1:2|1:2|1:2,0:0:0:0:
|
||||
256,192,60004,12,0,60941,1:0:0:0:
|
||||
258,195,71254,5,0,1:0:0:0:
|
||||
69,186,71722,2,0,L|59:367,1,165,2|2,0:0|0:0,0:0:0:0:
|
||||
220,198,72504,1,2,0:0:0:0:
|
||||
254,195,73754,5,4,0:0:0:0:
|
||||
443,186,74222,2,0,L|453:367,1,165,2|2,0:0|0:0,0:0:0:0:
|
||||
292,198,75004,1,2,0:0:0:0:
|
||||
136,196,76254,5,4,0:0:0:0:
|
||||
349,161,76722,2,0,L|165:160,1,165,2|2,0:0|0:0,0:0:0:0:
|
||||
350,161,77504,1,2,0:0:0:0:
|
||||
376,196,78754,5,4,0:0:0:0:
|
||||
163,161,79222,2,0,L|347:160,1,165,0|2,0:0|0:0,0:0:0:0:
|
||||
179,253,80004,1,2,0:0:0:0:
|
||||
88,255,80316,1,2,0:0:0:0:
|
||||
88,255,80629,1,2,0:0:0:0:
|
||||
192,256,80941,1,6,1:2:0:0:
|
||||
336,252,81254,6,0,L|220:254,1,110,4|10,1:2|1:0,0:0:0:0:
|
||||
366,149,81879,2,0,L|482:151,1,110,4|10,1:2|1:0,0:0:0:0:
|
||||
319,41,82504,1,4,1:2:0:0:
|
||||
224,96,82816,1,8,1:0:0:0:
|
||||
196,202,83129,1,4,1:2:0:0:
|
||||
248,298,83441,1,10,1:0:0:0:
|
||||
390,323,83754,6,0,L|271:324,2,110,4|2|2,1:2|0:0|0:0,0:0:0:0:
|
||||
104,321,85004,1,4,1:2:0:0:
|
||||
324,329,86254,5,4,1:0:0:0:
|
||||
422,281,86566,1,4,1:0:0:0:
|
||||
446,173,86879,1,4,1:0:0:0:
|
||||
411,68,87191,1,4,1:0:0:0:
|
||||
287,49,87504,6,0,L|402:51,1,110,4|6,1:0|1:0,0:0:0:0:
|
||||
265,155,88129,2,0,L|141:153,1,110,4|6,1:0|1:0,0:0:0:0:
|
||||
308,153,88754,5,2,1:0:0:0:
|
||||
408,197,89066,1,2,1:0:0:0:
|
||||
432,304,89379,1,2,1:0:0:0:
|
||||
348,374,89691,1,2,1:0:0:0:
|
||||
256,192,90004,12,4,90941,1:2:0:0:
|
||||
140,282,91254,6,0,P|71:226|156:145,1,220,4|4,1:2|1:0,0:0:0:0:
|
||||
268,155,92191,1,8,1:0:0:0:
|
||||
405,152,92504,2,0,L|274:151,1,110,2|10,1:0|1:0,0:0:0:0:
|
||||
154,250,93129,2,0,L|295:252,1,110,2|10,1:0|1:0,0:0:0:0:
|
||||
135,329,93754,6,0,L|380:330,1,220,4|0,1:2|1:0,0:0:0:0:
|
||||
239,290,94691,1,8,1:0:0:0:
|
||||
354,223,95004,2,0,L|213:210,1,110,4|8,1:0|1:0,0:0:0:0:
|
||||
97,240,95629,2,0,L|79:127,1,110,2|10,1:0|1:0,0:0:0:0:
|
||||
238,55,96254,6,0,P|313:95|229:166,1,220,4|0,1:2|1:0,0:0:0:0:
|
||||
363,205,97191,1,8,1:0:0:0:
|
||||
252,247,97504,2,0,L|115:270,2,110,2|10|2,1:0|1:0|1:0,0:0:0:0:
|
||||
363,287,98441,1,10,1:0:0:0:
|
||||
223,343,98754,6,0,L|92:326,1,110,4|10,1:2|1:0,0:0:0:0:
|
||||
293,262,99379,1,2,1:0:0:0:
|
||||
396,244,99691,1,8,1:0:0:0:
|
||||
236,219,100004,6,0,P|160:186|103:55,1,220,4|0,1:2|1:0,0:0:0:0:
|
||||
226,68,100941,1,0,1:0:0:0:
|
||||
383,69,101254,6,0,P|456:139|387:208,1,220,4|2,1:2|1:0,0:0:0:0:
|
||||
261,244,102191,1,10,1:0:0:0:
|
||||
123,311,102504,2,0,L|102:165,1,110,2|10,1:0|1:0,0:0:0:0:
|
||||
252,178,103129,2,0,L|386:178,1,110,2|10,1:0|1:0,0:0:0:0:
|
||||
215,263,103754,6,0,P|123:241|79:117,1,220,4|2,1:2|1:0,0:0:0:0:
|
||||
216,121,104691,1,10,1:0:0:0:
|
||||
359,106,105004,2,0,L|371:240,1,110,4|8,1:0|1:0,0:0:0:0:
|
||||
215,312,105629,2,0,L|352:321,1,110,2|10,1:0|1:0,0:0:0:0:
|
||||
164,359,106254,6,0,L|424:330,1,220,4|2,1:2|1:0,0:0:0:0:
|
||||
244,297,107191,1,10,1:0:0:0:
|
||||
390,278,107504,2,0,L|269:255,2,110,2|10|2,1:0|1:0|1:0,0:0:0:0:
|
||||
244,276,108441,1,10,1:0:0:0:
|
||||
99,281,108754,6,0,L|87:150,1,110,4|10,1:2|1:0,0:0:0:0:
|
||||
228,146,109379,2,0,L|364:136,1,110,2|10,1:0|1:0,0:0:0:0:
|
||||
183,278,110004,6,0,L|424:264,1,220,4|2,1:2|0:0,0:0:0:0:
|
||||
266,255,110941,1,10,1:0:0:0:
|
||||
114,283,111254,6,0,L|102:152,1,110,4|10,0:0|1:0,0:0:0:0:
|
||||
243,148,111879,2,0,L|379:138,1,110,2|10,1:0|1:0,0:0:0:0:
|
||||
198,280,112504,6,0,L|439:266,1,220,4|2,1:2|1:0,0:0:0:0:
|
||||
281,257,113441,1,8,1:0:0:0:
|
||||
137,295,113754,5,4,1:2:0:0:
|
||||
127,239,113910,1,4,1:2:0:0:
|
||||
314,108,114379,2,0,L|321:207,1,82.5,4|4,0:0|0:0,0:0:0:0:
|
||||
211,254,114847,6,0,L|389:266,1,165,6|6,1:0|1:0,0:0:0:0:
|
||||
265,275,115629,1,4,1:0:0:0:
|
||||
407,299,115941,1,4,1:2:0:0:
|
||||
+1
File diff suppressed because one or more lines are too long
@@ -0,0 +1,200 @@
|
||||
osu file format v14
|
||||
|
||||
[General]
|
||||
StackLeniency: 0.4
|
||||
Mode: 0
|
||||
|
||||
[Difficulty]
|
||||
HPDrainRate:4.5
|
||||
CircleSize:9
|
||||
OverallDifficulty:8
|
||||
ApproachRate:8
|
||||
SliderMultiplier:1.2
|
||||
SliderTickRate:1
|
||||
|
||||
[Events]
|
||||
//Background and Video events
|
||||
//Break Periods
|
||||
//Storyboard Layer 0 (Background)
|
||||
//Storyboard Layer 1 (Fail)
|
||||
//Storyboard Layer 2 (Pass)
|
||||
//Storyboard Layer 3 (Foreground)
|
||||
//Storyboard Layer 4 (Overlay)
|
||||
//Storyboard Sound Samples
|
||||
|
||||
[TimingPoints]
|
||||
514,727.272727272727,4,2,1,50,1,0
|
||||
9241,-83.3333333333333,4,2,1,50,0,0
|
||||
9968,-100,4,2,1,50,0,0
|
||||
10241,-100,4,2,99,5,0,0
|
||||
10332,-100,4,2,1,50,0,0
|
||||
10604,-100,4,2,99,5,0,0
|
||||
10695,-100,4,2,1,50,0,0
|
||||
11423,-66.6666666666667,4,2,1,50,0,0
|
||||
12150,-100,4,2,1,50,0,0
|
||||
13150,-100,4,2,99,5,0,0
|
||||
13241,-100,4,2,1,50,0,0
|
||||
16059,-100,4,2,99,5,0,0
|
||||
16150,-100,4,2,1,50,0,0
|
||||
17241,909.090909090909,4,2,1,50,1,0
|
||||
17241,-83.3333333333333,4,2,1,50,0,0
|
||||
18150,727.272727272727,4,2,1,50,1,0
|
||||
20604,-100,4,2,99,5,0,0
|
||||
20695,-100,4,2,1,50,0,0
|
||||
21059,-83.3333333333333,4,2,1,50,0,0
|
||||
21786,-100,4,2,1,50,0,0
|
||||
23240,-66.6666666666667,4,2,1,50,0,0
|
||||
23968,-100,4,2,1,50,0,0
|
||||
32695,-83.3333333333333,4,2,1,50,0,0
|
||||
33422,-100,4,2,1,50,0,0
|
||||
33695,-100,4,2,99,5,0,0
|
||||
33786,-100,4,2,1,50,0,0
|
||||
34877,-66.6666666666667,4,2,1,50,0,0
|
||||
37013,-100,4,2,1,45,0,0
|
||||
39149,-100,4,2,1,40,0,0
|
||||
40695,-66.6666666666667,4,2,1,35,0,0
|
||||
|
||||
[HitObjects]
|
||||
6,0,514,6,0,L|8:29,1,30,2|0,3:2|0:0,0:0:0:0:
|
||||
14,66,877,1,0,0:0:0:0:
|
||||
14,66,1059,2,0,L|16:36,1,30,0|0,0:0|1:0,0:0:0:0:
|
||||
21,31,1604,6,0,L|26:90,1,60,2|0,0:0|3:0,0:0:0:0:
|
||||
27,186,2332,1,0,3:0:0:0:
|
||||
27,186,2513,2,0,L|34:96,1,90,2|0,0:0|0:0,0:0:0:0:
|
||||
46,269,3423,38,0,L|48:298,1,30,2|0,3:2|0:0,0:0:0:0:
|
||||
54,335,3786,1,0,0:0:0:0:
|
||||
54,335,3968,2,0,L|56:305,1,30,0|0,0:0|1:0,0:0:0:0:
|
||||
61,300,4513,6,0,L|63:271,1,30,2|0,0:0|0:0,0:0:0:0:
|
||||
65,200,4877,2,0,L|66:186,2,15,0|0|0,3:2|0:0|0:0,0:0:0:0:
|
||||
68,265,5241,2,0,L|70:236,1,30,2|0,3:2|0:0,0:0:0:0:
|
||||
77,335,5604,6,0,L|76:373,2,37.5,0|0|0,1:0|3:0|3:0,0:0:0:0:
|
||||
86,152,6332,21,2,3:2:0:0:
|
||||
88,199,6513,1,2,0:0:0:0:
|
||||
94,157,6877,5,2,0:0:0:0:
|
||||
96,204,7059,2,0,P|100:218|99:233,1,30,2|0,1:2|0:0,0:0:0:0:
|
||||
101,161,7423,2,0,P|96:146|97:131,1,30,2|0,0:2|0:1,0:0:0:0:
|
||||
106,85,7786,37,0,3:3:0:0:
|
||||
105,49,7968,1,0,0:3:0:0:
|
||||
111,82,8150,1,2,3:3:0:0:
|
||||
110,45,8332,2,0,P|110:30|106:16,1,30,2|0,0:3|0:0,0:0:0:0:
|
||||
110,87,8695,2,0,P|110:102|114:117,1,30,2|0,0:3|0:0,0:0:0:0:
|
||||
126,290,9241,5,4,3:3:0:0:
|
||||
131,232,9423,2,0,B|134:220|124:211|124:211|129:218|129:223,1,35.9999989013672,8|0,0:3|0:0,0:0:0:0:
|
||||
136,297,9786,37,4,0:3:0:0:
|
||||
136,234,9968,2,0,P|138:212|133:190,1,45,2|0,1:2|0:0,0:0:0:0:
|
||||
139,191,10332,2,0,P|144:212|142:235,1,45,2|0,0:0|0:0,0:0:0:0:
|
||||
146,264,10695,5,2,3:1:0:0:
|
||||
148,306,10877,1,2,0:1:0:0:
|
||||
151,267,11059,1,2,3:1:0:0:
|
||||
153,309,11241,1,2,0:1:0:0:
|
||||
156,351,11423,6,0,B|158:362|158:362|159:354|159:350,1,22.5000008583069,2|0,1:0|0:0,0:0:0:0:
|
||||
158,311,11604,1,2,0:3:0:0:
|
||||
160,289,11695,1,2,0:3:0:0:
|
||||
161,267,11786,2,0,L|162:244,1,22.5000008583069,2|0,0:3|0:0,0:0:0:0:
|
||||
165,268,11968,2,0,L|166:245,1,22.5000008583069,2|0,0:3|0:0,0:0:0:0:
|
||||
166,187,12150,22,0,L|168:158,1,30,2|0,3:2|0:0,0:0:0:0:
|
||||
174,121,12513,1,2,0:0:0:0:
|
||||
174,121,12695,2,0,L|178:195,1,75,2|0,0:0|0:0,0:0:0:0:
|
||||
183,199,13241,2,0,L|181:170,1,30,2|0,0:0|0:0,0:0:0:0:
|
||||
186,72,13604,5,0,3:0:0:0:
|
||||
188,35,13786,1,0,3:0:0:0:
|
||||
191,0,13968,1,0,3:2:0:0:
|
||||
191,0,14150,2,0,L|195:89,1,90,2|2,0:0|0:0,0:0:0:0:
|
||||
206,181,15059,37,2,3:2:0:0:
|
||||
207,167,15150,1,2,0:0:0:0:
|
||||
208,152,15240,1,2,0:0:0:0:
|
||||
214,115,15422,1,2,0:0:0:0:
|
||||
214,115,15604,2,0,L|218:189,1,75,2|0,0:0|0:0,0:0:0:0:
|
||||
223,193,16150,6,0,L|221:169,2,22.5,2|2|2,0:0|0:0|0:0,0:0:0:0:
|
||||
226,228,16513,1,2,3:1:0:0:
|
||||
229,263,16695,1,2,0:1:0:0:
|
||||
230,277,16785,1,2,0:1:0:0:
|
||||
231,292,16877,2,0,L|233:321,1,30,2|0,3:1|0:0,0:0:0:0:
|
||||
236,218,17241,6,0,L|238:180,2,35.9999989013672,0|0|0,1:0|3:0|3:0,0:0:0:0:
|
||||
246,362,18150,21,2,3:2:0:0:
|
||||
248,315,18331,1,2,0:0:0:0:
|
||||
253,358,18695,5,2,0:0:0:0:
|
||||
257,310,18877,1,2,1:2:0:0:
|
||||
261,354,19059,2,0,P|266:369|265:384,2,30,2|0|0,0:0|0:1|0:0,0:0:0:0:
|
||||
266,305,19604,37,0,3:0:0:0:
|
||||
269,254,19786,1,2,0:3:0:0:
|
||||
270,240,19876,1,2,0:3:0:0:
|
||||
271,225,19968,2,0,L|272:204,2,15,2|2|2,3:1|0:1|0:1,0:0:0:0:
|
||||
275,301,20331,1,2,1:0:0:0:
|
||||
276,316,20422,2,0,B|277:328|277:328|275:332|275:332|276:345,1,30,2|0,0:1|0:0,0:0:0:0:
|
||||
281,349,20695,2,0,B|278:335|287:332|282:316,1,30,2|0,0:1|0:0,0:0:0:0:
|
||||
286,142,21059,5,4,3:0:0:0:
|
||||
291,199,21240,2,0,B|291:209|283:214|283:214|281:204|291:199,1,35.9999989013672,8|0,0:3|0:0,0:0:0:0:
|
||||
296,139,21604,37,4,0:3:0:0:
|
||||
296,197,21786,2,0,P|300:211|299:226,1,30,2|0,1:1|0:0,0:0:0:0:
|
||||
301,291,22150,2,0,P|297:276|297:261,1,30,2|0,0:1|0:0,0:0:0:0:
|
||||
306,136,22513,5,2,3:3:0:0:
|
||||
311,97,22695,1,2,0:3:0:0:
|
||||
311,97,22786,1,2,0:3:0:0:
|
||||
311,97,22877,1,2,3:1:0:0:
|
||||
313,106,22968,1,2,0:1:0:0:
|
||||
314,115,23059,1,2,0:1:0:0:
|
||||
315,124,23150,1,2,0:1:0:0:
|
||||
316,133,23240,6,0,B|308:125|308:125|306:136,1,22.5000008583069,2|0,1:1|0:0,0:0:0:0:
|
||||
319,168,23421,5,2,0:1:0:0:
|
||||
319,201,23604,38,0,L|320:224,1,22.5000008583069,2|0,0:3|0:0,0:0:0:0:
|
||||
323,200,23786,2,0,L|324:223,1,22.5000008583069,2|0,0:3|0:0,0:0:0:0:
|
||||
328,297,23968,21,2,3:2:0:0:
|
||||
328,297,24150,2,0,L|326:268,1,30,2|0,0:0|0:0,0:0:0:0:
|
||||
331,373,24513,1,2,0:0:0:0:
|
||||
338,344,24695,1,2,1:0:0:0:
|
||||
337,329,24787,2,0,L|336:314,1,15,2|0,0:1|0:0,0:0:0:0:
|
||||
341,239,25059,2,0,L|339:210,1,30,2|0,0:1|0:0,0:0:0:0:
|
||||
351,122,25422,5,2,3:2:0:0:
|
||||
351,122,25604,2,0,L|352:107,2,15,2|2|2,0:0|0:0|3:2,0:0:0:0:
|
||||
354,195,25968,1,2,0:3:0:0:
|
||||
355,180,26059,1,2,0:3:0:0:
|
||||
356,165,26149,2,0,L|358:136,2,30,2|0|0,1:3|0:0|0:0,0:0:0:0:
|
||||
366,79,26877,37,2,3:2:0:0:
|
||||
369,44,27059,1,2,0:1:0:0:
|
||||
370,30,27149,1,2,0:1:0:0:
|
||||
371,15,27240,2,0,L|371:0,2,15,2|2|2,0:1|0:1|0:1,0:0:0:0:
|
||||
376,101,27604,1,2,1:1:0:0:
|
||||
377,86,27696,2,0,L|378:65,1,15,2|0,0:1|0:0,0:0:0:0:
|
||||
381,138,27968,2,0,L|379:167,1,30,2|0,0:1|0:0,0:0:0:0:
|
||||
386,277,28331,5,2,3:3:0:0:
|
||||
389,242,28513,1,2,0:3:0:0:
|
||||
390,227,28604,1,2,0:3:0:0:
|
||||
391,212,28695,2,0,L|393:183,1,30,2|2,0:3|0:3,0:0:0:0:
|
||||
398,293,29059,6,0,L|396:331,2,37.5,2|2|2,1:0|3:1|3:1,0:0:0:0:
|
||||
406,83,29786,21,2,3:2:0:0:
|
||||
408,130,29967,1,2,0:0:0:0:
|
||||
413,87,30331,5,2,0:0:0:0:
|
||||
417,135,30513,1,2,1:0:0:0:
|
||||
418,150,30605,2,0,L|419:171,1,15,2|0,0:1|0:0,0:0:0:0:
|
||||
421,91,30877,2,0,P|426:76|425:61,1,30,2|0,0:1|0:0,0:0:0:0:
|
||||
426,140,31240,37,2,3:2:0:0:
|
||||
429,193,31422,1,2,0:1:0:0:
|
||||
430,208,31513,1,2,0:1:0:0:
|
||||
431,223,31603,1,2,0:1:0:0:
|
||||
433,237,31695,1,2,0:1:0:0:
|
||||
434,252,31786,2,0,P|436:237|435:222,1,30,2|0,0:2|1:0,0:0:0:0:
|
||||
442,296,32149,2,0,P|439:310|440:325,1,30,2|0,0:0|0:0,0:0:0:0:
|
||||
446,120,32695,5,4,3:0:0:0:
|
||||
451,63,32877,2,0,B|448:54|448:54|441:49|441:49|443:57|443:57|451:63,1,35.9999989013672,8|0,0:3|0:0,0:0:0:0:
|
||||
456,123,33240,37,4,0:3:0:0:
|
||||
456,65,33422,1,2,1:0:0:0:
|
||||
457,50,33513,2,0,P|451:31|443:20,1,30,2|0,0:1|0:0,0:0:0:0:
|
||||
461,0,33786,1,2,0:1:0:0:
|
||||
462,15,33877,2,0,L|462:29,1,15,2|0,0:1|0:0,0:0:0:0:
|
||||
466,127,34149,5,2,3:3:0:0:
|
||||
470,180,34331,1,2,0:3:0:0:
|
||||
470,180,34422,1,2,0:3:0:0:
|
||||
470,180,34513,1,2,3:1:0:0:
|
||||
471,171,34604,1,2,0:1:0:0:
|
||||
472,162,34695,1,2,0:1:0:0:
|
||||
476,130,34877,6,0,B|486:125|486:125|481:127|475:126,1,22.5000008583069,2|0,1:1|0:0,0:0:0:0:
|
||||
479,95,35059,5,2,0:1:0:0:
|
||||
479,62,35240,38,0,L|480:39,1,22.5000008583069,2|0,0:3|0:0,0:0:0:0:
|
||||
483,63,35422,2,0,L|484:40,1,22.5000008583069,2|0,0:3|0:0,0:0:0:0:
|
||||
256,192,35604,12,4,37013,0:3:0:0:
|
||||
256,192,37059,12,4,39149,0:3:0:0:
|
||||
496,360,40695,6,0,B|498:344|498:344|495:329|495:329|496:314,1,45.0000017166138,2|0,3:1|0:0,0:0:0:0:
|
||||
503,270,41059,1,2,0:1:0:0:
|
||||
504,262,41150,1,2,0:1:0:0:
|
||||
505,254,41240,2,0,L|506:242,3,11.2500004291535,2|0|0|0,0:1|0:0|0:0|0:0,0:0:0:0:
|
||||
+1
File diff suppressed because one or more lines are too long
@@ -0,0 +1,908 @@
|
||||
osu file format v14
|
||||
|
||||
[General]
|
||||
StackLeniency: 0.7
|
||||
Mode: 2
|
||||
|
||||
[Difficulty]
|
||||
HPDrainRate:6
|
||||
CircleSize:4.5
|
||||
OverallDifficulty:9.5
|
||||
ApproachRate:9.5
|
||||
SliderMultiplier:1.8
|
||||
SliderTickRate:2
|
||||
|
||||
[Events]
|
||||
//Background and Video events
|
||||
//Break Periods
|
||||
//Storyboard Layer 0 (Background)
|
||||
//Storyboard Layer 1 (Fail)
|
||||
//Storyboard Layer 2 (Pass)
|
||||
//Storyboard Layer 3 (Foreground)
|
||||
//Storyboard Layer 4 (Overlay)
|
||||
//Storyboard Sound Samples
|
||||
|
||||
[TimingPoints]
|
||||
-31,344.827586206897,4,2,1,15,1,0
|
||||
486,-100,4,2,1,50,0,0
|
||||
658,-100,4,2,1,55,0,0
|
||||
831,-100,4,2,1,60,0,0
|
||||
1003,-100,4,2,1,65,0,0
|
||||
1175,-100,4,2,1,5,0,0
|
||||
1348,-100,4,2,1,80,0,0
|
||||
11089,-100,4,2,2,40,0,0
|
||||
11175,-100,4,2,2,45,0,0
|
||||
11262,-100,4,2,2,50,0,0
|
||||
11348,-100,4,2,2,55,0,0
|
||||
11434,-100,4,2,2,60,0,0
|
||||
11520,-100,4,2,2,65,0,0
|
||||
11606,-100,4,2,2,70,0,0
|
||||
11693,-100,4,2,1,75,0,0
|
||||
11865,-100,4,2,1,70,0,0
|
||||
12037,-80,4,2,1,75,0,0
|
||||
12296,-100,4,2,1,100,0,0
|
||||
12382,-100,4,2,1,85,0,0
|
||||
20658,-83.3333333333333,4,2,1,85,0,0
|
||||
21175,-100,4,2,1,85,0,0
|
||||
22037,-100,4,2,1,80,0,0
|
||||
22210,-100,4,2,2,50,0,0
|
||||
22727,-100,4,2,1,80,0,0
|
||||
23072,-66.6666666666667,4,2,1,100,0,0
|
||||
23331,-100,4,2,1,100,0,0
|
||||
23417,-80,4,2,1,75,0,0
|
||||
23762,-100,4,2,1,100,0,0
|
||||
34451,-66.6666666666667,4,2,1,80,0,0
|
||||
34624,-100,4,2,1,80,0,0
|
||||
39969,-80,4,2,1,80,0,0
|
||||
40658,-80,4,2,1,100,0,0
|
||||
41348,-66.6666666666667,4,2,1,100,0,0
|
||||
42037,-100,4,2,1,100,0,0
|
||||
44106,-66.6666666666667,4,2,1,70,0,0
|
||||
44279,-100,4,2,1,100,0,0
|
||||
44796,-66.6666666666667,4,2,1,100,0,0
|
||||
46175,-66.6666666666667,4,2,1,90,0,1
|
||||
46348,-100,4,2,1,90,0,1
|
||||
51348,-33.3333333333333,4,2,1,90,0,1
|
||||
51520,-66.6666666666667,4,2,1,90,0,1
|
||||
51693,-100,4,2,1,100,0,1
|
||||
52037,-66.6666666666667,4,2,1,100,0,1
|
||||
52727,-100,4,2,1,100,0,1
|
||||
53072,-40,4,2,1,100,0,1
|
||||
53762,-100,4,2,1,100,0,1
|
||||
55141,-66.6666666666667,4,2,1,100,0,1
|
||||
55371,-100,4,2,1,100,0,1
|
||||
56520,-66.6666666666667,4,2,1,90,0,0
|
||||
56606,-66.6666666666667,4,2,2,47,0,0
|
||||
56693,-66.6666666666667,4,2,1,54,0,0
|
||||
56779,-66.6666666666667,4,2,2,61,0,0
|
||||
56865,-66.6666666666667,4,2,1,68,0,0
|
||||
56951,-66.6666666666667,4,2,2,75,0,0
|
||||
57037,-66.6666666666667,4,2,1,81,0,0
|
||||
57124,-66.6666666666667,4,2,2,88,0,0
|
||||
57210,-100,4,2,1,90,0,0
|
||||
57900,-66.6666666666667,4,2,1,90,0,1
|
||||
58072,-100,4,2,1,90,0,1
|
||||
58244,-80,4,2,1,90,0,1
|
||||
58589,-100,4,2,1,90,0,1
|
||||
61175,-66.6666666666667,4,2,1,90,0,1
|
||||
61348,-100,4,2,1,90,0,1
|
||||
62382,-33.3333333333333,4,2,1,100,0,1
|
||||
62555,-66.6666666666667,4,2,1,100,0,1
|
||||
62770,-100,4,2,1,100,0,1
|
||||
64106,-40,4,2,1,100,0,1
|
||||
64796,-100,4,2,1,100,0,1
|
||||
66175,-100,4,2,1,80,0,0
|
||||
68417,-66.6666666666667,4,2,1,80,0,0
|
||||
68589,-100,4,2,1,80,0,0
|
||||
68934,-100,4,2,1,70,0,1
|
||||
69020,-100,4,2,1,10,0,0
|
||||
71003,-100,4,2,1,15,0,0
|
||||
71693,-100,4,2,1,20,0,0
|
||||
71865,-100,4,2,1,23,0,0
|
||||
72037,-100,4,2,1,26,0,0
|
||||
72210,-100,4,2,1,29,0,0
|
||||
72382,-100,4,2,1,32,0,0
|
||||
72555,-100,4,2,1,35,0,0
|
||||
72727,-100,4,2,1,38,0,0
|
||||
72900,-100,4,2,1,41,0,0
|
||||
73072,-100,4,2,1,44,0,0
|
||||
73244,-100,4,2,1,47,0,0
|
||||
73417,-100,4,2,1,50,0,0
|
||||
73589,-100,4,2,1,53,0,0
|
||||
73762,-100,4,2,1,56,0,0
|
||||
73934,-100,4,2,1,59,0,0
|
||||
74106,-100,4,2,1,62,0,0
|
||||
74279,-100,4,2,1,65,0,0
|
||||
74451,-100,4,2,1,40,0,0
|
||||
74624,-133.333333333333,4,2,1,40,0,0
|
||||
77210,-100,4,2,1,40,0,0
|
||||
77555,-133.333333333333,4,2,1,40,0,0
|
||||
79969,-100,4,2,1,40,0,0
|
||||
80313,-133.333333333333,4,2,1,40,0,0
|
||||
81348,-100,4,2,1,40,0,0
|
||||
81692,-133.333333333333,4,2,1,40,0,0
|
||||
82727,-86.9565217391304,4,2,1,40,0,0
|
||||
83072,-133.333333333333,4,2,1,40,0,0
|
||||
84106,-100,4,2,1,40,0,0
|
||||
84450,-133.333333333333,4,2,1,40,0,0
|
||||
85486,-100,4,2,2,50,0,0
|
||||
96175,-50,4,2,2,60,0,0
|
||||
96520,-50,4,2,1,55,0,0
|
||||
96822,-50,4,2,1,5,0,0
|
||||
96865,-66.6666666666667,4,2,1,50,0,0
|
||||
97210,-66.6666666666667,4,2,1,45,0,0
|
||||
97512,-66.6666666666667,4,2,1,5,0,0
|
||||
97555,-100,4,2,1,40,0,0
|
||||
97900,-100,4,2,1,35,0,0
|
||||
98244,-100,4,2,1,5,0,0
|
||||
99279,-100,4,2,1,75,0,0
|
||||
99624,-66.6666666666667,4,2,1,75,0,0
|
||||
99796,-66.6666666666667,4,2,1,75,0,0
|
||||
100313,-100,4,2,1,75,0,0
|
||||
100658,-83.3333333333333,4,2,1,90,0,1
|
||||
111578,-83.3333333333333,4,2,1,90,0,0
|
||||
111693,-83.3333333333333,4,2,1,90,0,1
|
||||
119279,-66.6666666666667,4,2,1,90,0,1
|
||||
119969,-83.3333333333333,4,2,1,90,0,1
|
||||
121003,-50,4,2,1,90,0,1
|
||||
121175,-83.3333333333333,4,2,1,90,0,1
|
||||
122727,-100,4,2,1,90,0,0
|
||||
123072,-100,4,2,1,50,0,0
|
||||
123417,-100,4,2,1,46,0,0
|
||||
123762,-100,4,2,1,42,0,0
|
||||
124106,-100,4,2,1,38,0,0
|
||||
124451,-100,4,2,1,35,0,0
|
||||
124796,-100,4,2,1,32,0,0
|
||||
125141,-100,4,2,1,29,0,0
|
||||
125486,-100,4,2,1,26,0,0
|
||||
125831,-100,4,2,1,24,0,0
|
||||
126175,-100,4,2,1,22,0,0
|
||||
126520,-100,4,2,1,20,0,0
|
||||
126865,-100,4,2,1,18,0,0
|
||||
127210,-100,4,2,1,16,0,0
|
||||
127555,-100,4,2,1,14,0,0
|
||||
127900,-100,4,2,1,12,0,0
|
||||
128244,-100,4,2,1,10,0,0
|
||||
128934,-100,4,2,1,9,0,0
|
||||
129624,-100,4,2,1,8,0,0
|
||||
130313,-100,4,2,1,7,0,0
|
||||
131003,-100,4,2,1,6,0,0
|
||||
131693,-100,4,2,1,5,0,0
|
||||
|
||||
[HitObjects]
|
||||
256,192,313,12,2,1175,0:0:0:0:
|
||||
224,192,1348,5,6,3:2:0:0:
|
||||
177,157,1434,1,0,0:0:0:0:
|
||||
179,100,1520,1,2,0:2:0:0:
|
||||
227,68,1606,1,2,0:2:0:0:
|
||||
292,68,1693,2,0,L|296:12,1,45,2|0,0:0|0:0,0:0:0:0:
|
||||
116,192,1865,2,0,B|116:280|116:280|208:296,1,180,0|2,3:0|0:1,0:0:0:0:
|
||||
116,280,2296,1,0,0:0:0:0:
|
||||
26,264,2382,2,0,L|22:160,1,90,0|2,3:2|0:3,0:0:0:0:
|
||||
292,192,2727,6,0,L|384:192,1,90,2|2,3:2|0:3,0:0:0:0:
|
||||
328,192,2986,1,2,0:3:0:0:
|
||||
276,192,3072,1,2,0:0:0:0:
|
||||
448,192,3244,1,0,3:0:0:0:
|
||||
268,96,3417,2,0,B|176:96,1,90,0|2,0:0|0:3,0:0:0:0:
|
||||
244,96,3675,1,2,0:3:0:0:
|
||||
178,96,3762,2,0,L|82:96,1,90,0|2,3:0|0:3,0:0:0:0:
|
||||
444,304,4106,6,0,L|448:256,1,45,2|2,3:2|0:2,0:0:0:0:
|
||||
376,256,4279,2,0,L|372:208,1,45,2|2,0:2|0:2,0:0:0:0:
|
||||
300,192,4451,1,2,0:0:0:0:
|
||||
472,136,4624,2,0,L|476:84,1,45,0|0,3:0|0:0,0:0:0:0:
|
||||
296,28,4796,2,0,P|264:72|280:108,1,90,0|2,0:0|0:1,0:0:0:0:
|
||||
366,152,5055,1,0,0:0:0:0:
|
||||
456,211,5141,2,0,L|352:211,1,90,0|2,3:2|0:3,0:0:0:0:
|
||||
112,192,5486,6,0,L|208:192,1,90,2|2,3:2|0:3,0:0:0:0:
|
||||
268,192,5744,1,2,0:3:0:0:
|
||||
202,192,5831,1,2,0:0:0:0:
|
||||
360,192,6003,1,0,3:0:0:0:
|
||||
192,284,6175,2,0,L|100:284,1,90,0|2,0:0|0:3,0:0:0:0:
|
||||
172,284,6434,1,2,0:3:0:0:
|
||||
102,284,6520,2,0,L|10:284,1,90,0|2,3:0|0:3,0:0:0:0:
|
||||
288,284,6865,5,2,3:2:0:0:
|
||||
335,249,6951,1,2,0:2:0:0:
|
||||
333,192,7037,1,2,0:2:0:0:
|
||||
285,160,7124,1,2,0:2:0:0:
|
||||
220,160,7210,2,0,L|216:104,1,45,2|0,0:0|0:0,0:0:0:0:
|
||||
320,56,7382,1,0,3:0:0:0:
|
||||
204,56,7555,1,0,0:0:0:0:
|
||||
456,52,7727,1,2,0:1:0:0:
|
||||
460,104,7813,1,0,0:0:0:0:
|
||||
464,160,7900,2,0,L|372:160,1,90,0|2,3:2|0:3,0:0:0:0:
|
||||
120,160,8244,6,0,B|212:160,1,90,2|2,3:2|0:3,0:0:0:0:
|
||||
280,160,8503,1,2,0:3:0:0:
|
||||
348,160,8589,1,2,0:0:0:0:
|
||||
176,160,8762,1,0,3:0:0:0:
|
||||
354,160,8934,2,0,L|446:160,1,90,0|2,0:0|0:3,0:0:0:0:
|
||||
374,160,9193,1,2,0:3:0:0:
|
||||
306,160,9279,2,0,L|406:160,1,90,0|2,3:0|0:3,0:0:0:0:
|
||||
148,56,9624,6,0,L|100:44,1,45,2|2,3:2|0:2,0:0:0:0:
|
||||
176,120,9796,2,0,L|224:108,1,45,2|2,0:2|0:2,0:0:0:0:
|
||||
148,56,9969,1,2,0:0:0:0:
|
||||
308,56,10141,1,0,3:0:0:0:
|
||||
140,120,10313,1,0,0:0:0:0:
|
||||
396,192,10486,2,0,L|440:192,2,45,2|0|0,0:1|0:0|3:2,0:0:0:0:
|
||||
228,192,10831,1,2,0:3:0:0:
|
||||
460,312,11003,6,0,L|484:270,1,45,0|2,3:3|0:3,0:0:0:0:
|
||||
392,288,11175,2,0,L|416:246,1,45,2|2,0:3|0:3,0:0:0:0:
|
||||
324,264,11348,2,0,L|347:222,1,45,2|2,0:3|0:3,0:0:0:0:
|
||||
260,232,11520,2,0,L|284:190,1,45,2|2,0:3|0:3,0:0:0:0:
|
||||
384,192,11693,1,0,3:0:0:0:
|
||||
220,188,11865,2,0,L|156:188,1,45,8|0,0:2|3:0,0:0:0:0:
|
||||
400,192,12037,2,0,B|488:192|488:192|488:108,1,168.75,8|0,3:2|0:0,0:0:0:0:
|
||||
284,56,12382,6,0,L|192:56,1,90,6|2,3:2|0:2,0:0:0:0:
|
||||
264,56,12641,1,2,0:2:0:0:
|
||||
436,56,12727,1,10,3:2:0:0:
|
||||
328,56,12900,2,0,L|324:112,1,45,0|0,3:0|0:0,3:3:0:0:
|
||||
424,112,13072,2,0,L|428:216,1,90,0|2,0:0|0:1,0:0:0:0:
|
||||
360,200,13331,1,2,0:3:0:0:
|
||||
208,200,13417,2,0,L|116:200,1,90,8|2,3:2|0:3,0:0:0:0:
|
||||
292,200,13762,6,0,L|296:292,1,90,2|2,3:2|0:3,0:0:0:0:
|
||||
228,292,14020,1,2,0:3:0:0:
|
||||
408,288,14106,2,0,L|508:288,1,90,10|0,3:2|3:0,0:0:0:0:
|
||||
228,192,14451,2,0,L|324:192,1,90,8|2,3:2|3:3,0:0:0:0:
|
||||
48,192,14796,2,0,L|140:192,1,90,8|2,3:2|0:3,0:0:0:0:
|
||||
392,192,15141,6,0,L|396:132,1,45,2|2,3:2|0:2,0:0:0:0:
|
||||
320,120,15313,2,0,L|316:60,1,45,2|2,0:2|0:2,0:0:0:0:
|
||||
488,60,15486,1,10,3:2:0:0:
|
||||
388,60,15658,2,0,L|332:60,1,45,0|0,3:0|0:0,3:3:0:0:
|
||||
240,60,15831,2,0,L|236:152,1,90,0|2,0:0|0:1,0:0:0:0:
|
||||
304,152,16089,1,2,0:3:0:0:
|
||||
132,152,16175,2,0,L|36:152,1,90,8|2,3:2|0:3,0:0:0:0:
|
||||
312,256,16520,6,0,L|216:256,1,90,10|2,3:2|0:3,0:0:0:0:
|
||||
152,256,16779,1,2,0:3:0:0:
|
||||
328,328,16865,2,0,L|236:328,1,90,10|0,3:2|3:0,0:0:0:0:
|
||||
328,328,17210,1,0,0:0:0:0:
|
||||
164,328,17382,2,0,L|160:276,1,45,2|2,0:3|0:3,0:0:0:0:
|
||||
336,240,17555,2,0,L|440:240,1,90,8|2,3:2|0:3,0:0:0:0:
|
||||
152,56,17900,5,10,3:2:0:0:
|
||||
155,114,17986,1,2,0:2:0:0:
|
||||
192,160,18072,1,2,0:2:0:0:
|
||||
252,168,18158,1,2,0:2:0:0:
|
||||
404,168,18244,2,0,L|408:72,1,90,10|2,0:2|3:2,0:0:0:0:
|
||||
156,232,18589,2,0,L|64:232,1,90,8|2,0:0|0:3,0:0:0:0:
|
||||
136,232,18848,1,2,0:3:0:0:
|
||||
304,232,18934,2,0,L|396:232,1,90,8|0,3:2|0:3,0:0:0:0:
|
||||
120,76,19279,6,0,P|100:120|120:168,1,90,8|0,3:2|0:0,0:0:0:0:
|
||||
180,160,19537,1,0,0:0:0:0:
|
||||
360,160,19624,2,0,L|268:160,1,90,8|0,0:0|3:0,0:0:0:0:
|
||||
32,316,19969,2,0,L|132:316,1,90,8|2,3:2|0:3,0:0:0:0:
|
||||
188,316,20227,1,0,0:0:0:0:
|
||||
16,232,20313,2,0,L|116:232,1,90,8|2,3:2|0:3,0:0:0:0:
|
||||
368,232,20658,6,0,L|256:232,3,107.999996704102,10|10|10|8,3:2|0:2|3:2|3:2,0:0:0:0:
|
||||
496,232,21348,1,8,0:0:0:0:
|
||||
324,232,21520,1,8,3:2:0:0:
|
||||
496,232,21693,1,8,3:2:0:0:
|
||||
388,232,21865,2,0,L|332:232,1,45,8|8,3:2|3:2,0:0:0:0:
|
||||
144,232,22037,5,2,3:2:0:0:
|
||||
252,232,22210,2,0,L|232:192,1,45,2|0,3:0|0:0,0:0:0:0:
|
||||
312,164,22382,2,0,L|292:124,1,45,2|0,3:0|0:0,0:0:0:0:
|
||||
372,96,22555,2,0,L|352:56,1,45,2|0,3:0|0:0,0:0:0:0:
|
||||
180,56,22727,2,0,L|276:56,1,90,2|8,3:2|0:0,0:0:0:0:
|
||||
208,56,22986,1,0,3:0:0:0:
|
||||
436,56,23072,2,0,P|504:104|436:168,1,202.500007724762,8|0,3:2|0:0,0:0:0:0:
|
||||
208,192,23417,6,0,L|92:192,2,112.5,6|2|2,3:2|0:0|0:0,0:0:0:0:
|
||||
312,192,23934,1,2,0:0:0:0:
|
||||
220,192,24020,1,2,0:0:0:0:
|
||||
128,192,24106,2,0,L|220:192,1,90,2|2,0:0|0:1,0:0:0:0:
|
||||
392,192,24451,1,0,3:0:0:0:
|
||||
444,176,24537,1,2,0:0:0:0:
|
||||
444,120,24624,1,2,0:0:0:0:
|
||||
392,100,24710,1,2,0:0:0:0:
|
||||
212,276,24796,6,0,L|308:276,2,90,2|2|2,0:2|0:2|0:2,0:0:0:0:
|
||||
320,276,25313,1,2,0:2:0:0:
|
||||
384,276,25400,1,2,0:2:0:0:
|
||||
284,352,25486,2,0,L|192:352,1,90,2|2,0:2|0:0,0:0:0:0:
|
||||
448,276,25831,2,0,L|444:224,1,45,2|2,3:2|0:2,0:0:0:0:
|
||||
344,192,26003,2,0,L|300:192,1,45,2|2,0:2|0:2,0:0:0:0:
|
||||
128,192,26175,6,0,L|28:192,2,90,2|2|2,3:2|0:0|0:0,0:0:0:0:
|
||||
236,192,26693,1,2,0:0:0:0:
|
||||
299,192,26779,1,2,0:0:0:0:
|
||||
362,192,26865,1,2,0:0:0:0:
|
||||
196,192,27037,1,2,0:1:0:0:
|
||||
352,192,27210,1,2,3:2:0:0:
|
||||
352,128,27296,1,2,0:2:0:0:
|
||||
312,80,27382,1,2,0:2:0:0:
|
||||
248,80,27469,1,2,0:2:0:0:
|
||||
412,80,27555,6,0,L|320:80,2,90,2|2|2,0:2|0:0|0:0,0:0:0:0:
|
||||
304,80,28072,1,2,0:0:0:0:
|
||||
396,80,28158,1,2,0:0:0:0:
|
||||
488,80,28244,2,0,L|396:80,1,90,2|2,0:0|0:0,0:0:0:0:
|
||||
88,80,28589,1,8,3:2:0:0:
|
||||
340,80,28934,6,0,L|344:172,1,90,2|2,3:2|0:2,0:0:0:0:
|
||||
172,192,29279,2,0,L|168:292,1,90,2|2,3:2|0:2,0:0:0:0:
|
||||
268,284,29537,1,2,0:2:0:0:
|
||||
368,284,29624,2,0,L|268:284,1,90,2|2,3:2|0:1,0:0:0:0:
|
||||
452,284,29969,2,0,L|460:236,2,45,0|0|2,3:2|0:0|0:2,0:0:0:0:
|
||||
200,372,30313,6,0,L|196:280,1,90,2|2,3:2|0:2,0:0:0:0:
|
||||
368,160,30658,2,0,L|264:160,1,90,2|2,3:2|0:2,0:0:0:0:
|
||||
380,160,30917,1,2,0:2:0:0:
|
||||
480,160,31003,2,0,L|374:160,1,90,2|2,3:2|0:2,0:0:0:0:
|
||||
128,192,31348,2,0,L|124:140,1,45,2|2,3:2|0:2,0:0:0:0:
|
||||
228,104,31520,2,0,L|292:104,1,45,2|2,0:2|0:2,0:0:0:0:
|
||||
88,148,31693,6,0,L|84:252,1,90,2|2,3:2|0:2,0:0:0:0:
|
||||
256,236,32037,2,0,L|352:236,1,90,2|2,3:2|0:2,0:0:0:0:
|
||||
246,236,32296,1,2,0:2:0:0:
|
||||
148,236,32382,2,0,L|48:236,1,90,2|2,3:2|0:2,0:0:0:0:
|
||||
232,68,32727,1,0,3:2:0:0:
|
||||
180,68,32813,1,0,0:0:0:0:
|
||||
124,68,32900,1,2,0:2:0:0:
|
||||
376,68,33072,6,0,L|476:68,1,90,2|2,3:2|0:2,0:0:0:0:
|
||||
300,192,33417,2,0,L|396:192,1,90,2|2,3:2|0:2,0:0:0:0:
|
||||
220,192,33762,2,0,L|128:192,1,90,2|2,3:2|0:2,0:0:0:0:
|
||||
416,192,34106,2,0,L|448:192,7,22.5,0|0|0|0|0|0|0|0,3:0|3:0|3:0|3:0|3:0|3:0|3:0|0:0,0:0:0:0:
|
||||
265,192,34451,6,0,L|129:192,1,135.000005149842,10|2,3:2|0:2,0:0:0:0:
|
||||
300,192,34796,2,0,L|304:97,1,90,2|2,3:2|0:2,0:0:0:0:
|
||||
140,100,35141,1,10,3:2:0:0:
|
||||
376,100,35313,1,2,0:1:0:0:
|
||||
268,100,35486,2,0,L|264:196,1,90,0|2,3:2|0:2,0:0:0:0:
|
||||
496,192,35831,6,0,L|404:192,1,90,10|2,3:2|0:2,0:0:0:0:
|
||||
236,192,36175,2,0,L|140:192,1,90,2|2,3:2|0:2,0:0:0:0:
|
||||
400,256,36520,1,10,3:2:0:0:
|
||||
236,256,36693,1,2,0:2:0:0:
|
||||
476,256,36865,1,2,3:2:0:0:
|
||||
476,322,36951,1,0,0:0:0:0:
|
||||
434,372,37037,1,2,0:2:0:0:
|
||||
369,383,37124,1,0,0:0:0:0:
|
||||
196,384,37210,6,0,L|104:384,1,90,10|2,3:2|0:2,0:0:0:0:
|
||||
272,384,37555,2,0,L|368:384,1,90,2|2,3:2|0:2,0:0:0:0:
|
||||
196,384,37900,1,10,3:2:0:0:
|
||||
432,384,38072,1,2,0:1:0:0:
|
||||
324,384,38244,1,0,3:2:0:0:
|
||||
272,384,38331,1,0,0:0:0:0:
|
||||
224,384,38417,1,2,0:2:0:0:
|
||||
488,384,38589,6,0,L|490:281,1,90,10|2,3:2|0:2,0:0:0:0:
|
||||
324,296,38934,2,0,L|328:188,1,90,2|2,3:2|0:2,0:0:0:0:
|
||||
88,204,39279,1,10,3:2:0:0:
|
||||
256,204,39451,1,2,0:2:0:0:
|
||||
16,204,39624,1,10,3:2:0:0:
|
||||
428,208,39969,6,0,P|480:152|428:92,1,168.75,8|2,3:2|0:0,0:0:0:0:
|
||||
328,92,40313,2,0,P|256:120|240:204,1,168.75,10|0,3:2|0:0,0:0:0:0:
|
||||
412,208,40658,2,0,B|496:208|496:208|500:296,1,168.75,8|0,3:2|0:0,0:0:0:0:
|
||||
272,376,41003,2,0,B|272:292|272:292|360:288,1,168.75,8|0,3:2|0:0,0:0:0:0:
|
||||
116,296,41348,6,0,P|52:224|120:176,1,202.500007724762,8|0,3:2|0:0,0:0:0:0:
|
||||
340,176,41693,2,0,L|132:176,1,202.500007724762,8|0,3:2|0:0,0:0:0:0:
|
||||
312,96,42037,1,8,3:2:0:0:
|
||||
164,96,42210,1,8,3:2:0:0:
|
||||
324,96,42382,1,8,3:2:0:0:
|
||||
152,96,42555,1,8,3:2:0:0:
|
||||
404,96,42727,5,8,3:2:0:0:
|
||||
460,128,42813,1,8,3:2:0:0:
|
||||
460,192,42900,1,8,3:2:0:0:
|
||||
404,224,42986,1,8,3:2:0:0:
|
||||
208,192,43072,2,0,L|204:244,1,45,8|8,3:2|3:2,0:0:0:0:
|
||||
280,240,43244,2,0,L|284:292,1,45,8|8,3:2|3:2,0:0:0:0:
|
||||
104,328,43417,6,8,L|48:328,1,45,8|8,3:2|3:2,0:0:0:0:
|
||||
240,364,43589,2,8,L|300:364,1,45,8|8,3:2|3:2,0:0:0:0:
|
||||
80,192,43762,2,0,L|136:192,1,45,8|8,3:2|3:2,0:0:0:0:
|
||||
372,224,43934,2,0,L|316:224,1,45,8|8,3:2|3:2,0:0:0:0:
|
||||
124,44,44106,5,8,3:2:0:0:
|
||||
368,44,44279,1,2,0:0:0:0:
|
||||
116,44,44451,2,0,L|64:44,1,45,2|2,0:0|0:0,0:0:0:0:
|
||||
172,116,44624,2,0,L|112:116,1,45,2|2,0:0|0:0,0:0:0:0:
|
||||
300,116,44796,2,0,L|476:116,1,168.750006437302,2|2,0:0|0:0,0:0:0:0:
|
||||
260,192,45141,2,0,L|428:192,1,168.750006437302,2|2,0:0|0:0,0:0:0:0:
|
||||
176,328,45486,5,2,3:2:0:0:
|
||||
158,322,45507,1,0,0:0:0:0:
|
||||
143,313,45529,1,0,0:0:0:0:
|
||||
129,301,45550,1,0,0:0:0:0:
|
||||
119,287,45572,1,0,0:0:0:0:
|
||||
111,270,45594,1,0,0:0:0:0:
|
||||
108,253,45615,1,0,0:0:0:0:
|
||||
108,235,45637,1,0,0:0:0:0:
|
||||
112,217,45658,1,0,0:0:0:0:
|
||||
120,201,45680,1,0,0:0:0:0:
|
||||
131,187,45701,1,0,0:0:0:0:
|
||||
145,175,45723,1,0,0:0:0:0:
|
||||
161,167,45744,1,0,0:0:0:0:
|
||||
178,162,45766,1,0,0:0:0:0:
|
||||
196,161,45787,1,0,0:0:0:0:
|
||||
214,164,45809,1,0,0:0:0:0:
|
||||
240,168,45831,1,0,0:0:0:0:
|
||||
257,167,45852,1,0,0:0:0:0:
|
||||
275,162,45874,1,0,0:0:0:0:
|
||||
291,153,45895,1,0,0:0:0:0:
|
||||
304,142,45917,1,0,0:0:0:0:
|
||||
315,128,45938,1,0,0:0:0:0:
|
||||
323,111,45960,1,0,0:0:0:0:
|
||||
327,94,45981,1,0,0:0:0:0:
|
||||
327,76,46003,1,0,0:0:0:0:
|
||||
324,58,46025,1,0,0:0:0:0:
|
||||
317,42,46046,1,0,0:0:0:0:
|
||||
306,27,46068,1,0,0:0:0:0:
|
||||
293,16,46089,1,0,0:0:0:0:
|
||||
277,7,46111,1,0,0:0:0:0:
|
||||
260,1,46132,1,0,0:0:0:0:
|
||||
76,52,46175,6,0,B|8:52|8:52|80:52,1,135.000005149842,4|2,3:2|0:0,0:0:0:0:
|
||||
120,52,46434,1,2,0:0:0:0:
|
||||
280,52,46520,2,0,L|376:52,1,90,8|2,3:2|0:0,0:0:0:0:
|
||||
324,52,46779,1,2,0:0:0:0:
|
||||
152,136,46865,2,0,L|96:136,1,45,2|2,3:2|0:0,0:0:0:0:
|
||||
172,208,47037,2,0,L|112:208,1,45,2|2,0:0|0:0,0:0:0:0:
|
||||
336,192,47210,1,8,3:2:0:0:
|
||||
363,202,47253,1,0,0:0:0:0:
|
||||
384,224,47296,1,0,0:0:0:0:
|
||||
393,252,47339,1,0,0:0:0:0:
|
||||
389,282,47382,1,0,0:0:0:0:
|
||||
372,306,47425,1,0,0:0:0:0:
|
||||
347,322,47469,1,0,0:0:0:0:
|
||||
168,324,47555,6,0,L|76:324,1,90,2|0,3:2|0:0,0:0:0:0:
|
||||
244,208,47900,2,0,L|152:208,1,90,10|2,3:2|0:3,0:0:0:0:
|
||||
400,208,48244,2,0,L|404:156,1,45,2|2,3:2|0:2,0:0:0:0:
|
||||
312,76,48503,1,2,0:2:0:0:
|
||||
140,76,48589,1,10,0:2:0:0:
|
||||
248,76,48762,1,2,0:2:0:0:
|
||||
16,76,48934,6,0,L|60:76,1,45,2|2,3:2|0:0,0:0:0:0:
|
||||
160,76,49193,1,2,3:2:0:0:
|
||||
16,76,49279,2,0,L|20:120,1,45,10|2,3:2|0:2,0:0:0:0:
|
||||
76,164,49451,2,0,L|140:164,1,45,2|2,0:2|0:2,0:0:0:0:
|
||||
304,192,49624,5,0,3:0:0:0:
|
||||
317,209,49667,1,0,0:0:0:0:
|
||||
326,230,49710,1,0,0:0:0:0:
|
||||
328,252,49753,1,0,0:0:0:0:
|
||||
325,274,49796,1,2,0:0:0:0:
|
||||
316,295,49839,1,0,0:0:0:0:
|
||||
301,312,49882,1,0,0:0:0:0:
|
||||
120,312,49969,1,8,3:2:0:0:
|
||||
52,312,50055,1,2,0:0:0:0:
|
||||
120,312,50141,1,2,0:0:0:0:
|
||||
288,312,50313,5,2,3:2:0:0:
|
||||
332,273,50400,1,2,3:2:0:0:
|
||||
328,215,50486,1,2,3:2:0:0:
|
||||
280,184,50572,1,2,3:2:0:0:
|
||||
104,92,50658,2,0,L|60:92,1,45,10|2,3:2|0:3,0:0:0:0:
|
||||
104,184,50831,2,0,L|148:184,1,45,2|0,0:3|0:0,0:0:0:0:
|
||||
328,215,51003,6,0,B|376:215|376:215|324:215,1,90,4|2,3:2|0:0,0:0:0:0:
|
||||
280,215,51262,1,2,0:0:0:0:
|
||||
128,296,51348,2,0,L|364:296,1,236.250009012223,8|0,3:2|0:0,0:0:0:0:
|
||||
364,296,51520,2,0,L|224:296,1,135.000005149842,2|2,0:0|0:0,0:0:0:0:
|
||||
368,144,51736,2,0,L|440:144,1,67.5,2|2,0:0|3:2,0:0:0:0:
|
||||
380,144,51951,1,2,0:0:0:0:
|
||||
204,64,52037,2,0,L|128:64,1,67.5000025749208,10|0,0:0|0:0,0:0:0:0:
|
||||
223,64,52210,2,0,L|148:64,1,67.5000025749208,2|2,0:2|0:2,0:0:0:0:
|
||||
388,240,52382,6,0,L|464:240,1,67.5000025749208,2|2,3:2|0:2,0:0:0:0:
|
||||
368,144,52555,2,0,L|436:144,1,67.5000025749208,2|2,0:2|0:2,0:0:0:0:
|
||||
224,144,52727,1,10,3:2:0:0:
|
||||
194,150,52770,1,0,0:0:0:0:
|
||||
169,165,52813,1,0,0:0:0:0:
|
||||
149,188,52856,1,0,0:0:0:0:
|
||||
137,215,52900,1,2,0:3:0:0:
|
||||
134,245,52943,1,0,0:0:0:0:
|
||||
141,274,52986,1,0,0:0:0:0:
|
||||
368,348,53072,2,0,B|144:348,1,225,10|0,3:2|0:0,0:0:0:0:
|
||||
444,272,53417,2,0,B|220:272,1,225,10|2,3:2|0:3,0:0:0:0:
|
||||
488,184,53762,6,0,L|492:276,1,90,2|2,3:2|0:3,0:0:0:0:
|
||||
336,184,54106,1,8,3:2:0:0:
|
||||
280,184,54193,1,2,0:3:0:0:
|
||||
228,184,54279,1,2,0:3:0:0:
|
||||
392,276,54451,2,0,L|396:312,1,22.5,2|0,3:2|0:0,0:0:0:0:
|
||||
188,328,54624,2,0,L|185:305,1,22.5,2|0,0:3|0:0,0:0:0:0:
|
||||
408,108,54796,2,0,L|356:108,1,45,10|2,3:2|0:3,0:0:0:0:
|
||||
136,176,54969,2,0,L|188:176,1,45,2|0,0:0|0:0,0:0:0:0:
|
||||
384,192,55141,6,0,L|292:192,2,90.0000034332277,2|2|2,3:2|0:2|0:2,0:0:0:0:
|
||||
172,272,55486,1,2,3:2:0:0:
|
||||
280,272,55601,1,2,0:2:0:0:
|
||||
388,272,55716,1,2,0:2:0:0:
|
||||
164,192,55831,2,0,L|96:192,2,60,2|2|2,3:2|0:2|0:2,0:0:0:0:
|
||||
340,192,56175,1,2,3:2:0:0:
|
||||
412,192,56290,1,2,0:2:0:0:
|
||||
412,120,56405,1,2,0:2:0:0:
|
||||
212,120,56520,6,0,P|160:260|288:136,1,472.500018024445,0|0,3:2|0:0,0:0:0:0:
|
||||
128,40,57210,5,2,3:2:0:0:
|
||||
112,44,57231,1,0,0:0:0:0:
|
||||
97,50,57253,1,0,0:0:0:0:
|
||||
83,58,57275,1,0,0:0:0:0:
|
||||
70,67,57296,1,0,0:0:0:0:
|
||||
57,77,57318,1,0,0:0:0:0:
|
||||
46,89,57339,1,0,0:0:0:0:
|
||||
35,101,57361,1,0,0:0:0:0:
|
||||
26,114,57382,1,0,0:0:0:0:
|
||||
19,129,57404,1,0,0:0:0:0:
|
||||
13,143,57425,1,0,0:0:0:0:
|
||||
8,159,57447,1,0,0:0:0:0:
|
||||
5,175,57469,1,0,0:0:0:0:
|
||||
3,191,57490,1,0,0:0:0:0:
|
||||
3,207,57512,1,0,0:0:0:0:
|
||||
5,223,57533,1,0,0:0:0:0:
|
||||
8,239,57555,1,0,0:0:0:0:
|
||||
12,254,57576,1,0,0:0:0:0:
|
||||
18,269,57598,1,0,0:0:0:0:
|
||||
26,283,57619,1,0,0:0:0:0:
|
||||
35,297,57641,1,0,0:0:0:0:
|
||||
45,309,57662,1,0,0:0:0:0:
|
||||
56,321,57684,1,0,0:0:0:0:
|
||||
69,331,57706,1,0,0:0:0:0:
|
||||
82,340,57727,1,0,0:0:0:0:
|
||||
96,348,57749,1,0,0:0:0:0:
|
||||
111,354,57770,1,0,0:0:0:0:
|
||||
126,359,57792,1,0,0:0:0:0:
|
||||
142,362,57813,1,0,0:0:0:0:
|
||||
158,364,57835,1,0,0:0:0:0:
|
||||
174,364,57856,1,0,0:0:0:0:
|
||||
312,364,57900,6,0,L|448:364,1,135.000005149842,12|2,3:2|0:0,0:0:0:0:
|
||||
392,364,58158,1,2,0:0:0:0:
|
||||
216,192,58244,2,0,L|160:192,1,56.25,10|0,3:2|0:0,0:0:0:0:
|
||||
232,124,58417,2,0,L|176:124,1,56.25,2|2,0:0|0:0,0:0:0:0:
|
||||
20,192,58589,2,0,L|112:192,1,90,2|2,3:2|0:0,0:0:0:0:
|
||||
276,264,58934,2,0,L|180:264,1,90,8|2,3:2|0:3,0:0:0:0:
|
||||
440,264,59279,5,0,3:0:0:0:
|
||||
466,250,59322,1,0,0:0:0:0:
|
||||
484,226,59365,1,0,0:0:0:0:
|
||||
491,198,59408,1,0,0:0:0:0:
|
||||
484,168,59451,1,2,0:3:0:0:
|
||||
428,128,59537,1,0,0:0:0:0:
|
||||
260,128,59624,2,0,L|216:128,2,45,8|2|2,3:2|0:0|0:0,0:0:0:0:
|
||||
494,129,59969,2,0,L|498:181,1,45,2|2,3:2|0:2,0:0:0:0:
|
||||
392,260,60227,1,2,0:2:0:0:
|
||||
212,260,60313,1,10,3:2:0:0:
|
||||
356,260,60486,1,2,0:2:0:0:
|
||||
104,64,60658,6,0,L|100:112,1,45,2|2,3:2|0:2,0:0:0:0:
|
||||
204,192,60917,1,2,0:2:0:0:
|
||||
384,128,61003,2,0,L|340:128,1,45,10|2,3:2|0:2,0:0:0:0:
|
||||
159,192,61175,2,0,L|240:192,1,67.5000025749208,2|2,0:2|0:2,0:0:0:0:
|
||||
72,192,61348,5,2,3:2:0:0:
|
||||
9,228,61434,1,2,3:2:0:0:
|
||||
9,300,61520,1,2,3:2:0:0:
|
||||
70,336,61606,1,2,3:2:0:0:
|
||||
250,272,61693,2,0,L|350:272,1,90,10|0,3:2|0:0,0:0:0:0:
|
||||
184,215,62037,6,0,B|136:215|136:215|188:215,1,90,6|2,3:2|0:3,0:0:0:0:
|
||||
232,215,62296,1,2,0:3:0:0:
|
||||
384,296,62382,2,0,L|148:296,1,236.250009012223,8|0,0:0|0:0,0:0:0:0:
|
||||
148,296,62555,2,0,L|288:296,1,135.000005149842,2|2,0:0|3:2,0:0:0:0:
|
||||
144,144,62770,2,0,L|72:144,1,67.5,2|2,0:0|0:0,0:0:0:0:
|
||||
132,144,62986,1,2,0:0:0:0:
|
||||
300,64,63072,2,0,L|344:64,1,45,8|0,3:2|0:0,0:0:0:0:
|
||||
184,192,63244,2,0,L|232:192,1,45,2|2,0:0|0:0,0:0:0:0:
|
||||
64,64,63417,6,0,L|20:64,1,45,2|2,3:2|0:0,0:0:0:0:
|
||||
184,192,63589,2,0,L|140:192,1,45,2|2,0:0|0:0,0:0:0:0:
|
||||
345,64,63762,1,10,0:0:0:0:
|
||||
375,70,63805,1,0,0:0:0:0:
|
||||
400,85,63848,1,0,0:0:0:0:
|
||||
420,108,63891,1,0,0:0:0:0:
|
||||
432,135,63934,1,0,0:0:0:0:
|
||||
435,165,63977,1,0,0:0:0:0:
|
||||
428,194,64020,1,0,0:0:0:0:
|
||||
224,344,64106,2,0,B|448:344,1,225,8|2,3:2|3:2,0:0:0:0:
|
||||
148,268,64451,2,0,B|372:268,1,225,8|0,3:2|0:0,0:0:0:0:
|
||||
120,344,64796,5,6,3:2:0:0:
|
||||
324,344,64911,1,2,0:0:0:0:
|
||||
120,344,65026,1,2,0:0:0:0:
|
||||
336,168,65141,1,10,3:2:0:0:
|
||||
222,168,65256,1,2,0:0:0:0:
|
||||
108,168,65371,1,2,0:0:0:0:
|
||||
336,92,65486,1,2,3:2:0:0:
|
||||
444,92,65601,1,2,0:0:0:0:
|
||||
336,92,65716,1,2,0:0:0:0:
|
||||
144,92,65831,1,10,3:2:0:0:
|
||||
252,92,65946,1,2,0:0:0:0:
|
||||
144,92,66060,1,2,0:0:0:0:
|
||||
360,288,66175,6,0,L|468:288,1,90,2|2,0:0|0:0,0:0:0:0:
|
||||
396,288,66434,1,2,0:0:0:0:
|
||||
224,192,66520,1,2,0:0:0:0:
|
||||
388,192,66693,1,2,0:0:0:0:
|
||||
124,316,66865,2,0,L|120:264,1,45,2|2,0:0|0:0,0:0:0:0:
|
||||
204,352,67037,2,0,L|200:300,1,45,2|2,0:0|0:0,0:0:0:0:
|
||||
368,192,67210,1,2,0:0:0:0:
|
||||
204,192,67382,1,2,0:0:0:0:
|
||||
476,192,67555,5,6,3:2:0:0:
|
||||
188,192,67900,1,6,3:2:0:0:
|
||||
488,192,68244,1,0,3:0:0:0:
|
||||
356,192,68417,2,0,L|424:192,1,67.5000025749208,0|0,3:0|3:0,0:0:0:0:
|
||||
172,192,68589,2,0,L|168:100,1,90,8|2,0:0|0:0,0:0:0:0:
|
||||
484,60,68934,5,4,3:2:0:0:
|
||||
256,192,69279,12,0,71348,0:0:0:0:
|
||||
232,196,71693,6,0,L|228:176,14,11.25,2|0|0|0|0|0|0|0|0|0|0|0|0|0|0,0:0|0:0|0:0|0:0|0:0|0:0|0:0|0:0|0:0|0:0|0:0|0:0|0:0|0:0|0:0,0:0:0:0:
|
||||
272,164,72037,2,0,L|282:146,14,11.25,2|0|0|0|0|0|0|0|0|0|0|0|0|0|0,0:0|0:0|0:0|0:0|0:0|0:0|0:0|0:0|0:0|0:0|0:0|0:0|0:0|0:0|0:0,0:0:0:0:
|
||||
316,216,72382,6,0,L|331:203,14,11.25,2|0|0|0|0|0|0|0|0|0|0|0|0|0|0,0:0|0:0|0:0|0:0|0:0|0:0|0:0|0:0|0:0|0:0|0:0|0:0|0:0|0:0|0:0,0:0:0:0:
|
||||
360,140,72727,2,0,L|375:127,14,11.25,2|0|0|0|0|0|0|0|0|0|0|0|0|0|0,0:0|0:0|0:0|0:0|0:0|0:0|0:0|0:0|0:0|0:0|0:0|0:0|0:0|0:0|0:0,0:0:0:0:
|
||||
256,76,73072,5,2,0:0:0:0:
|
||||
244,78,73094,1,0,0:0:0:0:
|
||||
233,82,73115,1,0,0:0:0:0:
|
||||
224,88,73137,1,0,0:0:0:0:
|
||||
215,96,73158,1,0,0:0:0:0:
|
||||
209,106,73180,1,0,0:0:0:0:
|
||||
205,117,73201,1,0,0:0:0:0:
|
||||
202,128,73223,1,0,0:0:0:0:
|
||||
203,140,73244,1,0,0:0:0:0:
|
||||
205,151,73266,1,0,0:0:0:0:
|
||||
210,162,73287,1,0,0:0:0:0:
|
||||
217,171,73309,1,0,0:0:0:0:
|
||||
226,179,73331,1,0,0:0:0:0:
|
||||
236,184,73352,1,0,0:0:0:0:
|
||||
247,188,73374,1,0,0:0:0:0:
|
||||
258,190,73395,1,0,0:0:0:0:
|
||||
270,189,73417,1,0,0:0:0:0:
|
||||
281,185,73438,1,0,0:0:0:0:
|
||||
291,180,73460,1,0,0:0:0:0:
|
||||
300,173,73481,1,0,0:0:0:0:
|
||||
307,164,73503,1,0,0:0:0:0:
|
||||
313,153,73525,1,0,0:0:0:0:
|
||||
316,142,73546,1,0,0:0:0:0:
|
||||
317,131,73568,1,0,0:0:0:0:
|
||||
315,119,73589,1,0,0:0:0:0:
|
||||
311,108,73611,1,0,0:0:0:0:
|
||||
305,98,73632,1,0,0:0:0:0:
|
||||
297,90,73654,1,0,0:0:0:0:
|
||||
288,83,73675,1,0,0:0:0:0:
|
||||
277,78,73697,1,0,0:0:0:0:
|
||||
266,76,73719,1,0,0:0:0:0:
|
||||
164,20,73762,5,2,0:0:0:0:
|
||||
153,23,73783,1,0,0:0:0:0:
|
||||
143,28,73805,1,0,0:0:0:0:
|
||||
133,34,73826,1,0,0:0:0:0:
|
||||
124,40,73848,1,0,0:0:0:0:
|
||||
115,48,73869,1,0,0:0:0:0:
|
||||
108,56,73891,1,0,0:0:0:0:
|
||||
101,65,73912,1,0,0:0:0:0:
|
||||
95,74,73934,1,0,0:0:0:0:
|
||||
90,84,73956,1,0,0:0:0:0:
|
||||
85,95,73977,1,0,0:0:0:0:
|
||||
82,105,73999,1,0,0:0:0:0:
|
||||
80,116,74020,1,0,0:0:0:0:
|
||||
79,128,74042,1,0,0:0:0:0:
|
||||
79,139,74063,1,0,0:0:0:0:
|
||||
180,148,74106,1,2,0:0:0:0:
|
||||
190,151,74128,1,0,0:0:0:0:
|
||||
200,156,74150,1,0,0:0:0:0:
|
||||
210,162,74171,1,0,0:0:0:0:
|
||||
219,168,74193,1,0,0:0:0:0:
|
||||
228,176,74214,1,0,0:0:0:0:
|
||||
235,184,74236,1,0,0:0:0:0:
|
||||
242,193,74257,1,0,0:0:0:0:
|
||||
248,202,74279,1,0,0:0:0:0:
|
||||
253,212,74300,1,0,0:0:0:0:
|
||||
258,223,74322,1,0,0:0:0:0:
|
||||
261,233,74344,1,0,0:0:0:0:
|
||||
263,244,74365,1,0,0:0:0:0:
|
||||
264,256,74387,1,0,0:0:0:0:
|
||||
264,267,74408,1,0,0:0:0:0:
|
||||
148,236,74451,6,0,L|52:236,1,90,6|0,0:1|0:0,0:0:0:0:
|
||||
196,124,74796,2,0,L|192:32,1,67.5000025749208
|
||||
328,208,75141,2,0,L|324:116,1,67.5000025749208,0|0,0:0|0:0,0:0:0:0:
|
||||
228,168,75486,1,2,0:0:0:0:
|
||||
396,208,75658,1,2,0:0:0:0:
|
||||
124,168,75831,5,2,0:0:0:0:
|
||||
36,168,76003,1,0,0:0:0:0:
|
||||
36,80,76175,1,0,0:0:0:0:
|
||||
124,80,76348,1,0,0:0:0:0:
|
||||
292,80,76520,2,0,L|296:172,1,67.5000025749208,2|0,0:0|0:0,0:0:0:0:
|
||||
192,224,76865,2,0,L|196:152,1,67.5000025749208,0|0,0:0|0:0,0:0:0:0:
|
||||
368,148,77210,6,0,P|424:204|368:268,1,180,2|0,0:0|0:0,0:0:0:0:
|
||||
272,268,77727,1,0,0:0:0:0:
|
||||
176,268,77900,2,0,L|172:360,1,67.5000025749208,0|0,0:0|0:0,0:0:0:0:
|
||||
272,268,78244,1,2,0:0:0:0:
|
||||
104,336,78417,1,2,0:0:0:0:
|
||||
380,268,78589,6,0,L|456:268,2,67.5000025749208,2|0|0,0:0|0:0|0:0,0:0:0:0:
|
||||
284,268,79106,1,0,0:0:0:0:
|
||||
116,268,79279,2,0,L|112:176,1,67.5000025749208,2|0,0:0|0:0,0:0:0:0:
|
||||
216,192,79624,2,0,L|312:192,1,67.5000025749208,0|0,0:0|0:0,0:0:0:0:
|
||||
324,192,79882,1,0,0:0:0:0:
|
||||
152,96,79969,6,0,B|56:96,2,90,2|0|0,0:0|0:0|0:0,0:0:0:0:
|
||||
248,96,80486,1,0,0:0:0:0:
|
||||
416,96,80658,2,0,L|420:168,1,67.5000025749208,2|0,0:0|0:0,0:0:0:0:
|
||||
324,192,81003,2,0,L|252:192,1,67.5000025749208,0|0,0:0|0:0,0:0:0:0:
|
||||
208,192,81262,1,0,0:0:0:0:
|
||||
384,256,81348,6,0,B|480:256,2,90,2|0|0,0:0|0:0|0:0,0:0:0:0:
|
||||
212,296,81865,1,2,0:0:0:0:
|
||||
444,360,82037,2,0,L|448:284,1,67.5000025749208,2|0,0:0|0:0,0:0:0:0:
|
||||
212,296,82382,1,2,0:0:0:0:
|
||||
172,296,82469,1,0,0:0:0:0:
|
||||
132,296,82555,1,0,0:0:0:0:
|
||||
432,24,82727,6,0,P|500:80|432:148,1,207.000003948212,2|0,0:0|0:0,0:0:0:0:
|
||||
272,148,83244,1,0,0:0:0:0:
|
||||
440,148,83417,2,0,L|444:220,1,67.5000025749208,0|0,0:0|0:0,0:0:0:0:
|
||||
200,148,83762,1,2,0:0:0:0:
|
||||
352,148,83934,1,2,0:0:0:0:
|
||||
104,148,84106,6,0,B|8:148,2,90,2|0|0,0:0|0:0|0:0,0:0:0:0:
|
||||
272,196,84624,1,0,0:0:0:0:
|
||||
112,148,84796,2,0,L|108:228,1,67.5000025749208,2|2,0:0|0:0,0:0:0:0:
|
||||
164,216,85055,1,2,0:0:0:0:
|
||||
216,216,85141,2,0,L|292:216,1,67.5000025749208,2|2,0:0|0:0,0:0:0:0:
|
||||
32,216,85486,6,0,P|0:264|36:324,1,135,6|0,3:1|0:0,0:0:0:0:
|
||||
108,324,85831,2,0,L|216:324,1,90,0|2,3:2|0:2,0:0:0:0:
|
||||
20,324,86175,1,2,3:2:0:0:
|
||||
128,324,86348,2,0,L|180:324,1,45,0|0,0:2|0:0,0:0:0:0:
|
||||
344,192,86520,2,0,L|248:192,1,90,2|2,3:2|0:2,0:0:0:0:
|
||||
436,312,86865,6,0,L|440:208,1,90,2|2,3:2|0:2,0:0:0:0:
|
||||
375,208,87124,1,2,0:2:0:0:
|
||||
312,192,87210,1,2,3:2:0:0:
|
||||
472,192,87382,1,2,0:2:0:0:
|
||||
300,192,87555,2,0,L|296:96,1,90,2|2,3:2|0:2,0:0:0:0:
|
||||
360,100,87813,1,2,0:2:0:0:
|
||||
196,100,87900,2,0,L|104:100,1,90,2|2,3:2|0:2,0:0:0:0:
|
||||
276,16,88244,6,0,L|368:16,1,90,2|0,3:2|0:0,0:0:0:0:
|
||||
312,16,88503,1,0,0:0:0:0:
|
||||
260,16,88589,1,0,3:2:0:0:
|
||||
440,16,88762,1,2,0:2:0:0:
|
||||
192,16,88934,2,0,L|100:16,1,90,2|0,3:2|0:2,0:0:0:0:
|
||||
164,16,89193,1,0,0:0:0:0:
|
||||
228,16,89279,2,0,L|136:16,1,90,2|2,3:2|0:2,0:0:0:0:
|
||||
306,112,89624,6,0,L|414:112,1,90,2|2,3:2|0:2,0:0:0:0:
|
||||
450,112,89882,1,2,0:2:0:0:
|
||||
396,112,89969,1,2,3:2:0:0:
|
||||
228,112,90141,1,2,0:2:0:0:
|
||||
396,112,90313,2,0,L|400:208,1,90,2|0,3:2|0:2,0:0:0:0:
|
||||
332,204,90572,1,0,0:0:0:0:
|
||||
264,204,90658,2,0,L|360:204,1,90,2|0,3:2|0:2,0:0:0:0:
|
||||
184,204,91003,6,0,L|80:204,1,90,2|2,3:2|0:2,0:0:0:0:
|
||||
148,204,91262,1,0,0:0:0:0:
|
||||
200,204,91348,1,2,3:2:0:0:
|
||||
32,204,91520,1,2,0:2:0:0:
|
||||
296,204,91693,2,0,B|344:204|344:204|296:204,1,90,2|2,3:2|0:2,0:0:0:0:
|
||||
240,204,91951,1,0,0:0:0:0:
|
||||
136,204,92037,2,0,L|132:132,1,45,0|0,3:2|0:0,0:0:0:0:
|
||||
196,112,92210,2,0,L|200:168,1,45,0|0,0:2|0:0,0:0:0:0:
|
||||
48,204,92382,6,0,B|4:204|4:204|52:204,1,90,2|2,3:2|0:2,0:0:0:0:
|
||||
120,204,92641,1,0,0:0:0:0:
|
||||
188,204,92727,1,0,3:2:0:0:
|
||||
360,204,92900,1,2,0:2:0:0:
|
||||
123,293,93072,2,0,L|119:197,1,90,2|2,3:2|0:2,0:0:0:0:
|
||||
188,204,93331,1,2,0:2:0:0:
|
||||
368,204,93417,2,0,L|424:204,2,45,2|2|2,3:2|0:2|0:2,0:0:0:0:
|
||||
96,204,93762,5,2,3:2:0:0:
|
||||
53,169,93848,1,0,0:0:0:0:
|
||||
45,114,93934,1,2,0:2:0:0:
|
||||
75,69,94020,1,0,0:0:0:0:
|
||||
128,55,94106,1,2,3:2:0:0:
|
||||
316,56,94279,1,2,0:2:0:0:
|
||||
48,52,94451,2,0,L|44:152,1,90,2|0,3:2|0:2,0:0:0:0:
|
||||
112,160,94710,1,0,0:0:0:0:
|
||||
300,160,94796,1,2,3:2:0:0:
|
||||
416,160,94969,2,0,L|352:160,1,45,2|0,0:2|0:0,0:0:0:0:
|
||||
180,232,95141,5,2,3:2:0:0:
|
||||
128,232,95227,1,0,0:0:0:0:
|
||||
76,232,95313,1,2,0:2:0:0:
|
||||
248,232,95486,1,2,3:2:0:0:
|
||||
68,232,95658,1,2,0:2:0:0:
|
||||
348,232,95831,2,0,L|440:232,1,90,2|2,3:2|0:2,0:0:0:0:
|
||||
176,232,96175,6,0,P|176:16|180:232,1,675,2|0,3:2|0:0,0:0:0:0:
|
||||
156,232,96865,2,0,P|160:64|168:232,1,506.250019311906,0|0,0:0|0:0,0:0:0:0:
|
||||
144,232,97555,2,0,P|148:112|152:232,1,360,0|0,0:0|0:0,0:0:0:0:
|
||||
164,320,99279,5,0,3:0:0:0:
|
||||
324,320,99451,2,0,L|340:284,3,22.5,8|8|8|8,0:2|0:2|0:2|0:2,0:0:0:0:
|
||||
204,320,99624,2,0,L|64:320,1,135.000005149842,8|0,3:2|3:0,0:0:0:0:
|
||||
340,228,99969,2,0,L|200:228,1,135.000005149842,8|0,3:2|3:0,0:0:0:0:
|
||||
472,228,100313,1,8,3:2:0:0:
|
||||
64,172,100658,6,0,L|8:172,2,53.9999983520508,4|2|2,3:2|0:0|0:0,0:0:0:0:
|
||||
336,228,101003,1,10,3:2:0:0:
|
||||
176,228,101175,1,2,0:0:0:0:
|
||||
448,228,101348,2,0,B|500:228|500:228|444:228,1,107.999996704102,2|2,3:2|3:2,0:0:0:0:
|
||||
384,228,101606,1,2,0:0:0:0:
|
||||
220,128,101693,2,0,L|328:128,1,107.999996704102,8|2,3:2|0:0,0:0:0:0:
|
||||
264,128,101951,1,2,0:0:0:0:
|
||||
112,128,102037,5,2,3:2:0:0:
|
||||
56,128,102124,1,2,0:0:0:0:
|
||||
56,180,102210,1,2,0:0:0:0:
|
||||
344,252,102382,1,8,3:2:0:0:
|
||||
56,180,102555,1,2,0:0:0:0:
|
||||
368,252,102727,2,0,P|400:304|388:352,1,107.999996704102,0|2,3:0|3:2,0:0:0:0:
|
||||
332,348,102986,1,2,0:2:0:0:
|
||||
168,348,103072,2,0,L|56:348,1,107.999996704102,10|2,3:2|0:0,0:0:0:0:
|
||||
120,348,103331,1,0,0:0:0:0:
|
||||
304,192,103417,5,0,3:2:0:0:
|
||||
364,192,103503,1,2,0:0:0:0:
|
||||
424,192,103589,1,2,0:0:0:0:
|
||||
152,192,103762,1,10,3:2:0:0:
|
||||
316,192,103934,1,2,0:0:0:0:
|
||||
56,192,104106,2,0,B|4:192|4:192|60:192,1,107.999996704102,2|2,3:2|3:2,0:0:0:0:
|
||||
116,192,104365,1,2,0:0:0:0:
|
||||
304,192,104451,2,0,L|416:192,1,107.999996704102,8|2,3:2|0:0,0:0:0:0:
|
||||
356,192,104710,1,2,0:0:0:0:
|
||||
168,112,104796,6,0,L|112:112,2,53.9999983520508,2|2|2,3:2|0:0|0:0,0:0:0:0:
|
||||
440,112,105141,1,8,3:2:0:0:
|
||||
144,112,105313,1,2,0:0:0:0:
|
||||
468,112,105486,2,0,B|468:60|468:60|412:60,1,107.999996704102,0|2,3:0|3:2,0:0:0:0:
|
||||
360,60,105744,1,2,0:2:0:0:
|
||||
164,192,105831,2,0,L|276:192,1,107.999996704102,10|2,3:2|0:0,0:0:0:0:
|
||||
212,192,106089,1,2,0:0:0:0:
|
||||
24,192,106175,5,2,3:2:0:0:
|
||||
20,132,106262,1,2,0:0:0:0:
|
||||
16,72,106348,1,2,0:0:0:0:
|
||||
296,72,106520,1,8,3:2:0:0:
|
||||
132,72,106693,1,2,0:0:0:0:
|
||||
400,72,106865,2,0,P|448:108|440:164,1,107.999996704102,0|2,3:0|3:2,0:0:0:0:
|
||||
388,192,107124,1,2,0:2:0:0:
|
||||
196,192,107210,2,0,L|88:192,1,107.999996704102,10|2,3:2|0:0,0:0:0:0:
|
||||
148,192,107469,1,2,0:0:0:0:
|
||||
304,12,107555,5,2,3:2:0:0:
|
||||
358,12,107641,1,2,0:0:0:0:
|
||||
412,12,107727,1,2,0:0:0:0:
|
||||
136,12,107900,1,8,3:2:0:0:
|
||||
432,12,108072,1,2,0:0:0:0:
|
||||
160,116,108244,2,0,L|52:116,1,107.999996704102,0|2,3:0|3:2,0:0:0:0:
|
||||
112,116,108503,1,2,0:2:0:0:
|
||||
300,192,108589,2,0,L|188:192,1,107.999996704102,10|2,3:2|0:0,0:0:0:0:
|
||||
248,192,108848,1,2,0:0:0:0:
|
||||
436,192,108934,6,0,L|496:192,2,53.9999983520508,2|2|2,3:2|0:0|0:0,0:0:0:0:
|
||||
164,192,109279,1,8,3:2:0:0:
|
||||
324,192,109451,1,2,0:0:0:0:
|
||||
52,192,109624,2,0,P|24:235|60:280,1,107.999996704102,0|2,3:0|3:2,0:0:0:0:
|
||||
112,276,109882,1,2,0:2:0:0:
|
||||
316,276,109969,2,0,L|204:276,1,107.999996704102,10|2,3:2|0:0,0:0:0:0:
|
||||
268,276,110227,1,2,0:0:0:0:
|
||||
456,272,110313,6,0,L|460:152,1,107.999996704102,2|2,3:2|0:0,0:0:0:0:
|
||||
292,276,110658,2,0,L|296:156,1,107.999996704102,8|2,3:2|0:0,0:0:0:0:
|
||||
32,168,111003,1,8,3:2:0:0:
|
||||
140,168,111118,1,2,0:0:0:0:
|
||||
248,168,111233,1,2,0:0:0:0:
|
||||
44,168,111348,2,0,L|124:168,2,71.9999978027344,10|2|2,3:2|0:2|0:2,0:0:0:0:
|
||||
320,168,111693,5,4,3:2:0:0:
|
||||
392,168,111779,1,2,0:0:0:0:
|
||||
464,168,111865,1,2,0:0:0:0:
|
||||
196,168,112037,1,10,3:2:0:0:
|
||||
364,168,112210,1,2,0:0:0:0:
|
||||
92,80,112382,2,0,L|204:80,1,107.999996704102,2|2,3:2|3:2,0:0:0:0:
|
||||
140,80,112641,1,2,0:0:0:0:
|
||||
356,80,112727,2,0,B|408:80|408:80|352:80,1,107.999996704102,8|2,3:2|0:0,0:0:0:0:
|
||||
292,80,112986,1,2,0:0:0:0:
|
||||
96,168,113072,5,2,3:2:0:0:
|
||||
36,168,113158,1,2,0:0:0:0:
|
||||
96,168,113244,1,2,0:0:0:0:
|
||||
368,168,113417,1,8,3:2:0:0:
|
||||
72,168,113589,1,2,0:0:0:0:
|
||||
364,264,113762,2,0,L|252:264,1,107.999996704102,0|2,3:0|3:2,0:0:0:0:
|
||||
316,264,114020,1,2,0:2:0:0:
|
||||
120,344,114106,2,0,L|228:344,1,107.999996704102,10|2,3:2|0:0,0:0:0:0:
|
||||
168,344,114365,1,2,0:0:0:0:
|
||||
384,264,114451,5,2,3:2:0:0:
|
||||
444,264,114537,1,2,0:0:0:0:
|
||||
444,324,114624,1,2,0:0:0:0:
|
||||
176,344,114796,1,8,3:2:0:0:
|
||||
344,344,114969,1,2,0:0:0:0:
|
||||
76,292,115141,2,0,B|20:292|20:292|20:344,1,107.999996704102,0|2,3:0|3:2,0:0:0:0:
|
||||
80,344,115400,1,2,0:2:0:0:
|
||||
284,192,115486,2,0,L|176:192,1,107.999996704102,10|2,3:2|0:0,0:0:0:0:
|
||||
236,192,115744,1,2,0:0:0:0:
|
||||
28,192,115831,6,0,L|84:192,2,53.9999983520508,2|2|2,3:2|0:0|0:0,0:0:0:0:
|
||||
300,192,116175,1,8,3:2:0:0:
|
||||
132,192,116348,1,2,0:0:0:0:
|
||||
408,192,116520,2,0,L|300:192,1,107.999996704102,0|2,3:0|3:2,0:0:0:0:
|
||||
360,192,116779,1,2,0:2:0:0:
|
||||
156,84,116865,2,0,L|268:84,1,107.999996704102,10|2,3:2|0:0,0:0:0:0:
|
||||
204,84,117124,1,2,0:0:0:0:
|
||||
384,84,117210,5,10,3:2:0:0:
|
||||
444,84,117296,1,2,0:0:0:0:
|
||||
504,84,117382,1,2,0:0:0:0:
|
||||
228,284,117555,2,0,L|344:284,1,107.999996704102,8|2,3:2|0:0,0:0:0:0:
|
||||
60,192,117900,2,0,L|169:192,1,107.999996704102,8|2,3:2|3:2,0:0:0:0:
|
||||
108,192,118158,1,2,0:2:0:0:
|
||||
324,192,118244,2,0,B|380:192|380:192|380:140,1,107.999996704102,10|2,3:2|0:0,0:0:0:0:
|
||||
320,112,118503,1,2,0:0:0:0:
|
||||
132,112,118589,5,10,3:2:0:0:
|
||||
72,112,118675,1,2,0:0:0:0:
|
||||
132,112,118762,1,2,0:0:0:0:
|
||||
428,140,118934,1,8,3:2:0:0:
|
||||
80,112,119106,1,2,0:0:0:0:
|
||||
352,192,119279,2,0,L|216:192,1,135.000005149842,8|2,3:2|3:2,0:0:0:0:
|
||||
148,192,119537,1,2,0:2:0:0:
|
||||
388,264,119624,2,0,L|252:264,1,135.000005149842,10|2,3:2|0:0,0:0:0:0:
|
||||
320,264,119882,1,2,0:0:0:0:
|
||||
100,264,119969,6,0,L|40:264,2,53.9999983520508,10|2|10,3:2|0:0|0:2,0:0:0:0:
|
||||
384,192,120313,1,8,3:2:0:0:
|
||||
112,192,120486,1,10,0:2:0:0:
|
||||
408,192,120658,2,0,B|464:192|464:192|404:192,1,107.999996704102,8|10,3:2|3:2,0:0:0:0:
|
||||
348,192,120917,1,2,0:2:0:0:
|
||||
132,96,121003,2,0,B|40:96|40:96|134:96,1,180,10|10,3:2|0:2,0:0:0:0:
|
||||
196,96,121262,1,2,0:0:0:0:
|
||||
384,96,121348,6,0,L|388:160,1,53.9999983520508,10|0,3:2|0:0,0:0:0:0:
|
||||
188,192,121520,2,0,L|184:256,1,53.9999983520508,10|0,0:2|0:0,0:0:0:0:
|
||||
400,248,121693,2,0,L|336:248,1,53.9999983520508,8|0,3:2|0:0,0:0:0:0:
|
||||
128,192,121865,2,0,L|124:252,1,53.9999983520508,10|0,0:2|0:0,0:0:0:0:
|
||||
336,96,122037,6,0,L|276:96,1,53.9999983520508,8|0,3:2|0:0,0:0:0:0:
|
||||
484,96,122210,2,0,L|488:176,1,53.9999983520508,10|2,3:2|0:2,0:0:0:0:
|
||||
272,192,122382,2,0,L|328:192,1,53.9999983520508,10|0,3:2|0:0,0:0:0:0:
|
||||
108,192,122555,2,0,L|52:192,1,53.9999983520508,8|0,0:2|0:0,0:0:0:0:
|
||||
280,272,122727,5,8,3:2:0:0:
|
||||
347,272,122813,1,0,0:0:0:0:
|
||||
415,272,122900,1,0,0:0:0:0:
|
||||
256,192,123072,1,2,0:0:0:0:
|
||||
308,192,123158,1,0,0:0:0:0:
|
||||
360,192,123244,1,0,0:0:0:0:
|
||||
228,112,123417,5,2,0:0:0:0:
|
||||
260,112,123503,1,0,0:0:0:0:
|
||||
292,112,123589,1,0,0:0:0:0:
|
||||
188,28,123762,1,2,0:0:0:0:
|
||||
196,28,123848,1,0,0:0:0:0:
|
||||
204,28,123934,1,0,0:0:0:0:
|
||||
256,192,124106,12,0,132382,0:0:0:0:
|
||||
+1
File diff suppressed because one or more lines are too long
@@ -0,0 +1,468 @@
|
||||
osu file format v14
|
||||
|
||||
[General]
|
||||
StackLeniency: 0.7
|
||||
Mode: 2
|
||||
|
||||
[Difficulty]
|
||||
HPDrainRate:6
|
||||
CircleSize:4.2
|
||||
OverallDifficulty:9.2
|
||||
ApproachRate:9.2
|
||||
SliderMultiplier:1.9
|
||||
SliderTickRate:2
|
||||
|
||||
[Events]
|
||||
//Background and Video events
|
||||
//Break Periods
|
||||
//Storyboard Layer 0 (Background)
|
||||
//Storyboard Layer 1 (Fail)
|
||||
//Storyboard Layer 2 (Pass)
|
||||
//Storyboard Layer 3 (Foreground)
|
||||
//Storyboard Layer 4 (Overlay)
|
||||
//Storyboard Sound Samples
|
||||
|
||||
[TimingPoints]
|
||||
512,317.460317460317,4,2,1,70,1,0
|
||||
2972,-100,4,2,1,5,0,0
|
||||
3051,-100,4,2,1,70,0,0
|
||||
8051,-100,4,2,1,5,0,0
|
||||
8131,-100,4,2,1,70,0,0
|
||||
10591,-100,4,2,1,5,0,0
|
||||
10670,-100,4,2,1,60,0,0
|
||||
12019,-100,4,2,1,5,0,0
|
||||
12099,-100,4,2,1,60,0,0
|
||||
12654,-100,4,2,1,5,0,0
|
||||
12734,-100,4,2,1,60,0,0
|
||||
14559,-100,4,2,1,5,0,0
|
||||
14638,-100,4,2,1,60,0,0
|
||||
17734,-100,4,2,1,5,0,0
|
||||
17813,-100,4,2,1,60,0,0
|
||||
21385,-100,4,2,1,5,0,0
|
||||
21464,-100,4,2,1,60,0,0
|
||||
22178,-100,4,2,1,5,0,0
|
||||
22257,-100,4,2,1,60,0,0
|
||||
30988,-100,4,2,1,50,0,0
|
||||
40829,-44.4444444444445,4,2,1,80,0,0
|
||||
41067,-44.4444444444445,4,2,1,5,0,0
|
||||
41146,-100,4,2,1,80,0,1
|
||||
41385,-100,4,2,1,5,0,1
|
||||
41464,-100,4,2,1,80,0,1
|
||||
45908,-44.4444444444445,4,2,1,80,0,1
|
||||
46146,-44.4444444444445,4,2,1,5,0,1
|
||||
46226,-100,4,2,1,80,0,1
|
||||
46464,-100,4,2,1,5,0,1
|
||||
46543,-100,4,2,1,80,0,1
|
||||
50988,-44.4444444444445,4,2,1,80,0,1
|
||||
51226,-44.4444444444445,4,2,1,5,0,1
|
||||
51305,-100,4,2,1,80,0,1
|
||||
51543,-100,4,2,1,5,0,1
|
||||
51622,-100,4,2,1,80,0,1
|
||||
56067,-44.4444444444445,4,2,1,80,0,1
|
||||
56305,-44.4444444444445,4,2,1,5,0,1
|
||||
56385,-100,4,2,1,80,0,1
|
||||
56623,-100,4,2,1,5,0,1
|
||||
56702,-100,4,2,1,80,0,1
|
||||
61464,-100,4,2,1,70,0,0
|
||||
63607,-100,4,2,1,5,0,0
|
||||
63686,-100,4,2,1,80,0,0
|
||||
66305,-100,4,2,1,5,0,0
|
||||
66384,-100,4,2,1,80,0,0
|
||||
77972,-100,4,2,1,60,0,0
|
||||
79242,-100,4,2,1,70,0,0
|
||||
84321,-100,4,2,1,60,0,0
|
||||
85670,-100,4,2,1,5,0,0
|
||||
85750,-100,4,2,1,60,0,0
|
||||
85988,-100,4,2,1,5,0,0
|
||||
86068,-100,4,2,1,60,0,0
|
||||
88131,-100,4,2,1,50,0,0
|
||||
88289,-100,4,2,1,45,0,0
|
||||
88448,-100,4,2,1,40,0,0
|
||||
88607,-100,4,2,1,35,0,0
|
||||
88765,-100,4,2,1,30,0,0
|
||||
88924,-100,4,2,1,25,0,0
|
||||
89083,-100,4,2,1,20,0,0
|
||||
89242,-100,4,2,1,15,0,0
|
||||
89400,-100,4,2,1,10,0,0
|
||||
|
||||
[HitObjects]
|
||||
368,312,512,6,0,L|368:200,1,95,6|0,3:2|0:2,0:0:0:0:
|
||||
136,152,829,1,8,0:2:0:0:
|
||||
272,152,988,1,8,0:2:0:0:
|
||||
136,192,1146,2,0,L|136:304,1,95,0|0,3:2|3:2,0:2:0:0:
|
||||
368,96,1464,1,8,0:2:0:0:
|
||||
136,256,1623,6,0,P|64:208|136:152,1,190,2|0,3:2|3:2,0:2:0:0:
|
||||
176,144,2019,1,0,3:2:0:0:
|
||||
368,160,2099,1,8,0:2:0:0:
|
||||
232,112,2258,1,8,0:2:0:0:
|
||||
368,224,2416,2,0,L|368:344,1,95,0|0,3:2|3:2,0:0:0:0:
|
||||
136,152,2734,2,0,L|32:152,1,95,8|0,0:2|0:0,0:2:0:0:
|
||||
280,176,3051,6,0,L|384:176,1,95,2|0,3:2|3:2,0:2:0:0:
|
||||
136,96,3369,1,8,0:2:0:0:
|
||||
272,96,3527,1,8,0:2:0:0:
|
||||
136,160,3686,2,0,L|136:280,1,95,0|0,3:2|3:2,0:0:0:0:
|
||||
384,56,4004,1,8,0:2:0:0:
|
||||
136,216,4162,6,0,L|344:216,1,190,2|0,3:2|3:2,0:2:0:0:
|
||||
272,168,4559,1,0,3:2:0:0:
|
||||
80,136,4638,1,8,0:2:0:0:
|
||||
216,96,4797,1,8,0:2:0:0:
|
||||
80,192,4956,2,0,L|80:304,1,95,0|0,3:2|3:2,0:0:0:0:
|
||||
312,144,5273,2,0,L|192:144,1,95,8|0,0:2|0:2,0:2:0:0:
|
||||
456,184,5591,6,0,L|456:80,1,95,2|0,3:2|3:2,0:0:0:0:
|
||||
216,264,5908,1,8,0:2:0:0:
|
||||
352,264,6067,1,8,0:2:0:0:
|
||||
216,264,6226,2,0,L|216:168,1,95,0|0,3:2|3:2,0:2:0:0:
|
||||
456,144,6543,1,8,0:2:0:0:
|
||||
216,184,6702,6,0,P|152:128|216:64,1,190,2|0,3:2|3:2,0:2:0:0:
|
||||
264,56,7099,1,0,3:2:0:0:
|
||||
456,184,7178,1,8,0:2:0:0:
|
||||
320,152,7337,1,8,0:2:0:0:
|
||||
456,224,7496,2,0,L|456:320,1,95,0|0,3:2|3:2,0:2:0:0:
|
||||
216,192,7813,2,0,L|112:192,1,95,8|0,0:2|0:0,0:2:0:0:
|
||||
368,184,8131,6,0,L|368:80,1,95,2|0,3:2|3:2,0:0:0:0:
|
||||
128,272,8448,1,8,0:2:0:0:
|
||||
264,264,8607,1,8,0:2:0:0:
|
||||
128,216,8765,2,0,L|128:120,1,95,0|0,3:2|3:2,0:0:0:0:
|
||||
368,136,9083,1,8,0:2:0:0:
|
||||
128,272,9242,6,0,L|344:272,1,190,2|0,3:2|3:2,0:2:0:0:
|
||||
264,224,9638,1,0,3:2:0:0:
|
||||
72,144,9718,1,8,0:2:0:0:
|
||||
208,128,9877,1,8,0:2:0:0:
|
||||
72,200,10035,2,0,L|72:312,1,95,0|0,3:2|3:2,0:2:0:0:
|
||||
312,288,10353,2,0,L|208:288,1,95,8|0,0:2|0:0,0:2:0:0:
|
||||
464,192,10670,6,0,L|464:88,1,95,2|0,3:2|0:0,0:2:0:0:
|
||||
224,192,10988,2,0,L|224:80,1,95,8|0,0:2|0:0,0:2:0:0:
|
||||
360,200,11305,1,0,0:2:0:0:
|
||||
224,192,11464,1,0,0:2:0:0:
|
||||
464,320,11623,1,8,0:2:0:0:
|
||||
328,264,11781,6,0,L|328:168,1,95,2|0,3:2|0:0,0:2:0:0:
|
||||
464,232,12099,2,0,L|464:128,1,95,0|8,3:2|0:2,0:2:0:0:
|
||||
328,184,12416,2,0,L|432:184,1,95,2|0,0:2|0:0,0:2:0:0:
|
||||
288,120,12734,1,0,0:2:0:0:
|
||||
424,128,12892,2,0,L|424:16,1,95,8|0,0:2|0:2,0:0:0:0:
|
||||
192,192,13210,6,0,L|192:88,1,95,2|0,3:2|0:0,0:2:0:0:
|
||||
424,200,13527,2,0,L|424:88,1,95,8|0,0:2|0:2,0:2:0:0:
|
||||
288,176,13845,1,0,0:2:0:0:
|
||||
424,176,14004,1,0,0:2:0:0:
|
||||
184,288,14162,1,8,0:2:0:0:
|
||||
320,248,14321,6,0,L|320:136,1,95,2|0,3:2|0:0,0:2:0:0:
|
||||
88,176,14638,2,0,L|88:72,1,95,0|8,3:2|0:2,0:0:0:0:
|
||||
224,176,14956,1,0,0:2:0:0:
|
||||
88,224,15115,2,0,L|88:128,1,95,2|0,0:2|0:0,0:0:0:0:
|
||||
328,224,15432,2,0,L|424:224,1,95,8|0,0:2|0:0,0:0:0:0:
|
||||
192,184,15750,5,2,3:2:0:0:
|
||||
328,168,15908,1,0,0:0:0:0:
|
||||
192,240,16067,2,0,L|80:240,1,95,8|0,0:2|0:2,0:2:0:0:
|
||||
232,168,16385,1,2,0:2:0:0:
|
||||
96,144,16543,1,0,0:2:0:0:
|
||||
336,288,16702,1,8,0:2:0:0:
|
||||
200,256,16861,6,0,L|200:152,1,95,2|0,3:2|0:2,0:2:0:0:
|
||||
440,168,17178,1,0,3:2:0:0:
|
||||
304,160,17337,1,8,0:2:0:0:
|
||||
408,160,17496,2,0,L|504:160,1,95
|
||||
360,192,17813,1,0,0:2:0:0:
|
||||
496,144,17972,2,0,L|496:40,1,95,8|0,0:2|0:2,0:0:0:0:
|
||||
256,288,18289,6,0,L|128:288,1,95,2|0,3:2|0:0,0:2:0:0:
|
||||
392,256,18607,2,0,L|392:152,1,95,8|0,0:2|0:2,0:2:0:0:
|
||||
256,224,18924,1,0,0:2:0:0:
|
||||
392,224,19083,1,0,0:2:0:0:
|
||||
152,288,19242,1,8,0:2:0:0:
|
||||
288,224,19400,6,0,L|288:120,1,95,2|0,3:2|0:0,0:2:0:0:
|
||||
48,192,19718,2,0,L|48:96,1,95
|
||||
168,168,20035,1,0,0:0:0:0:
|
||||
48,248,20194,2,0,L|344:248,1,285
|
||||
88,320,20829,6,0,L|88:224,1,95,6|0,3:2|0:0,0:2:0:0:
|
||||
232,176,21146,2,0,L|232:80,1,95,8|0,0:2|0:0,0:2:0:0:
|
||||
88,176,21464,2,0,L|200:176,1,95,0|0,0:2|3:2,0:0:0:0:
|
||||
320,168,21781,1,8,0:2:0:0:
|
||||
184,312,21940,6,0,L|184:200,1,95,2|0,3:2|0:0,0:2:0:0:
|
||||
320,224,22258,2,0,L|320:128,1,95,0|8,3:2|0:2,0:2:0:0:
|
||||
184,336,22575,2,0,L|184:208,1,95,2|0,3:2|0:0,0:2:0:0:
|
||||
320,280,22892,1,0,3:2:0:0:
|
||||
184,264,23051,2,0,L|80:264,1,95,8|0,0:2|0:2,0:2:0:0:
|
||||
328,216,23369,6,0,L|488:216,1,142.5,6|2,3:2|3:2,0:0:0:0:
|
||||
416,160,23686,1,0,0:0:0:0:
|
||||
280,120,23845,2,0,L|184:120,2,95,2|2|0,3:2|0:2|3:2,0:0:0:0:
|
||||
424,232,24321,1,8,0:2:0:0:
|
||||
288,176,24480,6,0,L|480:176,1,190,2|2,3:2|3:2,0:2:0:0:
|
||||
360,120,24956,1,8,0:2:0:0:
|
||||
224,280,25115,1,0,3:2:0:0:
|
||||
360,224,25273,2,0,L|360:176,1,47.5,0|0,3:2|3:0,3:0:0:0:
|
||||
288,152,25432,2,0,L|288:88,1,47.5,0|0,3:0|3:0,3:0:0:0:
|
||||
448,176,25591,2,0,L|448:56,1,95,8|0,0:2|0:0,0:0:0:0:
|
||||
208,312,25908,6,0,L|96:312,1,95,2|0,3:2|3:2,0:2:0:0:
|
||||
248,240,26226,2,0,L|352:240,1,95,8|0,0:2|3:2,0:2:0:0:
|
||||
208,184,26543,2,0,L|208:80,1,95,0|0,0:2|3:2,0:0:0:0:
|
||||
344,80,26861,1,8,0:2:0:0:
|
||||
208,240,27019,6,0,L|104:240,1,95,2|0,3:2|0:2,0:2:0:0:
|
||||
248,176,27337,2,0,L|352:176,1,95,0|8,3:2|0:2,0:2:0:0:
|
||||
208,80,27654,1,0,0:2:0:0:
|
||||
344,248,27813,1,0,3:2:0:0:
|
||||
208,152,27972,1,0,3:2:0:0:
|
||||
344,152,28131,2,0,L|456:152,1,95,8|0,0:2|0:2,0:2:0:0:
|
||||
208,216,28448,6,0,L|48:216,1,142.5,6|2,3:2|3:2,0:2:0:0:
|
||||
120,160,28765,1,0,0:0:0:0:
|
||||
256,120,28924,2,0,L|352:120,2,95,2|0|0,3:2|0:2|3:2,0:0:0:0:
|
||||
112,232,29400,1,8,0:2:0:0:
|
||||
248,176,29559,6,0,L|56:176,1,190,2|2,3:2|3:2,0:2:0:0:
|
||||
192,128,30035,1,0,0:0:0:0:
|
||||
328,184,30194,1,2,3:2:0:0:
|
||||
192,200,30353,2,0,L|192:104,1,95,8|0,0:2|3:2,0:0:0:0:
|
||||
432,184,30670,2,0,L|368:184,1,47.5,8|8,0:2|0:2,0:0:0:0:
|
||||
192,256,30829,2,0,L|136:256,1,47.5,8|8,0:2|0:2,0:0:0:0:
|
||||
336,304,30988,6,0,L|336:192,1,95,2|0,3:2|0:2,0:2:0:0:
|
||||
208,176,31305,2,0,L|208:80,1,95,0|0,3:2|0:2,0:2:0:0:
|
||||
80,192,31623,2,0,L|80:288,1,95,0|0,3:2|0:2,0:2:0:0:
|
||||
208,224,31940,1,0,3:2:0:0:
|
||||
80,192,32099,6,0,L|184:192,1,95,0|2,0:2|3:2,0:0:0:0:
|
||||
296,176,32416,2,0,L|296:56,1,95,0|0,0:2|3:2,0:0:0:0:
|
||||
176,128,32734,2,0,L|176:24,1,95,0|0,0:2|3:2,0:0:0:0:
|
||||
296,224,33051,2,0,L|184:224,2,95,0|0|0,0:2|3:2|0:2,0:0:0:0:
|
||||
48,144,33527,5,0,3:2:0:0:
|
||||
160,144,33686,1,2,0:2:0:0:
|
||||
272,144,33845,1,0,3:2:0:0:
|
||||
160,144,34004,1,2,0:2:0:0:
|
||||
304,272,34162,2,0,P|376:216|304:168,1,190,0|0,3:2|3:2,0:0:0:0:
|
||||
184,160,34638,6,0,L|408:160,1,190,2|2,0:2|0:2,0:2:0:0:
|
||||
440,160,35035,1,0,0:0:0:0:
|
||||
376,120,35115,1,0,3:2:0:0:
|
||||
224,248,35273,1,0,0:2:0:0:
|
||||
368,184,35432,2,0,P|440:136|368:88,1,190,0|0,3:2|3:2,0:2:0:0:
|
||||
288,80,35908,1,0,0:2:0:0:
|
||||
72,328,36067,5,4,3:2:0:0:
|
||||
16,296,36146,1,0,3:0:0:0:
|
||||
16,240,36226,1,0,3:0:0:0:
|
||||
72,208,36305,1,0,3:0:0:0:
|
||||
264,168,36385,1,8,3:0:0:0:
|
||||
328,168,36464,1,0,3:0:0:0:
|
||||
264,168,36543,1,0,3:0:0:0:
|
||||
200,168,36623,1,0,3:0:0:0:
|
||||
392,272,36702,6,0,L|440:272,1,47.5,8|0,3:0|3:0,0:0:0:0:
|
||||
232,280,36861,2,0,L|224:216,1,47.5,0|0,3:0|3:0,0:0:0:0:
|
||||
304,208,37019,2,0,L|320:144,1,47.5,0|0,3:0|3:0,0:0:0:0:
|
||||
104,96,37178,2,0,L|40:96,1,47.5,0|0,3:0|3:0,0:0:0:0:
|
||||
264,344,37337,6,0,L|280:296,1,47.5,8|0,3:0|3:0,0:0:0:0:
|
||||
208,264,37496,2,0,L|200:208,1,47.5,0|0,3:0|3:0,0:0:0:0:
|
||||
392,192,37654,1,8,3:0:0:0:
|
||||
448,152,37734,1,0,3:0:0:0:
|
||||
448,96,37813,1,0,3:0:0:0:
|
||||
392,64,37892,1,0,3:0:0:0:
|
||||
192,192,37972,6,0,L|272:192,1,47.5,8|0,3:0|3:0,0:0:0:0:
|
||||
410,263,38131,2,0,L|458:263,1,47.5,0|0,3:0|3:0,0:0:0:0:
|
||||
264,160,38289,2,0,L|208:160,1,47.5,8|0,0:0|3:0,0:0:0:0:
|
||||
448,208,38448,2,0,L|496:208,1,47.5,0|0,3:0|3:0,0:0:0:0:
|
||||
296,224,38607,5,0,3:2:0:0:
|
||||
440,152,38924,1,0,3:2:0:0:
|
||||
296,160,39242,1,0,3:2:0:0:
|
||||
152,128,39559,1,0,3:2:0:0:
|
||||
352,264,39877,6,0,L|256:256,5,95
|
||||
432,192,40829,6,0,L|184:192,1,213.750008153916,2|0,0:2|0:0,0:2:0:0:
|
||||
440,264,41146,6,0,P|488:216|440:168,1,142.5,6|0,3:2|0:0,0:2:0:0:
|
||||
256,168,41464,1,8,0:2:0:0:
|
||||
400,128,41623,1,8,0:2:0:0:
|
||||
168,248,41781,2,0,L|168:152,1,95,0|0,3:2|3:2,0:0:0:0:
|
||||
400,192,42099,1,8,0:2:0:0:
|
||||
256,136,42258,6,0,L|256:32,1,95,2|0,3:2|0:2,0:2:0:0:
|
||||
400,248,42575,1,0,3:2:0:0:
|
||||
256,200,42734,1,8,0:2:0:0:
|
||||
488,192,42892,2,0,L|488:96,1,95,8|0,0:2|3:2,0:2:0:0:
|
||||
256,136,43210,1,0,3:2:0:0:
|
||||
368,136,43369,1,8,0:2:0:0:
|
||||
480,136,43527,1,0,0:2:0:0:
|
||||
256,136,43686,6,0,L|136:136,1,95,2|0,3:2|3:2,0:0:0:0:
|
||||
392,296,44004,1,8,0:2:0:0:
|
||||
248,248,44162,2,0,L|248:136,1,95,8|0,0:2|3:2,0:0:0:0:
|
||||
480,184,44480,2,0,L|480:80,1,95,0|8,3:2|0:2,0:0:0:0:
|
||||
248,248,44797,6,0,L|352:248,1,95,2|0,3:2|0:0,0:2:0:0:
|
||||
104,176,45115,2,0,L|104:104,1,47.5,0|0,3:2|3:2,0:0:0:0:
|
||||
296,176,45273,1,8,0:2:0:0:
|
||||
160,112,45432,1,8,0:2:0:0:
|
||||
392,200,45591,2,0,L|392:88,1,95,0|0,3:2|3:2,0:0:0:0:
|
||||
160,176,45908,2,0,L|376:176,1,213.750008153916,10|0,0:2|0:0,0:2:0:0:
|
||||
136,288,46226,6,0,P|80:232|136:192,1,142.5,6|0,3:2|0:0,0:2:0:0:
|
||||
304,192,46543,1,8,0:2:0:0:
|
||||
160,128,46702,1,8,0:2:0:0:
|
||||
400,296,46861,2,0,L|400:192,1,95,0|0,3:2|3:2,0:0:0:0:
|
||||
160,72,47178,1,8,0:2:0:0:
|
||||
296,72,47337,6,0,L|408:72,1,95,2|0,3:2|0:2,0:2:0:0:
|
||||
248,168,47654,1,0,3:2:0:0:
|
||||
304,152,47734,1,0,3:2:0:0:
|
||||
360,128,47813,1,8,0:2:0:0:
|
||||
136,224,47972,2,0,L|136:128,1,95,8|0,0:2|3:2,0:0:0:0:
|
||||
376,64,48289,1,0,3:2:0:0:
|
||||
264,64,48448,1,8,0:2:0:0:
|
||||
152,64,48607,1,0,0:2:0:0:
|
||||
392,168,48765,6,0,L|392:72,1,95,2|0,3:2|3:2,0:2:0:0:
|
||||
160,320,49083,1,8,0:2:0:0:
|
||||
304,272,49241,2,0,L|304:160,1,95,8|0,0:2|3:2,0:2:0:0:
|
||||
64,208,49559,2,0,L|64:112,1,95,0|8,3:2|0:2,0:0:0:0:
|
||||
304,272,49877,6,0,L|200:272,1,95,2|0,3:2|0:0,0:2:0:0:
|
||||
448,192,50194,2,0,L|448:80,1,95,2|8,3:2|0:2,0:2:0:0:
|
||||
208,96,50511,2,0,L|144:96,1,47.5,8|0,0:2|0:0,0:0:0:0:
|
||||
352,96,50670,2,0,L|352:200,1,95,0|0,3:2|3:2,0:2:0:0:
|
||||
128,160,50988,2,0,L|360:160,1,213.750008153916,2|0,3:2|0:0,0:2:0:0:
|
||||
104,288,51305,6,0,P|48:240|104:192,1,142.5,6|0,0:2|0:0,0:2:0:0:
|
||||
272,176,51623,1,8,0:2:0:0:
|
||||
128,120,51781,1,8,0:2:0:0:
|
||||
368,280,51940,2,0,L|368:176,1,95,0|0,3:2|3:2,0:0:0:0:
|
||||
128,184,52258,1,8,0:2:0:0:
|
||||
272,184,52416,6,0,L|272:80,1,95,2|0,3:2|0:2,0:2:0:0:
|
||||
128,120,52734,1,0,3:2:0:0:
|
||||
184,112,52813,1,0,3:2:0:0:
|
||||
240,96,52892,1,8,0:2:0:0:
|
||||
16,312,53051,2,0,L|16:208,1,95,8|0,0:2|3:2,0:0:0:0:
|
||||
264,168,53369,1,0,3:2:0:0:
|
||||
152,168,53527,1,8,0:2:0:0:
|
||||
40,168,53686,1,0,0:2:0:0:
|
||||
280,256,53845,6,0,L|280:136,1,95,2|0,3:2|3:2,0:0:0:0:
|
||||
56,240,54162,1,8,0:2:0:0:
|
||||
184,232,54321,2,0,L|304:232,1,95,8|0,0:2|3:2,0:0:0:0:
|
||||
32,320,54638,2,0,L|32:224,1,95,0|8,3:2|0:2,0:0:0:0:
|
||||
264,248,54956,6,0,L|368:248,1,95,2|0,3:2|0:0,0:2:0:0:
|
||||
120,176,55274,2,0,L|120:104,1,47.5,2|0,3:2|0:0,0:0:0:0:
|
||||
312,176,55432,1,8,0:2:0:0:
|
||||
176,112,55591,1,8,0:2:0:0:
|
||||
408,200,55750,2,0,L|408:88,1,95,0|0,0:0|3:2,0:0:0:0:
|
||||
136,288,56067,2,0,L|352:288,1,213.750008153916,10|0,0:2|0:0,0:2:0:0:
|
||||
112,224,56385,6,0,P|64:176|112:128,1,142.5,6|0,3:2|0:0,0:2:0:0:
|
||||
296,192,56702,1,8,0:2:0:0:
|
||||
152,128,56861,1,8,0:2:0:0:
|
||||
392,296,57019,2,0,L|392:192,1,95,0|0,3:2|3:2,0:2:0:0:
|
||||
152,184,57337,1,8,0:2:0:0:
|
||||
296,192,57496,6,0,L|416:192,1,95,2|0,3:2|0:2,0:2:0:0:
|
||||
248,120,57813,1,0,3:2:0:0:
|
||||
392,80,57972,1,8,0:2:0:0:
|
||||
152,288,58131,2,0,L|152:192,1,95,8|0,0:2|3:2,0:2:0:0:
|
||||
392,184,58448,1,0,3:2:0:0:
|
||||
280,192,58607,1,8,0:2:0:0:
|
||||
168,192,58765,1,0,0:2:0:0:
|
||||
392,272,58924,5,2,3:2:0:0:
|
||||
248,224,59083,2,0,L|248:120,1,95,0|8,3:2|0:2,0:0:0:0:
|
||||
488,192,59400,2,0,L|488:96,1,95,10|0,0:2|3:2,0:2:0:0:
|
||||
248,160,59718,2,0,L|248:56,1,95,2|8,3:2|0:2,0:2:0:0:
|
||||
488,256,60035,6,0,L|280:256,1,190,2|2,3:2|3:2,0:0:0:0:
|
||||
448,336,60511,2,0,L|448:232,1,95,2|0,0:2|3:2,0:0:0:0:
|
||||
200,200,60829,1,8,0:2:0:0:
|
||||
448,336,60988,2,0,L|504:336,1,47.5,8|8,0:2|0:2,0:0:0:0:
|
||||
304,208,61146,2,0,L|224:208,1,47.5,8|8,0:2|0:2,0:0:0:0:
|
||||
448,280,61305,2,0,L|496:280,1,47.5,8|8,0:2|0:2,0:0:0:0:
|
||||
304,288,61464,6,0,P|248:232|304:192,1,142.5,6|0,3:2|0:0,0:2:0:0:
|
||||
448,224,61781,2,0,P|496:176|448:128,1,142.5,8|0,0:2|0:0,0:2:0:0:
|
||||
272,184,62099,1,0,3:2:0:0:
|
||||
408,128,62258,1,0,3:2:0:0:
|
||||
168,200,62416,1,8,0:2:0:0:
|
||||
312,152,62575,6,0,L|312:48,1,95,2|0,3:2|3:2,0:2:0:0:
|
||||
72,144,62892,2,0,L|72:32,1,95,0|8,0:2|0:2,0:2:0:0:
|
||||
312,304,63210,1,0,0:2:0:0:
|
||||
176,232,63369,2,0,L|176:128,1,95,0|0,3:2|0:0,0:2:0:0:
|
||||
312,232,63686,1,8,0:2:0:0:
|
||||
176,232,63845,1,0,0:2:0:0:
|
||||
408,232,64004,6,0,P|464:184|408:136,1,142.5,2|0,3:2|0:0,0:2:0:0:
|
||||
240,120,64321,1,8,0:2:0:0:
|
||||
376,64,64480,1,0,0:2:0:0:
|
||||
136,272,64638,2,0,L|136:168,1,95,0|0,3:2|0:2,0:0:0:0:
|
||||
272,288,64956,1,8,0:2:0:0:
|
||||
32,192,65115,6,0,L|32:88,1,95,2|0,3:2|3:2,0:2:0:0:
|
||||
272,136,65432,2,0,L|368:136,1,95,0|8,0:2|0:2,0:2:0:0:
|
||||
128,240,65750,1,0,0:2:0:0:
|
||||
264,192,65908,1,0,3:2:0:0:
|
||||
128,184,66067,2,0,L|128:80,1,95,8|0,0:2|0:0,0:2:0:0:
|
||||
264,128,66385,1,10,0:2:0:0:
|
||||
32,144,66543,6,0,L|32:40,1,95,0|0,0:0|0:2,0:0:0:0:
|
||||
280,240,66861,1,8,0:2:0:0:
|
||||
144,240,67019,1,0,0:2:0:0:
|
||||
280,240,67178,2,0,L|384:240,1,95,0|0,3:2|0:2,0:0:0:0:
|
||||
136,104,67496,1,8,0:2:0:0:
|
||||
272,136,67654,6,0,P|320:80|272:32,1,142.5,2|0,3:2|0:0,0:2:0:0:
|
||||
96,80,67972,2,0,L|96:176,1,95,0|8,0:2|0:2,0:2:0:0:
|
||||
328,232,68289,1,0,0:2:0:0:
|
||||
192,224,68448,1,0,3:2:0:0:
|
||||
328,232,68607,1,0,0:2:0:0:
|
||||
96,152,68765,1,8,0:2:0:0:
|
||||
232,136,68924,1,2,3:2:0:0:
|
||||
472,296,69083,6,0,L|472:176,1,95,0|0,3:2|0:2,0:0:0:0:
|
||||
368,168,69400,1,8,0:2:0:0:
|
||||
152,192,69559,1,0,0:2:0:0:
|
||||
288,160,69718,1,0,3:2:0:0:
|
||||
152,144,69877,1,0,0:2:0:0:
|
||||
384,184,70035,1,8,0:2:0:0:
|
||||
248,168,70194,6,0,L|248:56,1,95,2|0,3:2|0:0,0:2:0:0:
|
||||
384,120,70511,1,0,0:2:0:0:
|
||||
248,112,70670,2,0,P|192:56|248:16,1,142.5,8|0,0:2|0:0,0:2:0:0:
|
||||
416,128,70988,2,0,L|416:24,1,95,0|8,3:2|0:2,0:0:0:0:
|
||||
352,128,71226,1,8,0:2:0:0:
|
||||
168,192,71305,2,0,L|96:192,1,47.5,8|8,0:2|0:2,0:0:0:0:
|
||||
312,208,71464,2,0,L|384:208,1,47.5,8|8,0:2|0:2,0:0:0:0:
|
||||
168,272,71623,6,0,L|64:272,1,95,6|0,3:2|0:2,0:2:0:0:
|
||||
312,312,71940,1,8,0:2:0:0:
|
||||
168,248,72099,2,0,L|56:248,1,95,0|0,3:2|3:2,0:2:0:0:
|
||||
312,200,72416,2,0,L|312:88,1,95,0|8,0:2|0:2,0:2:0:0:
|
||||
176,80,72734,1,2,3:2:0:0:
|
||||
416,264,72892,5,0,3:2:0:0:
|
||||
280,192,73051,2,0,L|280:80,1,95,0|8,0:2|0:2,0:0:0:0:
|
||||
416,200,73369,1,0,0:2:0:0:
|
||||
176,184,73527,2,0,P|128:128|176:80,1,142.5,0|0,3:2|0:0,0:2:0:0:
|
||||
352,192,73845,2,0,L|352:88,1,95,8|2,0:2|3:2,0:0:0:0:
|
||||
104,192,74162,5,0,3:2:0:0:
|
||||
240,144,74321,2,0,L|240:48,1,95,0|8,0:2|0:2,0:2:0:0:
|
||||
104,104,74638,1,0,0:2:0:0:
|
||||
344,304,74797,1,0,3:2:0:0:
|
||||
208,256,74956,1,0,0:2:0:0:
|
||||
344,240,75115,1,8,0:2:0:0:
|
||||
104,184,75273,6,0,L|104:80,1,95,2|0,3:2|3:2,0:2:0:0:
|
||||
240,72,75591,1,0,0:2:0:0:
|
||||
16,312,75750,1,8,0:2:0:0:
|
||||
152,320,75908,1,0,0:2:0:0:
|
||||
16,264,76067,2,0,L|16:168,1,95,0|0,3:2|0:2,0:0:0:0:
|
||||
256,192,76385,2,0,L|376:192,1,95,10|0,0:2|0:0,0:2:0:0:
|
||||
112,128,76702,5,0,3:2:0:0:
|
||||
248,120,76861,1,8,0:2:0:0:
|
||||
112,176,77019,2,0,L|112:280,1,95,0|0,0:2|3:2,0:0:0:0:
|
||||
176,176,77258,1,0,3:2:0:0:
|
||||
368,176,77337,2,0,L|368:80,1,95,8|0,0:2|0:2,0:2:0:0:
|
||||
232,152,77654,1,0,0:2:0:0:
|
||||
368,160,77813,1,0,0:2:0:0:
|
||||
80,96,77972,5,10,0:2:0:0:
|
||||
64,296,79242,6,0,L|64:184,1,95,6|0,3:2|3:2,0:0:0:0:
|
||||
296,136,79559,1,8,0:2:0:0:
|
||||
160,136,79718,1,8,0:2:0:0:
|
||||
296,176,79876,2,0,L|296:288,1,95,0|0,3:2|3:2,0:2:0:0:
|
||||
64,80,80194,1,8,0:2:0:0:
|
||||
296,240,80353,6,0,P|368:192|296:136,1,190,2|0,3:2|3:2,0:2:0:0:
|
||||
256,128,80749,1,0,3:2:0:0:
|
||||
64,144,80829,1,8,0:2:0:0:
|
||||
200,96,80988,1,8,0:2:0:0:
|
||||
64,208,81146,2,0,L|64:328,1,95,0|0,3:2|3:2,0:2:0:0:
|
||||
296,136,81464,2,0,L|400:136,1,95,8|0,0:2|0:2,0:2:0:0:
|
||||
152,160,81781,6,0,L|48:160,1,95,2|0,3:2|3:2,0:2:0:0:
|
||||
296,80,82099,1,8,0:2:0:0:
|
||||
160,80,82257,1,8,0:2:0:0:
|
||||
296,144,82416,2,0,L|296:264,1,95,0|0,3:2|3:2,0:0:0:0:
|
||||
48,40,82734,1,8,0:2:0:0:
|
||||
296,200,82892,6,0,L|88:200,1,190,2|0,3:2|3:2,0:2:0:0:
|
||||
160,152,83289,1,0,3:2:0:0:
|
||||
352,120,83368,1,8,0:2:0:0:
|
||||
216,80,83527,1,8,0:2:0:0:
|
||||
352,176,83686,2,0,L|352:288,1,95,0|0,3:2|3:2,0:2:0:0:
|
||||
120,128,84003,2,0,L|16:128,1,95,8|0,0:2|0:2,0:0:0:0:
|
||||
264,232,84321,5,10,0:2:0:0:
|
||||
128,152,84480,1,8,0:2:0:0:
|
||||
368,320,84638,1,0,3:2:0:0:
|
||||
464,272,84797,1,8,0:2:0:0:
|
||||
464,184,84956,1,0,3:2:0:0:
|
||||
368,136,85115,1,0,0:2:0:0:
|
||||
232,104,85273,1,8,0:2:0:0:
|
||||
472,344,85432,6,0,L|472:240,1,95,10|0,0:2|0:0,0:2:0:0:
|
||||
232,160,85750,2,0,L|232:40,1,95,10|0,0:2|0:0,0:2:0:0:
|
||||
368,144,86067,1,8,3:2:0:0:
|
||||
232,208,86226,2,0,L|136:208,1,95,0|0,3:2|0:2,0:2:0:0:
|
||||
272,64,86543,2,0,L|400:64,1,95,0|0,3:2|0:2,0:2:0:0:
|
||||
128,320,86861,5,10,0:0:0:0:
|
||||
264,272,87019,1,8,0:0:0:0:
|
||||
24,224,87178,1,2,3:0:0:0:
|
||||
24,128,87337,1,2,0:0:0:0:
|
||||
160,104,87496,1,8,3:0:0:0:
|
||||
24,104,87654,1,0,3:0:0:0:
|
||||
272,144,87813,1,8,0:0:0:0:
|
||||
24,56,87972,5,8,0:0:0:0:
|
||||
256,192,88131,12,0,89400,0:0:0:0:
|
||||
+1
File diff suppressed because one or more lines are too long
@@ -0,0 +1,142 @@
|
||||
osu file format v14
|
||||
|
||||
[General]
|
||||
StackLeniency: 0.7
|
||||
Mode: 0
|
||||
|
||||
[Difficulty]
|
||||
HPDrainRate:4
|
||||
CircleSize:3.5
|
||||
OverallDifficulty:4
|
||||
ApproachRate:4
|
||||
SliderMultiplier:1.4
|
||||
SliderTickRate:1
|
||||
|
||||
[Events]
|
||||
//Background and Video events
|
||||
//Break Periods
|
||||
//Storyboard Layer 0 (Background)
|
||||
//Storyboard Layer 1 (Fail)
|
||||
//Storyboard Layer 2 (Pass)
|
||||
//Storyboard Layer 3 (Foreground)
|
||||
//Storyboard Layer 4 (Overlay)
|
||||
//Storyboard Sound Samples
|
||||
|
||||
[TimingPoints]
|
||||
22,681.818181818182,4,2,1,60,1,0
|
||||
9908,-100,4,2,1,40,0,0
|
||||
10931,-100,4,2,1,67,0,0
|
||||
31726,-100,4,2,1,40,0,0
|
||||
33090,-100,4,2,1,67,0,0
|
||||
43658,-100,4,2,1,74,0,0
|
||||
53544,-100,4,2,1,50,0,0
|
||||
54908,-100,4,2,1,74,0,0
|
||||
75362,-100,4,2,1,50,0,0
|
||||
76726,-100,4,2,1,74,0,0
|
||||
86612,-100,4,2,1,67,0,0
|
||||
87294,-100,4,2,1,40,0,0
|
||||
87465,-100,4,2,1,67,0,0
|
||||
90022,-100,4,2,1,57,0,0
|
||||
91385,-100,4,2,1,37,0,0
|
||||
92067,-100,4,2,1,17,0,0
|
||||
92749,-100,4,2,1,5,0,0
|
||||
|
||||
[HitObjects]
|
||||
206,12,22,5,0,2:0:0:0:
|
||||
137,71,362,2,0,L|54:77,2,70,2|0|0,2:0|2:0|2:0,0:0:0:0:
|
||||
220,108,1385,2,0,P|258:171|211:223,1,140,2|0,0:0|0:0,0:0:0:0:
|
||||
160,283,2408,2,0,L|79:277,2,70,0|2|2,0:0|0:0|0:1,0:0:0:0:
|
||||
340,303,3772,1,0,0:0:0:0:
|
||||
401,235,4112,2,0,L|405:82,1,140,2|0,0:0|0:0,0:0:0:0:
|
||||
343,27,5135,2,0,P|309:41|263:72,1,70,0|2,0:0|0:1,0:0:0:0:
|
||||
189,63,5817,6,0,L|93:55,2,70,2|0|0,0:0|0:0|0:0,0:0:0:0:
|
||||
208,151,6840,2,0,B|363:142,1,140,2|0,0:0|0:0,0:0:0:0:
|
||||
416,202,7862,2,0,P|436:245|446:291,2,70,0|2|2,0:0|0:0|0:1,0:0:0:0:
|
||||
275,86,9226,1,0,0:0:0:0:
|
||||
208,151,9567,2,0,P|187:194|177:297,2,140,6|0|2,0:0|0:0|0:1,0:0:0:0:
|
||||
272,87,11272,6,0,L|353:99,1,70,2|0,0:0|0:0,0:0:0:0:
|
||||
397,169,11953,2,0,P|431:164|465:157,2,70,0|2|0,0:0|0:1|0:0,0:0:0:0:
|
||||
309,196,12976,2,0,P|302:241|301:280,1,70
|
||||
226,317,13658,2,0,P|162:340|106:303,1,140,2|0,0:0|0:0,0:0:0:0:
|
||||
71,218,14681,1,0,0:0:0:0:
|
||||
109,135,15022,2,0,P|172:111|228:148,1,140,2|0,0:0|0:0,0:0:0:0:
|
||||
305,192,16044,2,0,P|342:187|384:176,1,70,0|2,0:0|0:1,0:0:0:0:
|
||||
416,99,16726,6,0,L|508:111,2,70,2|0|0,0:0|0:0|0:0,0:0:0:0:
|
||||
338,58,17749,2,0,B|313:113|313:113|305:200,1,140,2|0,0:0|0:0,0:0:0:0:
|
||||
293,287,18772,1,0,0:0:0:0:
|
||||
201,278,19112,2,0,B|112:265|112:265|63:277,1,140,2|0,0:0|0:0,0:0:0:0:
|
||||
129,107,20476,2,0,B|217:119|217:119|266:107,1,140,2|0,0:0|0:0,0:0:0:0:
|
||||
352,75,21499,6,0,P|393:51|436:33,2,70,0|2|2,0:0|0:1|0:0,0:0:0:0:
|
||||
337,165,22522,1,2,0:0:0:0:
|
||||
412,214,22862,2,0,P|409:254|403:303,1,70,0|2,0:0|0:0,0:0:0:0:
|
||||
214,306,23885,2,0,P|205:276|195:233,2,70,0|0|2,0:0|0:0|0:0,0:0:0:0:
|
||||
301,331,24908,2,0,L|306:188,1,140,2|0,0:1|0:0,0:0:0:0:
|
||||
302,99,25931,1,2,0:0:0:0:
|
||||
131,34,26612,1,0,0:0:0:0:
|
||||
67,99,26953,2,0,L|63:177,1,70,0|2,0:0|0:1,0:0:0:0:
|
||||
96,254,27635,6,0,L|107:343,2,70,2|0|0,0:0|0:0|0:0,0:0:0:0:
|
||||
165,194,28658,2,0,B|235:174|235:174|307:196,1,140,2|0,0:1|0:0,0:0:0:0:
|
||||
385,223,29681,2,0,L|455:220,2,70,0|2|2,0:0|0:0|0:0,0:0:0:0:
|
||||
202,223,31044,1,0,0:0:0:0:
|
||||
197,132,31385,2,0,L|50:122,2,140,6|0|0,0:0|0:0|0:0,0:0:0:0:
|
||||
285,111,33090,6,0,L|289:21,2,70,2|0|0,0:0|0:0|0:0,0:0:0:0:
|
||||
286,202,34112,2,0,L|290:292,1,70,2|0,0:0|0:0,0:0:0:0:
|
||||
373,306,34794,2,0,L|463:302,1,70
|
||||
453,212,35476,2,0,B|463:145|463:145|434:66,1,140,2|0,0:0|0:0,0:0:0:0:
|
||||
362,25,36499,1,2,0:0:0:0:
|
||||
304,95,36840,2,0,B|294:162|294:162|323:241,1,140,2|0,0:0|0:0,0:0:0:0:
|
||||
160,319,38203,6,0,L|81:317,1,70,2|0,0:0|0:0,0:0:0:0:
|
||||
48,235,38885,2,0,L|51:163,2,70,0|0|2,0:0|0:0|0:0,0:0:0:0:
|
||||
219,295,40249,2,0,L|296:292,1,70,2|0,0:0|0:0,0:0:0:0:
|
||||
379,284,40931,2,2,P|450:216|324:142,1,280,2|0,0:0|0:0,0:0:0:0:
|
||||
172,210,42976,6,0,B|150:143|150:143|169:69,1,140,2|6,0:0|0:0,0:0:0:0:
|
||||
255,54,43999,2,0,L|326:59,2,70,2|2|0,0:0|0:0|0:0,0:0:0:0:
|
||||
163,56,45022,2,0,P|126:58|80:64,1,70,2|0,0:0|0:0,0:0:0:0:
|
||||
81,153,45703,2,0,P|97:210|99:230,1,70
|
||||
123,308,46385,2,0,P|154:284|260:294,1,140,2|0,0:0|0:0,0:0:0:0:
|
||||
339,307,47408,2,0,L|421:313,1,70,0|2,0:0|0:0,0:0:0:0:
|
||||
436,132,48431,2,0,P|405:108|299:118,1,140,0|2,0:0|0:1,0:0:0:0:
|
||||
217,111,49453,6,0,P|205:72|196:40,2,70,2|2|0,0:0|0:0|0:0,0:0:0:0:
|
||||
153,175,50476,2,0,P|123:182|77:190,1,70,2|0,0:0|0:0,0:0:0:0:
|
||||
115,274,51158,2,0,B|172:253|172:253|259:268,1,140,0|2,0:0|0:0,0:0:0:0:
|
||||
339,247,52181,1,0,0:0:0:0:
|
||||
343,65,52862,1,0,0:0:0:0:
|
||||
253,81,53203,2,0,B|202:89|202:89|113:57,2,140,6|0|2,0:0|0:0|0:1,0:0:0:0:
|
||||
343,65,54908,5,2,0:0:0:0:
|
||||
418,116,55249,2,0,L|431:195,1,70
|
||||
415,279,55931,2,0,P|350:269|263:246,1,140,2|0,0:0|0:0,0:0:0:0:
|
||||
187,254,56953,1,0,0:0:0:0:
|
||||
96,242,57294,2,0,L|87:102,1,140,2|0,0:0|0:0,0:0:0:0:
|
||||
149,35,58317,1,2,0:0:0:0:
|
||||
239,29,58658,2,0,L|248:169,1,140,2|0,0:0|0:0,0:0:0:0:
|
||||
365,304,60022,6,0,P|406:290|435:276,1,70,2|2,0:1|0:0,0:0:0:0:
|
||||
436,187,60703,2,0,P|405:176|357:162,1,70
|
||||
294,217,61385,2,0,P|268:168|295:86,1,140,2|0,0:0|0:0,0:0:0:0:
|
||||
368,43,62408,1,0,0:0:0:0:
|
||||
451,79,62749,2,0,B|467:125|467:125|454:222,1,140,2|0,0:0|0:0,0:0:0:0:
|
||||
288,290,64112,2,0,B|242:306|242:306|145:293,1,140
|
||||
124,206,65135,6,0,P|80:211|48:219,2,70,0|2|2,0:0|0:1|0:0,0:0:0:0:
|
||||
212,184,66158,1,2,0:0:0:0:
|
||||
190,95,66499,2,0,P|205:62|224:31,1,70,2|2,0:0|0:0,0:0:0:0:
|
||||
400,67,67522,2,0,P|418:96|432:128,1,70
|
||||
441,219,68203,2,0,P|398:242|305:204,1,140,2|0,0:0|0:0,0:0:0:0:
|
||||
271,136,69226,2,0,L|186:151,1,70,0|2,0:0|0:0,0:0:0:0:
|
||||
71,275,70249,2,0,B|129:295|129:295|225:279,1,140,0|2,0:0|0:1,0:0:0:0:
|
||||
285,236,71272,6,0,P|291:273|290:308,2,70,2|2|0,0:0|0:0|0:0,0:0:0:0:
|
||||
257,150,72294,2,0,P|287:133|322:119,1,70,2|0,0:0|0:0,0:0:0:0:
|
||||
367,42,72976,2,0,P|415:63|420:159,1,140,0|2,0:0|0:0,0:0:0:0:
|
||||
368,210,73999,1,0,0:0:0:0:
|
||||
185,209,74681,1,0,0:0:0:0:
|
||||
108,159,75022,2,0,P|112:92|171:59,2,140,6|0|2,0:0|0:0|0:1,0:0:0:0:
|
||||
185,209,76726,5,2,0:0:0:0:
|
||||
134,284,77067,2,0,L|50:283,2,70,0|0|2,0:0|0:0|0:0,0:0:0:0:
|
||||
225,289,78090,2,0,P|264:280|309:278,1,70
|
||||
385,274,78772,1,0,0:0:0:0:
|
||||
429,194,79112,2,0,P|436:124|409:39,1,140,2|0,0:0|0:0,0:0:0:0:
|
||||
330,33,80135,1,2,0:0:0:0:
|
||||
239,38,80476,2,0,P|232:108|259:193,1,140,2|0,0:0|0:0,0:0:0:0:
|
||||
372,316,81840,6,0,L|283:303,1,70,2|0,0:0|0:0,0:0:0:0:
|
||||
222,262,82522,2,0,L|131:270,2,70,0|0|2,0:0|0:0|0:0,0:0:0:0:
|
||||
374,161,83885,2,0,P|356:130|335:102,1,70
|
||||
246,110,84567,2,0,P|214:138|321:303,2,280,2|0|2,0:0|0:0|0:1,0:0:0:0:
|
||||
256,192,87465,12,0,92749,0:0:0:0:
|
||||
+1
File diff suppressed because one or more lines are too long
@@ -0,0 +1,889 @@
|
||||
osu file format v14
|
||||
|
||||
[General]
|
||||
StackLeniency: 0.7
|
||||
Mode: 2
|
||||
|
||||
[Difficulty]
|
||||
HPDrainRate:6
|
||||
CircleSize:4
|
||||
OverallDifficulty:9.2
|
||||
ApproachRate:9.2
|
||||
SliderMultiplier:2.76
|
||||
SliderTickRate:2
|
||||
|
||||
[Events]
|
||||
//Background and Video events
|
||||
//Break Periods
|
||||
2,88036,100842
|
||||
2,172123,178142
|
||||
//Storyboard Layer 0 (Background)
|
||||
//Storyboard Layer 1 (Fail)
|
||||
//Storyboard Layer 2 (Pass)
|
||||
//Storyboard Layer 3 (Foreground)
|
||||
//Storyboard Layer 4 (Overlay)
|
||||
//Storyboard Sound Samples
|
||||
|
||||
[TimingPoints]
|
||||
245,437.956204379562,4,2,1,30,1,0
|
||||
17763,-100,4,2,1,65,0,0
|
||||
31777,-100,4,2,1,70,0,0
|
||||
45792,-100,4,2,1,75,0,0
|
||||
52799,-100,4,2,1,80,0,0
|
||||
59807,-100,4,2,1,85,0,1
|
||||
86960,-90.9090909090909,4,2,1,80,0,1
|
||||
87836,-100,4,2,1,75,0,0
|
||||
101850,-100,4,2,1,65,0,0
|
||||
115865,-100,4,2,1,70,0,0
|
||||
129880,-100,4,2,1,75,0,0
|
||||
136887,-100,4,2,1,80,0,0
|
||||
140828,-100,4,2,1,60,0,0
|
||||
141485,-100,4,2,1,65,0,0
|
||||
141704,-100,4,2,1,70,0,0
|
||||
141923,-100,4,2,1,75,0,0
|
||||
142142,-100,4,2,1,80,0,0
|
||||
143894,-100,4,2,1,85,0,1
|
||||
171923,-100,4,2,1,75,0,0
|
||||
178931,-100,4,2,1,75,0,0
|
||||
192945,-76.9230769230769,4,2,1,85,0,1
|
||||
193383,-47.6190476190476,4,2,1,85,0,1
|
||||
193821,-76.9230769230769,4,2,1,85,0,1
|
||||
194259,-47.6190476190476,4,2,1,85,0,1
|
||||
194697,-100,4,2,1,85,0,1
|
||||
195135,-47.6190476190476,4,2,1,85,0,1
|
||||
195573,-100,4,2,1,85,0,1
|
||||
196011,-47.6190476190476,4,2,1,85,0,1
|
||||
196449,-100,4,2,1,85,0,1
|
||||
196668,-47.6190476190476,4,2,1,85,0,1
|
||||
198639,-71.4285714285714,4,2,2,85,0,1
|
||||
199077,-100,4,2,2,85,0,1
|
||||
199296,-76.9230769230769,4,2,1,85,0,1
|
||||
199953,-100,4,2,1,80,0,0
|
||||
201704,-100,4,2,1,85,0,1
|
||||
227982,-100,4,2,1,30,0,0
|
||||
|
||||
[HitObjects]
|
||||
256,192,14259,12,0,17325,0:0:0:0:
|
||||
166,339,17763,6,0,L|164:200,1,138,2|0,1:2|0:0,0:0:0:0:
|
||||
358,201,18201,2,0,L|360:62,1,138,0|0,1:2|0:0,0:0:0:0:
|
||||
165,63,18639,2,0,L|18:65,1,138,2|2,1:2|0:0,0:0:0:0:
|
||||
137,64,18967,2,0,L|208:65,1,69,2|0,0:0|1:2,0:0:0:0:
|
||||
25,64,19296,1,2,0:0:0:0:
|
||||
314,64,19515,5,2,1:2:0:0:
|
||||
350,130,19624,1,0,0:0:0:0:
|
||||
312,196,19734,1,2,0:0:0:0:
|
||||
118,196,19953,2,0,L|259:197,1,138,2|2,1:2|0:0,0:0:0:0:
|
||||
449,196,20390,2,0,L|452:342,1,138,2|2,1:2|0:0,0:0:0:0:
|
||||
271,333,20828,1,2,1:2:0:0:
|
||||
451,333,21047,1,2,0:0:0:0:
|
||||
133,333,21266,5,2,1:2:0:0:
|
||||
97,265,21376,1,0,0:0:0:0:
|
||||
136,200,21485,1,0,0:0:0:0:
|
||||
329,200,21704,2,0,L|331:57,1,138,0|0,1:2|0:0,0:0:0:0:
|
||||
136,62,22142,2,0,L|297:62,1,138,2|2,1:2|0:0,0:0:0:0:
|
||||
385,62,22471,2,0,L|294:62,1,69,2|0,0:0|1:2,0:0:0:0:
|
||||
136,62,22799,1,2,0:0:0:0:
|
||||
425,62,23018,5,2,1:2:0:0:
|
||||
461,128,23128,1,0,0:0:0:0:
|
||||
421,192,23237,1,2,0:0:0:0:
|
||||
227,192,23456,2,0,L|224:332,1,138,2|2,1:2|0:0,0:0:0:0:
|
||||
404,329,23894,1,2,1:2:0:0:
|
||||
224,329,24113,1,2,0:0:0:0:
|
||||
417,329,24332,2,0,L|419:187,1,138,2|2,1:2|0:0,0:0:0:0:
|
||||
341,191,24661,1,2,0:0:0:0:
|
||||
107,191,24770,5,2,1:2:0:0:
|
||||
69,124,24880,1,0,0:0:0:0:
|
||||
111,61,24989,1,0,0:0:0:0:
|
||||
304,61,25208,2,0,L|306:200,1,138,0|0,1:2|0:0,0:0:0:0:
|
||||
111,198,25646,2,0,L|110:337,1,138,2|0,1:2|0:0,0:0:0:0:
|
||||
220,335,25974,2,0,L|292:335,1,69,2|0,0:0|1:2,0:0:0:0:
|
||||
108,335,26303,1,2,0:0:0:0:
|
||||
397,335,26522,5,2,1:2:0:0:
|
||||
432,268,26631,1,0,0:0:0:0:
|
||||
395,200,26741,1,2,0:0:0:0:
|
||||
215,200,26960,1,2,1:2:0:0:
|
||||
395,200,27179,1,2,0:0:0:0:
|
||||
201,200,27398,2,0,L|200:59,1,138,2|0,1:2|0:0,0:0:0:0:
|
||||
380,62,27836,1,0,1:2:0:0:
|
||||
200,62,28055,1,2,0:0:0:0:
|
||||
131,62,28164,1,2,0:0:0:0:
|
||||
365,62,28274,6,0,P|452:120|350:202,1,276,2|0,1:2|0:0,0:0:0:0:
|
||||
170,202,28931,1,2,0:0:0:0:
|
||||
349,202,29150,2,0,P|415:208|474:382,1,276,2|0,0:0|0:0,0:0:0:0:
|
||||
114,381,30026,5,0,1:2:0:0:
|
||||
292,381,30244,1,8,0:3:0:0:
|
||||
114,381,30463,2,0,L|113:240,1,138,8|0,0:3|0:0,0:0:0:0:
|
||||
307,243,30901,2,0,L|309:102,1,138,4|0,0:3|0:0,0:0:0:0:
|
||||
197,105,31230,2,0,L|129:106,1,69,4|0,0:3|1:2,0:0:0:0:
|
||||
417,106,31558,2,0,L|418:180,1,69,0|0,3:2|0:0,0:0:0:0:
|
||||
148,174,31777,5,2,1:2:0:0:
|
||||
78,174,31887,1,0,0:0:0:0:
|
||||
148,174,31996,1,0,0:0:0:0:
|
||||
341,174,32215,2,0,P|354:234|340:315,1,138,0|0,3:2|0:0,0:0:0:0:
|
||||
265,311,32544,1,0,1:2:0:0:
|
||||
155,311,32653,2,0,L|-7:310,1,138,2|2,0:0|1:2,0:0:0:0:
|
||||
93,310,32982,1,2,0:0:0:0:
|
||||
292,310,33091,1,0,3:2:0:0:
|
||||
112,310,33310,2,0,L|110:239,1,69,2|0,0:0|0:0,0:0:0:0:
|
||||
327,242,33529,5,2,1:2:0:0:
|
||||
396,242,33639,1,0,0:0:0:0:
|
||||
327,242,33748,1,0,0:0:0:0:
|
||||
133,242,33967,2,0,L|131:104,1,138,2|2,3:2|0:0,0:0:0:0:
|
||||
207,104,34296,1,0,1:2:0:0:
|
||||
316,104,34405,2,0,L|170:104,1,138,2|2,0:0|1:2,0:0:0:0:
|
||||
254,104,34734,1,0,0:0:0:0:
|
||||
453,104,34843,2,0,P|466:169|455:240,1,138,2|2,3:2|0:0,0:0:0:0:
|
||||
378,239,35172,1,2,0:0:0:0:
|
||||
145,239,35281,5,2,1:2:0:0:
|
||||
76,239,35390,1,0,0:0:0:0:
|
||||
145,239,35500,1,0,0:0:0:0:
|
||||
338,239,35719,2,0,L|340:102,1,138,0|0,3:2|0:0,0:0:0:0:
|
||||
263,101,36047,1,0,1:2:0:0:
|
||||
165,101,36157,1,2,0:0:0:0:
|
||||
263,101,36266,1,2,0:0:0:0:
|
||||
339,101,36376,1,2,1:2:0:0:
|
||||
263,101,36485,1,2,0:0:0:0:
|
||||
61,101,36595,2,0,P|45:160|61:238,1,138,0|2,3:2|0:0,0:0:0:0:
|
||||
135,234,36923,1,0,0:0:0:0:
|
||||
371,233,37033,5,2,1:2:0:0:
|
||||
439,233,37142,1,0,0:0:0:0:
|
||||
371,233,37252,1,0,0:0:0:0:
|
||||
177,233,37471,2,0,L|318:233,1,138,2|0,3:2|0:0,0:0:0:0:
|
||||
238,233,37799,1,0,1:2:0:0:
|
||||
127,233,37909,2,0,L|125:94,1,138,2|2,0:0|1:2,0:0:0:0:
|
||||
201,95,38237,1,0,0:0:0:0:
|
||||
402,95,38347,2,0,P|410:157|404:236,1,138,2|2,3:2|0:0,0:0:0:0:
|
||||
328,232,38675,1,0,0:0:0:0:
|
||||
92,233,38785,5,2,1:2:0:0:
|
||||
23,233,38894,1,0,0:0:0:0:
|
||||
92,233,39004,1,0,0:0:0:0:
|
||||
285,233,39223,2,0,L|430:233,1,138,0|0,3:2|0:0,0:0:0:0:
|
||||
346,233,39551,1,0,1:2:0:0:
|
||||
235,233,39661,2,0,L|234:160,1,69,2|2,0:0|0:0,0:0:0:0:
|
||||
344,164,39880,2,0,L|346:93,1,69,2|2,1:2|0:0,0:0:0:0:
|
||||
144,95,40099,2,0,L|5:95,1,138,0|2,3:2|0:0,0:0:0:0:
|
||||
82,95,40427,1,0,0:0:0:0:
|
||||
315,95,40536,5,2,1:2:0:0:
|
||||
384,95,40646,1,0,0:0:0:0:
|
||||
315,95,40755,1,2,0:0:0:0:
|
||||
121,95,40974,2,0,L|119:234,1,138,2|2,3:2|0:0,0:0:0:0:
|
||||
195,232,41303,1,0,1:2:0:0:
|
||||
394,232,41412,1,2,0:0:0:0:
|
||||
214,232,41631,1,0,1:2:0:0:
|
||||
144,232,41741,1,0,0:0:0:0:
|
||||
214,232,41850,1,0,3:2:0:0:
|
||||
407,232,42069,2,0,L|492:232,1,69,2|2,0:0|0:0,0:0:0:0:
|
||||
240,232,42288,5,2,1:2:0:0:
|
||||
170,232,42398,1,0,0:0:0:0:
|
||||
240,232,42507,1,0,0:0:0:0:
|
||||
419,232,42726,1,2,3:2:0:0:
|
||||
129,232,42945,2,0,L|128:161,1,69,2|0,0:0|1:2,0:0:0:0:
|
||||
238,163,43164,2,0,L|380:164,1,138,2|2,0:0|1:2,0:0:0:0:
|
||||
299,163,43493,1,0,0:0:0:0:
|
||||
195,163,43602,1,2,3:2:0:0:
|
||||
374,163,43821,1,2,0:0:0:0:
|
||||
376,93,43931,1,0,0:0:0:0:
|
||||
108,163,44040,5,6,1:2:0:0:
|
||||
106,93,44150,1,2,0:0:0:0:
|
||||
209,93,44259,1,0,3:2:0:0:
|
||||
388,93,44478,1,0,3:2:0:0:
|
||||
195,93,44697,1,2,1:2:0:0:
|
||||
484,93,44916,1,8,0:3:0:0:
|
||||
407,93,45026,1,8,0:3:0:0:
|
||||
213,93,45244,1,8,0:3:0:0:
|
||||
316,93,45354,2,0,L|460:94,1,138,2|4,0:0|0:3,0:0:0:0:
|
||||
103,93,45792,6,0,P|17:149|121:239,1,276,6|0,1:2|0:0,0:0:0:0:
|
||||
294,241,46449,2,0,L|37:136,1,276,2|2,0:0|0:0,0:0:0:0:
|
||||
204,136,47106,1,2,0:0:0:0:
|
||||
38,136,47325,1,2,0:0:0:0:
|
||||
355,136,47544,6,0,P|438:178|341:272,1,276,6|0,1:2|0:0,0:0:0:0:
|
||||
173,271,48201,1,0,0:0:0:0:
|
||||
338,271,48420,2,0,P|355:199|200:122,1,276,2|2,0:0|0:0,0:0:0:0:
|
||||
369,120,49077,1,2,0:0:0:0:
|
||||
51,120,49296,6,0,L|49:261,1,138,6|2,1:2|0:0,0:0:0:0:
|
||||
229,257,49734,2,0,L|371:256,1,138,2|2,0:0|0:0,0:0:0:0:
|
||||
186,256,50172,2,0,L|47:255,1,138,2|2,0:0|0:0,0:0:0:0:
|
||||
227,255,50609,1,2,0:0:0:0:
|
||||
47,255,50828,1,2,0:0:0:0:
|
||||
347,254,51047,6,0,P|438:243|478:85,1,276,6|0,1:2|0:0,0:0:0:0:
|
||||
118,84,51923,2,0,P|103:147|121:221,1,138,2|2,3:2|3:2,0:0:0:0:
|
||||
313,217,52361,1,8,0:3:0:0:
|
||||
119,217,52580,1,8,0:3:0:0:
|
||||
436,217,52799,6,0,L|127:184,1,276,2|2,1:2|3:2,0:0:0:0:
|
||||
452,187,53456,1,2,0:0:0:0:
|
||||
489,128,53566,1,0,1:2:0:0:
|
||||
454,68,53675,1,0,0:0:0:0:
|
||||
274,68,53894,1,2,1:2:0:0:
|
||||
454,68,54113,2,0,L|301:69,1,138,2|2,3:2|0:0,0:0:0:0:
|
||||
24,68,54551,6,0,L|306:94,1,276,0|0,1:2|3:2,0:0:0:0:
|
||||
104,93,55208,1,0,0:0:0:0:
|
||||
62,93,55317,1,0,1:2:0:0:
|
||||
104,93,55427,1,2,0:0:0:0:
|
||||
393,93,55646,2,0,L|266:151,1,138,2|0,1:2|3:2,0:0:0:0:
|
||||
87,150,56084,1,2,0:0:0:0:
|
||||
432,116,56303,6,0,P|308:196|181:218,1,276,6|2,1:2|3:2,0:0:0:0:
|
||||
365,218,56960,1,2,1:2:0:0:
|
||||
75,218,57179,2,0,L|232:214,1,138,2|2,3:2|1:2,0:0:0:0:
|
||||
407,214,57617,2,0,L|410:69,1,138,2|2,3:2|0:0,0:0:0:0:
|
||||
118,76,58055,6,0,L|335:76,2,207,2|2|2,1:2|0:0|0:0,0:0:0:0:
|
||||
312,76,58931,2,0,P|275:213|34:256,1,414,2|0,0:0|0:0,0:0:0:0:
|
||||
380,255,59807,6,0,P|404:186|380:128,1,138,6|0,1:2|0:0,0:0:0:0:
|
||||
290,128,60135,1,2,0:0:0:0:
|
||||
380,128,60244,2,0,L|382:52,1,69,0|0,3:2|0:0,0:0:0:0:
|
||||
180,59,60463,2,0,L|96:59,1,69,2|0,0:0|1:2,0:0:0:0:
|
||||
346,59,60682,6,0,L|346:144,1,69,2|2,0:0|0:0,0:0:0:0:
|
||||
144,128,60901,1,2,1:2:0:0:
|
||||
345,128,61011,1,2,0:0:0:0:
|
||||
441,128,61120,2,0,P|475:194|424:240,1,138,0|2,3:2|0:0,0:0:0:0:
|
||||
355,236,61449,1,0,0:0:0:0:
|
||||
121,236,61558,6,0,L|120:164,1,69,2|2,1:2|0:0,0:0:0:0:
|
||||
321,167,61777,1,2,0:0:0:0:
|
||||
120,167,61887,1,2,0:0:0:0:
|
||||
23,167,61996,2,0,L|177:166,1,138,0|2,3:2|0:0,0:0:0:0:
|
||||
63,166,62325,1,0,1:2:0:0:
|
||||
296,166,62434,6,0,L|297:95,1,69,2|2,0:0|0:0,0:0:0:0:
|
||||
199,97,62653,1,0,1:2:0:0:
|
||||
400,97,62763,1,2,0:0:0:0:
|
||||
303,97,62872,2,0,P|293:153|354:193,1,138,0|2,3:2|0:0,0:0:0:0:
|
||||
438,192,63201,1,0,0:0:0:0:
|
||||
204,192,63310,6,0,P|133:187|94:138,1,138,2|0,1:2|0:0,0:0:0:0:
|
||||
184,137,63639,1,2,0:0:0:0:
|
||||
93,137,63748,2,0,L|92:53,1,69,0|0,3:2|0:0,0:0:0:0:
|
||||
293,68,63967,2,0,L|294:143,1,69,2|0,0:0|1:2,0:0:0:0:
|
||||
93,137,64186,5,2,0:0:0:0:
|
||||
293,136,64296,2,0,L|361:136,1,69,2|0,0:0|1:2,0:0:0:0:
|
||||
160,136,64515,1,2,0:0:0:0:
|
||||
63,136,64624,2,0,P|29:83|79:30,1,138,0|2,3:2|0:0,0:0:0:0:
|
||||
154,31,64953,1,0,0:0:0:0:
|
||||
387,31,65062,6,0,L|319:30,1,69,2|2,1:2|0:0,0:0:0:0:
|
||||
116,29,65281,1,2,0:0:0:0:
|
||||
318,29,65390,1,2,0:0:0:0:
|
||||
415,29,65500,2,0,P|452:91|413:129,1,138,0|2,3:2|0:0,0:0:0:0:
|
||||
315,129,65828,1,0,1:2:0:0:
|
||||
79,129,65938,6,0,L|78:59,1,69,2|2,0:0|0:0,0:0:0:0:
|
||||
175,60,66157,1,0,1:2:0:0:
|
||||
374,60,66266,1,2,0:0:0:0:
|
||||
276,60,66376,2,0,L|424:61,1,138,0|2,3:2|0:0,0:0:0:0:
|
||||
331,60,66704,1,0,0:0:0:0:
|
||||
60,60,66814,6,0,P|28:123|66:176,1,138,6|0,1:2|0:0,0:0:0:0:
|
||||
151,173,67142,1,2,0:0:0:0:
|
||||
61,173,67252,1,0,3:2:0:0:
|
||||
378,173,67471,5,2,1:2:0:0:
|
||||
422,111,67580,1,0,0:0:0:0:
|
||||
381,46,67690,1,0,0:0:0:0:
|
||||
305,44,67799,1,0,0:0:0:0:
|
||||
194,44,67909,2,0,L|193:121,1,69,0|0,1:2|0:0,0:0:0:0:
|
||||
428,112,68128,2,0,L|288:112,1,138,2|2,3:2|0:0,0:0:0:0:
|
||||
373,112,68456,1,0,0:0:0:0:
|
||||
137,112,68566,6,0,L|135:183,1,69,2|0,1:2|0:0,0:0:0:0:
|
||||
245,181,68785,2,0,L|246:258,1,69,2|0,0:0|0:0,0:0:0:0:
|
||||
44,249,69004,2,0,L|191:248,1,138,2|2,3:2|1:2,0:0:0:0:
|
||||
98,248,69332,1,0,0:0:0:0:
|
||||
333,248,69442,6,0,L|335:170,1,69,2|0,1:2|0:0,0:0:0:0:
|
||||
133,179,69661,1,2,1:2:0:0:
|
||||
326,179,69880,1,2,3:2:0:0:
|
||||
133,179,70099,2,0,L|131:251,1,69,2|0,0:0|0:0,0:0:0:0:
|
||||
398,247,70317,6,0,L|106:250,1,276,6|2,1:2|3:2,0:0:0:0:
|
||||
468,249,70974,2,0,L|177:250,1,276,6|0,1:2|1:2,0:0:0:0:
|
||||
483,249,71631,2,0,L|334:249,1,138,2|2,3:2|0:0,0:0:0:0:
|
||||
26,249,72069,6,0,L|243:249,2,207,6|8|8,1:2|0:3|0:3,0:0:0:0:
|
||||
344,249,72945,2,0,P|434:201|334:113,1,276,6|0,1:2|3:2,0:0:0:0:
|
||||
247,111,73493,1,0,3:2:0:0:
|
||||
338,111,73602,1,0,3:2:0:0:
|
||||
102,111,73712,1,0,3:2:0:0:
|
||||
338,111,73821,6,0,P|372:156|334:220,1,138,6|0,1:2|0:0,0:0:0:0:
|
||||
244,219,74150,1,2,0:0:0:0:
|
||||
334,219,74259,2,0,L|335:147,1,69,0|0,3:2|0:0,0:0:0:0:
|
||||
133,150,74478,2,0,L|131:71,1,69,2|0,0:0|1:2,0:0:0:0:
|
||||
366,81,74697,6,0,L|367:158,1,69,2|2,0:0|0:0,0:0:0:0:
|
||||
165,149,74916,1,2,1:2:0:0:
|
||||
366,149,75026,1,2,0:0:0:0:
|
||||
462,149,75135,2,0,L|296:149,1,138,0|2,3:2|0:0,0:0:0:0:
|
||||
407,149,75463,1,0,0:0:0:0:
|
||||
171,149,75573,6,0,L|169:233,1,69,2|2,1:2|0:0,0:0:0:0:
|
||||
370,217,75792,1,2,0:0:0:0:
|
||||
170,217,75901,1,2,0:0:0:0:
|
||||
72,217,76011,2,0,P|46:151|98:97,1,138,0|2,3:2|0:0,0:0:0:0:
|
||||
179,102,76339,1,0,1:2:0:0:
|
||||
414,102,76449,6,0,L|491:102,1,69,2|2,0:0|0:0,0:0:0:0:
|
||||
385,102,76668,1,0,1:2:0:0:
|
||||
185,102,76777,1,2,0:0:0:0:
|
||||
282,102,76887,2,0,L|442:101,1,138,0|2,3:2|0:0,0:0:0:0:
|
||||
336,101,77215,1,0,0:0:0:0:
|
||||
100,101,77325,6,0,P|75:169|105:227,1,138,2|0,1:2|0:0,0:0:0:0:
|
||||
192,224,77653,1,2,0:0:0:0:
|
||||
102,224,77763,2,0,L|100:301,1,69,0|0,3:2|0:0,0:0:0:0:
|
||||
301,292,77982,2,0,L|394:292,1,69,2|0,0:0|1:2,0:0:0:0:
|
||||
134,292,78201,6,0,L|133:221,1,69,2|2,0:0|0:0,0:0:0:0:
|
||||
334,223,78420,1,2,1:2:0:0:
|
||||
135,223,78529,1,2,0:0:0:0:
|
||||
37,223,78639,2,0,P|21:160|69:106,1,138,0|2,3:2|0:0,0:0:0:0:
|
||||
147,107,78967,1,0,0:0:0:0:
|
||||
382,107,79077,6,0,L|384:175,1,69,2|0,1:2|0:0,0:0:0:0:
|
||||
273,175,79296,2,0,L|271:243,1,69,2|0,1:2|0:0,0:0:0:0:
|
||||
472,243,79515,2,0,L|474:315,1,69,2|0,3:2|0:0,0:0:0:0:
|
||||
203,311,79734,6,0,L|132:312,1,69,6|0,1:2|0:0,0:0:0:0:
|
||||
244,311,79953,2,0,L|317:311,1,69,2|0,0:0|0:0,0:0:0:0:
|
||||
111,311,80172,2,0,L|108:242,1,69,8|0,2:3|0:0,0:0:0:0:
|
||||
307,242,80390,2,0,L|385:242,1,69,8|0,2:3|0:0,0:0:0:0:
|
||||
140,242,80609,2,0,L|69:242,1,69,4|0,2:3|0:0,0:0:0:0:
|
||||
341,242,80828,6,0,L|495:242,1,138,6|0,1:2|0:0,0:0:0:0:
|
||||
388,242,81157,1,2,0:0:0:0:
|
||||
476,242,81266,1,0,3:2:0:0:
|
||||
161,242,81485,5,2,1:2:0:0:
|
||||
124,175,81595,1,0,0:0:0:0:
|
||||
166,112,81704,1,0,0:0:0:0:
|
||||
242,106,81814,1,0,0:0:0:0:
|
||||
351,106,81923,2,0,L|352:37,1,69,0|0,1:2|0:0,0:0:0:0:
|
||||
150,37,82142,1,2,3:2:0:0:
|
||||
74,50,82252,1,0,0:0:0:0:
|
||||
84,124,82361,1,0,0:0:0:0:
|
||||
166,131,82471,1,0,0:0:0:0:
|
||||
399,131,82580,5,2,1:2:0:0:
|
||||
442,193,82690,1,0,0:0:0:0:
|
||||
399,255,82799,1,0,0:0:0:0:
|
||||
316,261,82909,1,2,0:0:0:0:
|
||||
206,261,83018,2,0,L|204:185,1,69,0|0,3:2|0:0,0:0:0:0:
|
||||
315,192,83237,2,0,L|316:121,1,69,2|0,1:2|0:0,0:0:0:0:
|
||||
80,123,83456,6,0,L|78:47,1,69,2|0,1:2|0:0,0:0:0:0:
|
||||
182,54,83675,1,2,1:2:0:0:
|
||||
375,54,83894,1,2,3:2:0:0:
|
||||
57,54,84113,1,2,0:0:0:0:
|
||||
133,54,84223,1,0,0:0:0:0:
|
||||
366,54,84332,5,2,1:2:0:0:
|
||||
405,119,84442,1,0,0:0:0:0:
|
||||
361,180,84551,1,0,0:0:0:0:
|
||||
284,180,84661,1,0,0:0:0:0:
|
||||
174,180,84770,2,0,L|172:256,1,69,0|0,3:2|0:0,0:0:0:0:
|
||||
442,248,84989,5,6,1:2:0:0:
|
||||
358,248,85099,1,0,0:0:0:0:
|
||||
321,183,85208,1,0,0:0:0:0:
|
||||
365,123,85317,1,0,0:0:0:0:
|
||||
475,123,85427,2,0,L|476:48,1,69,0|0,1:2|0:0,0:0:0:0:
|
||||
274,54,85646,2,0,L|273:131,1,69,0|0,3:2|0:0,0:0:0:0:
|
||||
363,122,85865,1,0,0:0:0:0:
|
||||
273,122,85974,1,0,0:0:0:0:
|
||||
71,122,86084,6,0,L|70:210,1,69,0|0,1:2|0:0,0:0:0:0:
|
||||
305,190,86303,2,0,L|305:270,1,69,8|0,0:3|0:0,0:0:0:0:
|
||||
103,259,86522,1,0,3:2:0:0:
|
||||
305,259,86631,2,0,L|388:258,1,69,8|2,0:3|0:0,0:0:0:0:
|
||||
55,258,86960,2,0,P|215:211|49:153,1,455.400013897705,2|0,1:2|0:0,0:0:0:0:
|
||||
398,117,87836,5,6,1:2:0:0:
|
||||
77,106,101412,5,0,3:2:0:0:
|
||||
435,106,101850,6,0,P|450:162|434:240,1,138,2|0,1:2|0:0,0:0:0:0:
|
||||
240,239,102288,2,0,L|99:240,1,138,0|0,1:2|0:0,0:0:0:0:
|
||||
296,239,102726,2,0,L|437:238,1,138,2|0,1:2|0:0,0:0:0:0:
|
||||
322,238,103055,2,0,L|243:238,1,69,2|0,0:0|1:2,0:0:0:0:
|
||||
433,238,103383,1,2,0:0:0:0:
|
||||
145,242,103602,5,2,1:2:0:0:
|
||||
228,242,103712,1,0,0:0:0:0:
|
||||
283,242,103821,1,2,0:0:0:0:
|
||||
89,242,104040,2,0,L|88:104,1,138,2|2,1:2|0:0,0:0:0:0:
|
||||
268,104,104478,1,2,1:2:0:0:
|
||||
88,104,104697,1,2,0:0:0:0:
|
||||
281,104,104916,2,0,L|426:105,1,138,2|0,1:2|0:0,0:0:0:0:
|
||||
129,104,105354,5,2,1:2:0:0:
|
||||
211,104,105463,1,0,0:0:0:0:
|
||||
266,104,105573,1,0,0:0:0:0:
|
||||
72,104,105792,2,0,L|71:255,1,138,0|0,1:2|0:0,0:0:0:0:
|
||||
265,241,106230,2,0,L|117:242,1,138,2|2,1:2|0:0,0:0:0:0:
|
||||
237,241,106558,2,0,L|307:241,1,69,2|0,0:0|1:2,0:0:0:0:
|
||||
126,240,106887,1,2,0:0:0:0:
|
||||
415,240,107106,5,2,1:2:0:0:
|
||||
332,240,107215,1,0,0:0:0:0:
|
||||
276,240,107325,1,2,0:0:0:0:
|
||||
469,240,107544,2,0,L|470:100,1,138,2|2,1:2|0:0,0:0:0:0:
|
||||
289,102,107982,1,2,1:2:0:0:
|
||||
469,102,108201,1,2,0:0:0:0:
|
||||
275,102,108420,2,0,L|138:102,1,138,2|0,1:2|0:0,0:0:0:0:
|
||||
428,102,108858,5,2,1:2:0:0:
|
||||
345,102,108967,1,0,0:0:0:0:
|
||||
289,102,109077,1,0,0:0:0:0:
|
||||
482,102,109296,2,0,L|484:242,1,138,0|0,1:2|0:0,0:0:0:0:
|
||||
291,239,109734,2,0,L|429:240,1,138,2|0,1:2|0:0,0:0:0:0:
|
||||
318,239,110062,2,0,L|241:238,1,69,2|0,0:0|1:2,0:0:0:0:
|
||||
428,239,110390,1,2,0:0:0:0:
|
||||
138,239,110609,5,2,1:2:0:0:
|
||||
215,239,110719,1,0,0:0:0:0:
|
||||
277,239,110828,1,2,0:0:0:0:
|
||||
83,239,111047,2,0,L|229:239,1,138,2|2,1:2|0:0,0:0:0:0:
|
||||
26,239,111485,2,0,L|25:102,1,138,2|0,1:2|0:0,0:0:0:0:
|
||||
205,101,111923,1,0,1:2:0:0:
|
||||
25,101,112142,1,2,0:0:0:0:
|
||||
314,101,112361,5,2,1:2:0:0:
|
||||
230,101,112471,1,2,0:0:0:0:
|
||||
314,101,112580,2,0,P|399:137|304:230,1,276,2|2,0:0|0:0,0:0:0:0:
|
||||
109,229,113237,2,0,P|23:186|123:101,1,276,2|0,0:0|0:0,0:0:0:0:
|
||||
482,100,114113,5,0,1:2:0:0:
|
||||
288,100,114332,1,8,0:3:0:0:
|
||||
482,100,114551,2,0,L|324:100,1,138,8|0,0:3|0:0,0:0:0:0:
|
||||
149,100,114989,2,0,L|292:100,1,138,4|0,0:3|0:0,0:0:0:0:
|
||||
397,100,115317,2,0,L|310:101,1,69,4|0,0:3|1:2,0:0:0:0:
|
||||
133,100,115646,2,0,L|132:176,1,69,0|0,3:2|0:0,0:0:0:0:
|
||||
367,168,115865,5,2,1:2:0:0:
|
||||
284,168,115974,1,0,0:0:0:0:
|
||||
228,168,116084,1,0,0:0:0:0:
|
||||
421,168,116303,2,0,L|423:308,1,138,0|0,3:2|0:0,0:0:0:0:
|
||||
346,305,116631,1,0,1:2:0:0:
|
||||
235,305,116741,2,0,L|383:306,1,138,2|2,0:0|1:2,0:0:0:0:
|
||||
296,305,117069,1,2,0:0:0:0:
|
||||
94,305,117179,1,0,3:2:0:0:
|
||||
273,305,117398,2,0,L|346:306,1,69,2|0,0:0|0:0,0:0:0:0:
|
||||
129,304,117617,5,2,1:2:0:0:
|
||||
60,304,117726,1,0,0:0:0:0:
|
||||
131,304,117836,1,0,0:0:0:0:
|
||||
324,304,118055,2,0,L|177:304,1,138,2|2,3:2|0:0,0:0:0:0:
|
||||
262,304,118383,1,0,1:2:0:0:
|
||||
372,304,118493,2,0,P|443:286|477:233,1,138,2|2,0:0|1:2,0:0:0:0:
|
||||
400,234,118821,1,0,0:0:0:0:
|
||||
198,234,118931,1,2,3:2:0:0:
|
||||
391,234,119150,2,0,L|392:152,1,69,0|0,0:0|0:0,0:0:0:0:
|
||||
156,165,119369,5,2,1:2:0:0:
|
||||
238,165,119478,1,0,0:0:0:0:
|
||||
293,165,119588,1,0,0:0:0:0:
|
||||
99,165,119807,2,0,L|97:26,1,138,0|0,3:2|0:0,0:0:0:0:
|
||||
174,27,120135,1,0,1:2:0:0:
|
||||
283,27,120244,1,2,0:0:0:0:
|
||||
333,79,120354,1,2,0:0:0:0:
|
||||
283,27,120463,1,2,1:2:0:0:
|
||||
185,27,120573,1,2,0:0:0:0:
|
||||
384,27,120682,2,0,P|442:41|483:113,1,138,0|2,3:2|0:0,0:0:0:0:
|
||||
412,104,121011,1,0,0:0:0:0:
|
||||
178,104,121120,5,2,1:2:0:0:
|
||||
108,104,121230,1,0,0:0:0:0:
|
||||
178,104,121339,1,0,0:0:0:0:
|
||||
371,104,121558,2,0,L|224:104,1,138,2|0,3:2|0:0,0:0:0:0:
|
||||
309,104,121887,1,0,1:2:0:0:
|
||||
418,104,121996,2,0,P|446:171|408:227,1,138,2|2,0:0|1:2,0:0:0:0:
|
||||
337,222,122325,1,0,0:0:0:0:
|
||||
137,222,122434,2,0,P|64:206|23:153,1,138,2|0,3:2|0:0,0:0:0:0:
|
||||
102,159,122763,1,0,0:0:0:0:
|
||||
335,159,122872,5,2,1:2:0:0:
|
||||
251,159,122982,1,0,0:0:0:0:
|
||||
196,159,123091,1,0,0:0:0:0:
|
||||
389,159,123310,2,0,P|406:239|386:293,1,138,0|0,3:2|0:0,0:0:0:0:
|
||||
312,290,123639,1,0,1:2:0:0:
|
||||
202,290,123748,2,0,P|128:246|123:199,1,138,2|2,0:0|1:2,0:0:0:0:
|
||||
200,162,124077,1,2,0:0:0:0:
|
||||
399,161,124186,1,0,3:2:0:0:
|
||||
219,92,124405,2,0,L|148:92,1,69,2|0,0:0|0:0,0:0:0:0:
|
||||
386,227,124624,5,2,1:2:0:0:
|
||||
455,227,124734,1,0,0:0:0:0:
|
||||
386,227,124843,1,2,0:0:0:0:
|
||||
192,227,125062,2,0,P|106:213|67:181,1,138,2|2,3:2|0:0,0:0:0:0:
|
||||
144,182,125390,1,0,1:2:0:0:
|
||||
345,182,125500,2,0,P|431:168|470:136,1,138,2|0,0:0|1:2,0:0:0:0:
|
||||
393,137,125828,1,0,0:0:0:0:
|
||||
282,137,125938,1,0,3:2:0:0:
|
||||
475,137,126157,2,0,L|476:213,1,69,2|0,0:0|0:0,0:0:0:0:
|
||||
240,205,126376,5,2,1:2:0:0:
|
||||
322,205,126485,1,0,0:0:0:0:
|
||||
377,205,126595,1,0,0:0:0:0:
|
||||
183,205,126814,1,2,3:2:0:0:
|
||||
472,205,127033,1,2,0:0:0:0:
|
||||
389,205,127142,1,0,1:2:0:0:
|
||||
333,205,127252,1,0,0:0:0:0:
|
||||
153,205,127471,2,0,L|152:131,1,69,2|0,1:2|0:0,0:0:0:0:
|
||||
256,136,127690,1,2,3:2:0:0:
|
||||
76,136,127909,1,2,0:0:0:0:
|
||||
421,136,128128,5,6,1:2:0:0:
|
||||
423,67,128237,1,2,0:0:0:0:
|
||||
319,67,128347,1,2,3:2:0:0:
|
||||
139,67,128566,1,2,3:2:0:0:
|
||||
332,67,128785,1,2,1:2:0:0:
|
||||
42,67,129004,1,8,0:3:0:0:
|
||||
111,67,129113,1,8,0:3:0:0:
|
||||
304,67,129332,2,0,L|72:67,1,207,8|4,0:3|0:3,0:0:0:0:
|
||||
408,67,129880,6,0,P|490:129|379:199,1,276,6|0,1:2|0:0,0:0:0:0:
|
||||
188,200,130536,2,0,L|483:200,1,276,2|2,0:0|0:0,0:0:0:0:
|
||||
283,200,131193,1,2,0:0:0:0:
|
||||
463,200,131412,1,2,0:0:0:0:
|
||||
145,200,131631,6,0,P|59:138|164:60,1,276,6|0,1:2|0:0,0:0:0:0:
|
||||
342,59,132288,1,0,0:0:0:0:
|
||||
148,59,132507,2,0,L|147:214,1,138,2|2,0:0|0:0,0:0:0:0:
|
||||
327,196,132945,1,2,0:0:0:0:
|
||||
147,196,133164,1,2,0:0:0:0:
|
||||
464,196,133383,6,0,P|469:249|351:316,1,207,6|0,1:2|0:0,0:0:0:0:
|
||||
240,316,133821,2,0,P|354:311|391:173,1,276,2|2,0:0|0:0,0:0:0:0:
|
||||
196,172,134478,2,0,L|197:33,1,138,2|2,0:0|0:0,0:0:0:0:
|
||||
391,34,134916,1,2,0:0:0:0:
|
||||
73,34,135135,6,0,B|188:112|188:112|68:30,1,276,6|0,1:2|0:0,0:0:0:0:
|
||||
434,34,136011,2,0,L|435:174,1,138,2|2,3:2|3:2,0:0:0:0:
|
||||
227,171,136449,1,8,0:3:0:0:
|
||||
434,171,136668,1,8,0:3:0:0:
|
||||
116,171,136887,6,0,L|412:171,1,276,2|2,1:2|3:2,0:0:0:0:
|
||||
100,171,137544,1,2,0:0:0:0:
|
||||
182,171,137653,1,0,1:2:0:0:
|
||||
242,171,137763,1,0,0:0:0:0:
|
||||
62,171,137982,1,2,1:2:0:0:
|
||||
241,171,138201,2,0,L|88:169,1,138,2|2,3:2|0:0,0:0:0:0:
|
||||
421,169,138639,6,0,L|128:168,1,276,0|0,1:2|3:2,0:0:0:0:
|
||||
339,168,139296,2,0,L|340:90,1,69,0|0,0:0|1:2,0:0:0:0:
|
||||
235,99,139515,1,2,0:0:0:0:
|
||||
55,99,139734,1,2,1:2:0:0:
|
||||
344,99,139953,2,0,L|489:98,1,138,0|2,3:2|0:0,0:0:0:0:
|
||||
136,98,140390,6,0,L|135:242,1,138,6|2,1:2|0:0,0:0:0:0:
|
||||
328,235,140828,1,2,3:2:0:0:
|
||||
135,235,141047,1,2,3:2:0:0:
|
||||
342,235,141266,1,2,3:2:0:0:
|
||||
493,235,141485,1,2,3:2:0:0:
|
||||
299,235,141704,1,2,3:2:0:0:
|
||||
91,235,141923,1,2,3:2:0:0:
|
||||
380,235,142142,6,0,L|155:232,2,207,2|2|2,1:2|0:0|0:0,0:0:0:0:
|
||||
185,235,143018,2,0,P|347:232|428:19,1,414,2|0,0:0|0:0,0:0:0:0:
|
||||
82,21,143894,6,0,P|50:85|84:135,1,138,6|0,1:2|0:0,0:0:0:0:
|
||||
174,134,144223,1,2,0:0:0:0:
|
||||
84,134,144332,2,0,L|83:208,1,69,0|0,3:2|0:0,0:0:0:0:
|
||||
284,202,144551,2,0,L|368:202,1,69,2|0,0:0|1:2,0:0:0:0:
|
||||
117,202,144770,6,0,L|46:202,1,69,2|2,0:0|0:0,0:0:0:0:
|
||||
249,202,144989,1,2,1:2:0:0:
|
||||
48,202,145099,1,2,0:0:0:0:
|
||||
144,202,145208,2,0,P|180:157|139:100,1,138,0|2,3:2|0:0,0:0:0:0:
|
||||
55,99,145536,1,0,0:0:0:0:
|
||||
290,99,145646,6,0,L|370:98,1,69,2|2,1:2|0:0,0:0:0:0:
|
||||
157,98,145865,1,2,0:0:0:0:
|
||||
356,98,145974,1,2,0:0:0:0:
|
||||
453,98,146084,2,0,L|277:98,1,138,0|2,3:2|0:0,0:0:0:0:
|
||||
412,98,146412,1,0,1:2:0:0:
|
||||
176,98,146522,5,2,0:0:0:0:
|
||||
272,98,146631,2,0,L|273:174,1,69,2|0,0:0|1:2,0:0:0:0:
|
||||
71,166,146850,1,2,0:0:0:0:
|
||||
168,166,146960,2,0,L|27:166,1,138,0|2,3:2|0:0,0:0:0:0:
|
||||
113,166,147288,1,0,0:0:0:0:
|
||||
348,166,147398,6,0,P|385:115|346:62,1,138,2|0,1:2|0:0,0:0:0:0:
|
||||
255,61,147726,1,2,0:0:0:0:
|
||||
345,61,147836,2,0,L|347:129,1,69,0|0,3:2|0:0,0:0:0:0:
|
||||
145,129,148055,1,2,0:0:0:0:
|
||||
76,129,148164,1,0,1:2:0:0:
|
||||
280,97,148274,6,0,L|360:97,1,69,2|2,0:0|0:0,0:0:0:0:
|
||||
147,97,148493,1,2,1:2:0:0:
|
||||
346,97,148602,1,2,0:0:0:0:
|
||||
248,97,148712,2,0,L|103:97,1,138,0|2,3:2|0:0,0:0:0:0:
|
||||
193,97,149040,1,0,0:0:0:0:
|
||||
428,97,149150,6,0,P|459:168|420:215,1,138,2|0,1:2|0:0,0:0:0:0:
|
||||
226,211,149478,1,2,0:0:0:0:
|
||||
323,211,149588,2,0,L|466:211,1,138,0|2,3:2|0:0,0:0:0:0:
|
||||
377,211,149916,1,0,1:2:0:0:
|
||||
141,211,150026,5,2,0:0:0:0:
|
||||
237,211,150135,2,0,L|239:139,1,69,2|0,0:0|1:2,0:0:0:0:
|
||||
37,142,150354,1,2,0:0:0:0:
|
||||
133,142,150463,2,0,P|166:75|119:40,1,138,0|2,3:2|0:0,0:0:0:0:
|
||||
42,40,150792,1,0,0:0:0:0:
|
||||
309,40,150901,6,0,L|465:40,1,138,6|0,1:2|0:0,0:0:0:0:
|
||||
356,40,151230,1,2,0:0:0:0:
|
||||
445,40,151339,1,0,3:2:0:0:
|
||||
127,40,151558,5,2,1:2:0:0:
|
||||
203,45,151668,1,0,0:0:0:0:
|
||||
239,111,151777,1,0,0:0:0:0:
|
||||
196,174,151887,1,0,0:0:0:0:
|
||||
86,174,151996,2,0,L|84:252,1,69,0|0,1:2|0:0,0:0:0:0:
|
||||
285,242,152215,2,0,L|144:241,1,138,2|2,3:2|0:0,0:0:0:0:
|
||||
230,241,152544,1,0,0:0:0:0:
|
||||
463,241,152653,6,0,L|392:240,1,69,0|0,1:2|0:0,0:0:0:0:
|
||||
284,242,152872,2,0,L|282:164,1,69,2|0,0:0|0:0,0:0:0:0:
|
||||
483,173,153091,2,0,L|336:172,1,138,2|2,3:2|1:2,0:0:0:0:
|
||||
428,172,153420,1,0,0:0:0:0:
|
||||
227,171,153529,6,0,L|226:93,1,69,2|0,1:2|0:0,0:0:0:0:
|
||||
323,102,153748,1,2,1:2:0:0:
|
||||
33,102,153967,2,0,L|30:248,1,138,2|2,3:2|0:0,0:0:0:0:
|
||||
114,239,154296,1,0,0:0:0:0:
|
||||
381,239,154405,6,0,L|99:237,1,276,6|2,1:2|3:2,0:0:0:0:
|
||||
451,237,155062,2,0,P|488:148|355:78,1,276,6|0,1:2|1:2,0:0:0:0:
|
||||
22,80,155719,2,0,L|177:81,1,138,2|2,3:2|0:0,0:0:0:0:
|
||||
478,80,156157,6,0,L|268:81,2,207,6|8|8,1:2|0:3|0:3,0:0:0:0:
|
||||
159,80,157033,2,0,P|66:140|166:218,1,276,6|0,1:2|3:2,0:0:0:0:
|
||||
254,218,157580,1,0,3:2:0:0:
|
||||
163,218,157690,1,0,3:2:0:0:
|
||||
396,218,157799,1,0,3:2:0:0:
|
||||
163,218,157909,6,0,P|132:155|167:100,1,138,6|0,1:2|0:0,0:0:0:0:
|
||||
255,100,158237,1,2,0:0:0:0:
|
||||
164,100,158347,2,0,L|162:174,1,69,0|0,3:2|0:0,0:0:0:0:
|
||||
363,168,158566,2,0,L|364:243,1,69,2|0,0:0|1:2,0:0:0:0:
|
||||
128,236,158785,6,0,L|208:237,1,69,2|2,0:0|0:0,0:0:0:0:
|
||||
398,236,159004,1,2,1:2:0:0:
|
||||
198,236,159113,1,2,0:0:0:0:
|
||||
100,236,159223,2,0,P|73:178|105:116,1,138,0|2,3:2|0:0,0:0:0:0:
|
||||
187,116,159551,1,0,0:0:0:0:
|
||||
422,116,159661,6,0,L|352:115,1,69,2|0,1:2|0:0,0:0:0:0:
|
||||
151,115,159880,1,2,0:0:0:0:
|
||||
350,115,159989,1,2,0:0:0:0:
|
||||
254,115,160099,2,0,L|426:115,1,138,0|2,3:2|0:0,0:0:0:0:
|
||||
296,115,160427,1,0,1:2:0:0:
|
||||
62,115,160536,6,0,L|61:188,1,69,2|0,0:0|0:0,0:0:0:0:
|
||||
171,183,160755,2,0,L|250:183,1,69,2|0,1:2|0:0,0:0:0:0:
|
||||
441,183,160974,2,0,P|470:243|434:305,1,138,2|2,3:2|0:0,0:0:0:0:
|
||||
354,301,161303,1,0,0:0:0:0:
|
||||
120,301,161412,6,0,L|271:301,1,138,2|0,1:2|0:0,0:0:0:0:
|
||||
167,301,161741,1,2,0:0:0:0:
|
||||
256,301,161850,2,0,L|257:222,1,69,0|0,3:2|0:0,0:0:0:0:
|
||||
55,232,162069,2,0,L|53:155,1,69,2|0,0:0|1:2,0:0:0:0:
|
||||
288,163,162288,6,0,L|363:163,1,69,2|0,0:0|0:0,0:0:0:0:
|
||||
155,163,162507,1,2,1:2:0:0:
|
||||
356,163,162617,1,2,0:0:0:0:
|
||||
452,163,162726,2,0,P|475:235|443:293,1,138,0|2,3:2|0:0,0:0:0:0:
|
||||
364,287,163055,1,0,0:0:0:0:
|
||||
130,287,163164,6,0,L|128:209,1,69,2|0,1:2|0:0,0:0:0:0:
|
||||
239,218,163383,2,0,L|241:146,1,69,2|0,1:2|0:0,0:0:0:0:
|
||||
39,149,163602,2,0,L|120:149,1,69,2|0,3:2|0:0,0:0:0:0:
|
||||
378,149,163821,6,0,L|379:81,1,69,6|0,1:2|0:0,0:0:0:0:
|
||||
268,80,164040,2,0,L|172:80,1,69,2|0,0:0|0:0,0:0:0:0:
|
||||
400,80,164259,2,0,L|402:153,1,69,8|0,2:3|0:0,0:0:0:0:
|
||||
200,148,164478,2,0,L|112:148,1,69,8|0,2:3|0:0,0:0:0:0:
|
||||
366,148,164697,2,0,L|453:149,1,69,4|0,2:3|0:0,0:0:0:0:
|
||||
164,148,164916,6,0,L|25:149,1,138,6|0,1:2|0:0,0:0:0:0:
|
||||
116,148,165244,1,2,0:0:0:0:
|
||||
27,148,165354,1,0,3:2:0:0:
|
||||
344,148,165573,5,2,1:2:0:0:
|
||||
381,213,165682,1,0,0:0:0:0:
|
||||
339,277,165792,1,0,0:0:0:0:
|
||||
263,277,165901,1,0,0:0:0:0:
|
||||
152,277,166011,2,0,L|151:353,1,69,0|0,1:2|0:0,0:0:0:0:
|
||||
352,345,166230,1,2,3:2:0:0:
|
||||
427,345,166339,1,0,0:0:0:0:
|
||||
464,278,166449,1,0,0:0:0:0:
|
||||
425,212,166558,1,0,0:0:0:0:
|
||||
189,212,166668,5,2,1:2:0:0:
|
||||
116,189,166777,1,0,0:0:0:0:
|
||||
125,113,166887,1,0,0:0:0:0:
|
||||
199,102,166996,1,2,0:0:0:0:
|
||||
309,102,167106,2,0,L|311:180,1,69,0|0,3:2|0:0,0:0:0:0:
|
||||
199,170,167325,2,0,L|197:242,1,69,2|0,1:2|0:0,0:0:0:0:
|
||||
398,238,167544,6,0,L|483:238,1,69,2|0,1:2|0:0,0:0:0:0:
|
||||
356,238,167763,2,0,L|283:237,1,69,2|0,1:2|0:0,0:0:0:0:
|
||||
85,237,167982,2,0,L|11:237,1,69,2|0,3:2|0:0,0:0:0:0:
|
||||
126,237,168201,2,0,L|206:237,1,69,2|0,0:0|0:0,0:0:0:0:
|
||||
430,237,168420,6,0,P|487:176|366:86,1,276,2|0,1:2|3:2,0:0:0:0:
|
||||
174,89,169077,1,2,1:2:0:0:
|
||||
99,98,169186,1,0,0:0:0:0:
|
||||
67,167,169296,1,0,0:0:0:0:
|
||||
101,234,169405,1,0,0:0:0:0:
|
||||
176,243,169515,1,0,1:2:0:0:
|
||||
465,243,169734,2,0,L|467:104,1,138,0|0,3:2|1:2,0:0:0:0:
|
||||
390,105,170062,1,0,0:0:0:0:
|
||||
154,105,170172,6,0,L|367:106,1,207,2|2,1:2|0:0,0:0:0:0:
|
||||
127,105,170609,2,0,P|104:181|130:237,1,138,0|2,3:2|0:0,0:0:0:0:
|
||||
202,232,170938,1,2,0:0:0:0:
|
||||
401,232,171047,2,0,P|176:204|125:49,1,414,2|0,1:2|0:0,0:0:0:0:
|
||||
416,48,171923,5,2,1:2:0:0:
|
||||
85,274,178712,5,0,3:2:0:0:
|
||||
402,274,178931,6,0,P|428:204|398:150,1,138,2|2,1:2|0:0,0:0:0:0:
|
||||
323,151,179259,1,2,0:0:0:0:
|
||||
212,151,179369,2,0,P|134:143|92:99,1,138,2|2,1:2|0:0,0:0:0:0:
|
||||
170,102,179697,1,2,0:0:0:0:
|
||||
280,102,179807,2,0,L|429:102,1,138,2|2,1:2|0:0,0:0:0:0:
|
||||
307,102,180135,1,2,0:0:0:0:
|
||||
238,102,180244,1,0,1:2:0:0:
|
||||
307,102,180354,1,2,0:0:0:0:
|
||||
417,102,180463,2,0,L|418:179,1,69,2|0,0:0|0:0,0:0:0:0:
|
||||
216,159,180682,5,2,1:2:0:0:
|
||||
313,159,180792,1,2,0:0:0:0:
|
||||
381,159,180901,1,2,0:0:0:0:
|
||||
313,159,181011,1,2,0:0:0:0:
|
||||
203,159,181120,1,2,1:2:0:0:
|
||||
133,159,181230,1,2,0:0:0:0:
|
||||
203,159,181339,1,2,0:0:0:0:
|
||||
396,159,181558,2,0,P|422:224|388:292,1,138,2|2,1:2|0:0,0:0:0:0:
|
||||
320,283,181887,1,2,0:0:0:0:
|
||||
210,283,181996,2,0,L|65:282,1,138,0|0,1:2|0:0,0:0:0:0:
|
||||
148,282,182325,1,0,0:0:0:0:
|
||||
347,282,182434,5,2,1:2:0:0:
|
||||
416,282,182544,1,2,0:0:0:0:
|
||||
347,282,182653,1,2,0:0:0:0:
|
||||
154,282,182872,1,2,1:2:0:0:
|
||||
85,282,182982,1,2,0:0:0:0:
|
||||
154,282,183091,1,2,0:0:0:0:
|
||||
347,282,183310,2,0,P|373:217|342:159,1,138,2|2,1:2|0:0,0:0:0:0:
|
||||
231,160,183639,1,2,0:0:0:0:
|
||||
162,160,183748,1,0,1:2:0:0:
|
||||
231,160,183858,1,2,0:0:0:0:
|
||||
343,160,183967,2,0,L|345:87,1,69,2|0,0:0|0:0,0:0:0:0:
|
||||
143,91,184186,5,2,1:2:0:0:
|
||||
323,91,184405,1,8,0:3:0:0:
|
||||
143,91,184624,2,0,P|118:168|149:218,1,138,8|2,0:3|0:0,0:0:0:0:
|
||||
221,213,184953,1,2,0:0:0:0:
|
||||
421,270,185062,2,0,L|206:271,2,207,4|4|0,0:3|0:3|3:2,0:0:0:0:
|
||||
102,270,185938,6,0,P|72:198|110:155,1,138,2|2,1:2|0:0,0:0:0:0:
|
||||
181,157,186266,1,2,0:0:0:0:
|
||||
291,157,186376,2,0,L|432:157,1,138,2|2,3:2|0:0,0:0:0:0:
|
||||
352,157,186704,1,2,1:2:0:0:
|
||||
150,157,186814,2,0,P|128:221|149:291,1,138,2|2,0:0|1:2,0:0:0:0:
|
||||
257,286,187142,1,2,0:0:0:0:
|
||||
325,227,187252,1,0,3:2:0:0:
|
||||
253,155,187361,1,2,0:0:0:0:
|
||||
141,155,187471,2,0,L|52:155,1,69,2|0,0:0|0:0,0:0:0:0:
|
||||
307,155,187690,6,0,P|325:214|306:292,1,138,0|0,1:2|0:0,0:0:0:0:
|
||||
113,292,188128,2,0,P|100:235|115:156,1,138,0|0,3:2|0:0,0:0:0:0:
|
||||
190,157,188456,1,0,1:2:0:0:
|
||||
391,157,188566,1,0,0:0:0:0:
|
||||
211,157,188785,1,0,1:2:0:0:
|
||||
390,157,189004,2,0,L|392:13,1,138,0|0,3:2|0:0,0:0:0:0:
|
||||
73,19,189442,5,2,1:2:0:0:
|
||||
39,86,189551,1,2,0:0:0:0:
|
||||
76,152,189661,1,2,0:0:0:0:
|
||||
158,152,189770,1,2,0:0:0:0:
|
||||
268,152,189880,2,0,L|114:153,1,138,2|2,3:2|0:0,0:0:0:0:
|
||||
213,152,190208,1,2,1:2:0:0:
|
||||
412,152,190317,2,0,P|430:226|409:286,1,138,2|2,0:0|1:2,0:0:0:0:
|
||||
320,282,190646,1,2,0:0:0:0:
|
||||
230,282,190755,1,0,3:2:0:0:
|
||||
409,282,190974,1,2,0:0:0:0:
|
||||
91,282,191193,6,0,P|23:224|137:141,1,276,0|0,1:2|3:2,0:0:0:0:
|
||||
344,141,191850,1,0,1:2:0:0:
|
||||
427,141,191960,1,0,1:2:0:0:
|
||||
344,141,192069,1,2,3:2:0:0:
|
||||
138,141,192288,1,0,1:2:0:0:
|
||||
427,141,192507,2,0,L|428:288,1,138,2|0,3:2|0:0,0:0:0:0:
|
||||
81,278,192945,6,0,L|266:278,1,179.39999178772,6|2,1:2|1:1,0:0:0:0:
|
||||
81,278,193383,2,0,L|388:279,1,289.799991156006,2|2,1:1|1:1,0:0:0:0:
|
||||
190,278,193821,2,0,L|381:278,1,179.39999178772,2|2,1:2|1:1,0:0:0:0:
|
||||
78,278,194259,2,0,L|401:277,1,289.799991156006,2|2,1:1|1:1,0:0:0:0:
|
||||
76,277,194697,6,0,L|74:140,1,138,2|2,1:2|1:1,0:0:0:0:
|
||||
365,139,195135,2,0,L|59:138,1,289.799991156006,2|2,1:1|1:1,0:0:0:0:
|
||||
394,138,195573,2,0,L|395:278,1,138,2|2,1:2|1:1,0:0:0:0:
|
||||
105,276,196011,2,0,L|411:277,1,289.799991156006,2|2,1:1|1:1,0:0:0:0:
|
||||
75,276,196449,5,2,3:2:0:0:
|
||||
422,276,196668,2,0,L|108:275,2,289.799991156006,6|6|6,1:1|1:1|1:1,0:0:0:0:
|
||||
75,276,197325,2,0,L|389:275,2,289.799991156006,6|6|6,1:1|1:1|1:1,0:0:0:0:
|
||||
395,276,197982,1,6,1:1:0:0:
|
||||
47,276,198201,6,0,L|349:277,1,289.799991156006,6|6,1:1|1:1,0:0:0:0:
|
||||
142,276,198639,2,0,L|342:277,1,193.199994104004,14|14,2:3|2:3,0:0:0:0:
|
||||
26,277,199077,1,14,2:3:0:0:
|
||||
371,277,199296,2,0,P|254:202|378:86,1,358.79998357544,6|0,1:2|0:0,0:0:0:0:
|
||||
56,81,199953,6,0,L|297:80,2,207,6|2|2,1:2|0:0|0:0,0:0:0:0:
|
||||
249,81,200828,2,0,L|251:169,1,69,2|2,0:0|0:0,0:0:0:0:
|
||||
160,149,201047,1,2,0:0:0:0:
|
||||
250,149,201157,1,2,0:0:0:0:
|
||||
50,149,201266,1,0,3:2:0:0:
|
||||
139,149,201376,1,0,3:2:0:0:
|
||||
50,149,201485,1,2,3:2:0:0:
|
||||
285,149,201595,1,0,3:2:0:0:
|
||||
50,149,201704,6,0,L|48:228,1,69,6|2,1:2|0:0,0:0:0:0:
|
||||
249,217,201923,1,2,0:0:0:0:
|
||||
48,217,202033,1,2,0:0:0:0:
|
||||
141,217,202142,2,0,P|172:281|134:338,1,138,0|2,3:2|0:0,0:0:0:0:
|
||||
45,333,202471,1,0,1:2:0:0:
|
||||
278,333,202580,5,2,0:0:0:0:
|
||||
180,333,202690,2,0,L|179:262,1,69,2|0,0:0|1:2,0:0:0:0:
|
||||
380,264,202909,1,2,0:0:0:0:
|
||||
283,264,203018,2,0,L|457:265,1,138,0|2,3:2|0:0,0:0:0:0:
|
||||
337,264,203347,1,0,0:0:0:0:
|
||||
103,264,203456,6,0,P|72:200|117:155,1,138,0|0,1:2|0:0,0:0:0:0:
|
||||
202,156,203785,1,2,0:0:0:0:
|
||||
111,156,203894,2,0,L|109:75,1,69,0|0,3:2|0:0,0:0:0:0:
|
||||
310,87,204113,2,0,L|399:86,1,69,2|0,0:0|1:2,0:0:0:0:
|
||||
177,86,204332,5,2,0:0:0:0:
|
||||
378,86,204442,2,0,L|379:160,1,69,2|0,0:0|1:2,0:0:0:0:
|
||||
177,154,204661,1,2,0:0:0:0:
|
||||
80,154,204770,2,0,P|55:217|80:282,1,138,0|2,3:2|0:0,0:0:0:0:
|
||||
162,280,205099,1,0,0:0:0:0:
|
||||
395,280,205208,6,0,L|312:280,1,69,2|2,1:2|0:0,0:0:0:0:
|
||||
124,280,205427,1,2,0:0:0:0:
|
||||
323,280,205536,1,2,0:0:0:0:
|
||||
420,280,205646,2,0,L|252:279,1,138,0|2,3:2|0:0,0:0:0:0:
|
||||
379,279,205974,1,0,1:2:0:0:
|
||||
143,279,206084,6,0,L|70:281,1,69,2|2,0:0|0:0,0:0:0:0:
|
||||
171,280,206303,1,0,1:2:0:0:
|
||||
370,280,206412,1,2,0:0:0:0:
|
||||
467,280,206522,2,0,P|494:213|463:160,1,138,0|2,3:2|0:0,0:0:0:0:
|
||||
380,160,206850,1,0,0:0:0:0:
|
||||
109,160,206960,6,0,L|259:160,1,138,6|0,1:2|0:0,0:0:0:0:
|
||||
156,160,207288,1,2,0:0:0:0:
|
||||
65,160,207398,1,0,3:2:0:0:
|
||||
382,160,207617,5,2,1:2:0:0:
|
||||
420,224,207726,1,0,0:0:0:0:
|
||||
378,288,207836,1,0,0:0:0:0:
|
||||
302,288,207945,1,0,0:0:0:0:
|
||||
191,288,208055,2,0,L|190:212,1,69,0|0,1:2|0:0,0:0:0:0:
|
||||
391,219,208274,2,0,P|417:155|379:101,1,138,2|2,3:2|0:0,0:0:0:0:
|
||||
298,102,208602,1,0,0:0:0:0:
|
||||
62,102,208712,6,0,L|61:180,1,69,0|0,1:2|0:0,0:0:0:0:
|
||||
172,170,208931,2,0,L|245:169,1,69,2|0,0:0|0:0,0:0:0:0:
|
||||
442,169,209150,2,0,P|466:237|434:297,1,138,2|2,3:2|1:2,0:0:0:0:
|
||||
355,292,209478,1,0,0:0:0:0:
|
||||
119,292,209588,6,0,L|116:218,1,69,2|0,0:0|0:0,0:0:0:0:
|
||||
220,223,209807,1,2,1:2:0:0:
|
||||
413,223,210026,1,2,3:2:0:0:
|
||||
124,223,210244,2,0,L|48:223,1,69,2|2,0:0|0:0,0:0:0:0:
|
||||
325,223,210463,6,0,P|407:220|484:62,1,276,6|2,1:2|3:2,0:0:0:0:
|
||||
165,63,211120,2,0,L|469:62,1,276,6|0,1:2|1:2,0:0:0:0:
|
||||
149,62,211777,2,0,L|8:61,1,138,2|2,3:2|0:0,0:0:0:0:
|
||||
357,61,212215,6,0,L|142:61,2,207,6|8|8,1:2|0:3|0:3,0:0:0:0:
|
||||
65,61,213091,2,0,L|375:61,1,276,6|0,1:2|3:2,0:0:0:0:
|
||||
250,61,213639,1,0,3:2:0:0:
|
||||
339,61,213748,1,0,3:2:0:0:
|
||||
103,61,213858,1,0,3:2:0:0:
|
||||
339,61,213967,6,0,P|366:130|332:184,1,138,6|0,1:2|0:0,0:0:0:0:
|
||||
245,180,214296,1,2,0:0:0:0:
|
||||
334,180,214405,2,0,L|336:259,1,69,0|0,3:2|0:0,0:0:0:0:
|
||||
134,248,214624,2,0,L|47:249,1,69,2|0,0:0|1:2,0:0:0:0:
|
||||
300,248,214843,6,0,L|301:171,1,69,2|0,0:0|0:0,0:0:0:0:
|
||||
99,179,215062,1,2,1:2:0:0:
|
||||
300,179,215172,1,2,0:0:0:0:
|
||||
203,179,215281,2,0,L|28:176,1,138,0|2,3:2|0:0,0:0:0:0:
|
||||
148,176,215609,1,0,0:0:0:0:
|
||||
383,176,215719,6,0,L|290:176,1,69,2|2,1:2|0:0,0:0:0:0:
|
||||
112,176,215938,1,2,0:0:0:0:
|
||||
311,176,216047,1,2,0:0:0:0:
|
||||
408,176,216157,2,0,P|437:111|399:59,1,138,0|2,3:2|0:0,0:0:0:0:
|
||||
305,60,216485,1,0,1:2:0:0:
|
||||
69,60,216595,6,0,L|68:143,1,69,2|0,0:0|0:0,0:0:0:0:
|
||||
179,128,216814,2,0,L|263:129,1,69,2|0,1:2|0:0,0:0:0:0:
|
||||
449,128,217033,2,0,L|348:129,1,69,2|0,3:2|0:0,0:0:0:0:
|
||||
178,128,217252,2,0,L|86:128,1,69,2|0,0:0|0:0,0:0:0:0:
|
||||
344,128,217471,6,0,L|197:128,1,138,2|0,1:2|0:0,0:0:0:0:
|
||||
289,128,217799,1,2,0:0:0:0:
|
||||
206,128,217909,2,0,L|205:204,1,69,0|0,3:2|0:0,0:0:0:0:
|
||||
406,196,218128,2,0,L|479:195,1,69,2|0,0:0|1:2,0:0:0:0:
|
||||
239,195,218347,6,0,L|158:196,1,69,2|0,0:0|0:0,0:0:0:0:
|
||||
371,195,218566,1,2,1:2:0:0:
|
||||
170,195,218675,1,2,0:0:0:0:
|
||||
267,195,218785,2,0,L|435:196,1,138,0|2,3:2|0:0,0:0:0:0:
|
||||
321,195,219113,1,0,0:0:0:0:
|
||||
85,195,219223,6,0,L|85:273,1,69,2|0,1:2|0:0,0:0:0:0:
|
||||
286,264,219442,2,0,L|379:265,1,69,2|0,1:2|0:0,0:0:0:0:
|
||||
119,264,219661,2,0,L|37:264,1,69,2|0,3:2|0:0,0:0:0:0:
|
||||
320,264,219880,5,6,1:2:0:0:
|
||||
399,257,219989,1,0,0:0:0:0:
|
||||
402,180,220099,1,0,0:0:0:0:
|
||||
327,170,220208,1,0,0:0:0:0:
|
||||
129,120,220317,2,0,L|129:48,1,69,8|0,0:3|0:0,0:0:0:0:
|
||||
330,51,220536,2,0,L|412:48,1,69,8|0,0:3|0:0,0:0:0:0:
|
||||
163,48,220755,2,0,L|80:48,1,69,4|0,0:3|0:0,0:0:0:0:
|
||||
364,52,220974,5,6,1:2:0:0:
|
||||
439,64,221084,1,0,0:0:0:0:
|
||||
426,139,221193,1,0,0:0:0:0:
|
||||
350,146,221303,1,2,0:0:0:0:
|
||||
240,146,221412,2,0,L|239:227,1,69,0|0,3:2|0:0,0:0:0:0:
|
||||
440,214,221631,5,2,1:2:0:0:
|
||||
472,282,221741,1,0,0:0:0:0:
|
||||
434,346,221850,1,0,0:0:0:0:
|
||||
357,352,221960,1,0,0:0:0:0:
|
||||
157,352,222069,2,0,L|66:348,1,69,2|0,1:2|0:0,0:0:0:0:
|
||||
289,348,222288,2,0,L|471:346,1,138,2|2,3:2|0:0,0:0:0:0:
|
||||
343,346,222617,1,0,0:0:0:0:
|
||||
109,346,222726,6,0,P|83:283|123:224,1,138,2|0,1:2|0:0,0:0:0:0:
|
||||
207,227,223055,1,2,0:0:0:0:
|
||||
117,227,223164,2,0,L|114:140,1,69,0|0,3:2|0:0,0:0:0:0:
|
||||
315,158,223383,2,0,L|399:159,1,69,2|0,1:2|0:0,0:0:0:0:
|
||||
148,158,223602,6,0,L|146:226,1,69,2|0,0:0|0:0,0:0:0:0:
|
||||
256,226,223821,2,0,L|346:226,1,69,2|0,1:2|0:0,0:0:0:0:
|
||||
123,226,224040,2,0,L|209:226,1,69,2|0,3:2|0:0,0:0:0:0:
|
||||
393,226,224259,2,0,L|394:149,1,69,2|0,0:0|0:0,0:0:0:0:
|
||||
158,157,224478,5,2,1:2:0:0:
|
||||
82,163,224588,1,0,0:0:0:0:
|
||||
44,228,224697,1,0,0:0:0:0:
|
||||
86,291,224807,1,0,0:0:0:0:
|
||||
285,291,224916,2,0,L|378:292,1,69,0|0,3:2|0:0,0:0:0:0:
|
||||
83,291,225135,5,6,1:2:0:0:
|
||||
41,227,225244,1,0,0:0:0:0:
|
||||
82,163,225354,1,0,0:0:0:0:
|
||||
157,156,225463,1,0,0:0:0:0:
|
||||
267,156,225573,2,0,L|267:86,1,69,0|0,1:2|0:0,0:0:0:0:
|
||||
65,87,225792,2,0,L|64:173,1,69,2|0,3:2|0:0,0:0:0:0:
|
||||
154,155,226011,1,2,0:0:0:0:
|
||||
64,155,226120,1,2,0:0:0:0:
|
||||
299,155,226230,5,2,1:2:0:0:
|
||||
105,155,226449,2,0,L|104:233,1,69,8|0,0:3|0:0,0:0:0:0:
|
||||
305,223,226668,1,0,3:2:0:0:
|
||||
104,223,226777,2,0,L|28:224,1,69,8|2,0:3|0:0,0:0:0:0:
|
||||
383,353,227106,6,0,P|161:330|63:49,1,552,6|2,1:2|0:0,0:0:0:0:
|
||||
+1
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
+1
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user