chore: refactored to larger repo with new plan 3430d6fb
Steve · 2026-03-20 08:05 37 file(s) · +18597 −128
.gitignore → web/.gitignore +0 −0
PLAN.md +117 −128
1 -
# Keystroke Dynamics: Full Implementation Plan
1 +
# Plan: Standardized Keystroke Dynamics Spec + Reference Library
2 2
3 3
## Context
4 4
5 -
The existing Svelte app captures raw digraph timing (6 metrics) and displays averages + a table. It has no persistence, no profile building, no comparison logic, and no human-ness analysis. The goal is to build a complete keystroke dynamics research tool that can:
6 -
1. Build typing signatures from free-text sessions
7 -
2. Store and manage user profiles
8 -
3. Compare sessions against profiles (same-user verification)
9 -
4. Score whether a typing session appears human or bot-generated
5 +
The existing web app (`web/`) has solid keystroke dynamics logic (capture, aggregation, comparison, humanness scoring) but it's coupled to a Svelte UI. The goal is to extract this into a **language-agnostic spec** + **standalone TypeScript reference library** that other languages (Python, Rust, Go) can implement against. Use cases include school enrollment verification and proving humanness in online writing.
10 6
11 -
Based on research from the keystroke dynamics survey (arxiv 2303.04605v2), the approach uses digraph aggregation, Scaled Manhattan Distance for comparison, and multi-factor human-ness scoring.
7 +
## Decisions Made
12 8
13 -
**Decisions:**
14 -
- Keep legacy Svelte `$:` reactive syntax (no runes migration)
15 -
- Build all 4 tabs from the start with placeholders for unbuilt phases
16 -
- Track paste events and factor into human-ness analysis
9 +
- **Structure**: New `spec/` and `ts/` directories alongside `web/`
10 +
- **Metrics**: 4 essential per digraph (holdTime1, holdTime2, pressPress, releasePress); 2 derivable ones are optional
11 +
- **Digraphs**: Hybrid — ~30 core English digraphs + any-digraph fallback with min 5 observations
12 +
- **Scope**: Full end-to-end — spec document, reference library with tests, and web app refactor
17 13
18 14
---
19 15
20 -
## Step 0: Refactor & Extract Components
16 +
## Phase 1: Spec Document + JSON Schemas
21 17
22 -
Extract the monolithic `App.svelte` into a component architecture. Keystroke capture stays at the window level (always active regardless of tab).
18 +
### 1.1 Create `spec/SPEC.md`
23 19
24 -
**Files to create:**
25 -
- `src/lib/types.ts` — all TypeScript interfaces (RawDigraph, DigraphAggregation, MetricStats, Profile, ComparisonResult, HumannessResult, etc.)
26 -
- `src/lib/utils.ts` — extract `round()`, `avg()`, add `std()` helper
27 -
- `src/lib/components/CapturePanel.svelte` — textarea + raw digraph table + JSON export (extracted from App.svelte)
28 -
- `src/lib/components/StatsBar.svelte` — the 6-metric averages bar
29 -
- `src/lib/components/TabBar.svelte` — tab navigation (Capture | Profile | Compare | Human-ness)
20 +
RFC-style markdown document with these sections:
30 21
31 -
**Refactor `App.svelte`** into orchestrator: holds canonical `digraphs[]` array and `sessionMetadata`, manages tab state, keeps `svelte:window` keydown/keyup handlers so capture works on all tabs.
22 +
1. **Introduction & Scope** — what this covers, versioning (`kd-spec/1.0`)
23 +
2. **Raw Data Capture** — `KeystrokeEvent` and `RawDigraph` definitions, key normalization rules, excluded keys, `SessionMetadata` shape
24 +
3. **Digraph Selection** — core set concept, `spec/digraphs/en.json`, confidence tiers (15+/10-14/5-9/<5 shared core digraphs), minimum observation count (5)
25 +
4. **Aggregation** — group by normalized key pair, IQR outlier filtering (k=1.5), compute MetricStats (mean, std w/ Bessel's correction, min, max, count), round to 0.1ms
26 +
5. **Identity Comparison** — Scaled Manhattan Distance over 4 metrics, `MAX_METRIC_DISTANCE=3.0`, `MIN_STD_FALLBACK=15.0`, similarity % formula, confidence levels
27 +
6. **Humanness Scoring** — 6 weighted sub-scores with exact piecewise-linear breakpoints:
28 +
   - timingVariance (0.20): CV of pressPress, range [0.03→0, 0.20→100]
29 +
   - correctionRate (0.15): backspace ratio, ideal 2-15%
30 +
   - pauseDistribution (0.20): gaps >500ms rate + variance bonus
31 +
   - distributionShape (0.15): skewness of pressPress, ideal 0.5-3.0
32 +
   - flightTimeNegativity (0.15): % negative releasePress, ideal 10-50%
33 +
   - burstPatterns (0.15): burst length mean + CV (burst = consecutive <300ms gaps)
34 +
   - Paste penalty when >50% pasted content
35 +
   - Verdicts: ≥60 likely_human, 40-59 uncertain, <40 likely_bot
36 +
7. **Attestation Object** — JSON shape with specVersion, score, verdict, subScores, sessionStats, optional profileComparison
32 37
33 -
**Tab setup:** All 4 tabs visible from the start. Non-implemented tabs show a placeholder until their phase is built.
38 +
### 1.2 Create JSON Schema files in `spec/schemas/`
34 39
35 -
**Key gotcha:** Don't conditionally render CapturePanel with `{#if}` — either always render it (hide with CSS) or keep the `svelte:window` bindings in App.svelte. Recommended: keep handlers in App.svelte.
40 +
- `raw-keystroke-event.schema.json`
41 +
- `raw-digraph.schema.json`
42 +
- `session-metadata.schema.json`
43 +
- `digraph-aggregation.schema.json`
44 +
- `profile.schema.json`
45 +
- `comparison-result.schema.json`
46 +
- `humanness-result.schema.json`
47 +
- `humanness-attestation.schema.json`
36 48
37 -
---
49 +
### 1.3 Create `spec/digraphs/en.json`
38 50
39 -
## Step 1: Per-Digraph Aggregation & Profile Building
51 +
~30 high-frequency English digraphs: th, he, in, er, an, re, on, at, en, nd, ti, es, or, te, of, ed, is, it, al, ar, st, to, nt, ng, se, ha, ou, le, ve, co
40 52
41 -
**New file: `src/lib/aggregation.ts`**
42 -
- `groupDigraphs(digraphs)` — group by normalized key pair (lowercase key1 + key2)
43 -
- `computeMetricStats(values[])` — returns `{ mean, std, min, max, count }` for a number array
44 -
- `aggregateDigraphs(digraphs)` — for each group, compute MetricStats for all 6 metrics, sort by count descending
53 +
---
45 54
46 -
**Session metadata tracking (add to App.svelte handlers):**
47 -
- `totalKeystrokes` — increment on every keydown (not just digraph-forming)
48 -
- `backspaceCount` — increment when `e.key === 'Backspace'`
49 -
- `pauseCount` — gaps > 500ms between consecutive keydowns (track `lastKeydownTime`)
50 -
- `avgTypingSpeed` — chars/min from total keystrokes and session duration
51 -
- `sessionDurationMs` — first keydown to last keyup
55 +
## Phase 2: Reference TypeScript Library (`ts/`)
52 56
53 -
**New component: `src/lib/components/ProfileSummary.svelte`**
54 -
- Table of top 15 digraphs by frequency: `keys | count | HT1 (mean +/- std) | ... all 6 metrics`
55 -
- "Show all" toggle
56 -
- Session metadata summary row
57 +
### 2.1 Package setup
57 58
58 -
**Case normalization:** Treat `'A'` and `'a'` as the same key when grouping digraphs. Include Backspace and Enter in aggregation (they carry signature), exclude arrow/navigation keys.
59 +
- `ts/package.json` — zero production dependencies, `vitest` for testing
60 +
- `ts/tsconfig.json` — ES2023, strict, ESM output
61 +
- Exports as both ESM and CJS
59 62
60 -
---
63 +
### 2.2 Source modules (extracted + refactored from `web/src/lib/`)
61 64
62 -
## Step 2: Profile Storage & Management
65 +
| File | Source | Changes |
66 +
|---|---|---|
67 +
| `ts/src/types.ts` | `web/src/lib/types.ts` | Add `KeystrokeEvent`, `HumannessAttestation`. Remove `TabId`. Make `pressRelease`/`releaseRelease` optional. `DigraphAggregation` uses 4 essential metrics (2 optional). |
68 +
| `ts/src/math.ts` | `web/src/lib/utils.ts` | Keep `round`, `std`, `filterOutliers`. Drop `avg` (UI concern). Add proper `mean()` returning number. |
69 +
| `ts/src/normalize.ts` | `web/src/lib/aggregation.ts` lines 1-28 | Extract `normalizeKey`, `normalizeDigraphKey`, `EXCLUDED_KEYS`, `shouldExclude`. |
70 +
| `ts/src/capture.ts` | `web/src/App.svelte` lines 46-107 | **NEW**: Platform-agnostic `CaptureSession` class with `keyDown(key, timestamp)`, `keyUp(key, timestamp)` → `RawDigraph | null`, `getMetadata()`, `getDigraphs()`, `reset()`. |
71 +
| `ts/src/aggregate.ts` | `web/src/lib/aggregation.ts` | `computeMetricStats`, `aggregateDigraphs`. Operate on 4 essential metrics by default. |
72 +
| `ts/src/compare.ts` | `web/src/lib/comparison.ts` | `compareSession`. Change `METRIC_KEYS` from 6 to 4. |
73 +
| `ts/src/humanness.ts` | `web/src/lib/humanness.ts` | All 6 sub-score functions + `analyzeHumanness`. Consolidate duplicated `computeStd` into `math.ts`. |
74 +
| `ts/src/attestation.ts` | NEW | `createAttestation(humanness, digraphs, metadata, comparison?)` → `HumannessAttestation` |
75 +
| `ts/src/index.ts` | NEW | Barrel export of public API |
63 76
64 -
**New file: `src/lib/storage.ts`**
65 -
- localStorage key: `"kd_profiles"`
66 -
- `saveProfile(profile: Profile)` — JSON stringify, append to stored array
67 -
- `loadProfiles(): Profile[]` — parse with try/catch, validate shape
68 -
- `deleteProfile(id: string)` — filter and re-save
69 -
- `exportProfile(profile: Profile)` — Blob + URL.createObjectURL for JSON file download
70 -
- `importProfile(file: File): Profile` — FileReader, JSON.parse, validate
77 +
### 2.3 Tests (`ts/tests/`)
71 78
72 -
**Profile interface stores aggregations (not raw digraphs)** to keep localStorage size manageable.
73 -
74 -
**New component: `src/lib/components/ProfileManager.svelte`**
75 -
- Text input + "Save Profile" button (default name: "Session - {date}")
76 -
- List of saved profiles: name, date, digraph count, delete button
77 -
- Export button per profile (JSON file download)
78 -
- Import button (hidden file input)
79 +
- `math.test.ts` — round, std, mean, filterOutliers
80 +
- `capture.test.ts` — CaptureSession state machine
81 +
- `normalize.test.ts` — key normalization edge cases
82 +
- `aggregate.test.ts` — grouping, outlier filtering, metric stats
83 +
- `compare.test.ts` — distance calculation, similarity %, confidence levels
84 +
- `humanness.test.ts` — each sub-score function + composite scoring
85 +
- `fixtures.test.ts` — load spec fixtures, assert outputs match
79 86
80 87
---
81 88
82 -
## Step 3: Session Comparison (Scaled Manhattan Distance)
89 +
## Phase 3: Test Fixtures (`spec/fixtures/`)
83 90
84 -
**New file: `src/lib/comparison.ts`**
91 +
Generate from the reference implementation using real profile data (`1.json`, `2.json`):
85 92
86 -
**Algorithm: Scaled Manhattan Distance**
87 -
1. Build lookup maps from both session and profile aggregations
88 -
2. Find shared digraph types (by normalized key pair)
89 -
3. For each shared digraph, for each of 6 metrics:
90 -
   - `distance = |mean_session - mean_profile| / std_profile`
91 -
   - If `std_profile < epsilon`: use `|mean_session - mean_profile| / max(mean_profile * 0.1, 1.0)` as fallback
92 -
4. `overallDistance = sum(all distances) / (sharedCount * 6)`
93 -
5. `similarityPercent = max(0, 100 * (1 - overallDistance / 3.0))` — distance of 3 std devs = 0% similar
94 -
6. Confidence: `shared >= 15` high, `>= 10` medium, `>= 5` low, `< 5` insufficient
93 +
- `aggregation/` — input raw digraphs → expected aggregations
94 +
- `comparison/` — input session+profile aggregations → expected ComparisonResult
95 +
- `humanness/` — human-like session → expected scores; bot-like session → expected scores
96 +
- `math/` — known inputs → expected outputs for filterOutliers, std, etc.
95 97
96 -
**New component: `src/lib/components/ComparisonView.svelte`**
97 -
- Dropdown to select a saved profile
98 -
- "Compare" button (disabled if insufficient overlap)
99 -
- Results: large similarity %, confidence badge, raw distance score
100 -
- Per-digraph breakdown table sorted by distance (worst first), with color-coded match quality bars
101 -
- Note in UI: comparing prose vs code sessions for the same user will produce poor matches
98 +
Each fixture: `{ input: {...}, expectedOutput: {...} }` with 0.1 tolerance for floats.
102 99
103 100
---
104 101
105 -
## Step 4: Human-ness Detection
102 +
## Phase 4: Refactor Web App
106 103
107 -
**New file: `src/lib/humanness.ts`**
104 +
### 4.1 Add library dependency
108 105
109 -
Six sub-scores (0-100 each), combined via weighted average:
106 +
Add `ts/` as a workspace or path dependency in `web/package.json`.
110 107
111 -
| Sub-score | Weight | What it measures | Human signal |
112 -
|-----------|--------|-----------------|-------------|
113 -
| Timing Variance | 0.20 | CV (std/mean) of pressPress per digraph | Humans CV > 0.15, bots < 0.05 |
114 -
| Correction Rate | 0.15 | backspaceCount / totalKeystrokes | Humans 5-15%, zero is suspicious |
115 -
| Pause Distribution | 0.20 | Presence/variance of gaps > 500ms, > 1s | Humans have thinking pauses |
116 -
| Distribution Shape | 0.15 | Skewness of timing arrays | Human timing is right-skewed (log-normal) |
117 -
| Flight Time Negativity | 0.15 | % of digraphs with releasePress < 0 | Humans overlap keys, bots don't |
118 -
| Burst Patterns | 0.15 | Variance of "burst" lengths (consecutive digraphs < 300ms gap) | Humans type in bursts of 3-15 keys |
108 +
### 4.2 Replace inline modules
119 109
120 -
**Composite verdict:** score >= 60 "likely human", 40-60 "uncertain", < 40 "likely bot"
110 +
| Web file | Action |
111 +
|---|---|
112 +
| `web/src/lib/types.ts` | Replace with re-exports from `@keystroke-dynamics/core` (or path import) |
113 +
| `web/src/lib/utils.ts` | Replace with imports from library's `math.ts`. Keep `avg()` locally (UI helper). |
114 +
| `web/src/lib/aggregation.ts` | Replace with imports from library |
115 +
| `web/src/lib/comparison.ts` | Replace with imports from library |
116 +
| `web/src/lib/humanness.ts` | Replace with imports from library |
117 +
| `web/src/lib/storage.ts` | **Keep as-is** — browser-specific, intentionally not in spec |
118 +
| `web/src/App.svelte` | Replace inline capture logic (lines 46-107) with `CaptureSession` instance |
121 119
122 -
**Minimum requirement:** 20 digraphs before computing. Show "keep typing..." below that.
123 -
124 -
**New component: `src/lib/components/HumannessView.svelte`**
125 -
- Large score display (0-100) with verdict text and color
126 -
- 6 horizontal bars showing each sub-score with label
127 -
- Brief explanation under each bar
120 +
### 4.3 Verify
128 121
129 -
**Paste detection:** Add `on:paste` handler to textarea. Track `pasteCount` and `pastedCharCount` in session metadata. Factor into human-ness score — a session where most content was pasted (high paste ratio vs keystrokes) scores lower. Not inherently disqualifying, but a signal.
122 +
- `bun run check` passes
123 +
- `bun run dev` works, all tabs functional
124 +
- Existing profiles (`1.json`, `2.json`) still load and compare correctly
130 125
131 126
---
132 127
133 -
## Implementation Order
134 -
135 -
```
136 -
Step 0 (refactor)  -->  Step 1 (aggregation)  -->  Step 2 (storage)
137 -
                                                       |
138 -
                                                   Step 3 (comparison)
139 -
                                                       |
140 -
                                                   Step 4 (human-ness)
141 -
```
128 +
## Key Files to Modify/Create
142 129
143 -
Steps 3 and 4 are independent of each other (both depend on Step 1's aggregation). Step 2 must come before Step 3 (comparison needs saved profiles to compare against).
130 +
**Create:**
131 +
- `spec/SPEC.md`
132 +
- `spec/schemas/*.schema.json` (8 files)
133 +
- `spec/digraphs/en.json`
134 +
- `spec/fixtures/` (fixture JSON files)
135 +
- `ts/package.json`, `ts/tsconfig.json`
136 +
- `ts/src/*.ts` (9 files)
137 +
- `ts/tests/*.test.ts` (7 files)
144 138
145 -
---
139 +
**Modify:**
140 +
- `web/src/lib/types.ts` — re-export from library
141 +
- `web/src/lib/utils.ts` — import from library, keep `avg` locally
142 +
- `web/src/lib/aggregation.ts` — re-export from library
143 +
- `web/src/lib/comparison.ts` — re-export from library
144 +
- `web/src/lib/humanness.ts` — re-export from library
145 +
- `web/src/App.svelte` — use `CaptureSession` class
146 +
- `web/package.json` — add library dependency
146 147
147 -
## File Summary
148 -
149 -
| File | Action |
150 -
|------|--------|
151 -
| `src/App.svelte` | Refactor into orchestrator |
152 -
| `src/lib/types.ts` | New — all interfaces |
153 -
| `src/lib/utils.ts` | New — shared math helpers |
154 -
| `src/lib/aggregation.ts` | New — digraph grouping + stats |
155 -
| `src/lib/storage.ts` | New — localStorage profile CRUD |
156 -
| `src/lib/comparison.ts` | New — Scaled Manhattan Distance |
157 -
| `src/lib/humanness.ts` | New — 6-factor human-ness scoring |
158 -
| `src/lib/components/CapturePanel.svelte` | New — extracted capture UI |
159 -
| `src/lib/components/StatsBar.svelte` | New — extracted stats bar |
160 -
| `src/lib/components/TabBar.svelte` | New — tab navigation |
161 -
| `src/lib/components/ProfileSummary.svelte` | New — aggregated digraph view |
162 -
| `src/lib/components/ProfileManager.svelte` | New — save/load/export profiles |
163 -
| `src/lib/components/ComparisonView.svelte` | New — comparison results |
164 -
| `src/lib/components/HumannessView.svelte` | New — human-ness score display |
165 -
| `src/app.css` | Minor additions for tabs, score displays |
148 +
**Keep unchanged:**
149 +
- `web/src/lib/storage.ts`
150 +
- All Svelte components (they import from `web/src/lib/` which will re-export)
166 151
167 152
---
168 153
169 154
## Verification
170 155
171 -
After each step:
172 -
1. `bun run dev` — app loads without errors
173 -
2. Type in textarea — digraphs still captured correctly
174 -
3. Step 1: Verify aggregated stats appear in Profile tab, digraph grouping works with repeated pairs
175 -
4. Step 2: Save a profile, reload page, profile persists. Export/import round-trips correctly.
176 -
5. Step 3: Save a profile, type new session, compare — similarity score and per-digraph breakdown appear. Test with same content (should be high similarity) and different content (lower but non-zero for same user).
177 -
6. Step 4: Type naturally — should score > 60. Test edge case: very short session shows "keep typing" message.
156 +
1. `cd ts && bun test` — all library unit tests pass
157 +
2. `cd ts && bun test fixtures.test.ts` — all spec fixtures pass
158 +
3. `cd web && bun run check` — TypeScript/Svelte checks pass
159 +
4. `cd web && bun run dev` — app runs, type in textarea, verify:
160 +
   - Capture tab shows digraphs
161 +
   - Profile tab shows aggregations
162 +
   - Save a profile, compare against it
163 +
   - Humanness tab shows score with all 6 sub-metrics
164 +
   - Import `1.json`/`2.json`, comparison still works
165 +
5. Validate JSON schemas: `npx ajv validate -s spec/schemas/raw-digraph.schema.json -d spec/fixtures/...`
166 +
README.md → web/README.md +0 −0
analyze.ts → web/analyze.ts +0 −0
bun.lock → web/bun.lock +0 −0
index.html → web/index.html +0 −0
package.json → web/package.json +0 −0
public/favicon.svg → web/public/favicon.svg +0 −0
public/icons.svg → web/public/icons.svg +0 −0
src/App.svelte → web/src/App.svelte +0 −0
src/app.css → web/src/app.css +0 −0
src/assets/fonts/CommitMono-400-Regular.otf → web/src/assets/fonts/CommitMono-400-Regular.otf +0 −0

Binary file — no preview.

src/assets/fonts/CommitMono-700-Regular.otf → web/src/assets/fonts/CommitMono-700-Regular.otf +0 −0

Binary file — no preview.

src/assets/hero.png → web/src/assets/hero.png +0 −0

Binary file — no preview.

src/assets/svelte.svg → web/src/assets/svelte.svg +0 −0
src/assets/vite.svg → web/src/assets/vite.svg +0 −0
src/lib/aggregation.ts → web/src/lib/aggregation.ts +0 −0
src/lib/comparison.ts → web/src/lib/comparison.ts +0 −0
src/lib/components/CapturePanel.svelte → web/src/lib/components/CapturePanel.svelte +0 −0
src/lib/components/ComparisonView.svelte → web/src/lib/components/ComparisonView.svelte +0 −0
src/lib/components/HumannessView.svelte → web/src/lib/components/HumannessView.svelte +0 −0
src/lib/components/ProfileManager.svelte → web/src/lib/components/ProfileManager.svelte +0 −0
src/lib/components/ProfileSummary.svelte → web/src/lib/components/ProfileSummary.svelte +0 −0
src/lib/components/StatsBar.svelte → web/src/lib/components/StatsBar.svelte +0 −0
src/lib/components/TabBar.svelte → web/src/lib/components/TabBar.svelte +0 −0
src/lib/humanness.ts → web/src/lib/humanness.ts +0 −0
src/lib/storage.ts → web/src/lib/storage.ts +0 −0
src/lib/types.ts → web/src/lib/types.ts +0 −0
src/lib/utils.ts → web/src/lib/utils.ts +0 −0
src/main.ts → web/src/main.ts +0 −0
svelte.config.js → web/svelte.config.js +0 −0
tsconfig.app.json → web/tsconfig.app.json +0 −0
tsconfig.json → web/tsconfig.json +0 −0
tsconfig.node.json → web/tsconfig.node.json +0 −0
vite.config.ts → web/vite.config.ts +0 −0
web/1.json (added) +9999 −0
1 +
{
2 +
  "id": "2d427587-9e82-4783-8f43-399d81618e59",
3 +
  "name": "1",
4 +
  "createdAt": "2026-03-20T11:30:27.431Z",
5 +
  "digraphCount": 595,
6 +
  "aggregations": [
7 +
    {
8 +
      "normalizedKeys": "␣ → t",
9 +
      "count": 16,
10 +
      "holdTime1": {
11 +
        "mean": 64.6,
12 +
        "std": 22.7,
13 +
        "min": 33.9,
14 +
        "max": 108.1,
15 +
        "count": 16
16 +
      },
17 +
      "holdTime2": {
18 +
        "mean": 3576.9,
19 +
        "std": 13990.5,
20 +
        "min": 49.8,
21 +
        "max": 56041.2,
22 +
        "count": 16
23 +
      },
24 +
      "pressPress": {
25 +
        "mean": -3333,
26 +
        "std": 13897.8,
27 +
        "min": -55449.2,
28 +
        "max": 375.3,
29 +
        "count": 16
30 +
      },
31 +
      "releaseRelease": {
32 +
        "mean": 179.2,
33 +
        "std": 100.8,
34 +
        "min": 101.9,
35 +
        "max": 483.9,
36 +
        "count": 16
37 +
      },
38 +
      "pressRelease": {
39 +
        "mean": 243.9,
40 +
        "std": 116.8,
41 +
        "min": 142.4,
42 +
        "max": 592,
43 +
        "count": 16
44 +
      },
45 +
      "releasePress": {
46 +
        "mean": -3397.7,
47 +
        "std": 13909.4,
48 +
        "min": -55557.3,
49 +
        "max": 279.1,
50 +
        "count": 16
51 +
      }
52 +
    },
53 +
    {
54 +
      "normalizedKeys": "t → ␣",
55 +
      "count": 16,
56 +
      "holdTime1": {
57 +
        "mean": 80.3,
58 +
        "std": 20.3,
59 +
        "min": 38,
60 +
        "max": 108.2,
61 +
        "count": 16
62 +
      },
63 +
      "holdTime2": {
64 +
        "mean": 77.2,
65 +
        "std": 20.6,
66 +
        "min": 46,
67 +
        "max": 116.2,
68 +
        "count": 16
69 +
      },
70 +
      "pressPress": {
71 +
        "mean": 134.3,
72 +
        "std": 109.3,
73 +
        "min": 66.5,
74 +
        "max": 524.7,
75 +
        "count": 16
76 +
      },
77 +
      "releaseRelease": {
78 +
        "mean": 131.2,
79 +
        "std": 110.1,
80 +
        "min": 66.4,
81 +
        "max": 524.9,
82 +
        "count": 16
83 +
      },
84 +
      "pressRelease": {
85 +
        "mean": 211.5,
86 +
        "std": 120.5,
87 +
        "min": 131.2,
88 +
        "max": 632.2,
89 +
        "count": 16
90 +
      },
91 +
      "releasePress": {
92 +
        "mean": 54,
93 +
        "std": 100.5,
94 +
        "min": -12.9,
95 +
        "max": 417.4,
96 +
        "count": 16
97 +
      }
98 +
    },
99 +
    {
100 +
      "normalizedKeys": "e → ␣",
101 +
      "count": 14,
102 +
      "holdTime1": {
103 +
        "mean": 96.7,
104 +
        "std": 33.3,
105 +
        "min": 36,
106 +
        "max": 157.7,
107 +
        "count": 14
108 +
      },
109 +
      "holdTime2": {
110 +
        "mean": 86.6,
111 +
        "std": 19.3,
112 +
        "min": 38,
113 +
        "max": 107.9,
114 +
        "count": 14
115 +
      },
116 +
      "pressPress": {
117 +
        "mean": 79.1,
118 +
        "std": 34.1,
119 +
        "min": 19.4,
120 +
        "max": 153.2,
121 +
        "count": 14
122 +
      },
123 +
      "releaseRelease": {
124 +
        "mean": 69,
125 +
        "std": 30.4,
126 +
        "min": 24.9,
127 +
        "max": 150.1,
128 +
        "count": 14
129 +
      },
130 +
      "pressRelease": {
131 +
        "mean": 165.7,
132 +
        "std": 35.3,
133 +
        "min": 102.6,
134 +
        "max": 210,
135 +
        "count": 14
136 +
      },
137 +
      "releasePress": {
138 +
        "mean": -17.6,
139 +
        "std": 31.6,
140 +
        "min": -74.7,
141 +
        "max": 43.2,
142 +
        "count": 14
143 +
      }
144 +
    },
145 +
    {
146 +
      "normalizedKeys": "o → u",
147 +
      "count": 11,
148 +
      "holdTime1": {
149 +
        "mean": 123,
150 +
        "std": 31.5,
151 +
        "min": 77.2,
152 +
        "max": 169.7,
153 +
        "count": 11
154 +
      },
155 +
      "holdTime2": {
156 +
        "mean": 93,
157 +
        "std": 10.2,
158 +
        "min": 74.8,
159 +
        "max": 108.1,
160 +
        "count": 11
161 +
      },
162 +
      "pressPress": {
163 +
        "mean": 67.7,
164 +
        "std": 24,
165 +
        "min": 31.7,
166 +
        "max": 119.9,
167 +
        "count": 11
168 +
      },
169 +
      "releaseRelease": {
170 +
        "mean": 37.7,
171 +
        "std": 17.1,
172 +
        "min": 3.5,
173 +
        "max": 58.3,
174 +
        "count": 11
175 +
      },
176 +
      "pressRelease": {
177 +
        "mean": 160.7,
178 +
        "std": 27.4,
179 +
        "min": 119.2,
180 +
        "max": 223.5,
181 +
        "count": 11
182 +
      },
183 +
      "releasePress": {
184 +
        "mean": -55.3,
185 +
        "std": 15.8,
186 +
        "min": -83.3,
187 +
        "max": -33,
188 +
        "count": 11
189 +
      }
190 +
    },
191 +
    {
192 +
      "normalizedKeys": "i → n",
193 +
      "count": 11,
194 +
      "holdTime1": {
195 +
        "mean": 145.4,
196 +
        "std": 31,
197 +
        "min": 83,
198 +
        "max": 193.6,
199 +
        "count": 11
200 +
      },
201 +
      "holdTime2": {
202 +
        "mean": 120.7,
203 +
        "std": 25.7,
204 +
        "min": 67.7,
205 +
        "max": 166.2,
206 +
        "count": 11
207 +
      },
208 +
      "pressPress": {
209 +
        "mean": 93.2,
210 +
        "std": 19,
211 +
        "min": 75,
212 +
        "max": 124.7,
213 +
        "count": 11
214 +
      },
215 +
      "releaseRelease": {
216 +
        "mean": 68.6,
217 +
        "std": 22.9,
218 +
        "min": 33.3,
219 +
        "max": 108.4,
220 +
        "count": 11
221 +
      },
222 +
      "pressRelease": {
223 +
        "mean": 213.9,
224 +
        "std": 31.4,
225 +
        "min": 166.5,
226 +
        "max": 274.7,
227 +
        "count": 11
228 +
      },
229 +
      "releasePress": {
230 +
        "mean": -52.1,
231 +
        "std": 35.5,
232 +
        "min": -85.1,
233 +
        "max": 40.7,
234 +
        "count": 11
235 +
      }
236 +
    },
237 +
    {
238 +
      "normalizedKeys": "s → ␣",
239 +
      "count": 10,
240 +
      "holdTime1": {
241 +
        "mean": 126.2,
242 +
        "std": 30.8,
243 +
        "min": 72.2,
244 +
        "max": 173.6,
245 +
        "count": 10
246 +
      },
247 +
      "holdTime2": {
248 +
        "mean": 82.9,
249 +
        "std": 24.2,
250 +
        "min": 42.2,
251 +
        "max": 108.1,
252 +
        "count": 10
253 +
      },
254 +
      "pressPress": {
255 +
        "mean": 163.4,
256 +
        "std": 181.9,
257 +
        "min": 47.6,
258 +
        "max": 674.7,
259 +
        "count": 10
260 +
      },
261 +
      "releaseRelease": {
262 +
        "mean": 120.1,
263 +
        "std": 172.6,
264 +
        "min": 41.6,
265 +
        "max": 608.2,
266 +
        "count": 10
267 +
      },
268 +
      "pressRelease": {
269 +
        "mean": 246.4,
270 +
        "std": 190.6,
271 +
        "min": 139.1,
272 +
        "max": 781.8,
273 +
        "count": 10
274 +
      },
275 +
      "releasePress": {
276 +
        "mean": 37.2,
277 +
        "std": 165.1,
278 +
        "min": -52.8,
279 +
        "max": 501.1,
280 +
        "count": 10
281 +
      }
282 +
    },
283 +
    {
284 +
      "normalizedKeys": "t → h",
285 +
      "count": 10,
286 +
      "holdTime1": {
287 +
        "mean": 5678.6,
288 +
        "std": 17695.6,
289 +
        "min": 51.2,
290 +
        "max": 56041.2,
291 +
        "count": 10
292 +
      },
293 +
      "holdTime2": {
294 +
        "mean": 82.3,
295 +
        "std": 13.7,
296 +
        "min": 58.6,
297 +
        "max": 108.3,
298 +
        "count": 10
299 +
      },
300 +
      "pressPress": {
301 +
        "mean": 5686.3,
302 +
        "std": 17733.8,
303 +
        "min": 9.7,
304 +
        "max": 56157.4,
305 +
        "count": 10
306 +
      },
307 +
      "releaseRelease": {
308 +
        "mean": 89.9,
309 +
        "std": 51.3,
310 +
        "min": 41.7,
311 +
        "max": 199.4,
312 +
        "count": 10
313 +
      },
314 +
      "pressRelease": {
315 +
        "mean": 5768.5,
316 +
        "std": 17734.1,
317 +
        "min": 97.5,
318 +
        "max": 56240.6,
319 +
        "count": 10
320 +
      },
321 +
      "releasePress": {
322 +
        "mean": 7.6,
323 +
        "std": 51.8,
324 +
        "min": -49.8,
325 +
        "max": 116.2,
326 +
        "count": 10
327 +
      }
328 +
    },
329 +
    {
330 +
      "normalizedKeys": "␣ → w",
331 +
      "count": 10,
332 +
      "holdTime1": {
333 +
        "mean": 84.4,
334 +
        "std": 21.6,
335 +
        "min": 54.4,
336 +
        "max": 116.2,
337 +
        "count": 10
338 +
      },
339 +
      "holdTime2": {
340 +
        "mean": 118.6,
341 +
        "std": 24.9,
342 +
        "min": 83.1,
343 +
        "max": 161,
344 +
        "count": 10
345 +
      },
346 +
      "pressPress": {
347 +
        "mean": 203.2,
348 +
        "std": 89,
349 +
        "min": 82.4,
350 +
        "max": 368.5,
351 +
        "count": 10
352 +
      },
353 +
      "releaseRelease": {
354 +
        "mean": 237.4,
355 +
        "std": 88.7,
356 +
        "min": 108.2,
357 +
        "max": 374.1,
358 +
        "count": 10
359 +
      },
360 +
      "pressRelease": {
361 +
        "mean": 321.8,
362 +
        "std": 97,
363 +
        "min": 172.7,
364 +
        "max": 490.3,
365 +
        "count": 10
366 +
      },
367 +
      "releasePress": {
368 +
        "mean": 118.8,
369 +
        "std": 81.8,
370 +
        "min": 17.9,
371 +
        "max": 252.3,
372 +
        "count": 10
373 +
      }
374 +
    },
375 +
    {
376 +
      "normalizedKeys": "␣ → i",
377 +
      "count": 10,
378 +
      "holdTime1": {
379 +
        "mean": 81.5,
380 +
        "std": 14.7,
381 +
        "min": 61.2,
382 +
        "max": 101.6,
383 +
        "count": 10
384 +
      },
385 +
      "holdTime2": {
386 +
        "mean": 96.3,
387 +
        "std": 26.7,
388 +
        "min": 74.5,
389 +
        "max": 153.8,
390 +
        "count": 10
391 +
      },
392 +
      "pressPress": {
393 +
        "mean": 199.8,
394 +
        "std": 289.3,
395 +
        "min": 24.1,
396 +
        "max": 1009.5,
397 +
        "count": 10
398 +
      },
399 +
      "releaseRelease": {
400 +
        "mean": 214.6,
401 +
        "std": 277.5,
402 +
        "min": 58.5,
403 +
        "max": 993,
404 +
        "count": 10
405 +
      },
406 +
      "pressRelease": {
407 +
        "mean": 296.1,
408 +
        "std": 284.4,
409 +
        "min": 133.1,
410 +
        "max": 1094.6,
411 +
        "count": 10
412 +
      },
413 +
      "releasePress": {
414 +
        "mean": 118.3,
415 +
        "std": 282,
416 +
        "min": -37.1,
417 +
        "max": 907.9,
418 +
        "count": 10
419 +
      }
420 +
    },
421 +
    {
422 +
      "normalizedKeys": "␣ → o",
423 +
      "count": 8,
424 +
      "holdTime1": {
425 +
        "mean": 77,
426 +
        "std": 18.3,
427 +
        "min": 47.6,
428 +
        "max": 99.9,
429 +
        "count": 8
430 +
      },
431 +
      "holdTime2": {
432 +
        "mean": 106.6,
433 +
        "std": 33.5,
434 +
        "min": 77.3,
435 +
        "max": 166.7,
436 +
        "count": 8
437 +
      },
438 +
      "pressPress": {
439 +
        "mean": 133.3,
440 +
        "std": 58.2,
441 +
        "min": 36.9,
442 +
        "max": 208.9,
443 +
        "count": 8
444 +
      },
445 +
      "releaseRelease": {
446 +
        "mean": 162.8,
447 +
        "std": 59.8,
448 +
        "min": 75,
449 +
        "max": 233.3,
450 +
        "count": 8
451 +
      },
452 +
      "pressRelease": {
453 +
        "mean": 239.9,
454 +
        "std": 75.7,
455 +
        "min": 122.6,
456 +
        "max": 333.2,
457 +
        "count": 8
458 +
      },
459 +
      "releasePress": {
460 +
        "mean": 56.3,
461 +
        "std": 45.1,
462 +
        "min": -10.7,
463 +
        "max": 128.7,
464 +
        "count": 8
465 +
      }
466 +
    },
467 +
    {
468 +
      "normalizedKeys": "d → ␣",
469 +
      "count": 8,
470 +
      "holdTime1": {
471 +
        "mean": 99.2,
472 +
        "std": 11.7,
473 +
        "min": 86.2,
474 +
        "max": 118.4,
475 +
        "count": 8
476 +
      },
477 +
      "holdTime2": {
478 +
        "mean": 70.2,
479 +
        "std": 22.6,
480 +
        "min": 36.3,
481 +
        "max": 99.9,
482 +
        "count": 8
483 +
      },
484 +
      "pressPress": {
485 +
        "mean": 116.4,
486 +
        "std": 42.9,
487 +
        "min": 74.9,
488 +
        "max": 199,
489 +
        "count": 8
490 +
      },
491 +
      "releaseRelease": {
492 +
        "mean": 87.4,
493 +
        "std": 36.9,
494 +
        "min": 58.2,
495 +
        "max": 167.6,
496 +
        "count": 8
497 +
      },
498 +
      "pressRelease": {
499 +
        "mean": 186.6,
500 +
        "std": 42.1,
501 +
        "min": 152.6,
502 +
        "max": 277.3,
503 +
        "count": 8
504 +
      },
505 +
      "releasePress": {
506 +
        "mean": 17.2,
507 +
        "std": 37.4,
508 +
        "min": -33.2,
509 +
        "max": 89.3,
510 +
        "count": 8
511 +
      }
512 +
    },
513 +
    {
514 +
      "normalizedKeys": "␣ → a",
515 +
      "count": 8,
516 +
      "holdTime1": {
517 +
        "mean": 69.4,
518 +
        "std": 27,
519 +
        "min": 32.8,
520 +
        "max": 107,
521 +
        "count": 8
522 +
      },
523 +
      "holdTime2": {
524 +
        "mean": 162.9,
525 +
        "std": 35.3,
526 +
        "min": 121.5,
527 +
        "max": 209,
528 +
        "count": 8
529 +
      },
530 +
      "pressPress": {
531 +
        "mean": 75.1,
532 +
        "std": 76.6,
533 +
        "min": -111.4,
534 +
        "max": 116.7,
535 +
        "count": 8
536 +
      },
537 +
      "releaseRelease": {
538 +
        "mean": 168.6,
539 +
        "std": 52.9,
540 +
        "min": 43.5,
541 +
        "max": 205,
542 +
        "count": 8
543 +
      },
544 +
      "pressRelease": {
545 +
        "mean": 238,
546 +
        "std": 71.4,
547 +
        "min": 89.7,
548 +
        "max": 312,
549 +
        "count": 8
550 +
      },
551 +
      "releasePress": {
552 +
        "mean": 5.7,
553 +
        "std": 68.8,
554 +
        "min": -157.6,
555 +
        "max": 53.4,
556 +
        "count": 8
557 +
      }
558 +
    },
559 +
    {
560 +
      "normalizedKeys": "a → r",
561 +
      "count": 7,
562 +
      "holdTime1": {
563 +
        "mean": 167,
564 +
        "std": 46.7,
565 +
        "min": 88.6,
566 +
        "max": 233.4,
567 +
        "count": 7
568 +
      },
569 +
      "holdTime2": {
570 +
        "mean": 105.2,
571 +
        "std": 18.1,
572 +
        "min": 84.6,
573 +
        "max": 129.8,
574 +
        "count": 7
575 +
      },
576 +
      "pressPress": {
577 +
        "mean": 161.6,
578 +
        "std": 119.5,
579 +
        "min": 38.7,
580 +
        "max": 409.3,
581 +
        "count": 7
582 +
      },
583 +
      "releaseRelease": {
584 +
        "mean": 99.8,
585 +
        "std": 90,
586 +
        "min": 1.4,
587 +
        "max": 274.6,
588 +
        "count": 7
589 +
      },
590 +
      "pressRelease": {
591 +
        "mean": 266.8,
592 +
        "std": 118.5,
593 +
        "min": 140.4,
594 +
        "max": 508,
595 +
        "count": 7
596 +
      },
597 +
      "releasePress": {
598 +
        "mean": -5.4,
599 +
        "std": 90.4,
600 +
        "min": -83.2,
601 +
        "max": 175.9,
602 +
        "count": 7
603 +
      }
604 +
    },
605 +
    {
606 +
      "normalizedKeys": "h → a",
607 +
      "count": 7,
608 +
      "holdTime1": {
609 +
        "mean": 76.8,
610 +
        "std": 10,
611 +
        "min": 60,
612 +
        "max": 91.5,
613 +
        "count": 7
614 +
      },
615 +
      "holdTime2": {
616 +
        "mean": 143.6,
617 +
        "std": 38.7,
618 +
        "min": 88.6,
619 +
        "max": 207.9,
620 +
        "count": 7
621 +
      },
622 +
      "pressPress": {
623 +
        "mean": 84,
624 +
        "std": 49.6,
625 +
        "min": 15.5,
626 +
        "max": 133.4,
627 +
        "count": 7
628 +
      },
629 +
      "releaseRelease": {
630 +
        "mean": 150.8,
631 +
        "std": 60.7,
632 +
        "min": 58.2,
633 +
        "max": 217,
634 +
        "count": 7
635 +
      },
636 +
      "pressRelease": {
637 +
        "mean": 227.6,
638 +
        "std": 62.9,
639 +
        "min": 140.2,
640 +
        "max": 308.5,
641 +
        "count": 7
642 +
      },
643 +
      "releasePress": {
644 +
        "mean": 7.2,
645 +
        "std": 50.4,
646 +
        "min": -66.5,
647 +
        "max": 58.3,
648 +
        "count": 7
649 +
      }
650 +
    },
651 +
    {
652 +
      "normalizedKeys": "y → ␣",
653 +
      "count": 7,
654 +
      "holdTime1": {
655 +
        "mean": 63.1,
656 +
        "std": 10.1,
657 +
        "min": 52.9,
658 +
        "max": 78.6,
659 +
        "count": 7
660 +
      },
661 +
      "holdTime2": {
662 +
        "mean": 72.8,
663 +
        "std": 14.4,
664 +
        "min": 53.3,
665 +
        "max": 99.4,
666 +
        "count": 7
667 +
      },
668 +
      "pressPress": {
669 +
        "mean": 87.3,
670 +
        "std": 37.1,
671 +
        "min": 41.8,
672 +
        "max": 150.4,
673 +
        "count": 7
674 +
      },
675 +
      "releaseRelease": {
676 +
        "mean": 96.9,
677 +
        "std": 24.7,
678 +
        "min": 66.7,
679 +
        "max": 146.3,
680 +
        "count": 7
681 +
      },
682 +
      "pressRelease": {
683 +
        "mean": 160.1,
684 +
        "std": 33.2,
685 +
        "min": 119.6,
686 +
        "max": 224.9,
687 +
        "count": 7
688 +
      },
689 +
      "releasePress": {
690 +
        "mean": 24.2,
691 +
        "std": 30.2,
692 +
        "min": -13.1,
693 +
        "max": 71.8,
694 +
        "count": 7
695 +
      }
696 +
    },
697 +
    {
698 +
      "normalizedKeys": "␣ → l",
699 +
      "count": 7,
700 +
      "holdTime1": {
701 +
        "mean": 77.9,
702 +
        "std": 25.3,
703 +
        "min": 41.3,
704 +
        "max": 107.5,
705 +
        "count": 7
706 +
      },
707 +
      "holdTime2": {
708 +
        "mean": 101.1,
709 +
        "std": 16.7,
710 +
        "min": 83.2,
711 +
        "max": 125.4,
712 +
        "count": 7
713 +
      },
714 +
      "pressPress": {
715 +
        "mean": 159.6,
716 +
        "std": 100.9,
717 +
        "min": 41.6,
718 +
        "max": 325.5,
719 +
        "count": 7
720 +
      },
721 +
      "releaseRelease": {
722 +
        "mean": 182.7,
723 +
        "std": 115.5,
724 +
        "min": 80.9,
725 +
        "max": 393.9,
726 +
        "count": 7
727 +
      },
728 +
      "pressRelease": {
729 +
        "mean": 260.7,
730 +
        "std": 106.8,
731 +
        "min": 158.8,
732 +
        "max": 443.8,
733 +
        "count": 7
734 +
      },
735 +
      "releasePress": {
736 +
        "mean": 81.6,
737 +
        "std": 110,
738 +
        "min": -44.5,
739 +
        "max": 275.6,
740 +
        "count": 7
741 +
      }
742 +
    },
743 +
    {
744 +
      "normalizedKeys": "n → ␣",
745 +
      "count": 7,
746 +
      "holdTime1": {
747 +
        "mean": 110.6,
748 +
        "std": 24.2,
749 +
        "min": 74.7,
750 +
        "max": 144.4,
751 +
        "count": 7
752 +
      },
753 +
      "holdTime2": {
754 +
        "mean": 65.9,
755 +
        "std": 24,
756 +
        "min": 32.8,
757 +
        "max": 98.1,
758 +
        "count": 7
759 +
      },
760 +
      "pressPress": {
761 +
        "mean": 202.8,
762 +
        "std": 199.6,
763 +
        "min": 53.4,
764 +
        "max": 648.4,
765 +
        "count": 7
766 +
      },
767 +
      "releaseRelease": {
768 +
        "mean": 158.2,
769 +
        "std": 183.9,
770 +
        "min": 50.2,
771 +
        "max": 565.3,
772 +
        "count": 7
773 +
      },
774 +
      "pressRelease": {
775 +
        "mean": 268.7,
776 +
        "std": 184.7,
777 +
        "min": 140.4,
778 +
        "max": 681.2,
779 +
        "count": 7
780 +
      },
781 +
      "releasePress": {
782 +
        "mean": 92.2,
783 +
        "std": 197.1,
784 +
        "min": -33,
785 +
        "max": 532.5,
786 +
        "count": 7
787 +
      }
788 +
    },
789 +
    {
790 +
      "normalizedKeys": "a → t",
791 +
      "count": 7,
792 +
      "holdTime1": {
793 +
        "mean": 153.6,
794 +
        "std": 30.2,
795 +
        "min": 124.7,
796 +
        "max": 207.9,
797 +
        "count": 7
798 +
      },
799 +
      "holdTime2": {
800 +
        "mean": 88.1,
801 +
        "std": 15.1,
802 +
        "min": 71.9,
803 +
        "max": 108.2,
804 +
        "count": 7
805 +
      },
806 +
      "pressPress": {
807 +
        "mean": 131.5,
808 +
        "std": 38.1,
809 +
        "min": 91.5,
810 +
        "max": 202.9,
811 +
        "count": 7
812 +
      },
813 +
      "releaseRelease": {
814 +
        "mean": 66,
815 +
        "std": 25,
816 +
        "min": 41.8,
817 +
        "max": 116.4,
818 +
        "count": 7
819 +
      },
820 +
      "pressRelease": {
821 +
        "mean": 219.6,
822 +
        "std": 33.9,
823 +
        "min": 174.8,
824 +
        "max": 274.8,
825 +
        "count": 7
826 +
      },
827 +
      "releasePress": {
828 +
        "mean": -22.1,
829 +
        "std": 34.7,
830 +
        "min": -66.4,
831 +
        "max": 44.5,
832 +
        "count": 7
833 +
      }
834 +
    },
835 +
    {
836 +
      "normalizedKeys": "n → g",
837 +
      "count": 7,
838 +
      "holdTime1": {
839 +
        "mean": 101.2,
840 +
        "std": 24.9,
841 +
        "min": 67.7,
842 +
        "max": 133.1,
843 +
        "count": 7
844 +
      },
845 +
      "holdTime2": {
846 +
        "mean": 58.4,
847 +
        "std": 14.5,
848 +
        "min": 39,
849 +
        "max": 74.8,
850 +
        "count": 7
851 +
      },
852 +
      "pressPress": {
853 +
        "mean": 105.1,
854 +
        "std": 21.7,
855 +
        "min": 74.9,
856 +
        "max": 127.3,
857 +
        "count": 7
858 +
      },
859 +
      "releaseRelease": {
860 +
        "mean": 62.3,
861 +
        "std": 28,
862 +
        "min": 19.7,
863 +
        "max": 108.2,
864 +
        "count": 7
865 +
      },
866 +
      "pressRelease": {
867 +
        "mean": 163.5,
868 +
        "std": 18.3,
869 +
        "min": 136.1,
870 +
        "max": 183.3,
871 +
        "count": 7
872 +
      },
873 +
      "releasePress": {
874 +
        "mean": 3.9,
875 +
        "std": 31.3,
876 +
        "min": -41.5,
877 +
        "max": 43.4,
878 +
        "count": 7
879 +
      }
880 +
    },
881 +
    {
882 +
      "normalizedKeys": ". → ␣",
883 +
      "count": 6,
884 +
      "holdTime1": {
885 +
        "mean": 95.1,
886 +
        "std": 7,
887 +
        "min": 82.7,
888 +
        "max": 100,
889 +
        "count": 6
890 +
      },
891 +
      "holdTime2": {
892 +
        "mean": 81.1,
893 +
        "std": 20.6,
894 +
        "min": 54.6,
895 +
        "max": 108.1,
896 +
        "count": 6
897 +
      },
898 +
      "pressPress": {
899 +
        "mean": 137,
900 +
        "std": 31.3,
901 +
        "min": 91.9,
902 +
        "max": 174.9,
903 +
        "count": 6
904 +
      },
905 +
      "releaseRelease": {
906 +
        "mean": 123,
907 +
        "std": 34.7,
908 +
        "min": 88.7,
909 +
        "max": 166.6,
910 +
        "count": 6
911 +
      },
912 +
      "pressRelease": {
913 +
        "mean": 218.1,
914 +
        "std": 36.7,
915 +
        "min": 188.1,
916 +
        "max": 266.6,
917 +
        "count": 6
918 +
      },
919 +
      "releasePress": {
920 +
        "mean": 41.9,
921 +
        "std": 30.2,
922 +
        "min": -7.5,
923 +
        "max": 76.7,
924 +
        "count": 6
925 +
      }
926 +
    },
927 +
    {
928 +
      "normalizedKeys": "w → h",
929 +
      "count": 6,
930 +
      "holdTime1": {
931 +
        "mean": 115.8,
932 +
        "std": 22,
933 +
        "min": 90.3,
934 +
        "max": 156.3,
935 +
        "count": 6
936 +
      },
937 +
      "holdTime2": {
938 +
        "mean": 85.3,
939 +
        "std": 21.8,
940 +
        "min": 60,
941 +
        "max": 115.3,
942 +
        "count": 6
943 +
      },
944 +
      "pressPress": {
945 +
        "mean": 126.8,
946 +
        "std": 78.4,
947 +
        "min": 58.4,
948 +
        "max": 269.8,
949 +
        "count": 6
950 +
      },
951 +
      "releaseRelease": {
952 +
        "mean": 96.2,
953 +
        "std": 81.1,
954 +
        "min": 49.9,
955 +
        "max": 258.7,
956 +
        "count": 6
957 +
      },
958 +
      "pressRelease": {
959 +
        "mean": 212.1,
960 +
        "std": 79.5,
961 +
        "min": 148.7,
962 +
        "max": 366.7,
963 +
        "count": 6
964 +
      },
965 +
      "releasePress": {
966 +
        "mean": 11,
967 +
        "std": 78.2,
968 +
        "min": -49.7,
969 +
        "max": 161.8,
970 +
        "count": 6
971 +
      }
972 +
    },
973 +
    {
974 +
      "normalizedKeys": "l → e",
975 +
      "count": 6,
976 +
      "holdTime1": {
977 +
        "mean": 97.1,
978 +
        "std": 15.5,
979 +
        "min": 76,
980 +
        "max": 118.3,
981 +
        "count": 6
982 +
      },
983 +
      "holdTime2": {
984 +
        "mean": 82.5,
985 +
        "std": 19.7,
986 +
        "min": 61.9,
987 +
        "max": 107.9,
988 +
        "count": 6
989 +
      },
990 +
      "pressPress": {
991 +
        "mean": 154.4,
992 +
        "std": 53.5,
993 +
        "min": 101.8,
994 +
        "max": 247.1,
995 +
        "count": 6
996 +
      },
997 +
      "releaseRelease": {
998 +
        "mean": 139.8,
999 +
        "std": 53.1,
1000 +
        "min": 108.1,
1001 +
        "max": 246.7,
1002 +
        "count": 6
1003 +
      },
1004 +
      "pressRelease": {
1005 +
        "mean": 236.9,
1006 +
        "std": 60.8,
1007 +
        "min": 195.3,
1008 +
        "max": 355,
1009 +
        "count": 6
1010 +
      },
1011 +
      "releasePress": {
1012 +
        "mean": 57.3,
1013 +
        "std": 43.6,
1014 +
        "min": 18,
1015 +
        "max": 138.8,
1016 +
        "count": 6
1017 +
      }
1018 +
    },
1019 +
    {
1020 +
      "normalizedKeys": ", → ␣",
1021 +
      "count": 6,
1022 +
      "holdTime1": {
1023 +
        "mean": 95.9,
1024 +
        "std": 7.9,
1025 +
        "min": 87.8,
1026 +
        "max": 108.6,
1027 +
        "count": 6
1028 +
      },
1029 +
      "holdTime2": {
1030 +
        "mean": 70.9,
1031 +
        "std": 11.1,
1032 +
        "min": 60.8,
1033 +
        "max": 91.6,
1034 +
        "count": 6
1035 +
      },
1036 +
      "pressPress": {
1037 +
        "mean": 139.9,
1038 +
        "std": 21.8,
1039 +
        "min": 108.2,
1040 +
        "max": 172.4,
1041 +
        "count": 6
1042 +
      },
1043 +
      "releaseRelease": {
1044 +
        "mean": 114.9,
1045 +
        "std": 23.5,
1046 +
        "min": 89.4,
1047 +
        "max": 149.6,
1048 +
        "count": 6
1049 +
      },
1050 +
      "pressRelease": {
1051 +
        "mean": 210.8,
1052 +
        "std": 17.6,
1053 +
        "min": 191,
1054 +
        "max": 238.9,
1055 +
        "count": 6
1056 +
      },
1057 +
      "releasePress": {
1058 +
        "mean": 44,
1059 +
        "std": 28.4,
1060 +
        "min": -0.4,
1061 +
        "max": 83.1,
1062 +
        "count": 6
1063 +
      }
1064 +
    },
1065 +
    {
1066 +
      "normalizedKeys": "h → e",
1067 +
      "count": 6,
1068 +
      "holdTime1": {
1069 +
        "mean": 73.6,
1070 +
        "std": 8,
1071 +
        "min": 66.4,
1072 +
        "max": 87.8,
1073 +
        "count": 6
1074 +
      },
1075 +
      "holdTime2": {
1076 +
        "mean": 75.6,
1077 +
        "std": 30.9,
1078 +
        "min": 36,
1079 +
        "max": 119.9,
1080 +
        "count": 6
1081 +
      },
1082 +
      "pressPress": {
1083 +
        "mean": 115.7,
1084 +
        "std": 32.4,
1085 +
        "min": 58.5,
1086 +
        "max": 146.8,
1087 +
        "count": 6
1088 +
      },
1089 +
      "releaseRelease": {
1090 +
        "mean": 117.7,
1091 +
        "std": 40.2,
1092 +
        "min": 87.1,
1093 +
        "max": 195.9,
1094 +
        "count": 6
1095 +
      },
1096 +
      "pressRelease": {
1097 +
        "mean": 191.3,
1098 +
        "std": 38.5,
1099 +
        "min": 157.8,
1100 +
        "max": 266.7,
1101 +
        "count": 6
1102 +
      },
1103 +
      "releasePress": {
1104 +
        "mean": 42.1,
1105 +
        "std": 28.3,
1106 +
        "min": -7.9,
1107 +
        "max": 76,
1108 +
        "count": 6
1109 +
      }
1110 +
    },
1111 +
    {
1112 +
      "normalizedKeys": "e → r",
1113 +
      "count": 6,
1114 +
      "holdTime1": {
1115 +
        "mean": 142.1,
1116 +
        "std": 43,
1117 +
        "min": 116.5,
1118 +
        "max": 229.1,
1119 +
        "count": 6
1120 +
      },
1121 +
      "holdTime2": {
1122 +
        "mean": 119.3,
1123 +
        "std": 10.3,
1124 +
        "min": 108.1,
1125 +
        "max": 132.1,
1126 +
        "count": 6
1127 +
      },
1128 +
      "pressPress": {
1129 +
        "mean": 87.2,
1130 +
        "std": 46.8,
1131 +
        "min": 51.2,
1132 +
        "max": 179,
1133 +
        "count": 6
1134 +
      },
1135 +
      "releaseRelease": {
1136 +
        "mean": 64.3,
1137 +
        "std": 10.2,
1138 +
        "min": 51.8,
1139 +
        "max": 80.1,
1140 +
        "count": 6
1141 +
      },
1142 +
      "pressRelease": {
1143 +
        "mean": 206.5,
1144 +
        "std": 47.3,
1145 +
        "min": 172.4,
1146 +
        "max": 299.8,
1147 +
        "count": 6
1148 +
      },
1149 +
      "releasePress": {
1150 +
        "mean": -55,
1151 +
        "std": 12,
1152 +
        "min": -73.8,
1153 +
        "max": -41.3,
1154 +
        "count": 6
1155 +
      }
1156 +
    },
1157 +
    {
1158 +
      "normalizedKeys": "i → s",
1159 +
      "count": 5,
1160 +
      "holdTime1": {
1161 +
        "mean": 91.5,
1162 +
        "std": 15.4,
1163 +
        "min": 74.9,
1164 +
        "max": 116.5,
1165 +
        "count": 5
1166 +
      },
1167 +
      "holdTime2": {
1168 +
        "mean": 119.8,
1169 +
        "std": 28.5,
1170 +
        "min": 72.2,
1171 +
        "max": 144.4,
1172 +
        "count": 5
1173 +
      },
1174 +
      "pressPress": {
1175 +
        "mean": 112.3,
1176 +
        "std": 63.8,
1177 +
        "min": 0.2,
1178 +
        "max": 160.4,
1179 +
        "count": 5
1180 +
      },
1181 +
      "releaseRelease": {
1182 +
        "mean": 140.6,
1183 +
        "std": 60,
1184 +
        "min": 55,
1185 +
        "max": 217.1,
1186 +
        "count": 5
1187 +
      },
1188 +
      "pressRelease": {
1189 +
        "mean": 232.1,
1190 +
        "std": 57.8,
1191 +
        "min": 144.6,
1192 +
        "max": 292,
1193 +
        "count": 5
1194 +
      },
1195 +
      "releasePress": {
1196 +
        "mean": 20.8,
1197 +
        "std": 66.3,
1198 +
        "min": -89.4,
1199 +
        "max": 85.5,
1200 +
        "count": 5
1201 +
      }
1202 +
    },
1203 +
    {
1204 +
      "normalizedKeys": "h → i",
1205 +
      "count": 5,
1206 +
      "holdTime1": {
1207 +
        "mean": 88.6,
1208 +
        "std": 18.5,
1209 +
        "min": 58.6,
1210 +
        "max": 108.3,
1211 +
        "count": 5
1212 +
      },
1213 +
      "holdTime2": {
1214 +
        "mean": 114.8,
1215 +
        "std": 36.7,
1216 +
        "min": 89.2,
1217 +
        "max": 177.4,
1218 +
        "count": 5
1219 +
      },
1220 +
      "pressPress": {
1221 +
        "mean": 127.5,
1222 +
        "std": 57.5,
1223 +
        "min": 66.8,
1224 +
        "max": 213.5,
1225 +
        "count": 5
1226 +
      },
1227 +
      "releaseRelease": {
1228 +
        "mean": 153.7,
1229 +
        "std": 50.8,
1230 +
        "min": 75,
1231 +
        "max": 205.8,
1232 +
        "count": 5
1233 +
      },
1234 +
      "pressRelease": {
1235 +
        "mean": 242.3,
1236 +
        "std": 51.6,
1237 +
        "min": 183.3,
1238 +
        "max": 302.7,
1239 +
        "count": 5
1240 +
      },
1241 +
      "releasePress": {
1242 +
        "mean": 38.9,
1243 +
        "std": 60.1,
1244 +
        "min": -41.5,
1245 +
        "max": 116.6,
1246 +
        "count": 5
1247 +
      }
1248 +
    },
1249 +
    {
1250 +
      "normalizedKeys": "y → o",
1251 +
      "count": 5,
1252 +
      "holdTime1": {
1253 +
        "mean": 92,
1254 +
        "std": 10,
1255 +
        "min": 74.9,
1256 +
        "max": 99.8,
1257 +
        "count": 5
1258 +
      },
1259 +
      "holdTime2": {
1260 +
        "mean": 111.3,
1261 +
        "std": 23.1,
1262 +
        "min": 77.2,
1263 +
        "max": 141.4,
1264 +
        "count": 5
1265 +
      },
1266 +
      "pressPress": {
1267 +
        "mean": 101.7,
1268 +
        "std": 34.5,
1269 +
        "min": 58.6,
1270 +
        "max": 145.5,
1271 +
        "count": 5
1272 +
      },
1273 +
      "releaseRelease": {
1274 +
        "mean": 121,
1275 +
        "std": 30.5,
1276 +
        "min": 91.6,
1277 +
        "max": 166.7,
1278 +
        "count": 5
1279 +
      },
1280 +
      "pressRelease": {
1281 +
        "mean": 212.9,
1282 +
        "std": 37.4,
1283 +
        "min": 166.5,
1284 +
        "max": 266.5,
1285 +
        "count": 5
1286 +
      },
1287 +
      "releasePress": {
1288 +
        "mean": 9.7,
1289 +
        "std": 28.3,
1290 +
        "min": -16.5,
1291 +
        "max": 49.5,
1292 +
        "count": 5
1293 +
      }
1294 +
    },
1295 +
    {
1296 +
      "normalizedKeys": "␣ → y",
1297 +
      "count": 5,
1298 +
      "holdTime1": {
1299 +
        "mean": 54.1,
1300 +
        "std": 15.6,
1301 +
        "min": 33.1,
1302 +
        "max": 70.5,
1303 +
        "count": 5
1304 +
      },
1305 +
      "holdTime2": {
1306 +
        "mean": 92,
1307 +
        "std": 10,
1308 +
        "min": 74.9,
1309 +
        "max": 99.8,
1310 +
        "count": 5
1311 +
      },
1312 +
      "pressPress": {
1313 +
        "mean": 151.7,
1314 +
        "std": 38.5,
1315 +
        "min": 116.8,
1316 +
        "max": 214.5,
1317 +
        "count": 5
1318 +
      },
1319 +
      "releaseRelease": {
1320 +
        "mean": 189.7,
1321 +
        "std": 30.7,
1322 +
        "min": 158.5,
1323 +
        "max": 240,
1324 +
        "count": 5
1325 +
      },
1326 +
      "pressRelease": {
1327 +
        "mean": 243.7,
1328 +
        "std": 41.1,
1329 +
        "min": 216.6,
1330 +
        "max": 310.5,
1331 +
        "count": 5
1332 +
      },
1333 +
      "releasePress": {
1334 +
        "mean": 97.7,
1335 +
        "std": 26.3,
1336 +
        "min": 83.5,
1337 +
        "max": 144,
1338 +
        "count": 5
1339 +
      }
1340 +
    },
1341 +
    {
1342 +
      "normalizedKeys": "␣ → s",
1343 +
      "count": 5,
1344 +
      "holdTime1": {
1345 +
        "mean": 74.5,
1346 +
        "std": 17.1,
1347 +
        "min": 53.3,
1348 +
        "max": 99.8,
1349 +
        "count": 5
1350 +
      },
1351 +
      "holdTime2": {
1352 +
        "mean": 81.1,
1353 +
        "std": 15.5,
1354 +
        "min": 64.3,
1355 +
        "max": 99.9,
1356 +
        "count": 5
1357 +
      },
1358 +
      "pressPress": {
1359 +
        "mean": 150.1,
1360 +
        "std": 55.6,
1361 +
        "min": 88.2,
1362 +
        "max": 217.1,
1363 +
        "count": 5
1364 +
      },
1365 +
      "releaseRelease": {
1366 +
        "mean": 156.7,
1367 +
        "std": 53.5,
1368 +
        "min": 101.4,
1369 +
        "max": 221.8,
1370 +
        "count": 5
1371 +
      },
1372 +
      "pressRelease": {
1373 +
        "mean": 231.1,
1374 +
        "std": 66.7,
1375 +
        "min": 154.7,
1376 +
        "max": 300.3,
1377 +
        "count": 5
1378 +
      },
1379 +
      "releasePress": {
1380 +
        "mean": 75.6,
1381 +
        "std": 41.1,
1382 +
        "min": 34.9,
1383 +
        "max": 121.9,
1384 +
        "count": 5
1385 +
      }
1386 +
    },
1387 +
    {
1388 +
      "normalizedKeys": "␣ → b",
1389 +
      "count": 5,
1390 +
      "holdTime1": {
1391 +
        "mean": 77.5,
1392 +
        "std": 28.5,
1393 +
        "min": 36.3,
1394 +
        "max": 107.1,
1395 +
        "count": 5
1396 +
      },
1397 +
      "holdTime2": {
1398 +
        "mean": 72.8,
1399 +
        "std": 11.2,
1400 +
        "min": 64.7,
1401 +
        "max": 91.5,
1402 +
        "count": 5
1403 +
      },
1404 +
      "pressPress": {
1405 +
        "mean": 154.7,
1406 +
        "std": 101.9,
1407 +
        "min": 19.9,
1408 +
        "max": 299.1,
1409 +
        "count": 5
1410 +
      },
1411 +
      "releaseRelease": {
1412 +
        "mean": 150,
1413 +
        "std": 71,
1414 +
        "min": 75.1,
1415 +
        "max": 258.5,
1416 +
        "count": 5
1417 +
      },
1418 +
      "pressRelease": {
1419 +
        "mean": 227.5,
1420 +
        "std": 93.6,
1421 +
        "min": 111.4,
1422 +
        "max": 365.6,
1423 +
        "count": 5
1424 +
      },
1425 +
      "releasePress": {
1426 +
        "mean": 77.2,
1427 +
        "std": 77.8,
1428 +
        "min": -16.4,
1429 +
        "max": 192,
1430 +
        "count": 5
1431 +
      }
1432 +
    },
1433 +
    {
1434 +
      "normalizedKeys": "l → ␣",
1435 +
      "count": 5,
1436 +
      "holdTime1": {
1437 +
        "mean": 93,
1438 +
        "std": 26.6,
1439 +
        "min": 68.4,
1440 +
        "max": 137.8,
1441 +
        "count": 5
1442 +
      },
1443 +
      "holdTime2": {
1444 +
        "mean": 66.9,
1445 +
        "std": 24.8,
1446 +
        "min": 33.9,
1447 +
        "max": 99.7,
1448 +
        "count": 5
1449 +
      },
1450 +
      "pressPress": {
1451 +
        "mean": 119.9,
1452 +
        "std": 8.3,
1453 +
        "min": 113.5,
1454 +
        "max": 133.9,
1455 +
        "count": 5
1456 +
      },
1457 +
      "releaseRelease": {
1458 +
        "mean": 93.8,
1459 +
        "std": 25.4,
1460 +
        "min": 58.3,
1461 +
        "max": 124,
1462 +
        "count": 5
1463 +
      },
1464 +
      "pressRelease": {
1465 +
        "mean": 186.8,
1466 +
        "std": 20.6,
1467 +
        "min": 166.5,
1468 +
        "max": 215.8,
1469 +
        "count": 5
1470 +
      },
1471 +
      "releasePress": {
1472 +
        "mean": 26.9,
1473 +
        "std": 25.9,
1474 +
        "min": -16.6,
1475 +
        "max": 46.4,
1476 +
        "count": 5
1477 +
      }
1478 +
    },
1479 +
    {
1480 +
      "normalizedKeys": "v → e",
1481 +
      "count": 5,
1482 +
      "holdTime1": {
1483 +
        "mean": 57.2,
1484 +
        "std": 11,
1485 +
        "min": 43.7,
1486 +
        "max": 68.9,
1487 +
        "count": 5
1488 +
      },
1489 +
      "holdTime2": {
1490 +
        "mean": 104.8,
1491 +
        "std": 22.1,
1492 +
        "min": 78.9,
1493 +
        "max": 125,
1494 +
        "count": 5
1495 +
      },
1496 +
      "pressPress": {
1497 +
        "mean": 156.2,
1498 +
        "std": 12.5,
1499 +
        "min": 139.5,
1500 +
        "max": 172.1,
1501 +
        "count": 5
1502 +
      },
1503 +
      "releaseRelease": {
1504 +
        "mean": 203.8,
1505 +
        "std": 21.9,
1506 +
        "min": 174.4,
1507 +
        "max": 220.9,
1508 +
        "count": 5
1509 +
      },
1510 +
      "pressRelease": {
1511 +
        "mean": 261,
1512 +
        "std": 13.3,
1513 +
        "min": 241,
1514 +
        "max": 274.8,
1515 +
        "count": 5
1516 +
      },
1517 +
      "releasePress": {
1518 +
        "mean": 99,
1519 +
        "std": 3.3,
1520 +
        "min": 95.5,
1521 +
        "max": 103.2,
1522 +
        "count": 5
1523 +
      }
1524 +
    },
1525 +
    {
1526 +
      "normalizedKeys": "g → ␣",
1527 +
      "count": 5,
1528 +
      "holdTime1": {
1529 +
        "mean": 54.7,
1530 +
        "std": 15.2,
1531 +
        "min": 39,
1532 +
        "max": 74.8,
1533 +
        "count": 5
1534 +
      },
1535 +
      "holdTime2": {
1536 +
        "mean": 64.1,
1537 +
        "std": 18,
1538 +
        "min": 43.2,
1539 +
        "max": 91.5,
1540 +
        "count": 5
1541 +
      },
1542 +
      "pressPress": {
1543 +
        "mean": 83.9,
1544 +
        "std": 15.2,
1545 +
        "min": 59.4,
1546 +
        "max": 98.8,
1547 +
        "count": 5
1548 +
      },
1549 +
      "releaseRelease": {
1550 +
        "mean": 93.4,
1551 +
        "std": 13.6,
1552 +
        "min": 75.1,
1553 +
        "max": 108.3,
1554 +
        "count": 5
1555 +
      },
1556 +
      "pressRelease": {
1557 +
        "mean": 148,
1558 +
        "std": 28.6,
1559 +
        "min": 114.1,
1560 +
        "max": 183.1,
1561 +
        "count": 5
1562 +
      },
1563 +
      "releasePress": {
1564 +
        "mean": 29.2,
1565 +
        "std": 10.3,
1566 +
        "min": 16.8,
1567 +
        "max": 40.2,
1568 +
        "count": 5
1569 +
      }
1570 +
    },
1571 +
    {
1572 +
      "normalizedKeys": "o → n",
1573 +
      "count": 5,
1574 +
      "holdTime1": {
1575 +
        "mean": 80.7,
1576 +
        "std": 27.9,
1577 +
        "min": 37.6,
1578 +
        "max": 114.1,
1579 +
        "count": 5
1580 +
      },
1581 +
      "holdTime2": {
1582 +
        "mean": 81.1,
1583 +
        "std": 36.9,
1584 +
        "min": 19.2,
1585 +
        "max": 115.9,
1586 +
        "count": 5
1587 +
      },
1588 +
      "pressPress": {
1589 +
        "mean": 174.9,
1590 +
        "std": 38.9,
1591 +
        "min": 118.6,
1592 +
        "max": 213.8,
1593 +
        "count": 5
1594 +
      },
1595 +
      "releaseRelease": {
1596 +
        "mean": 175.3,
1597 +
        "std": 20.6,
1598 +
        "min": 155.6,
1599 +
        "max": 209.9,
1600 +
        "count": 5
1601 +
      },
1602 +
      "pressRelease": {
1603 +
        "mean": 256,
1604 +
        "std": 43.6,
1605 +
        "min": 206.6,
1606 +
        "max": 324,
1607 +
        "count": 5
1608 +
      },
1609 +
      "releasePress": {
1610 +
        "mean": 94.2,
1611 +
        "std": 24.6,
1612 +
        "min": 75.2,
1613 +
        "max": 136.4,
1614 +
        "count": 5
1615 +
      }
1616 +
    },
1617 +
    {
1618 +
      "normalizedKeys": "␣ → j",
1619 +
      "count": 5,
1620 +
      "holdTime1": {
1621 +
        "mean": 84.2,
1622 +
        "std": 15.8,
1623 +
        "min": 58.2,
1624 +
        "max": 98.1,
1625 +
        "count": 5
1626 +
      },
1627 +
      "holdTime2": {
1628 +
        "mean": 93.8,
1629 +
        "std": 12.9,
1630 +
        "min": 81.5,
1631 +
        "max": 112.9,
1632 +
        "count": 5
1633 +
      },
1634 +
      "pressPress": {
1635 +
        "mean": 304.3,
1636 +
        "std": 264.3,
1637 +
        "min": 72.4,
1638 +
        "max": 724.8,
1639 +
        "count": 5
1640 +
      },
1641 +
      "releaseRelease": {
1642 +
        "mean": 314,
1643 +
        "std": 262,
1644 +
        "min": 79.9,
1645 +
        "max": 725.4,
1646 +
        "count": 5
1647 +
      },
1648 +
      "pressRelease": {
1649 +
        "mean": 398.2,
1650 +
        "std": 261.2,
1651 +
        "min": 172.3,
1652 +
        "max": 806.3,
1653 +
        "count": 5
1654 +
      },
1655 +
      "releasePress": {
1656 +
        "mean": 220.2,
1657 +
        "std": 265.6,
1658 +
        "min": -20,
1659 +
        "max": 643.9,
1660 +
        "count": 5
1661 +
      }
1662 +
    },
1663 +
    {
1664 +
      "normalizedKeys": "r → o",
1665 +
      "count": 5,
1666 +
      "holdTime1": {
1667 +
        "mean": 94,
1668 +
        "std": 23.4,
1669 +
        "min": 68.9,
1670 +
        "max": 129.8,
1671 +
        "count": 5
1672 +
      },
1673 +
      "holdTime2": {
1674 +
        "mean": 105.6,
1675 +
        "std": 37.7,
1676 +
        "min": 77.4,
1677 +
        "max": 169.7,
1678 +
        "count": 5
1679 +
      },
1680 +
      "pressPress": {
1681 +
        "mean": 157.9,
1682 +
        "std": 82.4,
1683 +
        "min": 96.3,
1684 +
        "max": 294.2,
1685 +
        "count": 5
1686 +
      },
1687 +
      "releaseRelease": {
1688 +
        "mean": 169.4,
1689 +
        "std": 108.9,
1690 +
        "min": 103.2,
1691 +
        "max": 361.7,
1692 +
        "count": 5
1693 +
      },
1694 +
      "pressRelease": {
1695 +
        "mean": 263.5,
1696 +
        "std": 116.3,
1697 +
        "min": 181.1,
1698 +
        "max": 463.9,
1699 +
        "count": 5
1700 +
      },
1701 +
      "releasePress": {
1702 +
        "mean": 63.8,
1703 +
        "std": 72.5,
1704 +
        "min": 15.5,
1705 +
        "max": 192,
1706 +
        "count": 5
1707 +
      }
1708 +
    },
1709 +
    {
1710 +
      "normalizedKeys": "␣ → h",
1711 +
      "count": 4,
1712 +
      "holdTime1": {
1713 +
        "mean": 84,
1714 +
        "std": 24,
1715 +
        "min": 54.6,
1716 +
        "max": 107.3,
1717 +
        "count": 4
1718 +
      },
1719 +
      "holdTime2": {
1720 +
        "mean": 75.8,
1721 +
        "std": 8.8,
1722 +
        "min": 66.4,
1723 +
        "max": 87.7,
1724 +
        "count": 4
1725 +
      },
1726 +
      "pressPress": {
1727 +
        "mean": 168.9,
1728 +
        "std": 90.9,
1729 +
        "min": 58.3,
1730 +
        "max": 281,
1731 +
        "count": 4
1732 +
      },
1733 +
      "releaseRelease": {
1734 +
        "mean": 160.8,
1735 +
        "std": 104.2,
1736 +
        "min": 50,
1737 +
        "max": 300.8,
1738 +
        "count": 4
1739 +
      },
1740 +
      "pressRelease": {
1741 +
        "mean": 244.7,
1742 +
        "std": 94.6,
1743 +
        "min": 124.7,
1744 +
        "max": 355.4,
1745 +
        "count": 4
1746 +
      },
1747 +
      "releasePress": {
1748 +
        "mean": 84.9,
1749 +
        "std": 101.9,
1750 +
        "min": -16.4,
1751 +
        "max": 226.4,
1752 +
        "count": 4
1753 +
      }
1754 +
    },
1755 +
    {
1756 +
      "normalizedKeys": "␣ → m",
1757 +
      "count": 4,
1758 +
      "holdTime1": {
1759 +
        "mean": 82.8,
1760 +
        "std": 27.2,
1761 +
        "min": 48.4,
1762 +
        "max": 112.5,
1763 +
        "count": 4
1764 +
      },
1765 +
      "holdTime2": {
1766 +
        "mean": 100.5,
1767 +
        "std": 24.4,
1768 +
        "min": 79.3,
1769 +
        "max": 135.7,
1770 +
        "count": 4
1771 +
      },
1772 +
      "pressPress": {
1773 +
        "mean": 116.2,
1774 +
        "std": 106.1,
1775 +
        "min": 0.2,
1776 +
        "max": 241.7,
1777 +
        "count": 4
1778 +
      },
1779 +
      "releaseRelease": {
1780 +
        "mean": 134,
1781 +
        "std": 79.4,
1782 +
        "min": 47.2,
1783 +
        "max": 239.7,
1784 +
        "count": 4
1785 +
      },
1786 +
      "pressRelease": {
1787 +
        "mean": 216.7,
1788 +
        "std": 98.4,
1789 +
        "min": 95.6,
1790 +
        "max": 333.4,
1791 +
        "count": 4
1792 +
      },
1793 +
      "releasePress": {
1794 +
        "mean": 33.4,
1795 +
        "std": 85.7,
1796 +
        "min": -48.2,
1797 +
        "max": 148,
1798 +
        "count": 4
1799 +
      }
1800 +
    },
1801 +
    {
1802 +
      "normalizedKeys": "u → t",
1803 +
      "count": 4,
1804 +
      "holdTime1": {
1805 +
        "mean": 83.3,
1806 +
        "std": 17.1,
1807 +
        "min": 59.4,
1808 +
        "max": 98.3,
1809 +
        "count": 4
1810 +
      },
1811 +
      "holdTime2": {
1812 +
        "mean": 73.4,
1813 +
        "std": 22.8,
1814 +
        "min": 41.5,
1815 +
        "max": 94.5,
1816 +
        "count": 4
1817 +
      },
1818 +
      "pressPress": {
1819 +
        "mean": 119.2,
1820 +
        "std": 24.7,
1821 +
        "min": 91.9,
1822 +
        "max": 150,
1823 +
        "count": 4
1824 +
      },
1825 +
      "releaseRelease": {
1826 +
        "mean": 109.3,
1827 +
        "std": 33.4,
1828 +
        "min": 74.3,
1829 +
        "max": 150,
1830 +
        "count": 4
1831 +
      },
1832 +
      "pressRelease": {
1833 +
        "mean": 192.6,
1834 +
        "std": 39.9,
1835 +
        "min": 151,
1836 +
        "max": 233.1,
1837 +
        "count": 4
1838 +
      },
1839 +
      "releasePress": {
1840 +
        "mean": 35.9,
1841 +
        "std": 29.2,
1842 +
        "min": -0.3,
1843 +
        "max": 66.9,
1844 +
        "count": 4
1845 +
      }
1846 +
    },
1847 +
    {
1848 +
      "normalizedKeys": "e → d",
1849 +
      "count": 4,
1850 +
      "holdTime1": {
1851 +
        "mean": 73.7,
1852 +
        "std": 12,
1853 +
        "min": 66.6,
1854 +
        "max": 91.5,
1855 +
        "count": 4
1856 +
      },
1857 +
      "holdTime2": {
1858 +
        "mean": 108.4,
1859 +
        "std": 13.5,
1860 +
        "min": 91.5,
1861 +
        "max": 124.4,
1862 +
        "count": 4
1863 +
      },
1864 +
      "pressPress": {
1865 +
        "mean": 188.3,
1866 +
        "std": 18,
1867 +
        "min": 164.9,
1868 +
        "max": 204.3,
1869 +
        "count": 4
1870 +
      },
1871 +
      "releaseRelease": {
1872 +
        "mean": 223,
1873 +
        "std": 23.6,
1874 +
        "min": 189.7,
1875 +
        "max": 244.2,
1876 +
        "count": 4
1877 +
      },
1878 +
      "pressRelease": {
1879 +
        "mean": 296.7,
1880 +
        "std": 30.2,
1881 +
        "min": 256.4,
1882 +
        "max": 324.8,
1883 +
        "count": 4
1884 +
      },
1885 +
      "releasePress": {
1886 +
        "mean": 114.6,
1887 +
        "std": 15.3,
1888 +
        "min": 98.2,
1889 +
        "max": 134.5,
1890 +
        "count": 4
1891 +
      }
1892 +
    },
1893 +
    {
1894 +
      "normalizedKeys": "n → t",
1895 +
      "count": 4,
1896 +
      "holdTime1": {
1897 +
        "mean": 76.5,
1898 +
        "std": 39.3,
1899 +
        "min": 19.2,
1900 +
        "max": 104,
1901 +
        "count": 4
1902 +
      },
1903 +
      "holdTime2": {
1904 +
        "mean": 96.6,
1905 +
        "std": 18.1,
1906 +
        "min": 79.5,
1907 +
        "max": 116.4,
1908 +
        "count": 4
1909 +
      },
1910 +
      "pressPress": {
1911 +
        "mean": 246.5,
1912 +
        "std": 142.3,
1913 +
        "min": 124.2,
1914 +
        "max": 437.9,
1915 +
        "count": 4
1916 +
      },
1917 +
      "releaseRelease": {
1918 +
        "mean": 266.6,
1919 +
        "std": 163.3,
1920 +
        "min": 124.8,
1921 +
        "max": 450.3,
1922 +
        "count": 4
1923 +
      },
1924 +
      "pressRelease": {
1925 +
        "mean": 343,
1926 +
        "std": 159.4,
1927 +
        "min": 207.3,
1928 +
        "max": 554.3,
1929 +
        "count": 4
1930 +
      },
1931 +
      "releasePress": {
1932 +
        "mean": 170,
1933 +
        "std": 145.3,
1934 +
        "min": 41.7,
1935 +
        "max": 333.9,
1936 +
        "count": 4
1937 +
      }
1938 +
    },
1939 +
    {
1940 +
      "normalizedKeys": "u → n",
1941 +
      "count": 4,
1942 +
      "holdTime1": {
1943 +
        "mean": 78.2,
1944 +
        "std": 22.7,
1945 +
        "min": 55.6,
1946 +
        "max": 108.1,
1947 +
        "count": 4
1948 +
      },
1949 +
      "holdTime2": {
1950 +
        "mean": 98.9,
1951 +
        "std": 17.6,
1952 +
        "min": 74.7,
1953 +
        "max": 116.6,
1954 +
        "count": 4
1955 +
      },
1956 +
      "pressPress": {
1957 +
        "mean": 181.9,
1958 +
        "std": 40.9,
1959 +
        "min": 151.5,
1960 +
        "max": 241.7,
1961 +
        "count": 4
1962 +
      },
1963 +
      "releaseRelease": {
1964 +
        "mean": 202.6,
1965 +
        "std": 34.9,
1966 +
        "min": 166.5,
1967 +
        "max": 250.2,
1968 +
        "count": 4
1969 +
      },
1970 +
      "pressRelease": {
1971 +
        "mean": 280.8,
1972 +
        "std": 51.9,
1973 +
        "min": 248.6,
1974 +
        "max": 358.3,
1975 +
        "count": 4
1976 +
      },
1977 +
      "releasePress": {
1978 +
        "mean": 103.8,
1979 +
        "std": 20,
1980 +
        "min": 91.8,
1981 +
        "max": 133.6,
1982 +
        "count": 4
1983 +
      }
1984 +
    },
1985 +
    {
1986 +
      "normalizedKeys": "u → l",
1987 +
      "count": 4,
1988 +
      "holdTime1": {
1989 +
        "mean": 89.1,
1990 +
        "std": 7.3,
1991 +
        "min": 83.2,
1992 +
        "max": 99.8,
1993 +
        "count": 4
1994 +
      },
1995 +
      "holdTime2": {
1996 +
        "mean": 86.2,
1997 +
        "std": 16.8,
1998 +
        "min": 63,
1999 +
        "max": 103,
2000 +
        "count": 4
2001 +
      },
2002 +
      "pressPress": {
2003 +
        "mean": 199.8,
2004 +
        "std": 34,
2005 +
        "min": 158.3,
2006 +
        "max": 233.2,
2007 +
        "count": 4
2008 +
      },
2009 +
      "releaseRelease": {
2010 +
        "mean": 197,
2011 +
        "std": 30.6,
2012 +
        "min": 162.9,
2013 +
        "max": 236.4,
2014 +
        "count": 4
2015 +
      },
2016 +
      "pressRelease": {
2017 +
        "mean": 286.1,
2018 +
        "std": 36.4,
2019 +
        "min": 249.7,
2020 +
        "max": 336.2,
2021 +
        "count": 4
2022 +
      },
2023 +
      "releasePress": {
2024 +
        "mean": 110.8,
2025 +
        "std": 31.1,
2026 +
        "min": 71.5,
2027 +
        "max": 137.9,
2028 +
        "count": 4
2029 +
      }
2030 +
    },
2031 +
    {
2032 +
      "normalizedKeys": "r → ␣",
2033 +
      "count": 4,
2034 +
      "holdTime1": {
2035 +
        "mean": 90.7,
2036 +
        "std": 23.2,
2037 +
        "min": 62.7,
2038 +
        "max": 116.9,
2039 +
        "count": 4
2040 +
      },
2041 +
      "holdTime2": {
2042 +
        "mean": 72.1,
2043 +
        "std": 19.5,
2044 +
        "min": 47.6,
2045 +
        "max": 91.5,
2046 +
        "count": 4
2047 +
      },
2048 +
      "pressPress": {
2049 +
        "mean": 97,
2050 +
        "std": 14.1,
2051 +
        "min": 83.4,
2052 +
        "max": 116.5,
2053 +
        "count": 4
2054 +
      },
2055 +
      "releaseRelease": {
2056 +
        "mean": 78.4,
2057 +
        "std": 16.1,
2058 +
        "min": 65.6,
2059 +
        "max": 100.1,
2060 +
        "count": 4
2061 +
      },
2062 +
      "pressRelease": {
2063 +
        "mean": 169.1,
2064 +
        "std": 18.4,
2065 +
        "min": 143.9,
2066 +
        "max": 183.2,
2067 +
        "count": 4
2068 +
      },
2069 +
      "releasePress": {
2070 +
        "mean": 6.3,
2071 +
        "std": 21,
2072 +
        "min": -16.6,
2073 +
        "max": 33.6,
2074 +
        "count": 4
2075 +
      }
2076 +
    },
2077 +
    {
2078 +
      "normalizedKeys": "a → n",
2079 +
      "count": 4,
2080 +
      "holdTime1": {
2081 +
        "mean": 103,
2082 +
        "std": 16.9,
2083 +
        "min": 86.4,
2084 +
        "max": 121.5,
2085 +
        "count": 4
2086 +
      },
2087 +
      "holdTime2": {
2088 +
        "mean": 82.2,
2089 +
        "std": 14.6,
2090 +
        "min": 66.6,
2091 +
        "max": 99.8,
2092 +
        "count": 4
2093 +
      },
2094 +
      "pressPress": {
2095 +
        "mean": 72.3,
2096 +
        "std": 19.6,
2097 +
        "min": 58.1,
2098 +
        "max": 100.6,
2099 +
        "count": 4
2100 +
      },
2101 +
      "releaseRelease": {
2102 +
        "mean": 51.5,
2103 +
        "std": 14.4,
2104 +
        "min": 33.4,
2105 +
        "max": 66.7,
2106 +
        "count": 4
2107 +
      },
2108 +
      "pressRelease": {
2109 +
        "mean": 154.5,
2110 +
        "std": 26.8,
2111 +
        "min": 124.7,
2112 +
        "max": 188.2,
2113 +
        "count": 4
2114 +
      },
2115 +
      "releasePress": {
2116 +
        "mean": -30.7,
2117 +
        "std": 16.1,
2118 +
        "min": -52.4,
2119 +
        "max": -16.5,
2120 +
        "count": 4
2121 +
      }
2122 +
    },
2123 +
    {
2124 +
      "normalizedKeys": "e → l",
2125 +
      "count": 4,
2126 +
      "holdTime1": {
2127 +
        "mean": 82.1,
2128 +
        "std": 2.2,
2129 +
        "min": 78.9,
2130 +
        "max": 83.9,
2131 +
        "count": 4
2132 +
      },
2133 +
      "holdTime2": {
2134 +
        "mean": 80.6,
2135 +
        "std": 17.6,
2136 +
        "min": 57.7,
2137 +
        "max": 96.8,
2138 +
        "count": 4
2139 +
      },
2140 +
      "pressPress": {
2141 +
        "mean": 112.2,
2142 +
        "std": 88.8,
2143 +
        "min": 30.4,
2144 +
        "max": 233.9,
2145 +
        "count": 4
2146 +
      },
2147 +
      "releaseRelease": {
2148 +
        "mean": 110.8,
2149 +
        "std": 79.7,
2150 +
        "min": 43.3,
2151 +
        "max": 226,
2152 +
        "count": 4
2153 +
      },
2154 +
      "pressRelease": {
2155 +
        "mean": 192.8,
2156 +
        "std": 81.4,
2157 +
        "min": 122.2,
2158 +
        "max": 309.9,
2159 +
        "count": 4
2160 +
      },
2161 +
      "releasePress": {
2162 +
        "mean": 30.2,
2163 +
        "std": 87.1,
2164 +
        "min": -48.5,
2165 +
        "max": 150,
2166 +
        "count": 4
2167 +
      }
2168 +
    },
2169 +
    {
2170 +
      "normalizedKeys": "n → d",
2171 +
      "count": 4,
2172 +
      "holdTime1": {
2173 +
        "mean": 90.5,
2174 +
        "std": 20.5,
2175 +
        "min": 66.6,
2176 +
        "max": 116.6,
2177 +
        "count": 4
2178 +
      },
2179 +
      "holdTime2": {
2180 +
        "mean": 96.2,
2181 +
        "std": 15,
2182 +
        "min": 86.2,
2183 +
        "max": 118.4,
2184 +
        "count": 4
2185 +
      },
2186 +
      "pressPress": {
2187 +
        "mean": 120.4,
2188 +
        "std": 26.6,
2189 +
        "min": 96.9,
2190 +
        "max": 156.3,
2191 +
        "count": 4
2192 +
      },
2193 +
      "releaseRelease": {
2194 +
        "mean": 126.1,
2195 +
        "std": 27.2,
2196 +
        "min": 91.8,
2197 +
        "max": 158.1,
2198 +
        "count": 4
2199 +
      },
2200 +
      "pressRelease": {
2201 +
        "mean": 216.6,
2202 +
        "std": 40.6,
2203 +
        "min": 183.1,
2204 +
        "max": 274.7,
2205 +
        "count": 4
2206 +
      },
2207 +
      "releasePress": {
2208 +
        "mean": 29.8,
2209 +
        "std": 16.2,
2210 +
        "min": 5.6,
2211 +
        "max": 39.7,
2212 +
        "count": 4
2213 +
      }
2214 +
    },
2215 +
    {
2216 +
      "normalizedKeys": "d → e",
2217 +
      "count": 4,
2218 +
      "holdTime1": {
2219 +
        "mean": 78.4,
2220 +
        "std": 34.6,
2221 +
        "min": 46.2,
2222 +
        "max": 118.5,
2223 +
        "count": 4
2224 +
      },
2225 +
      "holdTime2": {
2226 +
        "mean": 123.3,
2227 +
        "std": 71.6,
2228 +
        "min": 70.7,
2229 +
        "max": 229.1,
2230 +
        "count": 4
2231 +
      },
2232 +
      "pressPress": {
2233 +
        "mean": 186.8,
2234 +
        "std": 64,
2235 +
        "min": 128.6,
2236 +
        "max": 274.5,
2237 +
        "count": 4
2238 +
      },
2239 +
      "releaseRelease": {
2240 +
        "mean": 231.7,
2241 +
        "std": 76.6,
2242 +
        "min": 146.2,
2243 +
        "max": 324.9,
2244 +
        "count": 4
2245 +
      },
2246 +
      "pressRelease": {
2247 +
        "mean": 310.1,
2248 +
        "std": 104.5,
2249 +
        "min": 199.3,
2250 +
        "max": 420.6,
2251 +
        "count": 4
2252 +
      },
2253 +
      "releasePress": {
2254 +
        "mean": 108.4,
2255 +
        "std": 34.2,
2256 +
        "min": 75.5,
2257 +
        "max": 156,
2258 +
        "count": 4
2259 +
      }
2260 +
    },
2261 +
    {
2262 +
      "normalizedKeys": "r → e",
2263 +
      "count": 4,
2264 +
      "holdTime1": {
2265 +
        "mean": 111.7,
2266 +
        "std": 13.9,
2267 +
        "min": 98.7,
2268 +
        "max": 129.8,
2269 +
        "count": 4
2270 +
      },
2271 +
      "holdTime2": {
2272 +
        "mean": 132.3,
2273 +
        "std": 18.3,
2274 +
        "min": 117,
2275 +
        "max": 157.7,
2276 +
        "count": 4
2277 +
      },
2278 +
      "pressPress": {
2279 +
        "mean": 123.4,
2280 +
        "std": 64.1,
2281 +
        "min": 73.6,
2282 +
        "max": 216.4,
2283 +
        "count": 4
2284 +
      },
2285 +
      "releaseRelease": {
2286 +
        "mean": 144,
2287 +
        "std": 63.9,
2288 +
        "min": 91.6,
2289 +
        "max": 234.7,
2290 +
        "count": 4
2291 +
      },
2292 +
      "pressRelease": {
2293 +
        "mean": 255.7,
2294 +
        "std": 60.7,
2295 +
        "min": 194.8,
2296 +
        "max": 333.4,
2297 +
        "count": 4
2298 +
      },
2299 +
      "releasePress": {
2300 +
        "mean": 11.8,
2301 +
        "std": 70.8,
2302 +
        "min": -29.6,
2303 +
        "max": 117.7,
2304 +
        "count": 4
2305 +
      }
2306 +
    },
2307 +
    {
2308 +
      "normalizedKeys": "u → ␣",
2309 +
      "count": 3,
2310 +
      "holdTime1": {
2311 +
        "mean": 97.9,
2312 +
        "std": 1.8,
2313 +
        "min": 96.6,
2314 +
        "max": 99.9,
2315 +
        "count": 3
2316 +
      },
2317 +
      "holdTime2": {
2318 +
        "mean": 74.5,
2319 +
        "std": 19.7,
2320 +
        "min": 54.4,
2321 +
        "max": 93.7,
2322 +
        "count": 3
2323 +
      },
2324 +
      "pressPress": {
2325 +
        "mean": 73.2,
2326 +
        "std": 23.5,
2327 +
        "min": 50,
2328 +
        "max": 96.9,
2329 +
        "count": 3
2330 +
      },
2331 +
      "releaseRelease": {
2332 +
        "mean": 49.8,
2333 +
        "std": 5.4,
2334 +
        "min": 43.8,
2335 +
        "max": 54.2,
2336 +
        "count": 3
2337 +
      },
2338 +
      "pressRelease": {
2339 +
        "mean": 147.7,
2340 +
        "std": 3.8,
2341 +
        "min": 143.7,
2342 +
        "max": 151.3,
2343 +
        "count": 3
2344 +
      },
2345 +
      "releasePress": {
2346 +
        "mean": -24.7,
2347 +
        "std": 24.9,
2348 +
        "min": -49.9,
2349 +
        "max": -0.2,
2350 +
        "count": 3
2351 +
      }
2352 +
    },
2353 +
    {
2354 +
      "normalizedKeys": "w → ␣",
2355 +
      "count": 3,
2356 +
      "holdTime1": {
2357 +
        "mean": 122,
2358 +
        "std": 10.5,
2359 +
        "min": 112,
2360 +
        "max": 133,
2361 +
        "count": 3
2362 +
      },
2363 +
      "holdTime2": {
2364 +
        "mean": 87.8,
2365 +
        "std": 15.9,
2366 +
        "min": 70.5,
2367 +
        "max": 101.6,
2368 +
        "count": 3
2369 +
      },
2370 +
      "pressPress": {
2371 +
        "mean": 176.8,
2372 +
        "std": 154.3,
2373 +
        "min": 61.8,
2374 +
        "max": 352.1,
2375 +
        "count": 3
2376 +
      },
2377 +
      "releaseRelease": {
2378 +
        "mean": 142.6,
2379 +
        "std": 164.7,
2380 +
        "min": 41.2,
2381 +
        "max": 332.6,
2382 +
        "count": 3
2383 +
      },
2384 +
      "pressRelease": {
2385 +
        "mean": 264.6,
2386 +
        "std": 164.6,
2387 +
        "min": 153.2,
2388 +
        "max": 453.7,
2389 +
        "count": 3
2390 +
      },
2391 +
      "releasePress": {
2392 +
        "mean": 54.7,
2393 +
        "std": 153.6,
2394 +
        "min": -50.2,
2395 +
        "max": 231,
2396 +
        "count": 3
2397 +
      }
2398 +
    },
2399 +
    {
2400 +
      "normalizedKeys": "e → t",
2401 +
      "count": 3,
2402 +
      "holdTime1": {
2403 +
        "mean": 89.3,
2404 +
        "std": 24,
2405 +
        "min": 61.9,
2406 +
        "max": 106.3,
2407 +
        "count": 3
2408 +
      },
2409 +
      "holdTime2": {
2410 +
        "mean": 72.9,
2411 +
        "std": 16,
2412 +
        "min": 62.6,
2413 +
        "max": 91.4,
2414 +
        "count": 3
2415 +
      },
2416 +
      "pressPress": {
2417 +
        "mean": 121.9,
2418 +
        "std": 4.4,
2419 +
        "min": 118.6,
2420 +
        "max": 126.9,
2421 +
        "count": 3
2422 +
      },
2423 +
      "releaseRelease": {
2424 +
        "mean": 105.5,
2425 +
        "std": 38.3,
2426 +
        "min": 83.2,
2427 +
        "max": 149.8,
2428 +
        "count": 3
2429 +
      },
2430 +
      "pressRelease": {
2431 +
        "mean": 194.9,
2432 +
        "std": 14.9,
2433 +
        "min": 183.4,
2434 +
        "max": 211.7,
2435 +
        "count": 3
2436 +
      },
2437 +
      "releasePress": {
2438 +
        "mean": 32.6,
2439 +
        "std": 22.4,
2440 +
        "min": 18.8,
2441 +
        "max": 58.4,
2442 +
        "count": 3
2443 +
      }
2444 +
    },
2445 +
    {
2446 +
      "normalizedKeys": "o → ␣",
2447 +
      "count": 3,
2448 +
      "holdTime1": {
2449 +
        "mean": 85.8,
2450 +
        "std": 21.2,
2451 +
        "min": 66.1,
2452 +
        "max": 108.2,
2453 +
        "count": 3
2454 +
      },
2455 +
      "holdTime2": {
2456 +
        "mean": 49.4,
2457 +
        "std": 14.7,
2458 +
        "min": 40.5,
2459 +
        "max": 66.4,
2460 +
        "count": 3
2461 +
      },
2462 +
      "pressPress": {
2463 +
        "mean": 110.7,
2464 +
        "std": 58.3,
2465 +
        "min": 50,
2466 +
        "max": 166.3,
2467 +
        "count": 3
2468 +
      },
2469 +
      "releaseRelease": {
2470 +
        "mean": 74.3,
2471 +
        "std": 58.7,
2472 +
        "min": 33.3,
2473 +
        "max": 141.5,
2474 +
        "count": 3
2475 +
      },
2476 +
      "pressRelease": {
2477 +
        "mean": 160.1,
2478 +
        "std": 45.7,
2479 +
        "min": 116.4,
2480 +
        "max": 207.6,
2481 +
        "count": 3
2482 +
      },
2483 +
      "releasePress": {
2484 +
        "mean": 24.9,
2485 +
        "std": 68.3,
2486 +
        "min": -33.1,
2487 +
        "max": 100.2,
2488 +
        "count": 3
2489 +
      }
2490 +
    },
2491 +
    {
2492 +
      "normalizedKeys": "t → o",
2493 +
      "count": 3,
2494 +
      "holdTime1": {
2495 +
        "mean": 72,
2496 +
        "std": 19.2,
2497 +
        "min": 49.8,
2498 +
        "max": 83.1,
2499 +
        "count": 3
2500 +
      },
2501 +
      "holdTime2": {
2502 +
        "mean": 85.9,
2503 +
        "std": 21,
2504 +
        "min": 66.5,
2505 +
        "max": 108.2,
2506 +
        "count": 3
2507 +
      },
2508 +
      "pressPress": {
2509 +
        "mean": 49.9,
2510 +
        "std": 36.4,
2511 +
        "min": 8.2,
2512 +
        "max": 75,
2513 +
        "count": 3
2514 +
      },
2515 +
      "releaseRelease": {
2516 +
        "mean": 63.9,
2517 +
        "std": 12.7,
2518 +
        "min": 50,
2519 +
        "max": 75,
2520 +
        "count": 3
2521 +
      },
2522 +
      "pressRelease": {
2523 +
        "mean": 135.9,
2524 +
        "std": 21,
2525 +
        "min": 116.4,
2526 +
        "max": 158.1,
2527 +
        "count": 3
2528 +
      },
2529 +
      "releasePress": {
2530 +
        "mean": -22.1,
2531 +
        "std": 17.4,
2532 +
        "min": -41.6,
2533 +
        "max": -8.1,
2534 +
        "count": 3
2535 +
      }
2536 +
    },
2537 +
    {
2538 +
      "normalizedKeys": "s → e",
2539 +
      "count": 3,
2540 +
      "holdTime1": {
2541 +
        "mean": 93.9,
2542 +
        "std": 27.2,
2543 +
        "min": 64.3,
2544 +
        "max": 117.7,
2545 +
        "count": 3
2546 +
      },
2547 +
      "holdTime2": {
2548 +
        "mean": 96.2,
2549 +
        "std": 46.6,
2550 +
        "min": 66.6,
2551 +
        "max": 149.9,
2552 +
        "count": 3
2553 +
      },
2554 +
      "pressPress": {
2555 +
        "mean": 180.7,
2556 +
        "std": 11.7,
2557 +
        "min": 167.9,
2558 +
        "max": 190.9,
2559 +
        "count": 3
2560 +
      },
2561 +
      "releaseRelease": {
2562 +
        "mean": 183,
2563 +
        "std": 28.4,
2564 +
        "min": 150.2,
2565 +
        "max": 200.1,
2566 +
        "count": 3
2567 +
      },
2568 +
      "pressRelease": {
2569 +
        "mean": 276.9,
2570 +
        "std": 36,
2571 +
        "min": 250,
2572 +
        "max": 317.8,
2573 +
        "count": 3
2574 +
      },
2575 +
      "releasePress": {
2576 +
        "mean": 86.8,
2577 +
        "std": 38.3,
2578 +
        "min": 50.2,
2579 +
        "max": 126.6,
2580 +
        "count": 3
2581 +
      }
2582 +
    },
2583 +
    {
2584 +
      "normalizedKeys": "o → r",
2585 +
      "count": 3,
2586 +
      "holdTime1": {
2587 +
        "mean": 67.7,
2588 +
        "std": 19,
2589 +
        "min": 45.9,
2590 +
        "max": 80,
2591 +
        "count": 3
2592 +
      },
2593 +
      "holdTime2": {
2594 +
        "mean": 81.9,
2595 +
        "std": 18.7,
2596 +
        "min": 62.7,
2597 +
        "max": 100,
2598 +
        "count": 3
2599 +
      },
2600 +
      "pressPress": {
2601 +
        "mean": 80.6,
2602 +
        "std": 17.3,
2603 +
        "min": 63.4,
2604 +
        "max": 98,
2605 +
        "count": 3
2606 +
      },
2607 +
      "releaseRelease": {
2608 +
        "mean": 94.8,
2609 +
        "std": 10.4,
2610 +
        "min": 83.4,
2611 +
        "max": 103.8,
2612 +
        "count": 3
2613 +
      },
2614 +
      "pressRelease": {
2615 +
        "mean": 162.5,
2616 +
        "std": 19,
2617 +
        "min": 143.1,
2618 +
        "max": 181.1,
2619 +
        "count": 3
2620 +
      },
2621 +
      "releasePress": {
2622 +
        "mean": 12.9,
2623 +
        "std": 26.4,
2624 +
        "min": -16.6,
2625 +
        "max": 34.5,
2626 +
        "count": 3
2627 +
      }
2628 +
    },
2629 +
    {
2630 +
      "normalizedKeys": "␣ → d",
2631 +
      "count": 3,
2632 +
      "holdTime1": {
2633 +
        "mean": 71.6,
2634 +
        "std": 14.5,
2635 +
        "min": 58.1,
2636 +
        "max": 87,
2637 +
        "count": 3
2638 +
      },
2639 +
      "holdTime2": {
2640 +
        "mean": 75.9,
2641 +
        "std": 35.1,
2642 +
        "min": 53.1,
2643 +
        "max": 116.4,
2644 +
        "count": 3
2645 +
      },
2646 +
      "pressPress": {
2647 +
        "mean": 138.5,
2648 +
        "std": 33.2,
2649 +
        "min": 110.4,
2650 +
        "max": 175.1,
2651 +
        "count": 3
2652 +
      },
2653 +
      "releaseRelease": {
2654 +
        "mean": 142.8,
2655 +
        "std": 41.5,
2656 +
        "min": 96.1,
2657 +
        "max": 175.3,
2658 +
        "count": 3
2659 +
      },
2660 +
      "pressRelease": {
2661 +
        "mean": 214.4,
2662 +
        "std": 27.3,
2663 +
        "min": 183.1,
2664 +
        "max": 233.4,
2665 +
        "count": 3
2666 +
      },
2667 +
      "releasePress": {
2668 +
        "mean": 66.9,
2669 +
        "std": 43.4,
2670 +
        "min": 40.6,
2671 +
        "max": 117,
2672 +
        "count": 3
2673 +
      }
2674 +
    },
2675 +
    {
2676 +
      "normalizedKeys": "m → a",
2677 +
      "count": 3,
2678 +
      "holdTime1": {
2679 +
        "mean": 100.7,
2680 +
        "std": 31.5,
2681 +
        "min": 74.7,
2682 +
        "max": 135.7,
2683 +
        "count": 3
2684 +
      },
2685 +
      "holdTime2": {
2686 +
        "mean": 126.7,
2687 +
        "std": 44,
2688 +
        "min": 91.3,
2689 +
        "max": 175.9,
2690 +
        "count": 3
2691 +
      },
2692 +
      "pressPress": {
2693 +
        "mean": 132.9,
2694 +
        "std": 12.8,
2695 +
        "min": 119.8,
2696 +
        "max": 145.4,
2697 +
        "count": 3
2698 +
      },
2699 +
      "releaseRelease": {
2700 +
        "mean": 158.9,
2701 +
        "std": 8.4,
2702 +
        "min": 150,
2703 +
        "max": 166.6,
2704 +
        "count": 3
2705 +
      },
2706 +
      "pressRelease": {
2707 +
        "mean": 259.6,
2708 +
        "std": 35.5,
2709 +
        "min": 224.7,
2710 +
        "max": 295.7,
2711 +
        "count": 3
2712 +
      },
2713 +
      "releasePress": {
2714 +
        "mean": 32.2,
2715 +
        "std": 41.7,
2716 +
        "min": -15.9,
2717 +
        "max": 58.7,
2718 +
        "count": 3
2719 +
      }
2720 +
    },
2721 +
    {
2722 +
      "normalizedKeys": "h → ␣",
2723 +
      "count": 3,
2724 +
      "holdTime1": {
2725 +
        "mean": 99,
2726 +
        "std": 22.3,
2727 +
        "min": 81.1,
2728 +
        "max": 124,
2729 +
        "count": 3
2730 +
      },
2731 +
      "holdTime2": {
2732 +
        "mean": 79.8,
2733 +
        "std": 11.2,
2734 +
        "min": 70.8,
2735 +
        "max": 92.3,
2736 +
        "count": 3
2737 +
      },
2738 +
      "pressPress": {
2739 +
        "mean": 156.1,
2740 +
        "std": 36.5,
2741 +
        "min": 117.4,
2742 +
        "max": 189.8,
2743 +
        "count": 3
2744 +
      },
2745 +
      "releaseRelease": {
2746 +
        "mean": 136.9,
2747 +
        "std": 35.3,
2748 +
        "min": 96.2,
2749 +
        "max": 158.1,
2750 +
        "count": 3
2751 +
      },
2752 +
      "pressRelease": {
2753 +
        "mean": 236,
2754 +
        "std": 47,
2755 +
        "min": 188.2,
2756 +
        "max": 282.1,
2757 +
        "count": 3
2758 +
      },
2759 +
      "releasePress": {
2760 +
        "mean": 57.1,
2761 +
        "std": 28.4,
2762 +
        "min": 25.4,
2763 +
        "max": 80.1,
2764 +
        "count": 3
2765 +
      }
2766 +
    },
2767 +
    {
2768 +
      "normalizedKeys": "l → y",
2769 +
      "count": 3,
2770 +
      "holdTime1": {
2771 +
        "mean": 94.6,
2772 +
        "std": 57,
2773 +
        "min": 52.5,
2774 +
        "max": 159.5,
2775 +
        "count": 3
2776 +
      },
2777 +
      "holdTime2": {
2778 +
        "mean": 62.3,
2779 +
        "std": 11.2,
2780 +
        "min": 53.8,
2781 +
        "max": 74.9,
2782 +
        "count": 3
2783 +
      },
2784 +
      "pressPress": {
2785 +
        "mean": 232.2,
2786 +
        "std": 87.7,
2787 +
        "min": 172.1,
2788 +
        "max": 332.9,
2789 +
        "count": 3
2790 +
      },
2791 +
      "releaseRelease": {
2792 +
        "mean": 199.9,
2793 +
        "std": 45.4,
2794 +
        "min": 158.3,
2795 +
        "max": 248.3,
2796 +
        "count": 3
2797 +
      },
2798 +
      "pressRelease": {
2799 +
        "mean": 294.5,
2800 +
        "std": 98.4,
2801 +
        "min": 230.2,
2802 +
        "max": 407.8,
2803 +
        "count": 3
2804 +
      },
2805 +
      "releasePress": {
2806 +
        "mean": 137.6,
2807 +
        "std": 36.6,
2808 +
        "min": 100.2,
2809 +
        "max": 173.4,
2810 +
        "count": 3
2811 +
      }
2812 +
    },
2813 +
    {
2814 +
      "normalizedKeys": "a → l",
2815 +
      "count": 3,
2816 +
      "holdTime1": {
2817 +
        "mean": 123.5,
2818 +
        "std": 16.4,
2819 +
        "min": 111.6,
2820 +
        "max": 142.2,
2821 +
        "count": 3
2822 +
      },
2823 +
      "holdTime2": {
2824 +
        "mean": 91.1,
2825 +
        "std": 42.2,
2826 +
        "min": 55.7,
2827 +
        "max": 137.8,
2828 +
        "count": 3
2829 +
      },
2830 +
      "pressPress": {
2831 +
        "mean": 128.3,
2832 +
        "std": 20.8,
2833 +
        "min": 112,
2834 +
        "max": 151.7,
2835 +
        "count": 3
2836 +
      },
2837 +
      "releaseRelease": {
2838 +
        "mean": 95.9,
2839 +
        "std": 38.8,
2840 +
        "min": 51.1,
2841 +
        "max": 119.8,
2842 +
        "count": 3
2843 +
      },
2844 +
      "pressRelease": {
2845 +
        "mean": 219.4,
2846 +
        "std": 46.8,
2847 +
        "min": 167.7,
2848 +
        "max": 259,
2849 +
        "count": 3
2850 +
      },
2851 +
      "releasePress": {
2852 +
        "mean": 4.8,
2853 +
        "std": 31.6,
2854 +
        "min": -21,
2855 +
        "max": 40.1,
2856 +
        "count": 3
2857 +
      }
2858 +
    },
2859 +
    {
2860 +
      "normalizedKeys": "n → a",
2861 +
      "count": 3,
2862 +
      "holdTime1": {
2863 +
        "mean": 96.9,
2864 +
        "std": 19.2,
2865 +
        "min": 83.7,
2866 +
        "max": 118.9,
2867 +
        "count": 3
2868 +
      },
2869 +
      "holdTime2": {
2870 +
        "mean": 137.4,
2871 +
        "std": 23.7,
2872 +
        "min": 111.6,
2873 +
        "max": 158.3,
2874 +
        "count": 3
2875 +
      },
2876 +
      "pressPress": {
2877 +
        "mean": 75.8,
2878 +
        "std": 124.6,
2879 +
        "min": -66.7,
2880 +
        "max": 164.6,
2881 +
        "count": 3
2882 +
      },
2883 +
      "releaseRelease": {
2884 +
        "mean": 116.3,
2885 +
        "std": 95.5,
2886 +
        "min": 7.9,
2887 +
        "max": 187.9,
2888 +
        "count": 3
2889 +
      },
2890 +
      "pressRelease": {
2891 +
        "mean": 213.1,
2892 +
        "std": 110.3,
2893 +
        "min": 91.6,
2894 +
        "max": 306.8,
2895 +
        "count": 3
2896 +
      },
2897 +
      "releasePress": {
2898 +
        "mean": -21.1,
2899 +
        "std": 112,
2900 +
        "min": -150.4,
2901 +
        "max": 45.7,
2902 +
        "count": 3
2903 +
      }
2904 +
    },
2905 +
    {
2906 +
      "normalizedKeys": "i → t",
2907 +
      "count": 3,
2908 +
      "holdTime1": {
2909 +
        "mean": 79.2,
2910 +
        "std": 15.2,
2911 +
        "min": 62.1,
2912 +
        "max": 91.4,
2913 +
        "count": 3
2914 +
      },
2915 +
      "holdTime2": {
2916 +
        "mean": 62.8,
2917 +
        "std": 25.4,
2918 +
        "min": 38,
2919 +
        "max": 88.7,
2920 +
        "count": 3
2921 +
      },
2922 +
      "pressPress": {
2923 +
        "mean": 97.3,
2924 +
        "std": 40,
2925 +
        "min": 67.5,
2926 +
        "max": 142.8,
2927 +
        "count": 3
2928 +
      },
2929 +
      "releaseRelease": {
2930 +
        "mean": 81,
2931 +
        "std": 32.3,
2932 +
        "min": 45.3,
2933 +
        "max": 108.3,
2934 +
        "count": 3
2935 +
      },
2936 +
      "pressRelease": {
2937 +
        "mean": 160.2,
2938 +
        "std": 27.2,
2939 +
        "min": 129.3,
2940 +
        "max": 180.8,
2941 +
        "count": 3
2942 +
      },
2943 +
      "releasePress": {
2944 +
        "mean": 18.2,
2945 +
        "std": 34,
2946 +
        "min": -16.5,
2947 +
        "max": 51.4,
2948 +
        "count": 3
2949 +
      }
2950 +
    },
2951 +
    {
2952 +
      "normalizedKeys": "l → a",
2953 +
      "count": 3,
2954 +
      "holdTime1": {
2955 +
        "mean": 98.6,
2956 +
        "std": 6.1,
2957 +
        "min": 91.6,
2958 +
        "max": 103,
2959 +
        "count": 3
2960 +
      },
2961 +
      "holdTime2": {
2962 +
        "mean": 118.1,
2963 +
        "std": 36.8,
2964 +
        "min": 86.4,
2965 +
        "max": 158.4,
2966 +
        "count": 3
2967 +
      },
2968 +
      "pressPress": {
2969 +
        "mean": 135.2,
2970 +
        "std": 33.4,
2971 +
        "min": 100.3,
2972 +
        "max": 166.8,
2973 +
        "count": 3
2974 +
      },
2975 +
      "releaseRelease": {
2976 +
        "mean": 154.7,
2977 +
        "std": 59.7,
2978 +
        "min": 108.8,
2979 +
        "max": 222.2,
2980 +
        "count": 3
2981 +
      },
2982 +
      "pressRelease": {
2983 +
        "mean": 253.3,
2984 +
        "std": 62.7,
2985 +
        "min": 209.9,
2986 +
        "max": 325.2,
2987 +
        "count": 3
2988 +
      },
2989 +
      "releasePress": {
2990 +
        "mean": 36.6,
2991 +
        "std": 33.5,
2992 +
        "min": -0.8,
2993 +
        "max": 63.8,
2994 +
        "count": 3
2995 +
      }
2996 +
    },
2997 +
    {
2998 +
      "normalizedKeys": "b → e",
2999 +
      "count": 3,
3000 +
      "holdTime1": {
3001 +
        "mean": 88.7,
3002 +
        "std": 20.9,
3003 +
        "min": 66.5,
3004 +
        "max": 108,
3005 +
        "count": 3
3006 +
      },
3007 +
      "holdTime2": {
3008 +
        "mean": 84.4,
3009 +
        "std": 18.2,
3010 +
        "min": 66.5,
3011 +
        "max": 102.8,
3012 +
        "count": 3
3013 +
      },
3014 +
      "pressPress": {
3015 +
        "mean": 222.4,
3016 +
        "std": 121.6,
3017 +
        "min": 113.7,
3018 +
        "max": 353.7,
3019 +
        "count": 3
3020 +
      },
3021 +
      "releaseRelease": {
3022 +
        "mean": 218.2,
3023 +
        "std": 103.5,
3024 +
        "min": 125,
3025 +
        "max": 329.6,
3026 +
        "count": 3
3027 +
      },
3028 +
      "pressRelease": {
3029 +
        "mean": 306.8,
3030 +
        "std": 116,
3031 +
        "min": 216.5,
3032 +
        "max": 437.6,
3033 +
        "count": 3
3034 +
      },
3035 +
      "releasePress": {
3036 +
        "mean": 133.8,
3037 +
        "std": 111.8,
3038 +
        "min": 22.2,
3039 +
        "max": 245.7,
3040 +
        "count": 3
3041 +
      }
3042 +
    },
3043 +
    {
3044 +
      "normalizedKeys": "␣ → p",
3045 +
      "count": 3,
3046 +
      "holdTime1": {
3047 +
        "mean": 85.5,
3048 +
        "std": 19.6,
3049 +
        "min": 72.9,
3050 +
        "max": 108.1,
3051 +
        "count": 3
3052 +
      },
3053 +
      "holdTime2": {
3054 +
        "mean": 86.6,
3055 +
        "std": 41.3,
3056 +
        "min": 58.1,
3057 +
        "max": 134,
3058 +
        "count": 3
3059 +
      },
3060 +
      "pressPress": {
3061 +
        "mean": 160,
3062 +
        "std": 45.8,
3063 +
        "min": 107.5,
3064 +
        "max": 191.4,
3065 +
        "count": 3
3066 +
      },
3067 +
      "releaseRelease": {
3068 +
        "mean": 161.2,
3069 +
        "std": 63.2,
3070 +
        "min": 92.7,
3071 +
        "max": 217.3,
3072 +
        "count": 3
3073 +
      },
3074 +
      "pressRelease": {
3075 +
        "mean": 246.6,
3076 +
        "std": 79.9,
3077 +
        "min": 165.6,
3078 +
        "max": 325.4,
3079 +
        "count": 3
3080 +
      },
3081 +
      "releasePress": {
3082 +
        "mean": 74.6,
3083 +
        "std": 36.4,
3084 +
        "min": 34.6,
3085 +
        "max": 105.8,
3086 +
        "count": 3
3087 +
      }
3088 +
    },
3089 +
    {
3090 +
      "normalizedKeys": "t → i",
3091 +
      "count": 3,
3092 +
      "holdTime1": {
3093 +
        "mean": 96.2,
3094 +
        "std": 17.7,
3095 +
        "min": 83.6,
3096 +
        "max": 116.4,
3097 +
        "count": 3
3098 +
      },
3099 +
      "holdTime2": {
3100 +
        "mean": 109.7,
3101 +
        "std": 25.1,
3102 +
        "min": 83.2,
3103 +
        "max": 133.2,
3104 +
        "count": 3
3105 +
      },
3106 +
      "pressPress": {
3107 +
        "mean": 116.8,
3108 +
        "std": 50.4,
3109 +
        "min": 83.2,
3110 +
        "max": 174.7,
3111 +
        "count": 3
3112 +
      },
3113 +
      "releaseRelease": {
3114 +
        "mean": 130.3,
3115 +
        "std": 12.7,
3116 +
        "min": 116.5,
3117 +
        "max": 141.5,
3118 +
        "count": 3
3119 +
      },
3120 +
      "pressRelease": {
3121 +
        "mean": 226.5,
3122 +
        "std": 27.8,
3123 +
        "min": 205.2,
3124 +
        "max": 257.9,
3125 +
        "count": 3
3126 +
      },
3127 +
      "releasePress": {
3128 +
        "mean": 20.6,
3129 +
        "std": 32.7,
3130 +
        "min": -0.4,
3131 +
        "max": 58.3,
3132 +
        "count": 3
3133 +
      }
3134 +
    },
3135 +
    {
3136 +
      "normalizedKeys": "c → o",
3137 +
      "count": 3,
3138 +
      "holdTime1": {
3139 +
        "mean": 111.2,
3140 +
        "std": 16.4,
3141 +
        "min": 92.8,
3142 +
        "max": 124.4,
3143 +
        "count": 3
3144 +
      },
3145 +
      "holdTime2": {
3146 +
        "mean": 103.4,
3147 +
        "std": 41.4,
3148 +
        "min": 69.5,
3149 +
        "max": 149.5,
3150 +
        "count": 3
3151 +
      },
3152 +
      "pressPress": {
3153 +
        "mean": 108.5,
3154 +
        "std": 58,
3155 +
        "min": 41.7,
3156 +
        "max": 146.3,
3157 +
        "count": 3
3158 +
      },
3159 +
      "releaseRelease": {
3160 +
        "mean": 100.7,
3161 +
        "std": 34.5,
3162 +
        "min": 66.8,
3163 +
        "max": 135.7,
3164 +
        "count": 3
3165 +
      },
3166 +
      "pressRelease": {
3167 +
        "mean": 211.8,
3168 +
        "std": 19,
3169 +
        "min": 191.2,
3170 +
        "max": 228.5,
3171 +
        "count": 3
3172 +
      },
3173 +
      "releasePress": {
3174 +
        "mean": -2.7,
3175 +
        "std": 69.7,
3176 +
        "min": -82.7,
3177 +
        "max": 44.6,
3178 +
        "count": 3
3179 +
      }
3180 +
    },
3181 +
    {
3182 +
      "normalizedKeys": "a → ␣",
3183 +
      "count": 3,
3184 +
      "holdTime1": {
3185 +
        "mean": 152.8,
3186 +
        "std": 37.8,
3187 +
        "min": 124.7,
3188 +
        "max": 195.8,
3189 +
        "count": 3
3190 +
      },
3191 +
      "holdTime2": {
3192 +
        "mean": 84.6,
3193 +
        "std": 25.6,
3194 +
        "min": 62.1,
3195 +
        "max": 112.5,
3196 +
        "count": 3
3197 +
      },
3198 +
      "pressPress": {
3199 +
        "mean": 132.2,
3200 +
        "std": 38.9,
3201 +
        "min": 87.6,
3202 +
        "max": 158.5,
3203 +
        "count": 3
3204 +
      },
3205 +
      "releaseRelease": {
3206 +
        "mean": 64.1,
3207 +
        "std": 37.6,
3208 +
        "min": 25,
3209 +
        "max": 99.9,
3210 +
        "count": 3
3211 +
      },
3212 +
      "pressRelease": {
3213 +
        "mean": 216.9,
3214 +
        "std": 59.5,
3215 +
        "min": 149.7,
3216 +
        "max": 263.1,
3217 +
        "count": 3
3218 +
      },
3219 +
      "releasePress": {
3220 +
        "mean": -20.6,
3221 +
        "std": 35.9,
3222 +
        "min": -45.2,
3223 +
        "max": 20.6,
3224 +
        "count": 3
3225 +
      }
3226 +
    },
3227 +
    {
3228 +
      "normalizedKeys": "␣ → c",
3229 +
      "count": 3,
3230 +
      "holdTime1": {
3231 +
        "mean": 84.7,
3232 +
        "std": 6.3,
3233 +
        "min": 79.3,
3234 +
        "max": 91.6,
3235 +
        "count": 3
3236 +
      },
3237 +
      "holdTime2": {
3238 +
        "mean": 110.8,
3239 +
        "std": 17.1,
3240 +
        "min": 91.6,
3241 +
        "max": 124.4,
3242 +
        "count": 3
3243 +
      },
3244 +
      "pressPress": {
3245 +
        "mean": 190.8,
3246 +
        "std": 57.9,
3247 +
        "min": 125,
3248 +
        "max": 233.8,
3249 +
        "count": 3
3250 +
      },
3251 +
      "releaseRelease": {
3252 +
        "mean": 216.9,
3253 +
        "std": 72.7,
3254 +
        "min": 133.4,
3255 +
        "max": 266.6,
3256 +
        "count": 3
3257 +
      },
3258 +
      "pressRelease": {
3259 +
        "mean": 301.6,
3260 +
        "std": 75,
3261 +
        "min": 216.6,
3262 +
        "max": 358.2,
3263 +
        "count": 3
3264 +
      },
3265 +
      "releasePress": {
3266 +
        "mean": 106.1,
3267 +
        "std": 55.9,
3268 +
        "min": 41.8,
3269 +
        "max": 142.2,
3270 +
        "count": 3
3271 +
      }
3272 +
    },
3273 +
    {
3274 +
      "normalizedKeys": "f → ␣",
3275 +
      "count": 3,
3276 +
      "holdTime1": {
3277 +
        "mean": 92.3,
3278 +
        "std": 10.5,
3279 +
        "min": 82.9,
3280 +
        "max": 103.7,
3281 +
        "count": 3
3282 +
      },
3283 +
      "holdTime2": {
3284 +
        "mean": 58.2,
3285 +
        "std": 25.2,
3286 +
        "min": 33.1,
3287 +
        "max": 83.4,
3288 +
        "count": 3
3289 +
      },
3290 +
      "pressPress": {
3291 +
        "mean": 119.9,
3292 +
        "std": 30.9,
3293 +
        "min": 91.4,
3294 +
        "max": 152.8,
3295 +
        "count": 3
3296 +
      },
3297 +
      "releaseRelease": {
3298 +
        "mean": 85.8,
3299 +
        "std": 45.5,
3300 +
        "min": 41.6,
3301 +
        "max": 132.5,
3302 +
        "count": 3
3303 +
      },
3304 +
      "pressRelease": {
3305 +
        "mean": 178.1,
3306 +
        "std": 56,
3307 +
        "min": 124.5,
3308 +
        "max": 236.2,
3309 +
        "count": 3
3310 +
      },
3311 +
      "releasePress": {
3312 +
        "mean": 27.6,
3313 +
        "std": 20.4,
3314 +
        "min": 8.5,
3315 +
        "max": 49.1,
3316 +
        "count": 3
3317 +
      }
3318 +
    },
3319 +
    {
3320 +
      "normalizedKeys": "s → t",
3321 +
      "count": 3,
3322 +
      "holdTime1": {
3323 +
        "mean": 92.8,
3324 +
        "std": 8.6,
3325 +
        "min": 83.2,
3326 +
        "max": 99.7,
3327 +
        "count": 3
3328 +
      },
3329 +
      "holdTime2": {
3330 +
        "mean": 91.3,
3331 +
        "std": 17,
3332 +
        "min": 74.3,
3333 +
        "max": 108.2,
3334 +
        "count": 3
3335 +
      },
3336 +
      "pressPress": {
3337 +
        "mean": 131.8,
3338 +
        "std": 61.1,
3339 +
        "min": 66.4,
3340 +
        "max": 187.4,
3341 +
        "count": 3
3342 +
      },
3343 +
      "releaseRelease": {
3344 +
        "mean": 130.3,
3345 +
        "std": 54.2,
3346 +
        "min": 74.9,
3347 +
        "max": 183.3,
3348 +
        "count": 3
3349 +
      },
3350 +
      "pressRelease": {
3351 +
        "mean": 223.1,
3352 +
        "std": 52.5,
3353 +
        "min": 174.6,
3354 +
        "max": 278.8,
3355 +
        "count": 3
3356 +
      },
3357 +
      "releasePress": {
3358 +
        "mean": 39,
3359 +
        "std": 64.8,
3360 +
        "min": -33.3,
3361 +
        "max": 91.9,
3362 +
        "count": 3
3363 +
      }
3364 +
    },
3365 +
    {
3366 +
      "normalizedKeys": "o → s",
3367 +
      "count": 2,
3368 +
      "holdTime1": {
3369 +
        "mean": 104.3,
3370 +
        "std": 17.4,
3371 +
        "min": 92,
3372 +
        "max": 116.6,
3373 +
        "count": 2
3374 +
      },
3375 +
      "holdTime2": {
3376 +
        "mean": 115.9,
3377 +
        "std": 28.8,
3378 +
        "min": 95.5,
3379 +
        "max": 136.3,
3380 +
        "count": 2
3381 +
      },
3382 +
      "pressPress": {
3383 +
        "mean": 52.1,
3384 +
        "std": 62.2,
3385 +
        "min": 8.1,
3386 +
        "max": 96,
3387 +
        "count": 2
3388 +
      },
3389 +
      "releaseRelease": {
3390 +
        "mean": 63.7,
3391 +
        "std": 15.9,
3392 +
        "min": 52.4,
3393 +
        "max": 74.9,
3394 +
        "count": 2
3395 +
      },
3396 +
      "pressRelease": {
3397 +
        "mean": 168,
3398 +
        "std": 33.3,
3399 +
        "min": 144.4,
3400 +
        "max": 191.5,
3401 +
        "count": 2
3402 +
      },
3403 +
      "releasePress": {
3404 +
        "mean": -52.2,
3405 +
        "std": 44.8,
3406 +
        "min": -83.9,
3407 +
        "max": -20.6,
3408 +
        "count": 2
3409 +
      }
3410 +
    },
3411 +
    {
3412 +
      "normalizedKeys": "e → s",
3413 +
      "count": 2,
3414 +
      "holdTime1": {
3415 +
        "mean": 143.7,
3416 +
        "std": 5.2,
3417 +
        "min": 140,
3418 +
        "max": 147.3,
3419 +
        "count": 2
3420 +
      },
3421 +
      "holdTime2": {
3422 +
        "mean": 147.8,
3423 +
        "std": 10.3,
3424 +
        "min": 140.5,
3425 +
        "max": 155,
3426 +
        "count": 2
3427 +
      },
3428 +
      "pressPress": {
3429 +
        "mean": 97.7,
3430 +
        "std": 34.2,
3431 +
        "min": 73.5,
3432 +
        "max": 121.8,
3433 +
        "count": 2
3434 +
      },
3435 +
      "releaseRelease": {
3436 +
        "mean": 101.8,
3437 +
        "std": 18.7,
3438 +
        "min": 88.5,
3439 +
        "max": 115,
3440 +
        "count": 2
3441 +
      },
3442 +
      "pressRelease": {
3443 +
        "mean": 245.4,
3444 +
        "std": 23.9,
3445 +
        "min": 228.5,
3446 +
        "max": 262.3,
3447 +
        "count": 2
3448 +
      },
3449 +
      "releasePress": {
3450 +
        "mean": -46,
3451 +
        "std": 29,
3452 +
        "min": -66.5,
3453 +
        "max": -25.5,
3454 +
        "count": 2
3455 +
      }
3456 +
    },
3457 +
    {
3458 +
      "normalizedKeys": "␣ → g",
3459 +
      "count": 2,
3460 +
      "holdTime1": {
3461 +
        "mean": 74.4,
3462 +
        "std": 18.2,
3463 +
        "min": 61.5,
3464 +
        "max": 87.3,
3465 +
        "count": 2
3466 +
      },
3467 +
      "holdTime2": {
3468 +
        "mean": 95.4,
3469 +
        "std": 17.8,
3470 +
        "min": 82.8,
3471 +
        "max": 108,
3472 +
        "count": 2
3473 +
      },
3474 +
      "pressPress": {
3475 +
        "mean": 244.6,
3476 +
        "std": 109,
3477 +
        "min": 167.5,
3478 +
        "max": 321.7,
3479 +
        "count": 2
3480 +
      },
3481 +
      "releaseRelease": {
3482 +
        "mean": 265.6,
3483 +
        "std": 73,
3484 +
        "min": 214,
3485 +
        "max": 317.2,
3486 +
        "count": 2
3487 +
      },
3488 +
      "pressRelease": {
3489 +
        "mean": 340,
3490 +
        "std": 91.2,
3491 +
        "min": 275.5,
3492 +
        "max": 404.5,
3493 +
        "count": 2
3494 +
      },
3495 +
      "releasePress": {
3496 +
        "mean": 170.2,
3497 +
        "std": 90.8,
3498 +
        "min": 106,
3499 +
        "max": 234.4,
3500 +
        "count": 2
3501 +
      }
3502 +
    },
3503 +
    {
3504 +
      "normalizedKeys": "h → y",
3505 +
      "count": 2,
3506 +
      "holdTime1": {
3507 +
        "mean": 90.9,
3508 +
        "std": 34.4,
3509 +
        "min": 66.6,
3510 +
        "max": 115.3,
3511 +
        "count": 2
3512 +
      },
3513 +
      "holdTime2": {
3514 +
        "mean": 63.9,
3515 +
        "std": 15.6,
3516 +
        "min": 52.9,
3517 +
        "max": 74.9,
3518 +
        "count": 2
3519 +
      },
3520 +
      "pressPress": {
3521 +
        "mean": 175.9,
3522 +
        "std": 24.9,
3523 +
        "min": 158.3,
3524 +
        "max": 193.5,
3525 +
        "count": 2
3526 +
      },
3527 +
      "releaseRelease": {
3528 +
        "mean": 148.9,
3529 +
        "std": 25.1,
3530 +
        "min": 131.1,
3531 +
        "max": 166.6,
3532 +
        "count": 2
3533 +
      },
3534 +
      "pressRelease": {
3535 +
        "mean": 239.8,
3536 +
        "std": 9.3,
3537 +
        "min": 233.2,
3538 +
        "max": 246.4,
3539 +
        "count": 2
3540 +
      },
3541 +
      "releasePress": {
3542 +
        "mean": 85,
3543 +
        "std": 9.5,
3544 +
        "min": 78.2,
3545 +
        "max": 91.7,
3546 +
        "count": 2
3547 +
      }
3548 +
    },
3549 +
    {
3550 +
      "normalizedKeys": "o → w",
3551 +
      "count": 2,
3552 +
      "holdTime1": {
3553 +
        "mean": 91.5,
3554 +
        "std": 23.5,
3555 +
        "min": 74.9,
3556 +
        "max": 108.1,
3557 +
        "count": 2
3558 +
      },
3559 +
      "holdTime2": {
3560 +
        "mean": 122.5,
3561 +
        "std": 14.8,
3562 +
        "min": 112,
3563 +
        "max": 133,
3564 +
        "count": 2
3565 +
      },
3566 +
      "pressPress": {
3567 +
        "mean": 81.8,
3568 +
        "std": 68.2,
3569 +
        "min": 33.6,
3570 +
        "max": 130,
3571 +
        "count": 2
3572 +
      },
3573 +
      "releaseRelease": {
3574 +
        "mean": 112.8,
3575 +
        "std": 29.8,
3576 +
        "min": 91.7,
3577 +
        "max": 133.9,
3578 +
        "count": 2
3579 +
      },
3580 +
      "pressRelease": {
3581 +
        "mean": 204.3,
3582 +
        "std": 53.3,
3583 +
        "min": 166.6,
3584 +
        "max": 242,
3585 +
        "count": 2
3586 +
      },
3587 +
      "releasePress": {
3588 +
        "mean": -9.7,
3589 +
        "std": 44.7,
3590 +
        "min": -41.3,
3591 +
        "max": 21.9,
3592 +
        "count": 2
3593 +
      }
3594 +
    },
3595 +
    {
3596 +
      "normalizedKeys": "h → o",
3597 +
      "count": 2,
3598 +
      "holdTime1": {
3599 +
        "mean": 91.3,
3600 +
        "std": 11.9,
3601 +
        "min": 82.9,
3602 +
        "max": 99.7,
3603 +
        "count": 2
3604 +
      },
3605 +
      "holdTime2": {
3606 +
        "mean": 83.2,
3607 +
        "std": 11.7,
3608 +
        "min": 74.9,
3609 +
        "max": 91.5,
3610 +
        "count": 2
3611 +
      },
3612 +
      "pressPress": {
3613 +
        "mean": 174.9,
3614 +
        "std": 35.5,
3615 +
        "min": 149.8,
3616 +
        "max": 200,
3617 +
        "count": 2
3618 +
      },
3619 +
      "releaseRelease": {
3620 +
        "mean": 166.8,
3621 +
        "std": 35.4,
3622 +
        "min": 141.8,
3623 +
        "max": 191.8,
3624 +
        "count": 2
3625 +
      },
3626 +
      "pressRelease": {
3627 +
        "mean": 258.1,
3628 +
        "std": 47.2,
3629 +
        "min": 224.7,
3630 +
        "max": 291.5,
3631 +
        "count": 2
3632 +
      },
3633 +
      "releasePress": {
3634 +
        "mean": 83.6,
3635 +
        "std": 23.6,
3636 +
        "min": 66.9,
3637 +
        "max": 100.3,
3638 +
        "count": 2
3639 +
      }
3640 +
    },
3641 +
    {
3642 +
      "normalizedKeys": "b → u",
3643 +
      "count": 2,
3644 +
      "holdTime1": {
3645 +
        "mean": 70.6,
3646 +
        "std": 5.9,
3647 +
        "min": 66.4,
3648 +
        "max": 74.7,
3649 +
        "count": 2
3650 +
      },
3651 +
      "holdTime2": {
3652 +
        "mean": 71.3,
3653 +
        "std": 16.8,
3654 +
        "min": 59.4,
3655 +
        "max": 83.1,
3656 +
        "count": 2
3657 +
      },
3658 +
      "pressPress": {
3659 +
        "mean": 82.7,
3660 +
        "std": 46.2,
3661 +
        "min": 50,
3662 +
        "max": 115.4,
3663 +
        "count": 2
3664 +
      },
3665 +
      "releaseRelease": {
3666 +
        "mean": 83.4,
3667 +
        "std": 35.4,
3668 +
        "min": 58.4,
3669 +
        "max": 108.4,
3670 +
        "count": 2
3671 +
      },
3672 +
      "pressRelease": {
3673 +
        "mean": 154,
3674 +
        "std": 29.5,
3675 +
        "min": 133.1,
3676 +
        "max": 174.8,
3677 +
        "count": 2
3678 +
      },
3679 +
      "releasePress": {
3680 +
        "mean": 12.2,
3681 +
        "std": 52.1,
3682 +
        "min": -24.7,
3683 +
        "max": 49,
3684 +
        "count": 2
3685 +
      }
3686 +
    },
3687 +
    {
3688 +
      "normalizedKeys": "n → e",
3689 +
      "count": 2,
3690 +
      "holdTime1": {
3691 +
        "mean": 140.9,
3692 +
        "std": 35.8,
3693 +
        "min": 115.6,
3694 +
        "max": 166.2,
3695 +
        "count": 2
3696 +
      },
3697 +
      "holdTime2": {
3698 +
        "mean": 100.8,
3699 +
        "std": 13.1,
3700 +
        "min": 91.5,
3701 +
        "max": 110,
3702 +
        "count": 2
3703 +
      },
3704 +
      "pressPress": {
3705 +
        "mean": 232.8,
3706 +
        "std": 71.2,
3707 +
        "min": 182.4,
3708 +
        "max": 283.1,
3709 +
        "count": 2
3710 +
      },
3711 +
      "releaseRelease": {
3712 +
        "mean": 192.6,
3713 +
        "std": 48.5,
3714 +
        "min": 158.3,
3715 +
        "max": 226.9,
3716 +
        "count": 2
3717 +
      },
3718 +
      "pressRelease": {
3719 +
        "mean": 333.5,
3720 +
        "std": 84.3,
3721 +
        "min": 273.9,
3722 +
        "max": 393.1,
3723 +
        "count": 2
3724 +
      },
3725 +
      "releasePress": {
3726 +
        "mean": 91.9,
3727 +
        "std": 35.4,
3728 +
        "min": 66.8,
3729 +
        "max": 116.9,
3730 +
        "count": 2
3731 +
      }
3732 +
    },
3733 +
    {
3734 +
      "normalizedKeys": "a → i",
3735 +
      "count": 2,
3736 +
      "holdTime1": {
3737 +
        "mean": 124.8,
3738 +
        "std": 21.4,
3739 +
        "min": 109.6,
3740 +
        "max": 139.9,
3741 +
        "count": 2
3742 +
      },
3743 +
      "holdTime2": {
3744 +
        "mean": 147.6,
3745 +
        "std": 20.7,
3746 +
        "min": 132.9,
3747 +
        "max": 162.2,
3748 +
        "count": 2
3749 +
      },
3750 +
      "pressPress": {
3751 +
        "mean": 125.6,
3752 +
        "std": 5.2,
3753 +
        "min": 121.9,
3754 +
        "max": 129.3,
3755 +
        "count": 2
3756 +
      },
3757 +
      "releaseRelease": {
3758 +
        "mean": 148.4,
3759 +
        "std": 47.4,
3760 +
        "min": 114.9,
3761 +
        "max": 181.9,
3762 +
        "count": 2
3763 +
      },
3764 +
      "pressRelease": {
3765 +
        "mean": 273.2,
3766 +
        "std": 26,
3767 +
        "min": 254.8,
3768 +
        "max": 291.5,
3769 +
        "count": 2
3770 +
      },
3771 +
      "releasePress": {
3772 +
        "mean": 0.8,
3773 +
        "std": 26.7,
3774 +
        "min": -18,
3775 +
        "max": 19.7,
3776 +
        "count": 2
3777 +
      }
3778 +
    },
3779 +
    {
3780 +
      "normalizedKeys": "r → a",
3781 +
      "count": 2,
3782 +
      "holdTime1": {
3783 +
        "mean": 75.3,
3784 +
        "std": 0.7,
3785 +
        "min": 74.8,
3786 +
        "max": 75.8,
3787 +
        "count": 2
3788 +
      },
3789 +
      "holdTime2": {
3790 +
        "mean": 129.7,
3791 +
        "std": 14.4,
3792 +
        "min": 119.5,
3793 +
        "max": 139.9,
3794 +
        "count": 2
3795 +
      },
3796 +
      "pressPress": {
3797 +
        "mean": 118.8,
3798 +
        "std": 13.4,
3799 +
        "min": 109.3,
3800 +
        "max": 128.2,
3801 +
        "count": 2
3802 +
      },
3803 +
      "releaseRelease": {
3804 +
        "mean": 173.2,
3805 +
        "std": 28.5,
3806 +
        "min": 153,
3807 +
        "max": 193.3,
3808 +
        "count": 2
3809 +
      },
3810 +
      "pressRelease": {
3811 +
        "mean": 248.5,
3812 +
        "std": 27.8,
3813 +
        "min": 228.8,
3814 +
        "max": 268.1,
3815 +
        "count": 2
3816 +
      },
3817 +
      "releasePress": {
3818 +
        "mean": 43.5,
3819 +
        "std": 14.1,
3820 +
        "min": 33.5,
3821 +
        "max": 53.4,
3822 +
        "count": 2
3823 +
      }
3824 +
    },
3825 +
    {
3826 +
      "normalizedKeys": "t → r",
3827 +
      "count": 2,
3828 +
      "holdTime1": {
3829 +
        "mean": 83.9,
3830 +
        "std": 6.2,
3831 +
        "min": 79.5,
3832 +
        "max": 88.2,
3833 +
        "count": 2
3834 +
      },
3835 +
      "holdTime2": {
3836 +
        "mean": 88.5,
3837 +
        "std": 19.4,
3838 +
        "min": 74.8,
3839 +
        "max": 102.2,
3840 +
        "count": 2
3841 +
      },
3842 +
      "pressPress": {
3843 +
        "mean": 176.8,
3844 +
        "std": 7.6,
3845 +
        "min": 171.4,
3846 +
        "max": 182.1,
3847 +
        "count": 2
3848 +
      },
3849 +
      "releaseRelease": {
3850 +
        "mean": 181.4,
3851 +
        "std": 20.8,
3852 +
        "min": 166.7,
3853 +
        "max": 196.1,
3854 +
        "count": 2
3855 +
      },
3856 +
      "pressRelease": {
3857 +
        "mean": 265.3,
3858 +
        "std": 26.9,
3859 +
        "min": 246.2,
3860 +
        "max": 284.3,
3861 +
        "count": 2
3862 +
      },
3863 +
      "releasePress": {
3864 +
        "mean": 92.9,
3865 +
        "std": 1.4,
3866 +
        "min": 91.9,
3867 +
        "max": 93.9,
3868 +
        "count": 2
3869 +
      }
3870 +
    },
3871 +
    {
3872 +
      "normalizedKeys": "␣ → u",
3873 +
      "count": 2,
3874 +
      "holdTime1": {
3875 +
        "mean": 72.6,
3876 +
        "std": 15,
3877 +
        "min": 62,
3878 +
        "max": 83.2,
3879 +
        "count": 2
3880 +
      },
3881 +
      "holdTime2": {
3882 +
        "mean": 75,
3883 +
        "std": 11.6,
3884 +
        "min": 66.8,
3885 +
        "max": 83.2,
3886 +
        "count": 2
3887 +
      },
3888 +
      "pressPress": {
3889 +
        "mean": 134.1,
3890 +
        "std": 98.6,
3891 +
        "min": 64.4,
3892 +
        "max": 203.8,
3893 +
        "count": 2
3894 +
      },
3895 +
      "releaseRelease": {
3896 +
        "mean": 136.5,
3897 +
        "std": 125.2,
3898 +
        "min": 48,
3899 +
        "max": 225,
3900 +
        "count": 2
3901 +
      },
3902 +
      "pressRelease": {
3903 +
        "mean": 209.1,
3904 +
        "std": 110.2,
3905 +
        "min": 131.2,
3906 +
        "max": 287,
3907 +
        "count": 2
3908 +
      },
3909 +
      "releasePress": {
3910 +
        "mean": 61.5,
3911 +
        "std": 113.6,
3912 +
        "min": -18.8,
3913 +
        "max": 141.8,
3914 +
        "count": 2
3915 +
      }
3916 +
    },
3917 +
    {
3918 +
      "normalizedKeys": "f → u",
3919 +
      "count": 2,
3920 +
      "holdTime1": {
3921 +
        "mean": 96.1,
3922 +
        "std": 10.2,
3923 +
        "min": 88.9,
3924 +
        "max": 103.3,
3925 +
        "count": 2
3926 +
      },
3927 +
      "holdTime2": {
3928 +
        "mean": 71.1,
3929 +
        "std": 21.8,
3930 +
        "min": 55.6,
3931 +
        "max": 86.5,
3932 +
        "count": 2
3933 +
      },
3934 +
      "pressPress": {
3935 +
        "mean": 241.2,
3936 +
        "std": 223.2,
3937 +
        "min": 83.4,
3938 +
        "max": 399,
3939 +
        "count": 2
3940 +
      },
3941 +
      "releaseRelease": {
3942 +
        "mean": 216.2,
3943 +
        "std": 234.8,
3944 +
        "min": 50.1,
3945 +
        "max": 382.2,
3946 +
        "count": 2
3947 +
      },
3948 +
      "pressRelease": {
3949 +
        "mean": 312.3,
3950 +
        "std": 245,
3951 +
        "min": 139,
3952 +
        "max": 485.5,
3953 +
        "count": 2
3954 +
      },
3955 +
      "releasePress": {
3956 +
        "mean": 145.1,
3957 +
        "std": 213,
3958 +
        "min": -5.5,
3959 +
        "max": 295.7,
3960 +
        "count": 2
3961 +
      }
3962 +
    },
3963 +
    {
3964 +
      "normalizedKeys": "u → s",
3965 +
      "count": 2,
3966 +
      "holdTime1": {
3967 +
        "mean": 87.9,
3968 +
        "std": 6.6,
3969 +
        "min": 83.2,
3970 +
        "max": 92.5,
3971 +
        "count": 2
3972 +
      },
3973 +
      "holdTime2": {
3974 +
        "mean": 108.7,
3975 +
        "std": 12.7,
3976 +
        "min": 99.7,
3977 +
        "max": 117.7,
3978 +
        "count": 2
3979 +
      },
3980 +
      "pressPress": {
3981 +
        "mean": 91.1,
3982 +
        "std": 1,
3983 +
        "min": 90.4,
3984 +
        "max": 91.8,
3985 +
        "count": 2
3986 +
      },
3987 +
      "releaseRelease": {
3988 +
        "mean": 112,
3989 +
        "std": 18.3,
3990 +
        "min": 99,
3991 +
        "max": 124.9,
3992 +
        "count": 2
3993 +
      },
3994 +
      "pressRelease": {
3995 +
        "mean": 199.8,
3996 +
        "std": 11.7,
3997 +
        "min": 191.5,
3998 +
        "max": 208.1,
3999 +
        "count": 2
4000 +
      },
4001 +
      "releasePress": {
4002 +
        "mean": 3.3,
4003 +
        "std": 5.6,
4004 +
        "min": -0.7,
4005 +
        "max": 7.2,
4006 +
        "count": 2
4007 +
      }
4008 +
    },
4009 +
    {
4010 +
      "normalizedKeys": "r → y",
4011 +
      "count": 2,
4012 +
      "holdTime1": {
4013 +
        "mean": 120.1,
4014 +
        "std": 17,
4015 +
        "min": 108.1,
4016 +
        "max": 132.1,
4017 +
        "count": 2
4018 +
      },
4019 +
      "holdTime2": {
4020 +
        "mean": 61.9,
4021 +
        "std": 3.2,
4022 +
        "min": 59.6,
4023 +
        "max": 64.1,
4024 +
        "count": 2
4025 +
      },
4026 +
      "pressPress": {
4027 +
        "mean": 100.6,
4028 +
        "std": 18.8,
4029 +
        "min": 87.3,
4030 +
        "max": 113.9,
4031 +
        "count": 2
4032 +
      },
4033 +
      "releaseRelease": {
4034 +
        "mean": 42.3,
4035 +
        "std": 1.3,
4036 +
        "min": 41.4,
4037 +
        "max": 43.3,
4038 +
        "count": 2
4039 +
      },
4040 +
      "pressRelease": {
4041 +
        "mean": 162.5,
4042 +
        "std": 15.6,
4043 +
        "min": 151.4,
4044 +
        "max": 173.5,
4045 +
        "count": 2
4046 +
      },
4047 +
      "releasePress": {
4048 +
        "mean": -19.5,
4049 +
        "std": 1.8,
4050 +
        "min": -20.8,
4051 +
        "max": -18.2,
4052 +
        "count": 2
4053 +
      }
4054 +
    },
4055 +
    {
4056 +
      "normalizedKeys": "␣ → v",
4057 +
      "count": 2,
4058 +
      "holdTime1": {
4059 +
        "mean": 60.2,
4060 +
        "std": 2.8,
4061 +
        "min": 58.2,
4062 +
        "max": 62.1,
4063 +
        "count": 2
4064 +
      },
4065 +
      "holdTime2": {
4066 +
        "mean": 50.9,
4067 +
        "std": 10.2,
4068 +
        "min": 43.7,
4069 +
        "max": 58.1,
4070 +
        "count": 2
4071 +
      },
4072 +
      "pressPress": {
4073 +
        "mean": 115.7,
4074 +
        "std": 1.6,
4075 +
        "min": 114.6,
4076 +
        "max": 116.8,
4077 +
        "count": 2
4078 +
      },
4079 +
      "releaseRelease": {
4080 +
        "mean": 106.5,
4081 +
        "std": 14.5,
4082 +
        "min": 96.2,
4083 +
        "max": 116.7,
4084 +
        "count": 2
4085 +
      },
4086 +
      "pressRelease": {
4087 +
        "mean": 166.6,
4088 +
        "std": 11.7,
4089 +
        "min": 158.3,
4090 +
        "max": 174.9,
4091 +
        "count": 2
4092 +
      },
4093 +
      "releasePress": {
4094 +
        "mean": 55.6,
4095 +
        "std": 4.3,
4096 +
        "min": 52.5,
4097 +
        "max": 58.6,
4098 +
        "count": 2
4099 +
      }
4100 +
    },
4101 +
    {
4102 +
      "normalizedKeys": "n → o",
4103 +
      "count": 2,
4104 +
      "holdTime1": {
4105 +
        "mean": 100.8,
4106 +
        "std": 10,
4107 +
        "min": 93.7,
4108 +
        "max": 107.9,
4109 +
        "count": 2
4110 +
      },
4111 +
      "holdTime2": {
4112 +
        "mean": 95.7,
4113 +
        "std": 17.6,
4114 +
        "min": 83.2,
4115 +
        "max": 108.1,
4116 +
        "count": 2
4117 +
      },
4118 +
      "pressPress": {
4119 +
        "mean": 192.4,
4120 +
        "std": 24.9,
4121 +
        "min": 174.8,
4122 +
        "max": 210,
4123 +
        "count": 2
4124 +
      },
4125 +
      "releaseRelease": {
4126 +
        "mean": 187.3,
4127 +
        "std": 17.3,
4128 +
        "min": 175,
4129 +
        "max": 199.5,
4130 +
        "count": 2
4131 +
      },
4132 +
      "pressRelease": {
4133 +
        "mean": 288,
4134 +
        "std": 7.3,
4135 +
        "min": 282.9,
4136 +
        "max": 293.2,
4137 +
        "count": 2
4138 +
      },
4139 +
      "releasePress": {
4140 +
        "mean": 91.6,
4141 +
        "std": 34.9,
4142 +
        "min": 66.9,
4143 +
        "max": 116.3,
4144 +
        "count": 2
4145 +
      }
4146 +
    },
4147 +
    {
4148 +
      "normalizedKeys": "␣ → n",
4149 +
      "count": 2,
4150 +
      "holdTime1": {
4151 +
        "mean": 71.7,
4152 +
        "std": 16.4,
4153 +
        "min": 60.1,
4154 +
        "max": 83.3,
4155 +
        "count": 2
4156 +
      },
4157 +
      "holdTime2": {
4158 +
        "mean": 92.5,
4159 +
        "std": 1.7,
4160 +
        "min": 91.3,
4161 +
        "max": 93.7,
4162 +
        "count": 2
4163 +
      },
4164 +
      "pressPress": {
4165 +
        "mean": 306.3,
4166 +
        "std": 258.5,
4167 +
        "min": 123.5,
4168 +
        "max": 489.1,
4169 +
        "count": 2
4170 +
      },
4171 +
      "releaseRelease": {
4172 +
        "mean": 327.1,
4173 +
        "std": 273.2,
4174 +
        "min": 133.9,
4175 +
        "max": 520.3,
4176 +
        "count": 2
4177 +
      },
4178 +
      "pressRelease": {
4179 +
        "mean": 398.8,
4180 +
        "std": 256.8,
4181 +
        "min": 217.2,
4182 +
        "max": 580.4,
4183 +
        "count": 2
4184 +
      },
4185 +
      "releasePress": {
4186 +
        "mean": 234.6,
4187 +
        "std": 274.9,
4188 +
        "min": 40.2,
4189 +
        "max": 429,
4190 +
        "count": 2
4191 +
      }
4192 +
    },
4193 +
    {
4194 +
      "normalizedKeys": "l → l",
4195 +
      "count": 2,
4196 +
      "holdTime1": {
4197 +
        "mean": 59.4,
4198 +
        "std": 5.2,
4199 +
        "min": 55.7,
4200 +
        "max": 63,
4201 +
        "count": 2
4202 +
      },
4203 +
      "holdTime2": {
4204 +
        "mean": 60.5,
4205 +
        "std": 11.2,
4206 +
        "min": 52.5,
4207 +
        "max": 68.4,
4208 +
        "count": 2
4209 +
      },
4210 +
      "pressPress": {
4211 +
        "mean": 145.5,
4212 +
        "std": 11.9,
4213 +
        "min": 137.1,
4214 +
        "max": 153.9,
4215 +
        "count": 2
4216 +
      },
4217 +
      "releaseRelease": {
4218 +
        "mean": 146.6,
4219 +
        "std": 18,
4220 +
        "min": 133.9,
4221 +
        "max": 159.3,
4222 +
        "count": 2
4223 +
      },
4224 +
      "pressRelease": {
4225 +
        "mean": 206,
4226 +
        "std": 23.1,
4227 +
        "min": 189.6,
4228 +
        "max": 222.3,
4229 +
        "count": 2
4230 +
      },
4231 +
      "releasePress": {
4232 +
        "mean": 86.2,
4233 +
        "std": 6.7,
4234 +
        "min": 81.4,
4235 +
        "max": 90.9,
4236 +
        "count": 2
4237 +
      }
4238 +
    },
4239 +
    {
4240 +
      "normalizedKeys": "m → ␣",
4241 +
      "count": 2,
4242 +
      "holdTime1": {
4243 +
        "mean": 106.9,
4244 +
        "std": 14.4,
4245 +
        "min": 96.7,
4246 +
        "max": 117.1,
4247 +
        "count": 2
4248 +
      },
4249 +
      "holdTime2": {
4250 +
        "mean": 78.1,
4251 +
        "std": 28.3,
4252 +
        "min": 58.1,
4253 +
        "max": 98.1,
4254 +
        "count": 2
4255 +
      },
4256 +
      "pressPress": {
4257 +
        "mean": 157.5,
4258 +
        "std": 60,
4259 +
        "min": 115.1,
4260 +
        "max": 199.9,
4261 +
        "count": 2
4262 +
      },
4263 +
      "releaseRelease": {
4264 +
        "mean": 128.7,
4265 +
        "std": 17.3,
4266 +
        "min": 116.5,
4267 +
        "max": 140.9,
4268 +
        "count": 2
4269 +
      },
4270 +
      "pressRelease": {
4271 +
        "mean": 235.6,
4272 +
        "std": 31.7,
4273 +
        "min": 213.2,
4274 +
        "max": 258,
4275 +
        "count": 2
4276 +
      },
4277 +
      "releasePress": {
4278 +
        "mean": 50.6,
4279 +
        "std": 45.5,
4280 +
        "min": 18.4,
4281 +
        "max": 82.8,
4282 +
        "count": 2
4283 +
      }
4284 +
    },
4285 +
    {
4286 +
      "normalizedKeys": "e → e",
4287 +
      "count": 2,
4288 +
      "holdTime1": {
4289 +
        "mean": 69.3,
4290 +
        "std": 3.9,
4291 +
        "min": 66.5,
4292 +
        "max": 72,
4293 +
        "count": 2
4294 +
      },
4295 +
      "holdTime2": {
4296 +
        "mean": 78.6,
4297 +
        "std": 30.4,
4298 +
        "min": 57.1,
4299 +
        "max": 100.1,
4300 +
        "count": 2
4301 +
      },
4302 +
      "pressPress": {
4303 +
        "mean": 213.1,
4304 +
        "std": 68.2,
4305 +
        "min": 164.9,
4306 +
        "max": 261.3,
4307 +
        "count": 2
4308 +
      },
4309 +
      "releaseRelease": {
4310 +
        "mean": 222.5,
4311 +
        "std": 102.5,
4312 +
        "min": 150,
4313 +
        "max": 294.9,
4314 +
        "count": 2
4315 +
      },
4316 +
      "pressRelease": {
4317 +
        "mean": 291.7,
4318 +
        "std": 98.6,
4319 +
        "min": 222,
4320 +
        "max": 361.4,
4321 +
        "count": 2
4322 +
      },
4323 +
      "releasePress": {
4324 +
        "mean": 143.9,
4325 +
        "std": 72.1,
4326 +
        "min": 92.9,
4327 +
        "max": 194.8,
4328 +
        "count": 2
4329 +
      }
4330 +
    },
4331 +
    {
4332 +
      "normalizedKeys": "a → y",
4333 +
      "count": 2,
4334 +
      "holdTime1": {
4335 +
        "mean": 191.2,
4336 +
        "std": 21.6,
4337 +
        "min": 175.9,
4338 +
        "max": 206.5,
4339 +
        "count": 2
4340 +
      },
4341 +
      "holdTime2": {
4342 +
        "mean": 91.2,
4343 +
        "std": 17.8,
4344 +
        "min": 78.6,
4345 +
        "max": 103.8,
4346 +
        "count": 2
4347 +
      },
4348 +
      "pressPress": {
4349 +
        "mean": 140.6,
4350 +
        "std": 24.3,
4351 +
        "min": 123.4,
4352 +
        "max": 157.7,
4353 +
        "count": 2
4354 +
      },
4355 +
      "releaseRelease": {
4356 +
        "mean": 40.6,
4357 +
        "std": 28.1,
4358 +
        "min": 20.7,
4359 +
        "max": 60.4,
4360 +
        "count": 2
4361 +
      },
4362 +
      "pressRelease": {
4363 +
        "mean": 231.8,
4364 +
        "std": 6.4,
4365 +
        "min": 227.2,
4366 +
        "max": 236.3,
4367 +
        "count": 2
4368 +
      },
4369 +
      "releasePress": {
4370 +
        "mean": -50.6,
4371 +
        "std": 45.9,
4372 +
        "min": -83.1,
4373 +
        "max": -18.2,
4374 +
        "count": 2
4375 +
      }
4376 +
    },
4377 +
    {
4378 +
      "normalizedKeys": "c → h",
4379 +
      "count": 2,
4380 +
      "holdTime1": {
4381 +
        "mean": 101.3,
4382 +
        "std": 13.7,
4383 +
        "min": 91.6,
4384 +
        "max": 111,
4385 +
        "count": 2
4386 +
      },
4387 +
      "holdTime2": {
4388 +
        "mean": 77.9,
4389 +
        "std": 4.5,
4390 +
        "min": 74.8,
4391 +
        "max": 81.1,
4392 +
        "count": 2
4393 +
      },
4394 +
      "pressPress": {
4395 +
        "mean": 66.7,
4396 +
        "std": 23.6,
4397 +
        "min": 50,
4398 +
        "max": 83.4,
4399 +
        "count": 2
4400 +
      },
4401 +
      "releaseRelease": {
4402 +
        "mean": 43.4,
4403 +
        "std": 14.4,
4404 +
        "min": 33.2,
4405 +
        "max": 53.5,
4406 +
        "count": 2
4407 +
      },
4408 +
      "pressRelease": {
4409 +
        "mean": 144.7,
4410 +
        "std": 28.1,
4411 +
        "min": 124.8,
4412 +
        "max": 164.5,
4413 +
        "count": 2
4414 +
      },
4415 +
      "releasePress": {
4416 +
        "mean": -34.6,
4417 +
        "std": 9.9,
4418 +
        "min": -41.6,
4419 +
        "max": -27.6,
4420 +
        "count": 2
4421 +
      }
4422 +
    },
4423 +
    {
4424 +
      "normalizedKeys": "i → c",
4425 +
      "count": 2,
4426 +
      "holdTime1": {
4427 +
        "mean": 113,
4428 +
        "std": 33.6,
4429 +
        "min": 89.2,
4430 +
        "max": 136.7,
4431 +
        "count": 2
4432 +
      },
4433 +
      "holdTime2": {
4434 +
        "mean": 117.9,
4435 +
        "std": 9.8,
4436 +
        "min": 111,
4437 +
        "max": 124.8,
4438 +
        "count": 2
4439 +
      },
4440 +
      "pressPress": {
4441 +
        "mean": 144.4,
4442 +
        "std": 15.6,
4443 +
        "min": 133.3,
4444 +
        "max": 155.4,
4445 +
        "count": 2
4446 +
      },
4447 +
      "releaseRelease": {
4448 +
        "mean": 149.3,
4449 +
        "std": 39.5,
4450 +
        "min": 121.4,
4451 +
        "max": 177.2,
4452 +
        "count": 2
4453 +
      },
4454 +
      "pressRelease": {
4455 +
        "mean": 262.3,
4456 +
        "std": 5.9,
4457 +
        "min": 258.1,
4458 +
        "max": 266.4,
4459 +
        "count": 2
4460 +
      },
4461 +
      "releasePress": {
4462 +
        "mean": 31.4,
4463 +
        "std": 49.2,
4464 +
        "min": -3.4,
4465 +
        "max": 66.2,
4466 +
        "count": 2
4467 +
      }
4468 +
    },
4469 +
    {
4470 +
      "normalizedKeys": "m → i",
4471 +
      "count": 2,
4472 +
      "holdTime1": {
4473 +
        "mean": 78,
4474 +
        "std": 4.5,
4475 +
        "min": 74.8,
4476 +
        "max": 81.2,
4477 +
        "count": 2
4478 +
      },
4479 +
      "holdTime2": {
4480 +
        "mean": 158.5,
4481 +
        "std": 11.5,
4482 +
        "min": 150.4,
4483 +
        "max": 166.6,
4484 +
        "count": 2
4485 +
      },
4486 +
      "pressPress": {
4487 +
        "mean": 160.2,
4488 +
        "std": 44.3,
4489 +
        "min": 128.9,
4490 +
        "max": 191.5,
4491 +
        "count": 2
4492 +
      },
4493 +
      "releaseRelease": {
4494 +
        "mean": 240.7,
4495 +
        "std": 60.2,
4496 +
        "min": 198.1,
4497 +
        "max": 283.3,
4498 +
        "count": 2
4499 +
      },
4500 +
      "pressRelease": {
4501 +
        "mean": 318.7,
4502 +
        "std": 55.7,
4503 +
        "min": 279.3,
4504 +
        "max": 358.1,
4505 +
        "count": 2
4506 +
      },
4507 +
      "releasePress": {
4508 +
        "mean": 82.2,
4509 +
        "std": 48.8,
4510 +
        "min": 47.7,
4511 +
        "max": 116.7,
4512 +
        "count": 2
4513 +
      }
4514 +
    },
4515 +
    {
4516 +
      "normalizedKeys": "t → e",
4517 +
      "count": 2,
4518 +
      "holdTime1": {
4519 +
        "mean": 77.1,
4520 +
        "std": 7.3,
4521 +
        "min": 71.9,
4522 +
        "max": 82.2,
4523 +
        "count": 2
4524 +
      },
4525 +
      "holdTime2": {
4526 +
        "mean": 121.4,
4527 +
        "std": 10,
4528 +
        "min": 114.3,
4529 +
        "max": 128.5,
4530 +
        "count": 2
4531 +
      },
4532 +
      "pressPress": {
4533 +
        "mean": 336.6,
4534 +
        "std": 301.1,
4535 +
        "min": 123.7,
4536 +
        "max": 549.5,
4537 +
        "count": 2
4538 +
      },
4539 +
      "releaseRelease": {
4540 +
        "mean": 381,
4541 +
        "std": 298.3,
4542 +
        "min": 170,
4543 +
        "max": 591.9,
4544 +
        "count": 2
4545 +
      },
4546 +
      "pressRelease": {
4547 +
        "mean": 458,
4548 +
        "std": 291,
4549 +
        "min": 252.2,
4550 +
        "max": 663.8,
4551 +
        "count": 2
4552 +
      },
4553 +
      "releasePress": {
4554 +
        "mean": 259.6,
4555 +
        "std": 308.4,
4556 +
        "min": 41.5,
4557 +
        "max": 477.6,
4558 +
        "count": 2
4559 +
      }
4560 +
    },
4561 +
    {
4562 +
      "normalizedKeys": "s → o",
4563 +
      "count": 2,
4564 +
      "holdTime1": {
4565 +
        "mean": 95.4,
4566 +
        "std": 5.5,
4567 +
        "min": 91.5,
4568 +
        "max": 99.3,
4569 +
        "count": 2
4570 +
      },
4571 +
      "holdTime2": {
4572 +
        "mean": 90.1,
4573 +
        "std": 33.9,
4574 +
        "min": 66.1,
4575 +
        "max": 114.1,
4576 +
        "count": 2
4577 +
      },
4578 +
      "pressPress": {
4579 +
        "mean": 57.9,
4580 +
        "std": 36.7,
4581 +
        "min": 31.9,
4582 +
        "max": 83.8,
4583 +
        "count": 2
4584 +
      },
4585 +
      "releaseRelease": {
4586 +
        "mean": 52.6,
4587 +
        "std": 8.3,
4588 +
        "min": 46.7,
4589 +
        "max": 58.4,
4590 +
        "count": 2
4591 +
      },
4592 +
      "pressRelease": {
4593 +
        "mean": 148,
4594 +
        "std": 2.8,
4595 +
        "min": 146,
4596 +
        "max": 149.9,
4597 +
        "count": 2
4598 +
      },
4599 +
      "releasePress": {
4600 +
        "mean": -37.6,
4601 +
        "std": 42.2,
4602 +
        "min": -67.4,
4603 +
        "max": -7.7,
4604 +
        "count": 2
4605 +
      }
4606 +
    },
4607 +
    {
4608 +
      "normalizedKeys": "a → s",
4609 +
      "count": 2,
4610 +
      "holdTime1": {
4611 +
        "mean": 148.8,
4612 +
        "std": 45.5,
4613 +
        "min": 116.6,
4614 +
        "max": 181,
4615 +
        "count": 2
4616 +
      },
4617 +
      "holdTime2": {
4618 +
        "mean": 136.7,
4619 +
        "std": 52.2,
4620 +
        "min": 99.8,
4621 +
        "max": 173.6,
4622 +
        "count": 2
4623 +
      },
4624 +
      "pressPress": {
4625 +
        "mean": 182.6,
4626 +
        "std": 36.3,
4627 +
        "min": 156.9,
4628 +
        "max": 208.3,
4629 +
        "count": 2
4630 +
      },
4631 +
      "releaseRelease": {
4632 +
        "mean": 170.5,
4633 +
        "std": 29.7,
4634 +
        "min": 149.5,
4635 +
        "max": 191.5,
4636 +
        "count": 2
4637 +
      },
4638 +
      "pressRelease": {
4639 +
        "mean": 319.3,
4640 +
        "std": 15.8,
4641 +
        "min": 308.1,
4642 +
        "max": 330.5,
4643 +
        "count": 2
4644 +
      },
4645 +
      "releasePress": {
4646 +
        "mean": 33.8,
4647 +
        "std": 81.9,
4648 +
        "min": -24.1,
4649 +
        "max": 91.7,
4650 +
        "count": 2
4651 +
      }
4652 +
    },
4653 +
    {
4654 +
      "normalizedKeys": "b → a",
4655 +
      "count": 2,
4656 +
      "holdTime1": {
4657 +
        "mean": 85.1,
4658 +
        "std": 28.8,
4659 +
        "min": 64.7,
4660 +
        "max": 105.4,
4661 +
        "count": 2
4662 +
      },
4663 +
      "holdTime2": {
4664 +
        "mean": 112.5,
4665 +
        "std": 5.8,
4666 +
        "min": 108.4,
4667 +
        "max": 116.6,
4668 +
        "count": 2
4669 +
      },
4670 +
      "pressPress": {
4671 +
        "mean": 197.6,
4672 +
        "std": 117.1,
4673 +
        "min": 114.8,
4674 +
        "max": 280.4,
4675 +
        "count": 2
4676 +
      },
4677 +
      "releaseRelease": {
4678 +
        "mean": 225.1,
4679 +
        "std": 82.5,
4680 +
        "min": 166.7,
4681 +
        "max": 283.4,
4682 +
        "count": 2
4683 +
      },
4684 +
      "pressRelease": {
4685 +
        "mean": 310.1,
4686 +
        "std": 111.3,
4687 +
        "min": 231.4,
4688 +
        "max": 388.8,
4689 +
        "count": 2
4690 +
      },
4691 +
      "releasePress": {
4692 +
        "mean": 112.6,
4693 +
        "std": 88.3,
4694 +
        "min": 50.1,
4695 +
        "max": 175,
4696 +
        "count": 2
4697 +
      }
4698 +
    },
4699 +
    {
4700 +
      "normalizedKeys": "o → l",
4701 +
      "count": 2,
4702 +
      "holdTime1": {
4703 +
        "mean": 87.3,
4704 +
        "std": 5.9,
4705 +
        "min": 83.1,
4706 +
        "max": 91.5,
4707 +
        "count": 2
4708 +
      },
4709 +
      "holdTime2": {
4710 +
        "mean": 95.2,
4711 +
        "std": 5.4,
4712 +
        "min": 91.4,
4713 +
        "max": 99,
4714 +
        "count": 2
4715 +
      },
4716 +
      "pressPress": {
4717 +
        "mean": 175.5,
4718 +
        "std": 22.8,
4719 +
        "min": 159.3,
4720 +
        "max": 191.6,
4721 +
        "count": 2
4722 +
      },
4723 +
      "releaseRelease": {
4724 +
        "mean": 183.4,
4725 +
        "std": 23.4,
4726 +
        "min": 166.8,
4727 +
        "max": 199.9,
4728 +
        "count": 2
4729 +
      },
4730 +
      "pressRelease": {
4731 +
        "mean": 270.7,
4732 +
        "std": 17.5,
4733 +
        "min": 258.3,
4734 +
        "max": 283,
4735 +
        "count": 2
4736 +
      },
4737 +
      "releasePress": {
4738 +
        "mean": 88.2,
4739 +
        "std": 28.8,
4740 +
        "min": 67.8,
4741 +
        "max": 108.5,
4742 +
        "count": 2
4743 +
      }
4744 +
    },
4745 +
    {
4746 +
      "normalizedKeys": "e → .",
4747 +
      "count": 2,
4748 +
      "holdTime1": {
4749 +
        "mean": 97.3,
4750 +
        "std": 3.8,
4751 +
        "min": 94.6,
4752 +
        "max": 100,
4753 +
        "count": 2
4754 +
      },
4755 +
      "holdTime2": {
4756 +
        "mean": 99.8,
4757 +
        "std": 0.4,
4758 +
        "min": 99.5,
4759 +
        "max": 100,
4760 +
        "count": 2
4761 +
      },
4762 +
      "pressPress": {
4763 +
        "mean": 621.8,
4764 +
        "std": 593.9,
4765 +
        "min": 201.8,
4766 +
        "max": 1041.7,
4767 +
        "count": 2
4768 +
      },
4769 +
      "releaseRelease": {
4770 +
        "mean": 624.2,
4771 +
        "std": 598.1,
4772 +
        "min": 201.3,
4773 +
        "max": 1047.1,
4774 +
        "count": 2
4775 +
      },
4776 +
      "pressRelease": {
4777 +
        "mean": 721.5,
4778 +
        "std": 594.3,
4779 +
        "min": 301.3,
4780 +
        "max": 1141.7,
4781 +
        "count": 2
4782 +
      },
4783 +
      "releasePress": {
4784 +
        "mean": 524.5,
4785 +
        "std": 597.7,
4786 +
        "min": 101.8,
4787 +
        "max": 947.1,
4788 +
        "count": 2
4789 +
      }
4790 +
    },
4791 +
    {
4792 +
      "normalizedKeys": "a → d",
4793 +
      "count": 2,
4794 +
      "holdTime1": {
4795 +
        "mean": 175.4,
4796 +
        "std": 36.4,
4797 +
        "min": 149.6,
4798 +
        "max": 201.1,
4799 +
        "count": 2
4800 +
      },
4801 +
      "holdTime2": {
4802 +
        "mean": 82.4,
4803 +
        "std": 51.1,
4804 +
        "min": 46.2,
4805 +
        "max": 118.5,
4806 +
        "count": 2
4807 +
      },
4808 +
      "pressPress": {
4809 +
        "mean": 270,
4810 +
        "std": 89.6,
4811 +
        "min": 206.6,
4812 +
        "max": 333.3,
4813 +
        "count": 2
4814 +
      },
4815 +
      "releaseRelease": {
4816 +
        "mean": 177,
4817 +
        "std": 177.1,
4818 +
        "min": 51.7,
4819 +
        "max": 302.2,
4820 +
        "count": 2
4821 +
      },
4822 +
      "pressRelease": {
4823 +
        "mean": 352.3,
4824 +
        "std": 140.7,
4825 +
        "min": 252.8,
4826 +
        "max": 451.8,
4827 +
        "count": 2
4828 +
      },
4829 +
      "releasePress": {
4830 +
        "mean": 94.6,
4831 +
        "std": 126,
4832 +
        "min": 5.5,
4833 +
        "max": 183.7,
4834 +
        "count": 2
4835 +
      }
4836 +
    },
4837 +
    {
4838 +
      "normalizedKeys": "e → c",
4839 +
      "count": 2,
4840 +
      "holdTime1": {
4841 +
        "mean": 97.7,
4842 +
        "std": 6.1,
4843 +
        "min": 93.4,
4844 +
        "max": 102,
4845 +
        "count": 2
4846 +
      },
4847 +
      "holdTime2": {
4848 +
        "mean": 108.7,
4849 +
        "std": 7.8,
4850 +
        "min": 103.1,
4851 +
        "max": 114.2,
4852 +
        "count": 2
4853 +
      },
4854 +
      "pressPress": {
4855 +
        "mean": 252.6,
4856 +
        "std": 51.3,
4857 +
        "min": 216.3,
4858 +
        "max": 288.9,
4859 +
        "count": 2
4860 +
      },
4861 +
      "releaseRelease": {
4862 +
        "mean": 263.6,
4863 +
        "std": 53.1,
4864 +
        "min": 226,
4865 +
        "max": 301.1,
4866 +
        "count": 2
4867 +
      },
4868 +
      "pressRelease": {
4869 +
        "mean": 361.3,
4870 +
        "std": 59.2,
4871 +
        "min": 319.4,
4872 +
        "max": 403.1,
4873 +
        "count": 2
4874 +
      },
4875 +
      "releasePress": {
4876 +
        "mean": 154.9,
4877 +
        "std": 45.3,
4878 +
        "min": 122.9,
4879 +
        "max": 186.9,
4880 +
        "count": 2
4881 +
      }
4882 +
    },
4883 +
    {
4884 +
      "normalizedKeys": "␣ → f",
4885 +
      "count": 2,
4886 +
      "holdTime1": {
4887 +
        "mean": 68.6,
4888 +
        "std": 27.6,
4889 +
        "min": 49,
4890 +
        "max": 88.1,
4891 +
        "count": 2
4892 +
      },
4893 +
      "holdTime2": {
4894 +
        "mean": 77.8,
4895 +
        "std": 15.8,
4896 +
        "min": 66.6,
4897 +
        "max": 88.9,
4898 +
        "count": 2
4899 +
      },
4900 +
      "pressPress": {
4901 +
        "mean": 162.4,
4902 +
        "std": 53.9,
4903 +
        "min": 124.3,
4904 +
        "max": 200.5,
4905 +
        "count": 2
4906 +
      },
4907 +
      "releaseRelease": {
4908 +
        "mean": 171.6,
4909 +
        "std": 65.8,
4910 +
        "min": 125.1,
4911 +
        "max": 218.1,
4912 +
        "count": 2
4913 +
      },
4914 +
      "pressRelease": {
4915 +
        "mean": 240.2,
4916 +
        "std": 38.1,
4917 +
        "min": 213.2,
4918 +
        "max": 267.1,
4919 +
        "count": 2
4920 +
      },
4921 +
      "releasePress": {
4922 +
        "mean": 93.9,
4923 +
        "std": 81.5,
4924 +
        "min": 36.2,
4925 +
        "max": 151.5,
4926 +
        "count": 2
4927 +
      }
4928 +
    },
4929 +
    {
4930 +
      "normalizedKeys": "w → a",
4931 +
      "count": 2,
4932 +
      "holdTime1": {
4933 +
        "mean": 141.4,
4934 +
        "std": 27.7,
4935 +
        "min": 121.8,
4936 +
        "max": 161,
4937 +
        "count": 2
4938 +
      },
4939 +
      "holdTime2": {
4940 +
        "mean": 193.8,
4941 +
        "std": 18,
4942 +
        "min": 181,
4943 +
        "max": 206.5,
4944 +
        "count": 2
4945 +
      },
4946 +
      "pressPress": {
4947 +
        "mean": 225.6,
4948 +
        "std": 116.5,
4949 +
        "min": 143.2,
4950 +
        "max": 307.9,
4951 +
        "count": 2
4952 +
      },
4953 +
      "releaseRelease": {
4954 +
        "mean": 277.9,
4955 +
        "std": 126.1,
4956 +
        "min": 188.7,
4957 +
        "max": 367.1,
4958 +
        "count": 2
4959 +
      },
4960 +
      "pressRelease": {
4961 +
        "mean": 419.3,
4962 +
        "std": 98.4,
4963 +
        "min": 349.7,
4964 +
        "max": 488.9,
4965 +
        "count": 2
4966 +
      },
4967 +
      "releasePress": {
4968 +
        "mean": 84.1,
4969 +
        "std": 144.2,
4970 +
        "min": -17.8,
4971 +
        "max": 186.1,
4972 +
        "count": 2
4973 +
      }
4974 +
    },
4975 +
    {
4976 +
      "normalizedKeys": "g → e",
4977 +
      "count": 2,
4978 +
      "holdTime1": {
4979 +
        "mean": 62.4,
4980 +
        "std": 28.8,
4981 +
        "min": 42,
4982 +
        "max": 82.8,
4983 +
        "count": 2
4984 +
      },
4985 +
      "holdTime2": {
4986 +
        "mean": 97.2,
4987 +
        "std": 3.7,
4988 +
        "min": 94.6,
4989 +
        "max": 99.8,
4990 +
        "count": 2
4991 +
      },
4992 +
      "pressPress": {
4993 +
        "mean": 141.5,
4994 +
        "std": 22.6,
4995 +
        "min": 125.5,
4996 +
        "max": 157.5,
4997 +
        "count": 2
4998 +
      },
4999 +
      "releaseRelease": {
5000 +
        "mean": 176.3,
5001 +
        "std": 2.5,
5002 +
        "min": 174.5,
5003 +
        "max": 178.1,
5004 +
        "count": 2
5005 +
      },
5006 +
      "pressRelease": {
5007 +
        "mean": 238.7,
5008 +
        "std": 26.3,
5009 +
        "min": 220.1,
5010 +
        "max": 257.3,
5011 +
        "count": 2
5012 +
      },
5013 +
      "releasePress": {
5014 +
        "mean": 79.1,
5015 +
        "std": 6.2,
5016 +
        "min": 74.7,
5017 +
        "max": 83.5,
5018 +
        "count": 2
5019 +
      }
5020 +
    },
5021 +
    {
5022 +
      "normalizedKeys": "u → a",
5023 +
      "count": 2,
5024 +
      "holdTime1": {
5025 +
        "mean": 78.9,
5026 +
        "std": 5.9,
5027 +
        "min": 74.8,
5028 +
        "max": 83.1,
5029 +
        "count": 2
5030 +
      },
5031 +
      "holdTime2": {
5032 +
        "mean": 183.1,
5033 +
        "std": 71.2,
5034 +
        "min": 132.7,
5035 +
        "max": 233.4,
5036 +
        "count": 2
5037 +
      },
5038 +
      "pressPress": {
5039 +
        "mean": 79.5,
5040 +
        "std": 111.7,
5041 +
        "min": 0.5,
5042 +
        "max": 158.5,
5043 +
        "count": 2
5044 +
      },
5045 +
      "releaseRelease": {
5046 +
        "mean": 183.6,
5047 +
        "std": 188.8,
5048 +
        "min": 50.1,
5049 +
        "max": 317.1,
5050 +
        "count": 2
5051 +
      },
5052 +
      "pressRelease": {
5053 +
        "mean": 262.5,
5054 +
        "std": 182.9,
5055 +
        "min": 133.2,
5056 +
        "max": 391.9,
5057 +
        "count": 2
5058 +
      },
5059 +
      "releasePress": {
5060 +
        "mean": 0.6,
5061 +
        "std": 117.6,
5062 +
        "min": -82.6,
5063 +
        "max": 83.7,
5064 +
        "count": 2
5065 +
      }
5066 +
    },
5067 +
    {
5068 +
      "normalizedKeys": "m → m",
5069 +
      "count": 2,
5070 +
      "holdTime1": {
5071 +
        "mean": 41.2,
5072 +
        "std": 34.9,
5073 +
        "min": 16.5,
5074 +
        "max": 65.8,
5075 +
        "count": 2
5076 +
      },
5077 +
      "holdTime2": {
5078 +
        "mean": 74.8,
5079 +
        "std": 0.1,
5080 +
        "min": 74.7,
5081 +
        "max": 74.8,
5082 +
        "count": 2
5083 +
      },
5084 +
      "pressPress": {
5085 +
        "mean": 126.5,
5086 +
        "std": 37.3,
5087 +
        "min": 100.1,
5088 +
        "max": 152.8,
5089 +
        "count": 2
5090 +
      },
5091 +
      "releaseRelease": {
5092 +
        "mean": 160.1,
5093 +
        "std": 2.5,
5094 +
        "min": 158.3,
5095 +
        "max": 161.8,
5096 +
        "count": 2
5097 +
      },
5098 +
      "pressRelease": {
5099 +
        "mean": 201.2,
5100 +
        "std": 37.3,
5101 +
        "min": 174.8,
5102 +
        "max": 227.6,
5103 +
        "count": 2
5104 +
      },
5105 +
      "releasePress": {
5106 +
        "mean": 85.3,
5107 +
        "std": 2.4,
5108 +
        "min": 83.6,
5109 +
        "max": 87,
5110 +
        "count": 2
5111 +
      }
5112 +
    },
5113 +
    {
5114 +
      "normalizedKeys": "p → r",
5115 +
      "count": 2,
5116 +
      "holdTime1": {
5117 +
        "mean": 62.9,
5118 +
        "std": 6.8,
5119 +
        "min": 58.1,
5120 +
        "max": 67.7,
5121 +
        "count": 2
5122 +
      },
5123 +
      "holdTime2": {
5124 +
        "mean": 74.9,
5125 +
        "std": 8.4,
5126 +
        "min": 68.9,
5127 +
        "max": 80.8,
5128 +
        "count": 2
5129 +
      },
5130 +
      "pressPress": {
5131 +
        "mean": 84.6,
5132 +
        "std": 1.6,
5133 +
        "min": 83.4,
5134 +
        "max": 85.7,
5135 +
        "count": 2
5136 +
      },
5137 +
      "releaseRelease": {
5138 +
        "mean": 96.5,
5139 +
        "std": 0,
5140 +
        "min": 96.5,
5141 +
        "max": 96.5,
5142 +
        "count": 2
5143 +
      },
5144 +
      "pressRelease": {
5145 +
        "mean": 159.4,
5146 +
        "std": 6.8,
5147 +
        "min": 154.6,
5148 +
        "max": 164.2,
5149 +
        "count": 2
5150 +
      },
5151 +
      "releasePress": {
5152 +
        "mean": 21.7,
5153 +
        "std": 8.4,
5154 +
        "min": 15.7,
5155 +
        "max": 27.6,
5156 +
        "count": 2
5157 +
      }
5158 +
    },
5159 +
    {
5160 +
      "normalizedKeys": "p → e",
5161 +
      "count": 2,
5162 +
      "holdTime1": {
5163 +
        "mean": 93.8,
5164 +
        "std": 26.9,
5165 +
        "min": 74.8,
5166 +
        "max": 112.8,
5167 +
        "count": 2
5168 +
      },
5169 +
      "holdTime2": {
5170 +
        "mean": 99.9,
5171 +
        "std": 47,
5172 +
        "min": 66.7,
5173 +
        "max": 133.1,
5174 +
        "count": 2
5175 +
      },
5176 +
      "pressPress": {
5177 +
        "mean": 63.4,
5178 +
        "std": 18.9,
5179 +
        "min": 50,
5180 +
        "max": 76.7,
5181 +
        "count": 2
5182 +
      },
5183 +
      "releaseRelease": {
5184 +
        "mean": 69.5,
5185 +
        "std": 54.9,
5186 +
        "min": 30.6,
5187 +
        "max": 108.3,
5188 +
        "count": 2
5189 +
      },
5190 +
      "pressRelease": {
5191 +
        "mean": 163.3,
5192 +
        "std": 28.1,
5193 +
        "min": 143.4,
5194 +
        "max": 183.1,
5195 +
        "count": 2
5196 +
      },
5197 +
      "releasePress": {
5198 +
        "mean": -30.4,
5199 +
        "std": 8,
5200 +
        "min": -36.1,
5201 +
        "max": -24.8,
5202 +
        "count": 2
5203 +
      }
5204 +
    },
5205 +
    {
5206 +
      "normalizedKeys": "o → p",
5207 +
      "count": 2,
5208 +
      "holdTime1": {
5209 +
        "mean": 74.7,
5210 +
        "std": 23.3,
5211 +
        "min": 58.2,
5212 +
        "max": 91.1,
5213 +
        "count": 2
5214 +
      },
5215 +
      "holdTime2": {
5216 +
        "mean": 93.8,
5217 +
        "std": 26.9,
5218 +
        "min": 74.8,
5219 +
        "max": 112.8,
5220 +
        "count": 2
5221 +
      },
5222 +
      "pressPress": {
5223 +
        "mean": 99.9,
5224 +
        "std": 70.9,
5225 +
        "min": 49.7,
5226 +
        "max": 150,
5227 +
        "count": 2
5228 +
      },
5229 +
      "releaseRelease": {
5230 +
        "mean": 119,
5231 +
        "std": 67.3,
5232 +
        "min": 71.4,
5233 +
        "max": 166.6,
5234 +
        "count": 2
5235 +
      },
5236 +
      "pressRelease": {
5237 +
        "mean": 193.7,
5238 +
        "std": 44.1,
5239 +
        "min": 162.5,
5240 +
        "max": 224.8,
5241 +
        "count": 2
5242 +
      },
5243 +
      "releasePress": {
5244 +
        "mean": 25.2,
5245 +
        "std": 94.2,
5246 +
        "min": -41.4,
5247 +
        "max": 91.8,
5248 +
        "count": 2
5249 +
      }
5250 +
    },
5251 +
    {
5252 +
      "normalizedKeys": "e → v",
5253 +
      "count": 2,
5254 +
      "holdTime1": {
5255 +
        "mean": 89.3,
5256 +
        "std": 26.3,
5257 +
        "min": 70.7,
5258 +
        "max": 107.9,
5259 +
        "count": 2
5260 +
      },
5261 +
      "holdTime2": {
5262 +
        "mean": 67.8,
5263 +
        "std": 1.6,
5264 +
        "min": 66.6,
5265 +
        "max": 68.9,
5266 +
        "count": 2
5267 +
      },
5268 +
      "pressPress": {
5269 +
        "mean": 165.5,
5270 +
        "std": 30,
5271 +
        "min": 144.3,
5272 +
        "max": 186.7,
5273 +
        "count": 2
5274 +
      },
5275 +
      "releaseRelease": {
5276 +
        "mean": 144,
5277 +
        "std": 2.1,
5278 +
        "min": 142.5,
5279 +
        "max": 145.4,
5280 +
        "count": 2
5281 +
      },
5282 +
      "pressRelease": {
5283 +
        "mean": 233.3,
5284 +
        "std": 28.4,
5285 +
        "min": 213.2,
5286 +
        "max": 253.3,
5287 +
        "count": 2
5288 +
      },
5289 +
      "releasePress": {
5290 +
        "mean": 76.2,
5291 +
        "std": 3.7,
5292 +
        "min": 73.6,
5293 +
        "max": 78.8,
5294 +
        "count": 2
5295 +
      }
5296 +
    },
5297 +
    {
5298 +
      "normalizedKeys": "g → h",
5299 +
      "count": 2,
5300 +
      "holdTime1": {
5301 +
        "mean": 78.6,
5302 +
        "std": 5.4,
5303 +
        "min": 74.7,
5304 +
        "max": 82.4,
5305 +
        "count": 2
5306 +
      },
5307 +
      "holdTime2": {
5308 +
        "mean": 108,
5309 +
        "std": 22.6,
5310 +
        "min": 92,
5311 +
        "max": 124,
5312 +
        "count": 2
5313 +
      },
5314 +
      "pressPress": {
5315 +
        "mean": 75.3,
5316 +
        "std": 34.9,
5317 +
        "min": 50.6,
5318 +
        "max": 99.9,
5319 +
        "count": 2
5320 +
      },
5321 +
      "releaseRelease": {
5322 +
        "mean": 104.7,
5323 +
        "std": 17.7,
5324 +
        "min": 92.2,
5325 +
        "max": 117.2,
5326 +
        "count": 2
5327 +
      },
5328 +
      "pressRelease": {
5329 +
        "mean": 183.3,
5330 +
        "std": 12.2,
5331 +
        "min": 174.6,
5332 +
        "max": 191.9,
5333 +
        "count": 2
5334 +
      },
5335 +
      "releasePress": {
5336 +
        "mean": -3.3,
5337 +
        "std": 40.3,
5338 +
        "min": -31.8,
5339 +
        "max": 25.2,
5340 +
        "count": 2
5341 +
      }
5342 +
    },
5343 +
    {
5344 +
      "normalizedKeys": "t → s",
5345 +
      "count": 2,
5346 +
      "holdTime1": {
5347 +
        "mean": 85,
5348 +
        "std": 32.8,
5349 +
        "min": 61.8,
5350 +
        "max": 108.2,
5351 +
        "count": 2
5352 +
      },
5353 +
      "holdTime2": {
5354 +
        "mean": 103.7,
5355 +
        "std": 6.2,
5356 +
        "min": 99.3,
5357 +
        "max": 108,
5358 +
        "count": 2
5359 +
      },
5360 +
      "pressPress": {
5361 +
        "mean": 204.9,
5362 +
        "std": 65.3,
5363 +
        "min": 158.7,
5364 +
        "max": 251,
5365 +
        "count": 2
5366 +
      },
5367 +
      "releaseRelease": {
5368 +
        "mean": 223.5,
5369 +
        "std": 26.3,
5370 +
        "min": 204.9,
5371 +
        "max": 242.1,
5372 +
        "count": 2
5373 +
      },
5374 +
      "pressRelease": {
5375 +
        "mean": 308.5,
5376 +
        "std": 59.1,
5377 +
        "min": 266.7,
5378 +
        "max": 350.3,
5379 +
        "count": 2
5380 +
      },
5381 +
      "releasePress": {
5382 +
        "mean": 119.9,
5383 +
        "std": 32.5,
5384 +
        "min": 96.9,
5385 +
        "max": 142.8,
5386 +
        "count": 2
5387 +
      }
5388 +
    },
5389 +
    {
5390 +
      "normalizedKeys": "a → b",
5391 +
      "count": 2,
5392 +
      "holdTime1": {
5393 +
        "mean": 124.9,
5394 +
        "std": 23.3,
5395 +
        "min": 108.4,
5396 +
        "max": 141.3,
5397 +
        "count": 2
5398 +
      },
5399 +
      "holdTime2": {
5400 +
        "mean": 93.7,
5401 +
        "std": 20.2,
5402 +
        "min": 79.4,
5403 +
        "max": 108,
5404 +
        "count": 2
5405 +
      },
5406 +
      "pressPress": {
5407 +
        "mean": 460.6,
5408 +
        "std": 391.6,
5409 +
        "min": 183.7,
5410 +
        "max": 737.5,
5411 +
        "count": 2
5412 +
      },
5413 +
      "releaseRelease": {
5414 +
        "mean": 429.5,
5415 +
        "std": 388.6,
5416 +
        "min": 154.7,
5417 +
        "max": 704.2,
5418 +
        "count": 2
5419 +
      },
5420 +
      "pressRelease": {
5421 +
        "mean": 554.3,
5422 +
        "std": 411.8,
5423 +
        "min": 263.1,
5424 +
        "max": 845.5,
5425 +
        "count": 2
5426 +
      },
5427 +
      "releasePress": {
5428 +
        "mean": 335.8,
5429 +
        "std": 368.3,
5430 +
        "min": 75.3,
5431 +
        "max": 596.2,
5432 +
        "count": 2
5433 +
      }
5434 +
    },
5435 +
    {
5436 +
      "normalizedKeys": "␣ → k",
5437 +
      "count": 2,
5438 +
      "holdTime1": {
5439 +
        "mean": 97.5,
5440 +
        "std": 14.1,
5441 +
        "min": 87.5,
5442 +
        "max": 107.5,
5443 +
        "count": 2
5444 +
      },
5445 +
      "holdTime2": {
5446 +
        "mean": 113.8,
5447 +
        "std": 16,
5448 +
        "min": 102.5,
5449 +
        "max": 125.1,
5450 +
        "count": 2
5451 +
      },
5452 +
      "pressPress": {
5453 +
        "mean": 296.1,
5454 +
        "std": 42.3,
5455 +
        "min": 266.2,
5456 +
        "max": 326,
5457 +
        "count": 2
5458 +
      },
5459 +
      "releaseRelease": {
5460 +
        "mean": 312.4,
5461 +
        "std": 40.4,
5462 +
        "min": 283.8,
5463 +
        "max": 341,
5464 +
        "count": 2
5465 +
      },
5466 +
      "pressRelease": {
5467 +
        "mean": 409.9,
5468 +
        "std": 26.3,
5469 +
        "min": 391.3,
5470 +
        "max": 428.5,
5471 +
        "count": 2
5472 +
      },
5473 +
      "releasePress": {
5474 +
        "mean": 198.6,
5475 +
        "std": 56.4,
5476 +
        "min": 158.7,
5477 +
        "max": 238.5,
5478 +
        "count": 2
5479 +
      }
5480 +
    },
5481 +
    {
5482 +
      "normalizedKeys": "q → ␣",
5483 +
      "count": 2,
5484 +
      "holdTime1": {
5485 +
        "mean": 129.1,
5486 +
        "std": 5.6,
5487 +
        "min": 125.1,
5488 +
        "max": 133,
5489 +
        "count": 2
5490 +
      },
5491 +
      "holdTime2": {
5492 +
        "mean": 94.3,
5493 +
        "std": 3.8,
5494 +
        "min": 91.6,
5495 +
        "max": 97,
5496 +
        "count": 2
5497 +
      },
5498 +
      "pressPress": {
5499 +
        "mean": 472.3,
5500 +
        "std": 349.9,
5501 +
        "min": 224.8,
5502 +
        "max": 719.7,
5503 +
        "count": 2
5504 +
      },
5505 +
      "releaseRelease": {
5506 +
        "mean": 437.5,
5507 +
        "std": 348.2,
5508 +
        "min": 191.3,
5509 +
        "max": 683.7,
5510 +
        "count": 2
5511 +
      },
5512 +
      "pressRelease": {
5513 +
        "mean": 566.6,
5514 +
        "std": 353.8,
5515 +
        "min": 316.4,
5516 +
        "max": 816.7,
5517 +
        "count": 2
5518 +
      },
5519 +
      "releasePress": {
5520 +
        "mean": 343.2,
5521 +
        "std": 344.4,
5522 +
        "min": 99.7,
5523 +
        "max": 586.7,
5524 +
        "count": 2
5525 +
      }
5526 +
    },
5527 +
    {
5528 +
      "normalizedKeys": "j → q",
5529 +
      "count": 2,
5530 +
      "holdTime1": {
5531 +
        "mean": 86.5,
5532 +
        "std": 7,
5533 +
        "min": 81.5,
5534 +
        "max": 91.4,
5535 +
        "count": 2
5536 +
      },
5537 +
      "holdTime2": {
5538 +
        "mean": 129.1,
5539 +
        "std": 5.6,
5540 +
        "min": 125.1,
5541 +
        "max": 133,
5542 +
        "count": 2
5543 +
      },
5544 +
      "pressPress": {
5545 +
        "mean": 199.2,
5546 +
        "std": 84.1,
5547 +
        "min": 139.7,
5548 +
        "max": 258.7,
5549 +
        "count": 2
5550 +
      },
5551 +
      "releaseRelease": {
5552 +
        "mean": 241.8,
5553 +
        "std": 82.7,
5554 +
        "min": 183.3,
5555 +
        "max": 300.3,
5556 +
        "count": 2
5557 +
      },
5558 +
      "pressRelease": {
5559 +
        "mean": 328.3,
5560 +
        "std": 89.7,
5561 +
        "min": 264.8,
5562 +
        "max": 391.7,
5563 +
        "count": 2
5564 +
      },
5565 +
      "releasePress": {
5566 +
        "mean": 112.8,
5567 +
        "std": 77.1,
5568 +
        "min": 58.2,
5569 +
        "max": 167.3,
5570 +
        "count": 2
5571 +
      }
5572 +
    },
5573 +
    {
5574 +
      "normalizedKeys": "l → o",
5575 +
      "count": 2,
5576 +
      "holdTime1": {
5577 +
        "mean": 90,
5578 +
        "std": 9.6,
5579 +
        "min": 83.2,
5580 +
        "max": 96.8,
5581 +
        "count": 2
5582 +
      },
5583 +
      "holdTime2": {
5584 +
        "mean": 70.7,
5585 +
        "std": 17.6,
5586 +
        "min": 58.2,
5587 +
        "max": 83.1,
5588 +
        "count": 2
5589 +
      },
5590 +
      "pressPress": {
5591 +
        "mean": 187.6,
5592 +
        "std": 5.7,
5593 +
        "min": 183.6,
5594 +
        "max": 191.7,
5595 +
        "count": 2
5596 +
      },
5597 +
      "releaseRelease": {
5598 +
        "mean": 168.3,
5599 +
        "std": 21.5,
5600 +
        "min": 153.1,
5601 +
        "max": 183.5,
5602 +
        "count": 2
5603 +
      },
5604 +
      "pressRelease": {
5605 +
        "mean": 258.3,
5606 +
        "std": 11.9,
5607 +
        "min": 249.9,
5608 +
        "max": 266.7,
5609 +
        "count": 2
5610 +
      },
5611 +
      "releasePress": {
5612 +
        "mean": 97.7,
5613 +
        "std": 3.9,
5614 +
        "min": 94.9,
5615 +
        "max": 100.4,
5616 +
        "count": 2
5617 +
      }
5618 +
    },
5619 +
    {
5620 +
      "normalizedKeys": "t → a",
5621 +
      "count": 2,
5622 +
      "holdTime1": {
5623 +
        "mean": 70.4,
5624 +
        "std": 5.6,
5625 +
        "min": 66.4,
5626 +
        "max": 74.3,
5627 +
        "count": 2
5628 +
      },
5629 +
      "holdTime2": {
5630 +
        "mean": 139.9,
5631 +
        "std": 49.4,
5632 +
        "min": 104.9,
5633 +
        "max": 174.8,
5634 +
        "count": 2
5635 +
      },
5636 +
      "pressPress": {
5637 +
        "mean": 108.1,
5638 +
        "std": 12.1,
5639 +
        "min": 99.5,
5640 +
        "max": 116.6,
5641 +
        "count": 2
5642 +
      },
5643 +
      "releaseRelease": {
5644 +
        "mean": 177.6,
5645 +
        "std": 31.7,
5646 +
        "min": 155.1,
5647 +
        "max": 200,
5648 +
        "count": 2
5649 +
      },
5650 +
      "pressRelease": {
5651 +
        "mean": 247.9,
5652 +
        "std": 37.3,
5653 +
        "min": 221.5,
5654 +
        "max": 274.3,
5655 +
        "count": 2
5656 +
      },
5657 +
      "releasePress": {
5658 +
        "mean": 37.7,
5659 +
        "std": 17.7,
5660 +
        "min": 25.2,
5661 +
        "max": 50.2,
5662 +
        "count": 2
5663 +
      }
5664 +
    },
5665 +
    {
5666 +
      "normalizedKeys": "i → f",
5667 +
      "count": 2,
5668 +
      "holdTime1": {
5669 +
        "mean": 74.7,
5670 +
        "std": 0.2,
5671 +
        "min": 74.5,
5672 +
        "max": 74.8,
5673 +
        "count": 2
5674 +
      },
5675 +
      "holdTime2": {
5676 +
        "mean": 86.7,
5677 +
        "std": 5.3,
5678 +
        "min": 82.9,
5679 +
        "max": 90.4,
5680 +
        "count": 2
5681 +
      },
5682 +
      "pressPress": {
5683 +
        "mean": 92.2,
5684 +
        "std": 12.1,
5685 +
        "min": 83.6,
5686 +
        "max": 100.7,
5687 +
        "count": 2
5688 +
      },
5689 +
      "releaseRelease": {
5690 +
        "mean": 104.2,
5691 +
        "std": 17.6,
5692 +
        "min": 91.7,
5693 +
        "max": 116.6,
5694 +
        "count": 2
5695 +
      },
5696 +
      "pressRelease": {
5697 +
        "mean": 178.8,
5698 +
        "std": 17.4,
5699 +
        "min": 166.5,
5700 +
        "max": 191.1,
5701 +
        "count": 2
5702 +
      },
5703 +
      "releasePress": {
5704 +
        "mean": 17.5,
5705 +
        "std": 12.3,
5706 +
        "min": 8.8,
5707 +
        "max": 26.2,
5708 +
        "count": 2
5709 +
      }
5710 +
    },
5711 +
    {
5712 +
      "normalizedKeys": "⌫ → ␣",
5713 +
      "count": 2,
5714 +
      "holdTime1": {
5715 +
        "mean": 80.3,
5716 +
        "std": 0.6,
5717 +
        "min": 79.9,
5718 +
        "max": 80.7,
5719 +
        "count": 2
5720 +
      },
5721 +
      "holdTime2": {
5722 +
        "mean": 101.6,
5723 +
        "std": 33,
5724 +
        "min": 78.3,
5725 +
        "max": 124.9,
5726 +
        "count": 2
5727 +
      },
5728 +
      "pressPress": {
5729 +
        "mean": 104.5,
5730 +
        "std": 12.8,
5731 +
        "min": 95.4,
5732 +
        "max": 113.5,
5733 +
        "count": 2
5734 +
      },
5735 +
      "releaseRelease": {
5736 +
        "mean": 125.8,
5737 +
        "std": 46.3,
5738 +
        "min": 93,
5739 +
        "max": 158.5,
5740 +
        "count": 2
5741 +
      },
5742 +
      "pressRelease": {
5743 +
        "mean": 206.1,
5744 +
        "std": 45.7,
5745 +
        "min": 173.7,
5746 +
        "max": 238.4,
5747 +
        "count": 2
5748 +
      },
5749 +
      "releasePress": {
5750 +
        "mean": 24.2,
5751 +
        "std": 13.4,
5752 +
        "min": 14.7,
5753 +
        "max": 33.6,
5754 +
        "count": 2
5755 +
      }
5756 +
    },
5757 +
    {
5758 +
      "normalizedKeys": "⌫ → ⌫",
5759 +
      "count": 2,
5760 +
      "holdTime1": {
5761 +
        "mean": 68.8,
5762 +
        "std": 5.1,
5763 +
        "min": 65.2,
5764 +
        "max": 72.4,
5765 +
        "count": 2
5766 +
      },
5767 +
      "holdTime2": {
5768 +
        "mean": 80.3,
5769 +
        "std": 0.6,
5770 +
        "min": 79.9,
5771 +
        "max": 80.7,
5772 +
        "count": 2
5773 +
      },
5774 +
      "pressPress": {
5775 +
        "mean": 143.9,
5776 +
        "std": 0.5,
5777 +
        "min": 143.5,
5778 +
        "max": 144.2,
5779 +
        "count": 2
5780 +
      },
5781 +
      "releaseRelease": {
5782 +
        "mean": 155.4,
5783 +
        "std": 4,
5784 +
        "min": 152.5,
5785 +
        "max": 158.2,
5786 +
        "count": 2
5787 +
      },
5788 +
      "pressRelease": {
5789 +
        "mean": 224.2,
5790 +
        "std": 1.1,
5791 +
        "min": 223.4,
5792 +
        "max": 224.9,
5793 +
        "count": 2
5794 +
      },
5795 +
      "releasePress": {
5796 +
        "mean": 75.1,
5797 +
        "std": 4.6,
5798 +
        "min": 71.8,
5799 +
        "max": 78.3,
5800 +
        "count": 2
5801 +
      }
5802 +
    },
5803 +
    {
5804 +
      "normalizedKeys": "␣ → 1",
5805 +
      "count": 1,
5806 +
      "holdTime1": {
5807 +
        "mean": 86.7,
5808 +
        "std": 0,
5809 +
        "min": 86.7,
5810 +
        "max": 86.7,
5811 +
        "count": 1
5812 +
      },
5813 +
      "holdTime2": {
5814 +
        "mean": 154.7,
5815 +
        "std": 0,
5816 +
        "min": 154.7,
5817 +
        "max": 154.7,
5818 +
        "count": 1
5819 +
      },
5820 +
      "pressPress": {
5821 +
        "mean": 135258.6,
5822 +
        "std": 0,
5823 +
        "min": 135258.6,
5824 +
        "max": 135258.6,
5825 +
        "count": 1
5826 +
      },
5827 +
      "releaseRelease": {
5828 +
        "mean": 135326.6,
5829 +
        "std": 0,
5830 +
        "min": 135326.6,
5831 +
        "max": 135326.6,
5832 +
        "count": 1
5833 +
      },
5834 +
      "pressRelease": {
5835 +
        "mean": 135413.3,
5836 +
        "std": 0,
5837 +
        "min": 135413.3,
5838 +
        "max": 135413.3,
5839 +
        "count": 1
5840 +
      },
5841 +
      "releasePress": {
5842 +
        "mean": 135171.9,
5843 +
        "std": 0,
5844 +
        "min": 135171.9,
5845 +
        "max": 135171.9,
5846 +
        "count": 1
5847 +
      }
5848 +
    },
5849 +
    {
5850 +
      "normalizedKeys": "d → .",
5851 +
      "count": 1,
5852 +
      "holdTime1": {
5853 +
        "mean": 148.1,
5854 +
        "std": 0,
5855 +
        "min": 148.1,
5856 +
        "max": 148.1,
5857 +
        "count": 1
5858 +
      },
5859 +
      "holdTime2": {
5860 +
        "mean": 98.2,
5861 +
        "std": 0,
5862 +
        "min": 98.2,
5863 +
        "max": 98.2,
5864 +
        "count": 1
5865 +
      },
5866 +
      "pressPress": {
5867 +
        "mean": 112.2,
5868 +
        "std": 0,
5869 +
        "min": 112.2,
5870 +
        "max": 112.2,
5871 +
        "count": 1
5872 +
      },
5873 +
      "releaseRelease": {
5874 +
        "mean": 62.3,
5875 +
        "std": 0,
5876 +
        "min": 62.3,
5877 +
        "max": 62.3,
5878 +
        "count": 1
5879 +
      },
5880 +
      "pressRelease": {
5881 +
        "mean": 210.4,
5882 +
        "std": 0,
5883 +
        "min": 210.4,
5884 +
        "max": 210.4,
5885 +
        "count": 1
5886 +
      },
5887 +
      "releasePress": {
5888 +
        "mean": -35.9,
5889 +
        "std": 0,
5890 +
        "min": -35.9,
5891 +
        "max": -35.9,
5892 +
        "count": 1
5893 +
      }
5894 +
    },
5895 +
    {
5896 +
      "normalizedKeys": "r → d",
5897 +
      "count": 1,
5898 +
      "holdTime1": {
5899 +
        "mean": 101.7,
5900 +
        "std": 0,
5901 +
        "min": 101.7,
5902 +
        "max": 101.7,
5903 +
        "count": 1
5904 +
      },
5905 +
      "holdTime2": {
5906 +
        "mean": 148.1,
5907 +
        "std": 0,
5908 +
        "min": 148.1,
5909 +
        "max": 148.1,
5910 +
        "count": 1
5911 +
      },
5912 +
      "pressPress": {
5913 +
        "mean": 196.4,
5914 +
        "std": 0,
5915 +
        "min": 196.4,
5916 +
        "max": 196.4,
5917 +
        "count": 1
5918 +
      },
5919 +
      "releaseRelease": {
5920 +
        "mean": 242.8,
5921 +
        "std": 0,
5922 +
        "min": 242.8,
5923 +
        "max": 242.8,
5924 +
        "count": 1
5925 +
      },
5926 +
      "pressRelease": {
5927 +
        "mean": 344.5,
5928 +
        "std": 0,
5929 +
        "min": 344.5,
5930 +
        "max": 344.5,
5931 +
        "count": 1
5932 +
      },
5933 +
      "releasePress": {
5934 +
        "mean": 94.7,
5935 +
        "std": 0,
5936 +
        "min": 94.7,
5937 +
        "max": 94.7,
5938 +
        "count": 1
5939 +
      }
5940 +
    },
5941 +
    {
5942 +
      "normalizedKeys": "o → e",
5943 +
      "count": 1,
5944 +
      "holdTime1": {
5945 +
        "mean": 116.3,
5946 +
        "std": 0,
5947 +
        "min": 116.3,
5948 +
        "max": 116.3,
5949 +
        "count": 1
5950 +
      },
5951 +
      "holdTime2": {
5952 +
        "mean": 140,
5953 +
        "std": 0,
5954 +
        "min": 140,
5955 +
        "max": 140,
5956 +
        "count": 1
5957 +
      },
5958 +
      "pressPress": {
5959 +
        "mean": 167.9,
5960 +
        "std": 0,
5961 +
        "min": 167.9,
5962 +
        "max": 167.9,
5963 +
        "count": 1
5964 +
      },
5965 +
      "releaseRelease": {
5966 +
        "mean": 191.6,
5967 +
        "std": 0,
5968 +
        "min": 191.6,
5969 +
        "max": 191.6,
5970 +
        "count": 1
5971 +
      },
5972 +
      "pressRelease": {
5973 +
        "mean": 307.9,
5974 +
        "std": 0,
5975 +
        "min": 307.9,
5976 +
        "max": 307.9,
5977 +
        "count": 1
5978 +
      },
5979 +
      "releasePress": {
5980 +
        "mean": 51.6,
5981 +
        "std": 0,
5982 +
        "min": 51.6,
5983 +
        "max": 51.6,
5984 +
        "count": 1
5985 +
      }
5986 +
    },
5987 +
    {
5988 +
      "normalizedKeys": "g → o",
5989 +
      "count": 1,
5990 +
      "holdTime1": {
5991 +
        "mean": 108,
5992 +
        "std": 0,
5993 +
        "min": 108,
5994 +
        "max": 108,
5995 +
        "count": 1
5996 +
      },
5997 +
      "holdTime2": {
5998 +
        "mean": 116.3,
5999 +
        "std": 0,
6000 +
        "min": 116.3,
6001 +
        "max": 116.3,
6002 +
        "count": 1
6003 +
      },
6004 +
      "pressPress": {
6005 +
        "mean": 83.4,
6006 +
        "std": 0,
6007 +
        "min": 83.4,
6008 +
        "max": 83.4,
6009 +
        "count": 1
6010 +
      },
6011 +
      "releaseRelease": {
6012 +
        "mean": 91.7,
6013 +
        "std": 0,
6014 +
        "min": 91.7,
6015 +
        "max": 91.7,
6016 +
        "count": 1
6017 +
      },
6018 +
      "pressRelease": {
6019 +
        "mean": 199.7,
6020 +
        "std": 0,
6021 +
        "min": 199.7,
6022 +
        "max": 199.7,
6023 +
        "count": 1
6024 +
      },
6025 +
      "releasePress": {
6026 +
        "mean": -24.6,
6027 +
        "std": 0,
6028 +
        "min": -24.6,
6029 +
        "max": -24.6,
6030 +
        "count": 1
6031 +
      }
6032 +
    },
6033 +
    {
6034 +
      "normalizedKeys": "s → h",
6035 +
      "count": 1,
6036 +
      "holdTime1": {
6037 +
        "mean": 99.9,
6038 +
        "std": 0,
6039 +
        "min": 99.9,
6040 +
        "max": 99.9,
6041 +
        "count": 1
6042 +
      },
6043 +
      "holdTime2": {
6044 +
        "mean": 82.9,
6045 +
        "std": 0,
6046 +
        "min": 82.9,
6047 +
        "max": 82.9,
6048 +
        "count": 1
6049 +
      },
6050 +
      "pressPress": {
6051 +
        "mean": 66.7,
6052 +
        "std": 0,
6053 +
        "min": 66.7,
6054 +
        "max": 66.7,
6055 +
        "count": 1
6056 +
      },
6057 +
      "releaseRelease": {
6058 +
        "mean": 49.7,
6059 +
        "std": 0,
6060 +
        "min": 49.7,
6061 +
        "max": 49.7,
6062 +
        "count": 1
6063 +
      },
6064 +
      "pressRelease": {
6065 +
        "mean": 149.6,
6066 +
        "std": 0,
6067 +
        "min": 149.6,
6068 +
        "max": 149.6,
6069 +
        "count": 1
6070 +
      },
6071 +
      "releasePress": {
6072 +
        "mean": -33.2,
6073 +
        "std": 0,
6074 +
        "min": -33.2,
6075 +
        "max": -33.2,
6076 +
        "count": 1
6077 +
      }
6078 +
    },
6079 +
    {
6080 +
      "normalizedKeys": "m → e",
6081 +
      "count": 1,
6082 +
      "holdTime1": {
6083 +
        "mean": 95.4,
6084 +
        "std": 0,
6085 +
        "min": 95.4,
6086 +
        "max": 95.4,
6087 +
        "count": 1
6088 +
      },
6089 +
      "holdTime2": {
6090 +
        "mean": 77.2,
6091 +
        "std": 0,
6092 +
        "min": 77.2,
6093 +
        "max": 77.2,
6094 +
        "count": 1
6095 +
      },
6096 +
      "pressPress": {
6097 +
        "mean": 146,
6098 +
        "std": 0,
6099 +
        "min": 146,
6100 +
        "max": 146,
6101 +
        "count": 1
6102 +
      },
6103 +
      "releaseRelease": {
6104 +
        "mean": 127.8,
6105 +
        "std": 0,
6106 +
        "min": 127.8,
6107 +
        "max": 127.8,
6108 +
        "count": 1
6109 +
      },
6110 +
      "pressRelease": {
6111 +
        "mean": 223.2,
6112 +
        "std": 0,
6113 +
        "min": 223.2,
6114 +
        "max": 223.2,
6115 +
        "count": 1
6116 +
      },
6117 +
      "releasePress": {
6118 +
        "mean": 50.6,
6119 +
        "std": 0,
6120 +
        "min": 50.6,
6121 +
        "max": 50.6,
6122 +
        "count": 1
6123 +
      }
6124 +
    },
6125 +
    {
6126 +
      "normalizedKeys": "d → ,",
6127 +
      "count": 1,
6128 +
      "holdTime1": {
6129 +
        "mean": 124.4,
6130 +
        "std": 0,
6131 +
        "min": 124.4,
6132 +
        "max": 124.4,
6133 +
        "count": 1
6134 +
      },
6135 +
      "holdTime2": {
6136 +
        "mean": 108.6,
6137 +
        "std": 0,
6138 +
        "min": 108.6,
6139 +
        "max": 108.6,
6140 +
        "count": 1
6141 +
      },
6142 +
      "pressPress": {
6143 +
        "mean": 99.7,
6144 +
        "std": 0,
6145 +
        "min": 99.7,
6146 +
        "max": 99.7,
6147 +
        "count": 1
6148 +
      },
6149 +
      "releaseRelease": {
6150 +
        "mean": 83.9,
6151 +
        "std": 0,
6152 +
        "min": 83.9,
6153 +
        "max": 83.9,
6154 +
        "count": 1
6155 +
      },
6156 +
      "pressRelease": {
6157 +
        "mean": 208.3,
6158 +
        "std": 0,
6159 +
        "min": 208.3,
6160 +
        "max": 208.3,
6161 +
        "count": 1
6162 +
      },
6163 +
      "releasePress": {
6164 +
        "mean": -24.7,
6165 +
        "std": 0,
6166 +
        "min": -24.7,
6167 +
        "max": -24.7,
6168 +
        "count": 1
6169 +
      }
6170 +
    },
6171 +
    {
6172 +
      "normalizedKeys": "e → f",
6173 +
      "count": 1,
6174 +
      "holdTime1": {
6175 +
        "mean": 149.9,
6176 +
        "std": 0,
6177 +
        "min": 149.9,
6178 +
        "max": 149.9,
6179 +
        "count": 1
6180 +
      },
6181 +
      "holdTime2": {
6182 +
        "mean": 103.3,
6183 +
        "std": 0,
6184 +
        "min": 103.3,
6185 +
        "max": 103.3,
6186 +
        "count": 1
6187 +
      },
6188 +
      "pressPress": {
6189 +
        "mean": 960.7,
6190 +
        "std": 0,
6191 +
        "min": 960.7,
6192 +
        "max": 960.7,
6193 +
        "count": 1
6194 +
      },
6195 +
      "releaseRelease": {
6196 +
        "mean": 914.1,
6197 +
        "std": 0,
6198 +
        "min": 914.1,
6199 +
        "max": 914.1,
6200 +
        "count": 1
6201 +
      },
6202 +
      "pressRelease": {
6203 +
        "mean": 1064,
6204 +
        "std": 0,
6205 +
        "min": 1064,
6206 +
        "max": 1064,
6207 +
        "count": 1
6208 +
      },
6209 +
      "releasePress": {
6210 +
        "mean": 810.8,
6211 +
        "std": 0,
6212 +
        "min": 810.8,
6213 +
        "max": 810.8,
6214 +
        "count": 1
6215 +
      }
6216 +
    },
6217 +
    {
6218 +
      "normalizedKeys": "o → t",
6219 +
      "count": 1,
6220 +
      "holdTime1": {
6221 +
        "mean": 83.2,
6222 +
        "std": 0,
6223 +
        "min": 83.2,
6224 +
        "max": 83.2,
6225 +
        "count": 1
6226 +
      },
6227 +
      "holdTime2": {
6228 +
        "mean": 73.6,
6229 +
        "std": 0,
6230 +
        "min": 73.6,
6231 +
        "max": 73.6,
6232 +
        "count": 1
6233 +
      },
6234 +
      "pressPress": {
6235 +
        "mean": 136.7,
6236 +
        "std": 0,
6237 +
        "min": 136.7,
6238 +
        "max": 136.7,
6239 +
        "count": 1
6240 +
      },
6241 +
      "releaseRelease": {
6242 +
        "mean": 127.1,
6243 +
        "std": 0,
6244 +
        "min": 127.1,
6245 +
        "max": 127.1,
6246 +
        "count": 1
6247 +
      },
6248 +
      "pressRelease": {
6249 +
        "mean": 210.3,
6250 +
        "std": 0,
6251 +
        "min": 210.3,
6252 +
        "max": 210.3,
6253 +
        "count": 1
6254 +
      },
6255 +
      "releasePress": {
6256 +
        "mean": 53.5,
6257 +
        "std": 0,
6258 +
        "min": 53.5,
6259 +
        "max": 53.5,
6260 +
        "count": 1
6261 +
      }
6262 +
    },
6263 +
    {
6264 +
      "normalizedKeys": "d → u",
6265 +
      "count": 1,
6266 +
      "holdTime1": {
6267 +
        "mean": 58.3,
6268 +
        "std": 0,
6269 +
        "min": 58.3,
6270 +
        "max": 58.3,
6271 +
        "count": 1
6272 +
      },
6273 +
      "holdTime2": {
6274 +
        "mean": 83.2,
6275 +
        "std": 0,
6276 +
        "min": 83.2,
6277 +
        "max": 83.2,
6278 +
        "count": 1
6279 +
      },
6280 +
      "pressPress": {
6281 +
        "mean": 283.2,
6282 +
        "std": 0,
6283 +
        "min": 283.2,
6284 +
        "max": 283.2,
6285 +
        "count": 1
6286 +
      },
6287 +
      "releaseRelease": {
6288 +
        "mean": 308.1,
6289 +
        "std": 0,
6290 +
        "min": 308.1,
6291 +
        "max": 308.1,
6292 +
        "count": 1
6293 +
      },
6294 +
      "pressRelease": {
6295 +
        "mean": 366.4,
6296 +
        "std": 0,
6297 +
        "min": 366.4,
6298 +
        "max": 366.4,
6299 +
        "count": 1
6300 +
      },
6301 +
      "releasePress": {
6302 +
        "mean": 224.9,
6303 +
        "std": 0,
6304 +
        "min": 224.9,
6305 +
        "max": 224.9,
6306 +
        "count": 1
6307 +
      }
6308 +
    },
6309 +
    {
6310 +
      "normalizedKeys": "e → m",
6311 +
      "count": 1,
6312 +
      "holdTime1": {
6313 +
        "mean": 57.1,
6314 +
        "std": 0,
6315 +
        "min": 57.1,
6316 +
        "max": 57.1,
6317 +
        "count": 1
6318 +
      },
6319 +
      "holdTime2": {
6320 +
        "mean": 117.1,
6321 +
        "std": 0,
6322 +
        "min": 117.1,
6323 +
        "max": 117.1,
6324 +
        "count": 1
6325 +
      },
6326 +
      "pressPress": {
6327 +
        "mean": 165.6,
6328 +
        "std": 0,
6329 +
        "min": 165.6,
6330 +
        "max": 165.6,
6331 +
        "count": 1
6332 +
      },
6333 +
      "releaseRelease": {
6334 +
        "mean": 225.6,
6335 +
        "std": 0,
6336 +
        "min": 225.6,
6337 +
        "max": 225.6,
6338 +
        "count": 1
6339 +
      },
6340 +
      "pressRelease": {
6341 +
        "mean": 282.7,
6342 +
        "std": 0,
6343 +
        "min": 282.7,
6344 +
        "max": 282.7,
6345 +
        "count": 1
6346 +
      },
6347 +
      "releasePress": {
6348 +
        "mean": 108.5,
6349 +
        "std": 0,
6350 +
        "min": 108.5,
6351 +
        "max": 108.5,
6352 +
        "count": 1
6353 +
      }
6354 +
    },
6355 +
    {
6356 +
      "normalizedKeys": "y → ,",
6357 +
      "count": 1,
6358 +
      "holdTime1": {
6359 +
        "mean": 74.9,
6360 +
        "std": 0,
6361 +
        "min": 74.9,
6362 +
        "max": 74.9,
6363 +
        "count": 1
6364 +
      },
6365 +
      "holdTime2": {
6366 +
        "mean": 89.3,
6367 +
        "std": 0,
6368 +
        "min": 89.3,
6369 +
        "max": 89.3,
6370 +
        "count": 1
6371 +
      },
6372 +
      "pressPress": {
6373 +
        "mean": 336,
6374 +
        "std": 0,
6375 +
        "min": 336,
6376 +
        "max": 336,
6377 +
        "count": 1
6378 +
      },
6379 +
      "releaseRelease": {
6380 +
        "mean": 350.4,
6381 +
        "std": 0,
6382 +
        "min": 350.4,
6383 +
        "max": 350.4,
6384 +
        "count": 1
6385 +
      },
6386 +
      "pressRelease": {
6387 +
        "mean": 425.3,
6388 +
        "std": 0,
6389 +
        "min": 425.3,
6390 +
        "max": 425.3,
6391 +
        "count": 1
6392 +
      },
6393 +
      "releasePress": {
6394 +
        "mean": 261.1,
6395 +
        "std": 0,
6396 +
        "min": 261.1,
6397 +
        "max": 261.1,
6398 +
        "count": 1
6399 +
      }
6400 +
    },
6401 +
    {
6402 +
      "normalizedKeys": "k → l",
6403 +
      "count": 1,
6404 +
      "holdTime1": {
6405 +
        "mean": 83,
6406 +
        "std": 0,
6407 +
        "min": 83,
6408 +
        "max": 83,
6409 +
        "count": 1
6410 +
      },
6411 +
      "holdTime2": {
6412 +
        "mean": 159.5,
6413 +
        "std": 0,
6414 +
        "min": 159.5,
6415 +
        "max": 159.5,
6416 +
        "count": 1
6417 +
      },
6418 +
      "pressPress": {
6419 +
        "mean": 550.4,
6420 +
        "std": 0,
6421 +
        "min": 550.4,
6422 +
        "max": 550.4,
6423 +
        "count": 1
6424 +
      },
6425 +
      "releaseRelease": {
6426 +
        "mean": 626.9,
6427 +
        "std": 0,
6428 +
        "min": 626.9,
6429 +
        "max": 626.9,
6430 +
        "count": 1
6431 +
      },
6432 +
      "pressRelease": {
6433 +
        "mean": 709.9,
6434 +
        "std": 0,
6435 +
        "min": 709.9,
6436 +
        "max": 709.9,
6437 +
        "count": 1
6438 +
      },
6439 +
      "releasePress": {
6440 +
        "mean": 467.4,
6441 +
        "std": 0,
6442 +
        "min": 467.4,
6443 +
        "max": 467.4,
6444 +
        "count": 1
6445 +
      }
6446 +
    },
6447 +
    {
6448 +
      "normalizedKeys": "c → k",
6449 +
      "count": 1,
6450 +
      "holdTime1": {
6451 +
        "mean": 124.8,
6452 +
        "std": 0,
6453 +
        "min": 124.8,
6454 +
        "max": 124.8,
6455 +
        "count": 1
6456 +
      },
6457 +
      "holdTime2": {
6458 +
        "mean": 83,
6459 +
        "std": 0,
6460 +
        "min": 83,
6461 +
        "max": 83,
6462 +
        "count": 1
6463 +
      },
6464 +
      "pressPress": {
6465 +
        "mean": 100,
6466 +
        "std": 0,
6467 +
        "min": 100,
6468 +
        "max": 100,
6469 +
        "count": 1
6470 +
      },
6471 +
      "releaseRelease": {
6472 +
        "mean": 58.2,
6473 +
        "std": 0,
6474 +
        "min": 58.2,
6475 +
        "max": 58.2,
6476 +
        "count": 1
6477 +
      },
6478 +
      "pressRelease": {
6479 +
        "mean": 183,
6480 +
        "std": 0,
6481 +
        "min": 183,
6482 +
        "max": 183,
6483 +
        "count": 1
6484 +
      },
6485 +
      "releasePress": {
6486 +
        "mean": -24.8,
6487 +
        "std": 0,
6488 +
        "min": -24.8,
6489 +
        "max": -24.8,
6490 +
        "count": 1
6491 +
      }
6492 +
    },
6493 +
    {
6494 +
      "normalizedKeys": "u → i",
6495 +
      "count": 1,
6496 +
      "holdTime1": {
6497 +
        "mean": 174.5,
6498 +
        "std": 0,
6499 +
        "min": 174.5,
6500 +
        "max": 174.5,
6501 +
        "count": 1
6502 +
      },
6503 +
      "holdTime2": {
6504 +
        "mean": 136.7,
6505 +
        "std": 0,
6506 +
        "min": 136.7,
6507 +
        "max": 136.7,
6508 +
        "count": 1
6509 +
      },
6510 +
      "pressPress": {
6511 +
        "mean": 91.5,
6512 +
        "std": 0,
6513 +
        "min": 91.5,
6514 +
        "max": 91.5,
6515 +
        "count": 1
6516 +
      },
6517 +
      "releaseRelease": {
6518 +
        "mean": 53.7,
6519 +
        "std": 0,
6520 +
        "min": 53.7,
6521 +
        "max": 53.7,
6522 +
        "count": 1
6523 +
      },
6524 +
      "pressRelease": {
6525 +
        "mean": 228.2,
6526 +
        "std": 0,
6527 +
        "min": 228.2,
6528 +
        "max": 228.2,
6529 +
        "count": 1
6530 +
      },
6531 +
      "releasePress": {
6532 +
        "mean": -83,
6533 +
        "std": 0,
6534 +
        "min": -83,
6535 +
        "max": -83,
6536 +
        "count": 1
6537 +
      }
6538 +
    },
6539 +
    {
6540 +
      "normalizedKeys": "q → u",
6541 +
      "count": 1,
6542 +
      "holdTime1": {
6543 +
        "mean": 124.7,
6544 +
        "std": 0,
6545 +
        "min": 124.7,
6546 +
        "max": 124.7,
6547 +
        "count": 1
6548 +
      },
6549 +
      "holdTime2": {
6550 +
        "mean": 174.5,
6551 +
        "std": 0,
6552 +
        "min": 174.5,
6553 +
        "max": 174.5,
6554 +
        "count": 1
6555 +
      },
6556 +
      "pressPress": {
6557 +
        "mean": 108.4,
6558 +
        "std": 0,
6559 +
        "min": 108.4,
6560 +
        "max": 108.4,
6561 +
        "count": 1
6562 +
      },
6563 +
      "releaseRelease": {
6564 +
        "mean": 158.2,
6565 +
        "std": 0,
6566 +
        "min": 158.2,
6567 +
        "max": 158.2,
6568 +
        "count": 1
6569 +
      },
6570 +
      "pressRelease": {
6571 +
        "mean": 282.9,
6572 +
        "std": 0,
6573 +
        "min": 282.9,
6574 +
        "max": 282.9,
6575 +
        "count": 1
6576 +
      },
6577 +
      "releasePress": {
6578 +
        "mean": -16.3,
6579 +
        "std": 0,
6580 +
        "min": -16.3,
6581 +
        "max": -16.3,
6582 +
        "count": 1
6583 +
      }
6584 +
    },
6585 +
    {
6586 +
      "normalizedKeys": "␣ → q",
6587 +
      "count": 1,
6588 +
      "holdTime1": {
6589 +
        "mean": 74.9,
6590 +
        "std": 0,
6591 +
        "min": 74.9,
6592 +
        "max": 74.9,
6593 +
        "count": 1
6594 +
      },
6595 +
      "holdTime2": {
6596 +
        "mean": 124.7,
6597 +
        "std": 0,
6598 +
        "min": 124.7,
6599 +
        "max": 124.7,
6600 +
        "count": 1
6601 +
      },
6602 +
      "pressPress": {
6603 +
        "mean": 208.5,
6604 +
        "std": 0,
6605 +
        "min": 208.5,
6606 +
        "max": 208.5,
6607 +
        "count": 1
6608 +
      },
6609 +
      "releaseRelease": {
6610 +
        "mean": 258.3,
6611 +
        "std": 0,
6612 +
        "min": 258.3,
6613 +
        "max": 258.3,
6614 +
        "count": 1
6615 +
      },
6616 +
      "pressRelease": {
6617 +
        "mean": 333.2,
6618 +
        "std": 0,
6619 +
        "min": 333.2,
6620 +
        "max": 333.2,
6621 +
        "count": 1
6622 +
      },
6623 +
      "releasePress": {
6624 +
        "mean": 133.6,
6625 +
        "std": 0,
6626 +
        "min": 133.6,
6627 +
        "max": 133.6,
6628 +
        "count": 1
6629 +
      }
6630 +
    },
6631 +
    {
6632 +
      "normalizedKeys": "r → m",
6633 +
      "count": 1,
6634 +
      "holdTime1": {
6635 +
        "mean": 129.7,
6636 +
        "std": 0,
6637 +
        "min": 129.7,
6638 +
        "max": 129.7,
6639 +
        "count": 1
6640 +
      },
6641 +
      "holdTime2": {
6642 +
        "mean": 81.2,
6643 +
        "std": 0,
6644 +
        "min": 81.2,
6645 +
        "max": 81.2,
6646 +
        "count": 1
6647 +
      },
6648 +
      "pressPress": {
6649 +
        "mean": 92.7,
6650 +
        "std": 0,
6651 +
        "min": 92.7,
6652 +
        "max": 92.7,
6653 +
        "count": 1
6654 +
      },
6655 +
      "releaseRelease": {
6656 +
        "mean": 44.2,
6657 +
        "std": 0,
6658 +
        "min": 44.2,
6659 +
        "max": 44.2,
6660 +
        "count": 1
6661 +
      },
6662 +
      "pressRelease": {
6663 +
        "mean": 173.9,
6664 +
        "std": 0,
6665 +
        "min": 173.9,
6666 +
        "max": 173.9,
6667 +
        "count": 1
6668 +
      },
6669 +
      "releasePress": {
6670 +
        "mean": -37,
6671 +
        "std": 0,
6672 +
        "min": -37,
6673 +
        "max": -37,
6674 +
        "count": 1
6675 +
      }
6676 +
    },
6677 +
    {
6678 +
      "normalizedKeys": "p → u",
6679 +
      "count": 1,
6680 +
      "holdTime1": {
6681 +
        "mean": 75.1,
6682 +
        "std": 0,
6683 +
        "min": 75.1,
6684 +
        "max": 75.1,
6685 +
        "count": 1
6686 +
      },
6687 +
      "holdTime2": {
6688 +
        "mean": 99.8,
6689 +
        "std": 0,
6690 +
        "min": 99.8,
6691 +
        "max": 99.8,
6692 +
        "count": 1
6693 +
      },
6694 +
      "pressPress": {
6695 +
        "mean": 216.7,
6696 +
        "std": 0,
6697 +
        "min": 216.7,
6698 +
        "max": 216.7,
6699 +
        "count": 1
6700 +
      },
6701 +
      "releaseRelease": {
6702 +
        "mean": 241.4,
6703 +
        "std": 0,
6704 +
        "min": 241.4,
6705 +
        "max": 241.4,
6706 +
        "count": 1
6707 +
      },
6708 +
      "pressRelease": {
6709 +
        "mean": 316.5,
6710 +
        "std": 0,
6711 +
        "min": 316.5,
6712 +
        "max": 316.5,
6713 +
        "count": 1
6714 +
      },
6715 +
      "releasePress": {
6716 +
        "mean": 141.6,
6717 +
        "std": 0,
6718 +
        "min": 141.6,
6719 +
        "max": 141.6,
6720 +
        "count": 1
6721 +
      }
6722 +
    },
6723 +
    {
6724 +
      "normalizedKeys": "i → p",
6725 +
      "count": 1,
6726 +
      "holdTime1": {
6727 +
        "mean": 116.6,
6728 +
        "std": 0,
6729 +
        "min": 116.6,
6730 +
        "max": 116.6,
6731 +
        "count": 1
6732 +
      },
6733 +
      "holdTime2": {
6734 +
        "mean": 75.1,
6735 +
        "std": 0,
6736 +
        "min": 75.1,
6737 +
        "max": 75.1,
6738 +
        "count": 1
6739 +
      },
6740 +
      "pressPress": {
6741 +
        "mean": 275,
6742 +
        "std": 0,
6743 +
        "min": 275,
6744 +
        "max": 275,
6745 +
        "count": 1
6746 +
      },
6747 +
      "releaseRelease": {
6748 +
        "mean": 233.5,
6749 +
        "std": 0,
6750 +
        "min": 233.5,
6751 +
        "max": 233.5,
6752 +
        "count": 1
6753 +
      },
6754 +
      "pressRelease": {
6755 +
        "mean": 350.1,
6756 +
        "std": 0,
6757 +
        "min": 350.1,
6758 +
        "max": 350.1,
6759 +
        "count": 1
6760 +
      },
6761 +
      "releasePress": {
6762 +
        "mean": 158.4,
6763 +
        "std": 0,
6764 +
        "min": 158.4,
6765 +
        "max": 158.4,
6766 +
        "count": 1
6767 +
      }
6768 +
    },
6769 +
    {
6770 +
      "normalizedKeys": "n → i",
6771 +
      "count": 1,
6772 +
      "holdTime1": {
6773 +
        "mean": 99.8,
6774 +
        "std": 0,
6775 +
        "min": 99.8,
6776 +
        "max": 99.8,
6777 +
        "count": 1
6778 +
      },
6779 +
      "holdTime2": {
6780 +
        "mean": 116.6,
6781 +
        "std": 0,
6782 +
        "min": 116.6,
6783 +
        "max": 116.6,
6784 +
        "count": 1
6785 +
      },
6786 +
      "pressPress": {
6787 +
        "mean": 160.8,
6788 +
        "std": 0,
6789 +
        "min": 160.8,
6790 +
        "max": 160.8,
6791 +
        "count": 1
6792 +
      },
6793 +
      "releaseRelease": {
6794 +
        "mean": 177.6,
6795 +
        "std": 0,
6796 +
        "min": 177.6,
6797 +
        "max": 177.6,
6798 +
        "count": 1
6799 +
      },
6800 +
      "pressRelease": {
6801 +
        "mean": 277.4,
6802 +
        "std": 0,
6803 +
        "min": 277.4,
6804 +
        "max": 277.4,
6805 +
        "count": 1
6806 +
      },
6807 +
      "releasePress": {
6808 +
        "mean": 61,
6809 +
        "std": 0,
6810 +
        "min": 61,
6811 +
        "max": 61,
6812 +
        "count": 1
6813 +
      }
6814 +
    },
6815 +
    {
6816 +
      "normalizedKeys": "p → i",
6817 +
      "count": 1,
6818 +
      "holdTime1": {
6819 +
        "mean": 77.1,
6820 +
        "std": 0,
6821 +
        "min": 77.1,
6822 +
        "max": 77.1,
6823 +
        "count": 1
6824 +
      },
6825 +
      "holdTime2": {
6826 +
        "mean": 83,
6827 +
        "std": 0,
6828 +
        "min": 83,
6829 +
        "max": 83,
6830 +
        "count": 1
6831 +
      },
6832 +
      "pressPress": {
6833 +
        "mean": 202.3,
6834 +
        "std": 0,
6835 +
        "min": 202.3,
6836 +
        "max": 202.3,
6837 +
        "count": 1
6838 +
      },
6839 +
      "releaseRelease": {
6840 +
        "mean": 208.2,
6841 +
        "std": 0,
6842 +
        "min": 208.2,
6843 +
        "max": 208.2,
6844 +
        "count": 1
6845 +
      },
6846 +
      "pressRelease": {
6847 +
        "mean": 285.3,
6848 +
        "std": 0,
6849 +
        "min": 285.3,
6850 +
        "max": 285.3,
6851 +
        "count": 1
6852 +
      },
6853 +
      "releasePress": {
6854 +
        "mean": 125.2,
6855 +
        "std": 0,
6856 +
        "min": 125.2,
6857 +
        "max": 125.2,
6858 +
        "count": 1
6859 +
      }
6860 +
    },
6861 +
    {
6862 +
      "normalizedKeys": "l → p",
6863 +
      "count": 1,
6864 +
      "holdTime1": {
6865 +
        "mean": 57.7,
6866 +
        "std": 0,
6867 +
        "min": 57.7,
6868 +
        "max": 57.7,
6869 +
        "count": 1
6870 +
      },
6871 +
      "holdTime2": {
6872 +
        "mean": 77.1,
6873 +
        "std": 0,
6874 +
        "min": 77.1,
6875 +
        "max": 77.1,
6876 +
        "count": 1
6877 +
      },
6878 +
      "pressPress": {
6879 +
        "mean": 162.3,
6880 +
        "std": 0,
6881 +
        "min": 162.3,
6882 +
        "max": 162.3,
6883 +
        "count": 1
6884 +
      },
6885 +
      "releaseRelease": {
6886 +
        "mean": 181.7,
6887 +
        "std": 0,
6888 +
        "min": 181.7,
6889 +
        "max": 181.7,
6890 +
        "count": 1
6891 +
      },
6892 +
      "pressRelease": {
6893 +
        "mean": 239.4,
6894 +
        "std": 0,
6895 +
        "min": 239.4,
6896 +
        "max": 239.4,
6897 +
        "count": 1
6898 +
      },
6899 +
      "releasePress": {
6900 +
        "mean": 104.6,
6901 +
        "std": 0,
6902 +
        "min": 104.6,
6903 +
        "max": 104.6,
6904 +
        "count": 1
6905 +
      }
6906 +
    },
6907 +
    {
6908 +
      "normalizedKeys": "j → s",
6909 +
      "count": 1,
6910 +
      "holdTime1": {
6911 +
        "mean": 112.9,
6912 +
        "std": 0,
6913 +
        "min": 112.9,
6914 +
        "max": 112.9,
6915 +
        "count": 1
6916 +
      },
6917 +
      "holdTime2": {
6918 +
        "mean": 99.3,
6919 +
        "std": 0,
6920 +
        "min": 99.3,
6921 +
        "max": 99.3,
6922 +
        "count": 1
6923 +
      },
6924 +
      "pressPress": {
6925 +
        "mean": 161.3,
6926 +
        "std": 0,
6927 +
        "min": 161.3,
6928 +
        "max": 161.3,
6929 +
        "count": 1
6930 +
      },
6931 +
      "releaseRelease": {
6932 +
        "mean": 147.7,
6933 +
        "std": 0,
6934 +
        "min": 147.7,
6935 +
        "max": 147.7,
6936 +
        "count": 1
6937 +
      },
6938 +
      "pressRelease": {
6939 +
        "mean": 260.6,
6940 +
        "std": 0,
6941 +
        "min": 260.6,
6942 +
        "max": 260.6,
6943 +
        "count": 1
6944 +
      },
6945 +
      "releasePress": {
6946 +
        "mean": 48.4,
6947 +
        "std": 0,
6948 +
        "min": 48.4,
6949 +
        "max": 48.4,
6950 +
        "count": 1
6951 +
      }
6952 +
    },
6953 +
    {
6954 +
      "normalizedKeys": "⌫ → a",
6955 +
      "count": 1,
6956 +
      "holdTime1": {
6957 +
        "mean": 84.3,
6958 +
        "std": 0,
6959 +
        "min": 84.3,
6960 +
        "max": 84.3,
6961 +
        "count": 1
6962 +
      },
6963 +
      "holdTime2": {
6964 +
        "mean": 150,
6965 +
        "std": 0,
6966 +
        "min": 150,
6967 +
        "max": 150,
6968 +
        "count": 1
6969 +
      },
6970 +
      "pressPress": {
6971 +
        "mean": 148.6,
6972 +
        "std": 0,
6973 +
        "min": 148.6,
6974 +
        "max": 148.6,
6975 +
        "count": 1
6976 +
      },
6977 +
      "releaseRelease": {
6978 +
        "mean": 214.3,
6979 +
        "std": 0,
6980 +
        "min": 214.3,
6981 +
        "max": 214.3,
6982 +
        "count": 1
6983 +
      },
6984 +
      "pressRelease": {
6985 +
        "mean": 298.6,
6986 +
        "std": 0,
6987 +
        "min": 298.6,
6988 +
        "max": 298.6,
6989 +
        "count": 1
6990 +
      },
6991 +
      "releasePress": {
6992 +
        "mean": 64.3,
6993 +
        "std": 0,
6994 +
        "min": 64.3,
6995 +
        "max": 64.3,
6996 +
        "count": 1
6997 +
      }
6998 +
    },
6999 +
    {
7000 +
      "normalizedKeys": "o → ⌫",
7001 +
      "count": 1,
7002 +
      "holdTime1": {
7003 +
        "mean": 141.4,
7004 +
        "std": 0,
7005 +
        "min": 141.4,
7006 +
        "max": 141.4,
7007 +
        "count": 1
7008 +
      },
7009 +
      "holdTime2": {
7010 +
        "mean": 84.3,
7011 +
        "std": 0,
7012 +
        "min": 84.3,
7013 +
        "max": 84.3,
7014 +
        "count": 1
7015 +
      },
7016 +
      "pressPress": {
7017 +
        "mean": 434.7,
7018 +
        "std": 0,
7019 +
        "min": 434.7,
7020 +
        "max": 434.7,
7021 +
        "count": 1
7022 +
      },
7023 +
      "releaseRelease": {
7024 +
        "mean": 377.6,
7025 +
        "std": 0,
7026 +
        "min": 377.6,
7027 +
        "max": 377.6,
7028 +
        "count": 1
7029 +
      },
7030 +
      "pressRelease": {
7031 +
        "mean": 519,
7032 +
        "std": 0,
7033 +
        "min": 519,
7034 +
        "max": 519,
7035 +
        "count": 1
7036 +
      },
7037 +
      "releasePress": {
7038 +
        "mean": 293.3,
7039 +
        "std": 0,
7040 +
        "min": 293.3,
7041 +
        "max": 293.3,
7042 +
        "count": 1
7043 +
      }
7044 +
    },
7045 +
    {
7046 +
      "normalizedKeys": "c → a",
7047 +
      "count": 1,
7048 +
      "holdTime1": {
7049 +
        "mean": 103.1,
7050 +
        "std": 0,
7051 +
        "min": 103.1,
7052 +
        "max": 103.1,
7053 +
        "count": 1
7054 +
      },
7055 +
      "holdTime2": {
7056 +
        "mean": 149.6,
7057 +
        "std": 0,
7058 +
        "min": 149.6,
7059 +
        "max": 149.6,
7060 +
        "count": 1
7061 +
      },
7062 +
      "pressPress": {
7063 +
        "mean": 152.8,
7064 +
        "std": 0,
7065 +
        "min": 152.8,
7066 +
        "max": 152.8,
7067 +
        "count": 1
7068 +
      },
7069 +
      "releaseRelease": {
7070 +
        "mean": 199.3,
7071 +
        "std": 0,
7072 +
        "min": 199.3,
7073 +
        "max": 199.3,
7074 +
        "count": 1
7075 +
      },
7076 +
      "pressRelease": {
7077 +
        "mean": 302.4,
7078 +
        "std": 0,
7079 +
        "min": 302.4,
7080 +
        "max": 302.4,
7081 +
        "count": 1
7082 +
      },
7083 +
      "releasePress": {
7084 +
        "mean": 49.7,
7085 +
        "std": 0,
7086 +
        "min": 49.7,
7087 +
        "max": 49.7,
7088 +
        "count": 1
7089 +
      }
7090 +
    },
7091 +
    {
7092 +
      "normalizedKeys": "␣ → ␣",
7093 +
      "count": 1,
7094 +
      "holdTime1": {
7095 +
        "mean": 66,
7096 +
        "std": 0,
7097 +
        "min": 66,
7098 +
        "max": 66,
7099 +
        "count": 1
7100 +
      },
7101 +
      "holdTime2": {
7102 +
        "mean": 46.2,
7103 +
        "std": 0,
7104 +
        "min": 46.2,
7105 +
        "max": 46.2,
7106 +
        "count": 1
7107 +
      },
7108 +
      "pressPress": {
7109 +
        "mean": 211.5,
7110 +
        "std": 0,
7111 +
        "min": 211.5,
7112 +
        "max": 211.5,
7113 +
        "count": 1
7114 +
      },
7115 +
      "releaseRelease": {
7116 +
        "mean": 191.7,
7117 +
        "std": 0,
7118 +
        "min": 191.7,
7119 +
        "max": 191.7,
7120 +
        "count": 1
7121 +
      },
7122 +
      "pressRelease": {
7123 +
        "mean": 257.7,
7124 +
        "std": 0,
7125 +
        "min": 257.7,
7126 +
        "max": 257.7,
7127 +
        "count": 1
7128 +
      },
7129 +
      "releasePress": {
7130 +
        "mean": 145.5,
7131 +
        "std": 0,
7132 +
        "min": 145.5,
7133 +
        "max": 145.5,
7134 +
        "count": 1
7135 +
      }
7136 +
    },
7137 +
    {
7138 +
      "normalizedKeys": "o → v",
7139 +
      "count": 1,
7140 +
      "holdTime1": {
7141 +
        "mean": 85.7,
7142 +
        "std": 0,
7143 +
        "min": 85.7,
7144 +
        "max": 85.7,
7145 +
        "count": 1
7146 +
      },
7147 +
      "holdTime2": {
7148 +
        "mean": 48.7,
7149 +
        "std": 0,
7150 +
        "min": 48.7,
7151 +
        "max": 48.7,
7152 +
        "count": 1
7153 +
      },
7154 +
      "pressPress": {
7155 +
        "mean": 120.3,
7156 +
        "std": 0,
7157 +
        "min": 120.3,
7158 +
        "max": 120.3,
7159 +
        "count": 1
7160 +
      },
7161 +
      "releaseRelease": {
7162 +
        "mean": 83.3,
7163 +
        "std": 0,
7164 +
        "min": 83.3,
7165 +
        "max": 83.3,
7166 +
        "count": 1
7167 +
      },
7168 +
      "pressRelease": {
7169 +
        "mean": 169,
7170 +
        "std": 0,
7171 +
        "min": 169,
7172 +
        "max": 169,
7173 +
        "count": 1
7174 +
      },
7175 +
      "releasePress": {
7176 +
        "mean": 34.6,
7177 +
        "std": 0,
7178 +
        "min": 34.6,
7179 +
        "max": 34.6,
7180 +
        "count": 1
7181 +
      }
7182 +
    },
7183 +
    {
7184 +
      "normalizedKeys": "f → o",
7185 +
      "count": 1,
7186 +
      "holdTime1": {
7187 +
        "mean": 66.6,
7188 +
        "std": 0,
7189 +
        "min": 66.6,
7190 +
        "max": 66.6,
7191 +
        "count": 1
7192 +
      },
7193 +
      "holdTime2": {
7194 +
        "mean": 45.9,
7195 +
        "std": 0,
7196 +
        "min": 45.9,
7197 +
        "max": 45.9,
7198 +
        "count": 1
7199 +
      },
7200 +
      "pressPress": {
7201 +
        "mean": 107.4,
7202 +
        "std": 0,
7203 +
        "min": 107.4,
7204 +
        "max": 107.4,
7205 +
        "count": 1
7206 +
      },
7207 +
      "releaseRelease": {
7208 +
        "mean": 86.7,
7209 +
        "std": 0,
7210 +
        "min": 86.7,
7211 +
        "max": 86.7,
7212 +
        "count": 1
7213 +
      },
7214 +
      "pressRelease": {
7215 +
        "mean": 153.3,
7216 +
        "std": 0,
7217 +
        "min": 153.3,
7218 +
        "max": 153.3,
7219 +
        "count": 1
7220 +
      },
7221 +
      "releasePress": {
7222 +
        "mean": 40.8,
7223 +
        "std": 0,
7224 +
        "min": 40.8,
7225 +
        "max": 40.8,
7226 +
        "count": 1
7227 +
      }
7228 +
    },
7229 +
    {
7230 +
      "normalizedKeys": "e → n",
7231 +
      "count": 1,
7232 +
      "holdTime1": {
7233 +
        "mean": 100.1,
7234 +
        "std": 0,
7235 +
        "min": 100.1,
7236 +
        "max": 100.1,
7237 +
        "count": 1
7238 +
      },
7239 +
      "holdTime2": {
7240 +
        "mean": 103.7,
7241 +
        "std": 0,
7242 +
        "min": 103.7,
7243 +
        "max": 103.7,
7244 +
        "count": 1
7245 +
      },
7246 +
      "pressPress": {
7247 +
        "mean": 427,
7248 +
        "std": 0,
7249 +
        "min": 427,
7250 +
        "max": 427,
7251 +
        "count": 1
7252 +
      },
7253 +
      "releaseRelease": {
7254 +
        "mean": 430.6,
7255 +
        "std": 0,
7256 +
        "min": 430.6,
7257 +
        "max": 430.6,
7258 +
        "count": 1
7259 +
      },
7260 +
      "pressRelease": {
7261 +
        "mean": 530.7,
7262 +
        "std": 0,
7263 +
        "min": 530.7,
7264 +
        "max": 530.7,
7265 +
        "count": 1
7266 +
      },
7267 +
      "releasePress": {
7268 +
        "mean": 326.9,
7269 +
        "std": 0,
7270 +
        "min": 326.9,
7271 +
        "max": 326.9,
7272 +
        "count": 1
7273 +
      }
7274 +
    },
7275 +
    {
7276 +
      "normalizedKeys": "a → g",
7277 +
      "count": 1,
7278 +
      "holdTime1": {
7279 +
        "mean": 132.7,
7280 +
        "std": 0,
7281 +
        "min": 132.7,
7282 +
        "max": 132.7,
7283 +
        "count": 1
7284 +
      },
7285 +
      "holdTime2": {
7286 +
        "mean": 42,
7287 +
        "std": 0,
7288 +
        "min": 42,
7289 +
        "max": 42,
7290 +
        "count": 1
7291 +
      },
7292 +
      "pressPress": {
7293 +
        "mean": 165.7,
7294 +
        "std": 0,
7295 +
        "min": 165.7,
7296 +
        "max": 165.7,
7297 +
        "count": 1
7298 +
      },
7299 +
      "releaseRelease": {
7300 +
        "mean": 75,
7301 +
        "std": 0,
7302 +
        "min": 75,
7303 +
        "max": 75,
7304 +
        "count": 1
7305 +
      },
7306 +
      "pressRelease": {
7307 +
        "mean": 207.7,
7308 +
        "std": 0,
7309 +
        "min": 207.7,
7310 +
        "max": 207.7,
7311 +
        "count": 1
7312 +
      },
7313 +
      "releasePress": {
7314 +
        "mean": 33,
7315 +
        "std": 0,
7316 +
        "min": 33,
7317 +
        "max": 33,
7318 +
        "count": 1
7319 +
      }
7320 +
    },
7321 +
    {
7322 +
      "normalizedKeys": "g → u",
7323 +
      "count": 1,
7324 +
      "holdTime1": {
7325 +
        "mean": 74.3,
7326 +
        "std": 0,
7327 +
        "min": 74.3,
7328 +
        "max": 74.3,
7329 +
        "count": 1
7330 +
      },
7331 +
      "holdTime2": {
7332 +
        "mean": 83.1,
7333 +
        "std": 0,
7334 +
        "min": 83.1,
7335 +
        "max": 83.1,
7336 +
        "count": 1
7337 +
      },
7338 +
      "pressPress": {
7339 +
        "mean": 132.7,
7340 +
        "std": 0,
7341 +
        "min": 132.7,
7342 +
        "max": 132.7,
7343 +
        "count": 1
7344 +
      },
7345 +
      "releaseRelease": {
7346 +
        "mean": 141.5,
7347 +
        "std": 0,
7348 +
        "min": 141.5,
7349 +
        "max": 141.5,
7350 +
        "count": 1
7351 +
      },
7352 +
      "pressRelease": {
7353 +
        "mean": 215.8,
7354 +
        "std": 0,
7355 +
        "min": 215.8,
7356 +
        "max": 215.8,
7357 +
        "count": 1
7358 +
      },
7359 +
      "releasePress": {
7360 +
        "mean": 58.4,
7361 +
        "std": 0,
7362 +
        "min": 58.4,
7363 +
        "max": 58.4,
7364 +
        "count": 1
7365 +
      }
7366 +
    },
7367 +
    {
7368 +
      "normalizedKeys": "a → m",
7369 +
      "count": 1,
7370 +
      "holdTime1": {
7371 +
        "mean": 119.5,
7372 +
        "std": 0,
7373 +
        "min": 119.5,
7374 +
        "max": 119.5,
7375 +
        "count": 1
7376 +
      },
7377 +
      "holdTime2": {
7378 +
        "mean": 65.8,
7379 +
        "std": 0,
7380 +
        "min": 65.8,
7381 +
        "max": 65.8,
7382 +
        "count": 1
7383 +
      },
7384 +
      "pressPress": {
7385 +
        "mean": 58.5,
7386 +
        "std": 0,
7387 +
        "min": 58.5,
7388 +
        "max": 58.5,
7389 +
        "count": 1
7390 +
      },
7391 +
      "releaseRelease": {
7392 +
        "mean": 4.8,
7393 +
        "std": 0,
7394 +
        "min": 4.8,
7395 +
        "max": 4.8,
7396 +
        "count": 1
7397 +
      },
7398 +
      "pressRelease": {
7399 +
        "mean": 124.3,
7400 +
        "std": 0,
7401 +
        "min": 124.3,
7402 +
        "max": 124.3,
7403 +
        "count": 1
7404 +
      },
7405 +
      "releasePress": {
7406 +
        "mean": -61,
7407 +
        "std": 0,
7408 +
        "min": -61,
7409 +
        "max": -61,
7410 +
        "count": 1
7411 +
      }
7412 +
    },
7413 +
    {
7414 +
      "normalizedKeys": "g → r",
7415 +
      "count": 1,
7416 +
      "holdTime1": {
7417 +
        "mean": 50.7,
7418 +
        "std": 0,
7419 +
        "min": 50.7,
7420 +
        "max": 50.7,
7421 +
        "count": 1
7422 +
      },
7423 +
      "holdTime2": {
7424 +
        "mean": 75.8,
7425 +
        "std": 0,
7426 +
        "min": 75.8,
7427 +
        "max": 75.8,
7428 +
        "count": 1
7429 +
      },
7430 +
      "pressPress": {
7431 +
        "mean": 154.9,
7432 +
        "std": 0,
7433 +
        "min": 154.9,
7434 +
        "max": 154.9,
7435 +
        "count": 1
7436 +
      },
7437 +
      "releaseRelease": {
7438 +
        "mean": 180,
7439 +
        "std": 0,
7440 +
        "min": 180,
7441 +
        "max": 180,
7442 +
        "count": 1
7443 +
      },
7444 +
      "pressRelease": {
7445 +
        "mean": 230.7,
7446 +
        "std": 0,
7447 +
        "min": 230.7,
7448 +
        "max": 230.7,
7449 +
        "count": 1
7450 +
      },
7451 +
      "releasePress": {
7452 +
        "mean": 104.2,
7453 +
        "std": 0,
7454 +
        "min": 104.2,
7455 +
        "max": 104.2,
7456 +
        "count": 1
7457 +
      }
7458 +
    },
7459 +
    {
7460 +
      "normalizedKeys": "o → g",
7461 +
      "count": 1,
7462 +
      "holdTime1": {
7463 +
        "mean": 84.6,
7464 +
        "std": 0,
7465 +
        "min": 84.6,
7466 +
        "max": 84.6,
7467 +
        "count": 1
7468 +
      },
7469 +
      "holdTime2": {
7470 +
        "mean": 50.7,
7471 +
        "std": 0,
7472 +
        "min": 50.7,
7473 +
        "max": 50.7,
7474 +
        "count": 1
7475 +
      },
7476 +
      "pressPress": {
7477 +
        "mean": 124.5,
7478 +
        "std": 0,
7479 +
        "min": 124.5,
7480 +
        "max": 124.5,
7481 +
        "count": 1
7482 +
      },
7483 +
      "releaseRelease": {
7484 +
        "mean": 90.6,
7485 +
        "std": 0,
7486 +
        "min": 90.6,
7487 +
        "max": 90.6,
7488 +
        "count": 1
7489 +
      },
7490 +
      "pressRelease": {
7491 +
        "mean": 175.2,
7492 +
        "std": 0,
7493 +
        "min": 175.2,
7494 +
        "max": 175.2,
7495 +
        "count": 1
7496 +
      },
7497 +
      "releasePress": {
7498 +
        "mean": 39.9,
7499 +
        "std": 0,
7500 +
        "min": 39.9,
7501 +
        "max": 39.9,
7502 +
        "count": 1
7503 +
      }
7504 +
    },
7505 +
    {
7506 +
      "normalizedKeys": "i → o",
7507 +
      "count": 1,
7508 +
      "holdTime1": {
7509 +
        "mean": 83.2,
7510 +
        "std": 0,
7511 +
        "min": 83.2,
7512 +
        "max": 83.2,
7513 +
        "count": 1
7514 +
      },
7515 +
      "holdTime2": {
7516 +
        "mean": 37.6,
7517 +
        "std": 0,
7518 +
        "min": 37.6,
7519 +
        "max": 37.6,
7520 +
        "count": 1
7521 +
      },
7522 +
      "pressPress": {
7523 +
        "mean": 170.5,
7524 +
        "std": 0,
7525 +
        "min": 170.5,
7526 +
        "max": 170.5,
7527 +
        "count": 1
7528 +
      },
7529 +
      "releaseRelease": {
7530 +
        "mean": 124.9,
7531 +
        "std": 0,
7532 +
        "min": 124.9,
7533 +
        "max": 124.9,
7534 +
        "count": 1
7535 +
      },
7536 +
      "pressRelease": {
7537 +
        "mean": 208.1,
7538 +
        "std": 0,
7539 +
        "min": 208.1,
7540 +
        "max": 208.1,
7541 +
        "count": 1
7542 +
      },
7543 +
      "releasePress": {
7544 +
        "mean": 87.3,
7545 +
        "std": 0,
7546 +
        "min": 87.3,
7547 +
        "max": 87.3,
7548 +
        "count": 1
7549 +
      }
7550 +
    },
7551 +
    {
7552 +
      "normalizedKeys": "s → c",
7553 +
      "count": 1,
7554 +
      "holdTime1": {
7555 +
        "mean": 66.5,
7556 +
        "std": 0,
7557 +
        "min": 66.5,
7558 +
        "max": 66.5,
7559 +
        "count": 1
7560 +
      },
7561 +
      "holdTime2": {
7562 +
        "mean": 92.8,
7563 +
        "std": 0,
7564 +
        "min": 92.8,
7565 +
        "max": 92.8,
7566 +
        "count": 1
7567 +
      },
7568 +
      "pressPress": {
7569 +
        "mean": 177.1,
7570 +
        "std": 0,
7571 +
        "min": 177.1,
7572 +
        "max": 177.1,
7573 +
        "count": 1
7574 +
      },
7575 +
      "releaseRelease": {
7576 +
        "mean": 203.4,
7577 +
        "std": 0,
7578 +
        "min": 203.4,
7579 +
        "max": 203.4,
7580 +
        "count": 1
7581 +
      },
7582 +
      "pressRelease": {
7583 +
        "mean": 269.9,
7584 +
        "std": 0,
7585 +
        "min": 269.9,
7586 +
        "max": 269.9,
7587 +
        "count": 1
7588 +
      },
7589 +
      "releasePress": {
7590 +
        "mean": 110.6,
7591 +
        "std": 0,
7592 +
        "min": 110.6,
7593 +
        "max": 110.6,
7594 +
        "count": 1
7595 +
      }
7596 +
    },
7597 +
    {
7598 +
      "normalizedKeys": "x → a",
7599 +
      "count": 1,
7600 +
      "holdTime1": {
7601 +
        "mean": 103.5,
7602 +
        "std": 0,
7603 +
        "min": 103.5,
7604 +
        "max": 103.5,
7605 +
        "count": 1
7606 +
      },
7607 +
      "holdTime2": {
7608 +
        "mean": 116.6,
7609 +
        "std": 0,
7610 +
        "min": 116.6,
7611 +
        "max": 116.6,
7612 +
        "count": 1
7613 +
      },
7614 +
      "pressPress": {
7615 +
        "mean": 362.9,
7616 +
        "std": 0,
7617 +
        "min": 362.9,
7618 +
        "max": 362.9,
7619 +
        "count": 1
7620 +
      },
7621 +
      "releaseRelease": {
7622 +
        "mean": 376,
7623 +
        "std": 0,
7624 +
        "min": 376,
7625 +
        "max": 376,
7626 +
        "count": 1
7627 +
      },
7628 +
      "pressRelease": {
7629 +
        "mean": 479.5,
7630 +
        "std": 0,
7631 +
        "min": 479.5,
7632 +
        "max": 479.5,
7633 +
        "count": 1
7634 +
      },
7635 +
      "releasePress": {
7636 +
        "mean": 259.4,
7637 +
        "std": 0,
7638 +
        "min": 259.4,
7639 +
        "max": 259.4,
7640 +
        "count": 1
7641 +
      }
7642 +
    },
7643 +
    {
7644 +
      "normalizedKeys": "i → x",
7645 +
      "count": 1,
7646 +
      "holdTime1": {
7647 +
        "mean": 73.1,
7648 +
        "std": 0,
7649 +
        "min": 73.1,
7650 +
        "max": 73.1,
7651 +
        "count": 1
7652 +
      },
7653 +
      "holdTime2": {
7654 +
        "mean": 103.5,
7655 +
        "std": 0,
7656 +
        "min": 103.5,
7657 +
        "max": 103.5,
7658 +
        "count": 1
7659 +
      },
7660 +
      "pressPress": {
7661 +
        "mean": 199.1,
7662 +
        "std": 0,
7663 +
        "min": 199.1,
7664 +
        "max": 199.1,
7665 +
        "count": 1
7666 +
      },
7667 +
      "releaseRelease": {
7668 +
        "mean": 229.5,
7669 +
        "std": 0,
7670 +
        "min": 229.5,
7671 +
        "max": 229.5,
7672 +
        "count": 1
7673 +
      },
7674 +
      "pressRelease": {
7675 +
        "mean": 302.6,
7676 +
        "std": 0,
7677 +
        "min": 302.6,
7678 +
        "max": 302.6,
7679 +
        "count": 1
7680 +
      },
7681 +
      "releasePress": {
7682 +
        "mean": 126,
7683 +
        "std": 0,
7684 +
        "min": 126,
7685 +
        "max": 126,
7686 +
        "count": 1
7687 +
      }
7688 +
    },
7689 +
    {
7690 +
      "normalizedKeys": "c → i",
7691 +
      "count": 1,
7692 +
      "holdTime1": {
7693 +
        "mean": 114.2,
7694 +
        "std": 0,
7695 +
        "min": 114.2,
7696 +
        "max": 114.2,
7697 +
        "count": 1
7698 +
      },
7699 +
      "holdTime2": {
7700 +
        "mean": 73.1,
7701 +
        "std": 0,
7702 +
        "min": 73.1,
7703 +
        "max": 73.1,
7704 +
        "count": 1
7705 +
      },
7706 +
      "pressPress": {
7707 +
        "mean": 841.3,
7708 +
        "std": 0,
7709 +
        "min": 841.3,
7710 +
        "max": 841.3,
7711 +
        "count": 1
7712 +
      },
7713 +
      "releaseRelease": {
7714 +
        "mean": 800.2,
7715 +
        "std": 0,
7716 +
        "min": 800.2,
7717 +
        "max": 800.2,
7718 +
        "count": 1
7719 +
      },
7720 +
      "pressRelease": {
7721 +
        "mean": 914.4,
7722 +
        "std": 0,
7723 +
        "min": 914.4,
7724 +
        "max": 914.4,
7725 +
        "count": 1
7726 +
      },
7727 +
      "releasePress": {
7728 +
        "mean": 727.1,
7729 +
        "std": 0,
7730 +
        "min": 727.1,
7731 +
        "max": 727.1,
7732 +
        "count": 1
7733 +
      }
7734 +
    },
7735 +
    {
7736 +
      "normalizedKeys": "i → e",
7737 +
      "count": 1,
7738 +
      "holdTime1": {
7739 +
        "mean": 67.2,
7740 +
        "std": 0,
7741 +
        "min": 67.2,
7742 +
        "max": 67.2,
7743 +
        "count": 1
7744 +
      },
7745 +
      "holdTime2": {
7746 +
        "mean": 102,
7747 +
        "std": 0,
7748 +
        "min": 102,
7749 +
        "max": 102,
7750 +
        "count": 1
7751 +
      },
7752 +
      "pressPress": {
7753 +
        "mean": 953.4,
7754 +
        "std": 0,
7755 +
        "min": 953.4,
7756 +
        "max": 953.4,
7757 +
        "count": 1
7758 +
      },
7759 +
      "releaseRelease": {
7760 +
        "mean": 988.2,
7761 +
        "std": 0,
7762 +
        "min": 988.2,
7763 +
        "max": 988.2,
7764 +
        "count": 1
7765 +
      },
7766 +
      "pressRelease": {
7767 +
        "mean": 1055.4,
7768 +
        "std": 0,
7769 +
        "min": 1055.4,
7770 +
        "max": 1055.4,
7771 +
        "count": 1
7772 +
      },
7773 +
      "releasePress": {
7774 +
        "mean": 886.2,
7775 +
        "std": 0,
7776 +
        "min": 886.2,
7777 +
        "max": 886.2,
7778 +
        "count": 1
7779 +
      }
7780 +
    },
7781 +
    {
7782 +
      "normalizedKeys": "e → i",
7783 +
      "count": 1,
7784 +
      "holdTime1": {
7785 +
        "mean": 77.9,
7786 +
        "std": 0,
7787 +
        "min": 77.9,
7788 +
        "max": 77.9,
7789 +
        "count": 1
7790 +
      },
7791 +
      "holdTime2": {
7792 +
        "mean": 67.2,
7793 +
        "std": 0,
7794 +
        "min": 67.2,
7795 +
        "max": 67.2,
7796 +
        "count": 1
7797 +
      },
7798 +
      "pressPress": {
7799 +
        "mean": 107.2,
7800 +
        "std": 0,
7801 +
        "min": 107.2,
7802 +
        "max": 107.2,
7803 +
        "count": 1
7804 +
      },
7805 +
      "releaseRelease": {
7806 +
        "mean": 96.5,
7807 +
        "std": 0,
7808 +
        "min": 96.5,
7809 +
        "max": 96.5,
7810 +
        "count": 1
7811 +
      },
7812 +
      "pressRelease": {
7813 +
        "mean": 174.4,
7814 +
        "std": 0,
7815 +
        "min": 174.4,
7816 +
        "max": 174.4,
7817 +
        "count": 1
7818 +
      },
7819 +
      "releasePress": {
7820 +
        "mean": 29.3,
7821 +
        "std": 0,
7822 +
        "min": 29.3,
7823 +
        "max": 29.3,
7824 +
        "count": 1
7825 +
      }
7826 +
    },
7827 +
    {
7828 +
      "normalizedKeys": "i → g",
7829 +
      "count": 1,
7830 +
      "holdTime1": {
7831 +
        "mean": 101.5,
7832 +
        "std": 0,
7833 +
        "min": 101.5,
7834 +
        "max": 101.5,
7835 +
        "count": 1
7836 +
      },
7837 +
      "holdTime2": {
7838 +
        "mean": 82.4,
7839 +
        "std": 0,
7840 +
        "min": 82.4,
7841 +
        "max": 82.4,
7842 +
        "count": 1
7843 +
      },
7844 +
      "pressPress": {
7845 +
        "mean": 143.8,
7846 +
        "std": 0,
7847 +
        "min": 143.8,
7848 +
        "max": 143.8,
7849 +
        "count": 1
7850 +
      },
7851 +
      "releaseRelease": {
7852 +
        "mean": 124.7,
7853 +
        "std": 0,
7854 +
        "min": 124.7,
7855 +
        "max": 124.7,
7856 +
        "count": 1
7857 +
      },
7858 +
      "pressRelease": {
7859 +
        "mean": 226.2,
7860 +
        "std": 0,
7861 +
        "min": 226.2,
7862 +
        "max": 226.2,
7863 +
        "count": 1
7864 +
      },
7865 +
      "releasePress": {
7866 +
        "mean": 42.3,
7867 +
        "std": 0,
7868 +
        "min": 42.3,
7869 +
        "max": 42.3,
7870 +
        "count": 1
7871 +
      }
7872 +
    },
7873 +
    {
7874 +
      "normalizedKeys": "u → g",
7875 +
      "count": 1,
7876 +
      "holdTime1": {
7877 +
        "mean": 103.6,
7878 +
        "std": 0,
7879 +
        "min": 103.6,
7880 +
        "max": 103.6,
7881 +
        "count": 1
7882 +
      },
7883 +
      "holdTime2": {
7884 +
        "mean": 74.7,
7885 +
        "std": 0,
7886 +
        "min": 74.7,
7887 +
        "max": 74.7,
7888 +
        "count": 1
7889 +
      },
7890 +
      "pressPress": {
7891 +
        "mean": 157.2,
7892 +
        "std": 0,
7893 +
        "min": 157.2,
7894 +
        "max": 157.2,
7895 +
        "count": 1
7896 +
      },
7897 +
      "releaseRelease": {
7898 +
        "mean": 128.3,
7899 +
        "std": 0,
7900 +
        "min": 128.3,
7901 +
        "max": 128.3,
7902 +
        "count": 1
7903 +
      },
7904 +
      "pressRelease": {
7905 +
        "mean": 231.9,
7906 +
        "std": 0,
7907 +
        "min": 231.9,
7908 +
        "max": 231.9,
7909 +
        "count": 1
7910 +
      },
7911 +
      "releasePress": {
7912 +
        "mean": 53.6,
7913 +
        "std": 0,
7914 +
        "min": 53.6,
7915 +
        "max": 53.6,
7916 +
        "count": 1
7917 +
      }
7918 +
    },
7919 +
    {
7920 +
      "normalizedKeys": "l → ,",
7921 +
      "count": 1,
7922 +
      "holdTime1": {
7923 +
        "mean": 91.4,
7924 +
        "std": 0,
7925 +
        "min": 91.4,
7926 +
        "max": 91.4,
7927 +
        "count": 1
7928 +
      },
7929 +
      "holdTime2": {
7930 +
        "mean": 101.6,
7931 +
        "std": 0,
7932 +
        "min": 101.6,
7933 +
        "max": 101.6,
7934 +
        "count": 1
7935 +
      },
7936 +
      "pressPress": {
7937 +
        "mean": 225.4,
7938 +
        "std": 0,
7939 +
        "min": 225.4,
7940 +
        "max": 225.4,
7941 +
        "count": 1
7942 +
      },
7943 +
      "releaseRelease": {
7944 +
        "mean": 235.6,
7945 +
        "std": 0,
7946 +
        "min": 235.6,
7947 +
        "max": 235.6,
7948 +
        "count": 1
7949 +
      },
7950 +
      "pressRelease": {
7951 +
        "mean": 327,
7952 +
        "std": 0,
7953 +
        "min": 327,
7954 +
        "max": 327,
7955 +
        "count": 1
7956 +
      },
7957 +
      "releasePress": {
7958 +
        "mean": 134,
7959 +
        "std": 0,
7960 +
        "min": 134,
7961 +
        "max": 134,
7962 +
        "count": 1
7963 +
      }
7964 +
    },
7965 +
    {
7966 +
      "normalizedKeys": "o → o",
7967 +
      "count": 1,
7968 +
      "holdTime1": {
7969 +
        "mean": 66.5,
7970 +
        "std": 0,
7971 +
        "min": 66.5,
7972 +
        "max": 66.5,
7973 +
        "count": 1
7974 +
      },
7975 +
      "holdTime2": {
7976 +
        "mean": 83.1,
7977 +
        "std": 0,
7978 +
        "min": 83.1,
7979 +
        "max": 83.1,
7980 +
        "count": 1
7981 +
      },
7982 +
      "pressPress": {
7983 +
        "mean": 141.8,
7984 +
        "std": 0,
7985 +
        "min": 141.8,
7986 +
        "max": 141.8,
7987 +
        "count": 1
7988 +
      },
7989 +
      "releaseRelease": {
7990 +
        "mean": 158.4,
7991 +
        "std": 0,
7992 +
        "min": 158.4,
7993 +
        "max": 158.4,
7994 +
        "count": 1
7995 +
      },
7996 +
      "pressRelease": {
7997 +
        "mean": 224.9,
7998 +
        "std": 0,
7999 +
        "min": 224.9,
8000 +
        "max": 224.9,
8001 +
        "count": 1
8002 +
      },
8003 +
      "releasePress": {
8004 +
        "mean": 75.3,
8005 +
        "std": 0,
8006 +
        "min": 75.3,
8007 +
        "max": 75.3,
8008 +
        "count": 1
8009 +
      }
8010 +
    },
8011 +
    {
8012 +
      "normalizedKeys": "l → i",
8013 +
      "count": 1,
8014 +
      "holdTime1": {
8015 +
        "mean": 125.4,
8016 +
        "std": 0,
8017 +
        "min": 125.4,
8018 +
        "max": 125.4,
8019 +
        "count": 1
8020 +
      },
8021 +
      "holdTime2": {
8022 +
        "mean": 193.6,
8023 +
        "std": 0,
8024 +
        "min": 193.6,
8025 +
        "max": 193.6,
8026 +
        "count": 1
8027 +
      },
8028 +
      "pressPress": {
8029 +
        "mean": 225.2,
8030 +
        "std": 0,
8031 +
        "min": 225.2,
8032 +
        "max": 225.2,
8033 +
        "count": 1
8034 +
      },
8035 +
      "releaseRelease": {
8036 +
        "mean": 293.4,
8037 +
        "std": 0,
8038 +
        "min": 293.4,
8039 +
        "max": 293.4,
8040 +
        "count": 1
8041 +
      },
8042 +
      "pressRelease": {
8043 +
        "mean": 418.8,
8044 +
        "std": 0,
8045 +
        "min": 418.8,
8046 +
        "max": 418.8,
8047 +
        "count": 1
8048 +
      },
8049 +
      "releasePress": {
8050 +
        "mean": 99.8,
8051 +
        "std": 0,
8052 +
        "min": 99.8,
8053 +
        "max": 99.8,
8054 +
        "count": 1
8055 +
      }
8056 +
    },
8057 +
    {
8058 +
      "normalizedKeys": "o → m",
8059 +
      "count": 1,
8060 +
      "holdTime1": {
8061 +
        "mean": 69.5,
8062 +
        "std": 0,
8063 +
        "min": 69.5,
8064 +
        "max": 69.5,
8065 +
        "count": 1
8066 +
      },
8067 +
      "holdTime2": {
8068 +
        "mean": 16.5,
8069 +
        "std": 0,
8070 +
        "min": 16.5,
8071 +
        "max": 16.5,
8072 +
        "count": 1
8073 +
      },
8074 +
      "pressPress": {
8075 +
        "mean": 177.9,
8076 +
        "std": 0,
8077 +
        "min": 177.9,
8078 +
        "max": 177.9,
8079 +
        "count": 1
8080 +
      },
8081 +
      "releaseRelease": {
8082 +
        "mean": 124.9,
8083 +
        "std": 0,
8084 +
        "min": 124.9,
8085 +
        "max": 124.9,
8086 +
        "count": 1
8087 +
      },
8088 +
      "pressRelease": {
8089 +
        "mean": 194.4,
8090 +
        "std": 0,
8091 +
        "min": 194.4,
8092 +
        "max": 194.4,
8093 +
        "count": 1
8094 +
      },
8095 +
      "releasePress": {
8096 +
        "mean": 108.4,
8097 +
        "std": 0,
8098 +
        "min": 108.4,
8099 +
        "max": 108.4,
8100 +
        "count": 1
8101 +
      }
8102 +
    },
8103 +
    {
8104 +
      "normalizedKeys": "k → a",
8105 +
      "count": 1,
8106 +
      "holdTime1": {
8107 +
        "mean": 102.5,
8108 +
        "std": 0,
8109 +
        "min": 102.5,
8110 +
        "max": 102.5,
8111 +
        "count": 1
8112 +
      },
8113 +
      "holdTime2": {
8114 +
        "mean": 141.3,
8115 +
        "std": 0,
8116 +
        "min": 141.3,
8117 +
        "max": 141.3,
8118 +
        "count": 1
8119 +
      },
8120 +
      "pressPress": {
8121 +
        "mean": 144.9,
8122 +
        "std": 0,
8123 +
        "min": 144.9,
8124 +
        "max": 144.9,
8125 +
        "count": 1
8126 +
      },
8127 +
      "releaseRelease": {
8128 +
        "mean": 183.7,
8129 +
        "std": 0,
8130 +
        "min": 183.7,
8131 +
        "max": 183.7,
8132 +
        "count": 1
8133 +
      },
8134 +
      "pressRelease": {
8135 +
        "mean": 286.2,
8136 +
        "std": 0,
8137 +
        "min": 286.2,
8138 +
        "max": 286.2,
8139 +
        "count": 1
8140 +
      },
8141 +
      "releasePress": {
8142 +
        "mean": 42.4,
8143 +
        "std": 0,
8144 +
        "min": 42.4,
8145 +
        "max": 42.4,
8146 +
        "count": 1
8147 +
      }
8148 +
    },
8149 +
    {
8150 +
      "normalizedKeys": "l → d",
8151 +
      "count": 1,
8152 +
      "holdTime1": {
8153 +
        "mean": 91.4,
8154 +
        "std": 0,
8155 +
        "min": 91.4,
8156 +
        "max": 91.4,
8157 +
        "count": 1
8158 +
      },
8159 +
      "holdTime2": {
8160 +
        "mean": 99.6,
8161 +
        "std": 0,
8162 +
        "min": 99.6,
8163 +
        "max": 99.6,
8164 +
        "count": 1
8165 +
      },
8166 +
      "pressPress": {
8167 +
        "mean": 83.7,
8168 +
        "std": 0,
8169 +
        "min": 83.7,
8170 +
        "max": 83.7,
8171 +
        "count": 1
8172 +
      },
8173 +
      "releaseRelease": {
8174 +
        "mean": 91.9,
8175 +
        "std": 0,
8176 +
        "min": 91.9,
8177 +
        "max": 91.9,
8178 +
        "count": 1
8179 +
      },
8180 +
      "pressRelease": {
8181 +
        "mean": 183.3,
8182 +
        "std": 0,
8183 +
        "min": 183.3,
8184 +
        "max": 183.3,
8185 +
        "count": 1
8186 +
      },
8187 +
      "releasePress": {
8188 +
        "mean": -7.7,
8189 +
        "std": 0,
8190 +
        "min": -7.7,
8191 +
        "max": -7.7,
8192 +
        "count": 1
8193 +
      }
8194 +
    },
8195 +
    {
8196 +
      "normalizedKeys": "y → .",
8197 +
      "count": 1,
8198 +
      "holdTime1": {
8199 +
        "mean": 103.8,
8200 +
        "std": 0,
8201 +
        "min": 103.8,
8202 +
        "max": 103.8,
8203 +
        "count": 1
8204 +
      },
8205 +
      "holdTime2": {
8206 +
        "mean": 82.7,
8207 +
        "std": 0,
8208 +
        "min": 82.7,
8209 +
        "max": 82.7,
8210 +
        "count": 1
8211 +
      },
8212 +
      "pressPress": {
8213 +
        "mean": 284.1,
8214 +
        "std": 0,
8215 +
        "min": 284.1,
8216 +
        "max": 284.1,
8217 +
        "count": 1
8218 +
      },
8219 +
      "releaseRelease": {
8220 +
        "mean": 263,
8221 +
        "std": 0,
8222 +
        "min": 263,
8223 +
        "max": 263,
8224 +
        "count": 1
8225 +
      },
8226 +
      "pressRelease": {
8227 +
        "mean": 366.8,
8228 +
        "std": 0,
8229 +
        "min": 366.8,
8230 +
        "max": 366.8,
8231 +
        "count": 1
8232 +
      },
8233 +
      "releasePress": {
8234 +
        "mean": 180.3,
8235 +
        "std": 0,
8236 +
        "min": 180.3,
8237 +
        "max": 180.3,
8238 +
        "count": 1
8239 +
      }
8240 +
    },
8241 +
    {
8242 +
      "normalizedKeys": "o → f",
8243 +
      "count": 1,
8244 +
      "holdTime1": {
8245 +
        "mean": 84.8,
8246 +
        "std": 0,
8247 +
        "min": 84.8,
8248 +
        "max": 84.8,
8249 +
        "count": 1
8250 +
      },
8251 +
      "holdTime2": {
8252 +
        "mean": 103.7,
8253 +
        "std": 0,
8254 +
        "min": 103.7,
8255 +
        "max": 103.7,
8256 +
        "count": 1
8257 +
      },
8258 +
      "pressPress": {
8259 +
        "mean": 326.9,
8260 +
        "std": 0,
8261 +
        "min": 326.9,
8262 +
        "max": 326.9,
8263 +
        "count": 1
8264 +
      },
8265 +
      "releaseRelease": {
8266 +
        "mean": 345.8,
8267 +
        "std": 0,
8268 +
        "min": 345.8,
8269 +
        "max": 345.8,
8270 +
        "count": 1
8271 +
      },
8272 +
      "pressRelease": {
8273 +
        "mean": 430.6,
8274 +
        "std": 0,
8275 +
        "min": 430.6,
8276 +
        "max": 430.6,
8277 +
        "count": 1
8278 +
      },
8279 +
      "releasePress": {
8280 +
        "mean": 242.1,
8281 +
        "std": 0,
8282 +
        "min": 242.1,
8283 +
        "max": 242.1,
8284 +
        "count": 1
8285 +
      }
8286 +
    },
8287 +
    {
8288 +
      "normalizedKeys": "j → u",
8289 +
      "count": 1,
8290 +
      "holdTime1": {
8291 +
        "mean": 83.4,
8292 +
        "std": 0,
8293 +
        "min": 83.4,
8294 +
        "max": 83.4,
8295 +
        "count": 1
8296 +
      },
8297 +
      "holdTime2": {
8298 +
        "mean": 92.5,
8299 +
        "std": 0,
8300 +
        "min": 92.5,
8301 +
        "max": 92.5,
8302 +
        "count": 1
8303 +
      },
8304 +
      "pressPress": {
8305 +
        "mean": 174.8,
8306 +
        "std": 0,
8307 +
        "min": 174.8,
8308 +
        "max": 174.8,
8309 +
        "count": 1
8310 +
      },
8311 +
      "releaseRelease": {
8312 +
        "mean": 183.9,
8313 +
        "std": 0,
8314 +
        "min": 183.9,
8315 +
        "max": 183.9,
8316 +
        "count": 1
8317 +
      },
8318 +
      "pressRelease": {
8319 +
        "mean": 267.3,
8320 +
        "std": 0,
8321 +
        "min": 267.3,
8322 +
        "max": 267.3,
8323 +
        "count": 1
8324 +
      },
8325 +
      "releasePress": {
8326 +
        "mean": 91.4,
8327 +
        "std": 0,
8328 +
        "min": 91.4,
8329 +
        "max": 91.4,
8330 +
        "count": 1
8331 +
      }
8332 +
    },
8333 +
    {
8334 +
      "normalizedKeys": "' → s",
8335 +
      "count": 1,
8336 +
      "holdTime1": {
8337 +
        "mean": 82.3,
8338 +
        "std": 0,
8339 +
        "min": 82.3,
8340 +
        "max": 82.3,
8341 +
        "count": 1
8342 +
      },
8343 +
      "holdTime2": {
8344 +
        "mean": 98.4,
8345 +
        "std": 0,
8346 +
        "min": 98.4,
8347 +
        "max": 98.4,
8348 +
        "count": 1
8349 +
      },
8350 +
      "pressPress": {
8351 +
        "mean": 100.6,
8352 +
        "std": 0,
8353 +
        "min": 100.6,
8354 +
        "max": 100.6,
8355 +
        "count": 1
8356 +
      },
8357 +
      "releaseRelease": {
8358 +
        "mean": 116.7,
8359 +
        "std": 0,
8360 +
        "min": 116.7,
8361 +
        "max": 116.7,
8362 +
        "count": 1
8363 +
      },
8364 +
      "pressRelease": {
8365 +
        "mean": 199,
8366 +
        "std": 0,
8367 +
        "min": 199,
8368 +
        "max": 199,
8369 +
        "count": 1
8370 +
      },
8371 +
      "releasePress": {
8372 +
        "mean": 18.3,
8373 +
        "std": 0,
8374 +
        "min": 18.3,
8375 +
        "max": 18.3,
8376 +
        "count": 1
8377 +
      }
8378 +
    },
8379 +
    {
8380 +
      "normalizedKeys": "t → '",
8381 +
      "count": 1,
8382 +
      "holdTime1": {
8383 +
        "mean": 62.6,
8384 +
        "std": 0,
8385 +
        "min": 62.6,
8386 +
        "max": 62.6,
8387 +
        "count": 1
8388 +
      },
8389 +
      "holdTime2": {
8390 +
        "mean": 82.3,
8391 +
        "std": 0,
8392 +
        "min": 82.3,
8393 +
        "max": 82.3,
8394 +
        "count": 1
8395 +
      },
8396 +
      "pressPress": {
8397 +
        "mean": 80.4,
8398 +
        "std": 0,
8399 +
        "min": 80.4,
8400 +
        "max": 80.4,
8401 +
        "count": 1
8402 +
      },
8403 +
      "releaseRelease": {
8404 +
        "mean": 100.1,
8405 +
        "std": 0,
8406 +
        "min": 100.1,
8407 +
        "max": 100.1,
8408 +
        "count": 1
8409 +
      },
8410 +
      "pressRelease": {
8411 +
        "mean": 162.7,
8412 +
        "std": 0,
8413 +
        "min": 162.7,
8414 +
        "max": 162.7,
8415 +
        "count": 1
8416 +
      },
8417 +
      "releasePress": {
8418 +
        "mean": 17.8,
8419 +
        "std": 0,
8420 +
        "min": 17.8,
8421 +
        "max": 17.8,
8422 +
        "count": 1
8423 +
      }
8424 +
    },
8425 +
    {
8426 +
      "normalizedKeys": "s → ,",
8427 +
      "count": 1,
8428 +
      "holdTime1": {
8429 +
        "mean": 116.4,
8430 +
        "std": 0,
8431 +
        "min": 116.4,
8432 +
        "max": 116.4,
8433 +
        "count": 1
8434 +
      },
8435 +
      "holdTime2": {
8436 +
        "mean": 95.6,
8437 +
        "std": 0,
8438 +
        "min": 95.6,
8439 +
        "max": 95.6,
8440 +
        "count": 1
8441 +
      },
8442 +
      "pressPress": {
8443 +
        "mean": 280.3,
8444 +
        "std": 0,
8445 +
        "min": 280.3,
8446 +
        "max": 280.3,
8447 +
        "count": 1
8448 +
      },
8449 +
      "releaseRelease": {
8450 +
        "mean": 259.5,
8451 +
        "std": 0,
8452 +
        "min": 259.5,
8453 +
        "max": 259.5,
8454 +
        "count": 1
8455 +
      },
8456 +
      "pressRelease": {
8457 +
        "mean": 375.9,
8458 +
        "std": 0,
8459 +
        "min": 375.9,
8460 +
        "max": 375.9,
8461 +
        "count": 1
8462 +
      },
8463 +
      "releasePress": {
8464 +
        "mean": 163.9,
8465 +
        "std": 0,
8466 +
        "min": 163.9,
8467 +
        "max": 163.9,
8468 +
        "count": 1
8469 +
      }
8470 +
    },
8471 +
    {
8472 +
      "normalizedKeys": "j → w",
8473 +
      "count": 1,
8474 +
      "holdTime1": {
8475 +
        "mean": 99.9,
8476 +
        "std": 0,
8477 +
        "min": 99.9,
8478 +
        "max": 99.9,
8479 +
        "count": 1
8480 +
      },
8481 +
      "holdTime2": {
8482 +
        "mean": 121.1,
8483 +
        "std": 0,
8484 +
        "min": 121.1,
8485 +
        "max": 121.1,
8486 +
        "count": 1
8487 +
      },
8488 +
      "pressPress": {
8489 +
        "mean": 245.7,
8490 +
        "std": 0,
8491 +
        "min": 245.7,
8492 +
        "max": 245.7,
8493 +
        "count": 1
8494 +
      },
8495 +
      "releaseRelease": {
8496 +
        "mean": 266.9,
8497 +
        "std": 0,
8498 +
        "min": 266.9,
8499 +
        "max": 266.9,
8500 +
        "count": 1
8501 +
      },
8502 +
      "pressRelease": {
8503 +
        "mean": 366.8,
8504 +
        "std": 0,
8505 +
        "min": 366.8,
8506 +
        "max": 366.8,
8507 +
        "count": 1
8508 +
      },
8509 +
      "releasePress": {
8510 +
        "mean": 145.8,
8511 +
        "std": 0,
8512 +
        "min": 145.8,
8513 +
        "max": 145.8,
8514 +
        "count": 1
8515 +
      }
8516 +
    },
8517 +
    {
8518 +
      "normalizedKeys": "p → l",
8519 +
      "count": 1,
8520 +
      "holdTime1": {
8521 +
        "mean": 64.5,
8522 +
        "std": 0,
8523 +
        "min": 64.5,
8524 +
        "max": 64.5,
8525 +
        "count": 1
8526 +
      },
8527 +
      "holdTime2": {
8528 +
        "mean": 101.1,
8529 +
        "std": 0,
8530 +
        "min": 101.1,
8531 +
        "max": 101.1,
8532 +
        "count": 1
8533 +
      },
8534 +
      "pressPress": {
8535 +
        "mean": 147.7,
8536 +
        "std": 0,
8537 +
        "min": 147.7,
8538 +
        "max": 147.7,
8539 +
        "count": 1
8540 +
      },
8541 +
      "releaseRelease": {
8542 +
        "mean": 184.3,
8543 +
        "std": 0,
8544 +
        "min": 184.3,
8545 +
        "max": 184.3,
8546 +
        "count": 1
8547 +
      },
8548 +
      "pressRelease": {
8549 +
        "mean": 248.8,
8550 +
        "std": 0,
8551 +
        "min": 248.8,
8552 +
        "max": 248.8,
8553 +
        "count": 1
8554 +
      },
8555 +
      "releasePress": {
8556 +
        "mean": 83.2,
8557 +
        "std": 0,
8558 +
        "min": 83.2,
8559 +
        "max": 83.2,
8560 +
        "count": 1
8561 +
      }
8562 +
    },
8563 +
    {
8564 +
      "normalizedKeys": "x → p",
8565 +
      "count": 1,
8566 +
      "holdTime1": {
8567 +
        "mean": 140.7,
8568 +
        "std": 0,
8569 +
        "min": 140.7,
8570 +
        "max": 140.7,
8571 +
        "count": 1
8572 +
      },
8573 +
      "holdTime2": {
8574 +
        "mean": 64.5,
8575 +
        "std": 0,
8576 +
        "min": 64.5,
8577 +
        "max": 64.5,
8578 +
        "count": 1
8579 +
      },
8580 +
      "pressPress": {
8581 +
        "mean": 159.6,
8582 +
        "std": 0,
8583 +
        "min": 159.6,
8584 +
        "max": 159.6,
8585 +
        "count": 1
8586 +
      },
8587 +
      "releaseRelease": {
8588 +
        "mean": 83.4,
8589 +
        "std": 0,
8590 +
        "min": 83.4,
8591 +
        "max": 83.4,
8592 +
        "count": 1
8593 +
      },
8594 +
      "pressRelease": {
8595 +
        "mean": 224.1,
8596 +
        "std": 0,
8597 +
        "min": 224.1,
8598 +
        "max": 224.1,
8599 +
        "count": 1
8600 +
      },
8601 +
      "releasePress": {
8602 +
        "mean": 18.9,
8603 +
        "std": 0,
8604 +
        "min": 18.9,
8605 +
        "max": 18.9,
8606 +
        "count": 1
8607 +
      }
8608 +
    },
8609 +
    {
8610 +
      "normalizedKeys": "e → x",
8611 +
      "count": 1,
8612 +
      "holdTime1": {
8613 +
        "mean": 83.8,
8614 +
        "std": 0,
8615 +
        "min": 83.8,
8616 +
        "max": 83.8,
8617 +
        "count": 1
8618 +
      },
8619 +
      "holdTime2": {
8620 +
        "mean": 140.7,
8621 +
        "std": 0,
8622 +
        "min": 140.7,
8623 +
        "max": 140.7,
8624 +
        "count": 1
8625 +
      },
8626 +
      "pressPress": {
8627 +
        "mean": 242,
8628 +
        "std": 0,
8629 +
        "min": 242,
8630 +
        "max": 242,
8631 +
        "count": 1
8632 +
      },
8633 +
      "releaseRelease": {
8634 +
        "mean": 298.9,
8635 +
        "std": 0,
8636 +
        "min": 298.9,
8637 +
        "max": 298.9,
8638 +
        "count": 1
8639 +
      },
8640 +
      "pressRelease": {
8641 +
        "mean": 382.7,
8642 +
        "std": 0,
8643 +
        "min": 382.7,
8644 +
        "max": 382.7,
8645 +
        "count": 1
8646 +
      },
8647 +
      "releasePress": {
8648 +
        "mean": 158.2,
8649 +
        "std": 0,
8650 +
        "min": 158.2,
8651 +
        "max": 158.2,
8652 +
        "count": 1
8653 +
      }
8654 +
    },
8655 +
    {
8656 +
      "normalizedKeys": "␣ → e",
8657 +
      "count": 1,
8658 +
      "holdTime1": {
8659 +
        "mean": 66.4,
8660 +
        "std": 0,
8661 +
        "min": 66.4,
8662 +
        "max": 66.4,
8663 +
        "count": 1
8664 +
      },
8665 +
      "holdTime2": {
8666 +
        "mean": 83.8,
8667 +
        "std": 0,
8668 +
        "min": 83.8,
8669 +
        "max": 83.8,
8670 +
        "count": 1
8671 +
      },
8672 +
      "pressPress": {
8673 +
        "mean": 275.6,
8674 +
        "std": 0,
8675 +
        "min": 275.6,
8676 +
        "max": 275.6,
8677 +
        "count": 1
8678 +
      },
8679 +
      "releaseRelease": {
8680 +
        "mean": 293,
8681 +
        "std": 0,
8682 +
        "min": 293,
8683 +
        "max": 293,
8684 +
        "count": 1
8685 +
      },
8686 +
      "pressRelease": {
8687 +
        "mean": 359.4,
8688 +
        "std": 0,
8689 +
        "min": 359.4,
8690 +
        "max": 359.4,
8691 +
        "count": 1
8692 +
      },
8693 +
      "releasePress": {
8694 +
        "mean": 209.2,
8695 +
        "std": 0,
8696 +
        "min": 209.2,
8697 +
        "max": 209.2,
8698 +
        "count": 1
8699 +
      }
8700 +
    },
8701 +
    {
8702 +
      "normalizedKeys": "k → e",
8703 +
      "count": 1,
8704 +
      "holdTime1": {
8705 +
        "mean": 99,
8706 +
        "std": 0,
8707 +
        "min": 99,
8708 +
        "max": 99,
8709 +
        "count": 1
8710 +
      },
8711 +
      "holdTime2": {
8712 +
        "mean": 95.2,
8713 +
        "std": 0,
8714 +
        "min": 95.2,
8715 +
        "max": 95.2,
8716 +
        "count": 1
8717 +
      },
8718 +
      "pressPress": {
8719 +
        "mean": 120.3,
8720 +
        "std": 0,
8721 +
        "min": 120.3,
8722 +
        "max": 120.3,
8723 +
        "count": 1
8724 +
      },
8725 +
      "releaseRelease": {
8726 +
        "mean": 116.5,
8727 +
        "std": 0,
8728 +
        "min": 116.5,
8729 +
        "max": 116.5,
8730 +
        "count": 1
8731 +
      },
8732 +
      "pressRelease": {
8733 +
        "mean": 215.5,
8734 +
        "std": 0,
8735 +
        "min": 215.5,
8736 +
        "max": 215.5,
8737 +
        "count": 1
8738 +
      },
8739 +
      "releasePress": {
8740 +
        "mean": 21.3,
8741 +
        "std": 0,
8742 +
        "min": 21.3,
8743 +
        "max": 21.3,
8744 +
        "count": 1
8745 +
      }
8746 +
    },
8747 +
    {
8748 +
      "normalizedKeys": "a → k",
8749 +
      "count": 1,
8750 +
      "holdTime1": {
8751 +
        "mean": 104.9,
8752 +
        "std": 0,
8753 +
        "min": 104.9,
8754 +
        "max": 104.9,
8755 +
        "count": 1
8756 +
      },
8757 +
      "holdTime2": {
8758 +
        "mean": 99,
8759 +
        "std": 0,
8760 +
        "min": 99,
8761 +
        "max": 99,
8762 +
        "count": 1
8763 +
      },
8764 +
      "pressPress": {
8765 +
        "mean": 126,
8766 +
        "std": 0,
8767 +
        "min": 126,
8768 +
        "max": 126,
8769 +
        "count": 1
8770 +
      },
8771 +
      "releaseRelease": {
8772 +
        "mean": 120.1,
8773 +
        "std": 0,
8774 +
        "min": 120.1,
8775 +
        "max": 120.1,
8776 +
        "count": 1
8777 +
      },
8778 +
      "pressRelease": {
8779 +
        "mean": 225,
8780 +
        "std": 0,
8781 +
        "min": 225,
8782 +
        "max": 225,
8783 +
        "count": 1
8784 +
      },
8785 +
      "releasePress": {
8786 +
        "mean": 21.1,
8787 +
        "std": 0,
8788 +
        "min": 21.1,
8789 +
        "max": 21.1,
8790 +
        "count": 1
8791 +
      }
8792 +
    },
8793 +
    {
8794 +
      "normalizedKeys": "w → o",
8795 +
      "count": 1,
8796 +
      "holdTime1": {
8797 +
        "mean": 83.1,
8798 +
        "std": 0,
8799 +
        "min": 83.1,
8800 +
        "max": 83.1,
8801 +
        "count": 1
8802 +
      },
8803 +
      "holdTime2": {
8804 +
        "mean": 91.5,
8805 +
        "std": 0,
8806 +
        "min": 91.5,
8807 +
        "max": 91.5,
8808 +
        "count": 1
8809 +
      },
8810 +
      "pressPress": {
8811 +
        "mean": 133.2,
8812 +
        "std": 0,
8813 +
        "min": 133.2,
8814 +
        "max": 133.2,
8815 +
        "count": 1
8816 +
      },
8817 +
      "releaseRelease": {
8818 +
        "mean": 141.6,
8819 +
        "std": 0,
8820 +
        "min": 141.6,
8821 +
        "max": 141.6,
8822 +
        "count": 1
8823 +
      },
8824 +
      "pressRelease": {
8825 +
        "mean": 224.7,
8826 +
        "std": 0,
8827 +
        "min": 224.7,
8828 +
        "max": 224.7,
8829 +
        "count": 1
8830 +
      },
8831 +
      "releasePress": {
8832 +
        "mean": 50.1,
8833 +
        "std": 0,
8834 +
        "min": 50.1,
8835 +
        "max": 50.1,
8836 +
        "count": 1
8837 +
      }
8838 +
    },
8839 +
    {
8840 +
      "normalizedKeys": "t → .",
8841 +
      "count": 1,
8842 +
      "holdTime1": {
8843 +
        "mean": 91.4,
8844 +
        "std": 0,
8845 +
        "min": 91.4,
8846 +
        "max": 91.4,
8847 +
        "count": 1
8848 +
      },
8849 +
      "holdTime2": {
8850 +
        "mean": 99.4,
8851 +
        "std": 0,
8852 +
        "min": 99.4,
8853 +
        "max": 99.4,
8854 +
        "count": 1
8855 +
      },
8856 +
      "pressPress": {
8857 +
        "mean": 208.8,
8858 +
        "std": 0,
8859 +
        "min": 208.8,
8860 +
        "max": 208.8,
8861 +
        "count": 1
8862 +
      },
8863 +
      "releaseRelease": {
8864 +
        "mean": 216.8,
8865 +
        "std": 0,
8866 +
        "min": 216.8,
8867 +
        "max": 216.8,
8868 +
        "count": 1
8869 +
      },
8870 +
      "pressRelease": {
8871 +
        "mean": 308.2,
8872 +
        "std": 0,
8873 +
        "min": 308.2,
8874 +
        "max": 308.2,
8875 +
        "count": 1
8876 +
      },
8877 +
      "releasePress": {
8878 +
        "mean": 117.4,
8879 +
        "std": 0,
8880 +
        "min": 117.4,
8881 +
        "max": 117.4,
8882 +
        "count": 1
8883 +
      }
8884 +
    },
8885 +
    {
8886 +
      "normalizedKeys": "p → o",
8887 +
      "count": 1,
8888 +
      "holdTime1": {
8889 +
        "mean": 134,
8890 +
        "std": 0,
8891 +
        "min": 134,
8892 +
        "max": 134,
8893 +
        "count": 1
8894 +
      },
8895 +
      "holdTime2": {
8896 +
        "mean": 116.6,
8897 +
        "std": 0,
8898 +
        "min": 116.6,
8899 +
        "max": 116.6,
8900 +
        "count": 1
8901 +
      },
8902 +
      "pressPress": {
8903 +
        "mean": 74.9,
8904 +
        "std": 0,
8905 +
        "min": 74.9,
8906 +
        "max": 74.9,
8907 +
        "count": 1
8908 +
      },
8909 +
      "releaseRelease": {
8910 +
        "mean": 57.5,
8911 +
        "std": 0,
8912 +
        "min": 57.5,
8913 +
        "max": 57.5,
8914 +
        "count": 1
8915 +
      },
8916 +
      "pressRelease": {
8917 +
        "mean": 191.5,
8918 +
        "std": 0,
8919 +
        "min": 191.5,
8920 +
        "max": 191.5,
8921 +
        "count": 1
8922 +
      },
8923 +
      "releasePress": {
8924 +
        "mean": -59.1,
8925 +
        "std": 0,
8926 +
        "min": -59.1,
8927 +
        "max": -59.1,
8928 +
        "count": 1
8929 +
      }
8930 +
    },
8931 +
    {
8932 +
      "normalizedKeys": "g → t",
8933 +
      "count": 1,
8934 +
      "holdTime1": {
8935 +
        "mean": 61.2,
8936 +
        "std": 0,
8937 +
        "min": 61.2,
8938 +
        "max": 61.2,
8939 +
        "count": 1
8940 +
      },
8941 +
      "holdTime2": {
8942 +
        "mean": 91.5,
8943 +
        "std": 0,
8944 +
        "min": 91.5,
8945 +
        "max": 91.5,
8946 +
        "count": 1
8947 +
      },
8948 +
      "pressPress": {
8949 +
        "mean": 174.9,
8950 +
        "std": 0,
8951 +
        "min": 174.9,
8952 +
        "max": 174.9,
8953 +
        "count": 1
8954 +
      },
8955 +
      "releaseRelease": {
8956 +
        "mean": 205.2,
8957 +
        "std": 0,
8958 +
        "min": 205.2,
8959 +
        "max": 205.2,
8960 +
        "count": 1
8961 +
      },
8962 +
      "pressRelease": {
8963 +
        "mean": 266.4,
8964 +
        "std": 0,
8965 +
        "min": 266.4,
8966 +
        "max": 266.4,
8967 +
        "count": 1
8968 +
      },
8969 +
      "releasePress": {
8970 +
        "mean": 113.7,
8971 +
        "std": 0,
8972 +
        "min": 113.7,
8973 +
        "max": 113.7,
8974 +
        "count": 1
8975 +
      }
8976 +
    },
8977 +
    {
8978 +
      "normalizedKeys": "r → i",
8979 +
      "count": 1,
8980 +
      "holdTime1": {
8981 +
        "mean": 115.7,
8982 +
        "std": 0,
8983 +
        "min": 115.7,
8984 +
        "max": 115.7,
8985 +
        "count": 1
8986 +
      },
8987 +
      "holdTime2": {
8988 +
        "mean": 62.1,
8989 +
        "std": 0,
8990 +
        "min": 62.1,
8991 +
        "max": 62.1,
8992 +
        "count": 1
8993 +
      },
8994 +
      "pressPress": {
8995 +
        "mean": 140.8,
8996 +
        "std": 0,
8997 +
        "min": 140.8,
8998 +
        "max": 140.8,
8999 +
        "count": 1
9000 +
      },
9001 +
      "releaseRelease": {
9002 +
        "mean": 87.2,
9003 +
        "std": 0,
9004 +
        "min": 87.2,
9005 +
        "max": 87.2,
9006 +
        "count": 1
9007 +
      },
9008 +
      "pressRelease": {
9009 +
        "mean": 202.9,
9010 +
        "std": 0,
9011 +
        "min": 202.9,
9012 +
        "max": 202.9,
9013 +
        "count": 1
9014 +
      },
9015 +
      "releasePress": {
9016 +
        "mean": 25.1,
9017 +
        "std": 0,
9018 +
        "min": 25.1,
9019 +
        "max": 25.1,
9020 +
        "count": 1
9021 +
      }
9022 +
    },
9023 +
    {
9024 +
      "normalizedKeys": "w → r",
9025 +
      "count": 1,
9026 +
      "holdTime1": {
9027 +
        "mean": 125.1,
9028 +
        "std": 0,
9029 +
        "min": 125.1,
9030 +
        "max": 125.1,
9031 +
        "count": 1
9032 +
      },
9033 +
      "holdTime2": {
9034 +
        "mean": 115.7,
9035 +
        "std": 0,
9036 +
        "min": 115.7,
9037 +
        "max": 115.7,
9038 +
        "count": 1
9039 +
      },
9040 +
      "pressPress": {
9041 +
        "mean": 130.5,
9042 +
        "std": 0,
9043 +
        "min": 130.5,
9044 +
        "max": 130.5,
9045 +
        "count": 1
9046 +
      },
9047 +
      "releaseRelease": {
9048 +
        "mean": 121.1,
9049 +
        "std": 0,
9050 +
        "min": 121.1,
9051 +
        "max": 121.1,
9052 +
        "count": 1
9053 +
      },
9054 +
      "pressRelease": {
9055 +
        "mean": 246.2,
9056 +
        "std": 0,
9057 +
        "min": 246.2,
9058 +
        "max": 246.2,
9059 +
        "count": 1
9060 +
      },
9061 +
      "releasePress": {
9062 +
        "mean": 5.4,
9063 +
        "std": 0,
9064 +
        "min": 5.4,
9065 +
        "max": 5.4,
9066 +
        "count": 1
9067 +
      }
9068 +
    },
9069 +
    {
9070 +
      "normalizedKeys": "' → m",
9071 +
      "count": 1,
9072 +
      "holdTime1": {
9073 +
        "mean": 80.1,
9074 +
        "std": 0,
9075 +
        "min": 80.1,
9076 +
        "max": 80.1,
9077 +
        "count": 1
9078 +
      },
9079 +
      "holdTime2": {
9080 +
        "mean": 96.7,
9081 +
        "std": 0,
9082 +
        "min": 96.7,
9083 +
        "max": 96.7,
9084 +
        "count": 1
9085 +
      },
9086 +
      "pressPress": {
9087 +
        "mean": 207.9,
9088 +
        "std": 0,
9089 +
        "min": 207.9,
9090 +
        "max": 207.9,
9091 +
        "count": 1
9092 +
      },
9093 +
      "releaseRelease": {
9094 +
        "mean": 224.5,
9095 +
        "std": 0,
9096 +
        "min": 224.5,
9097 +
        "max": 224.5,
9098 +
        "count": 1
9099 +
      },
9100 +
      "pressRelease": {
9101 +
        "mean": 304.6,
9102 +
        "std": 0,
9103 +
        "min": 304.6,
9104 +
        "max": 304.6,
9105 +
        "count": 1
9106 +
      },
9107 +
      "releasePress": {
9108 +
        "mean": 127.8,
9109 +
        "std": 0,
9110 +
        "min": 127.8,
9111 +
        "max": 127.8,
9112 +
        "count": 1
9113 +
      }
9114 +
    },
9115 +
    {
9116 +
      "normalizedKeys": "i → '",
9117 +
      "count": 1,
9118 +
      "holdTime1": {
9119 +
        "mean": 99.7,
9120 +
        "std": 0,
9121 +
        "min": 99.7,
9122 +
        "max": 99.7,
9123 +
        "count": 1
9124 +
      },
9125 +
      "holdTime2": {
9126 +
        "mean": 80.1,
9127 +
        "std": 0,
9128 +
        "min": 80.1,
9129 +
        "max": 80.1,
9130 +
        "count": 1
9131 +
      },
9132 +
      "pressPress": {
9133 +
        "mean": 212,
9134 +
        "std": 0,
9135 +
        "min": 212,
9136 +
        "max": 212,
9137 +
        "count": 1
9138 +
      },
9139 +
      "releaseRelease": {
9140 +
        "mean": 192.4,
9141 +
        "std": 0,
9142 +
        "min": 192.4,
9143 +
        "max": 192.4,
9144 +
        "count": 1
9145 +
      },
9146 +
      "pressRelease": {
9147 +
        "mean": 292.1,
9148 +
        "std": 0,
9149 +
        "min": 292.1,
9150 +
        "max": 292.1,
9151 +
        "count": 1
9152 +
      },
9153 +
      "releasePress": {
9154 +
        "mean": 112.3,
9155 +
        "std": 0,
9156 +
        "min": 112.3,
9157 +
        "max": 112.3,
9158 +
        "count": 1
9159 +
      }
9160 +
    },
9161 +
    {
9162 +
      "normalizedKeys": "s → .",
9163 +
      "count": 1,
9164 +
      "holdTime1": {
9165 +
        "mean": 131.6,
9166 +
        "std": 0,
9167 +
        "min": 131.6,
9168 +
        "max": 131.6,
9169 +
        "count": 1
9170 +
      },
9171 +
      "holdTime2": {
9172 +
        "mean": 90.7,
9173 +
        "std": 0,
9174 +
        "min": 90.7,
9175 +
        "max": 90.7,
9176 +
        "count": 1
9177 +
      },
9178 +
      "pressPress": {
9179 +
        "mean": 307.1,
9180 +
        "std": 0,
9181 +
        "min": 307.1,
9182 +
        "max": 307.1,
9183 +
        "count": 1
9184 +
      },
9185 +
      "releaseRelease": {
9186 +
        "mean": 266.2,
9187 +
        "std": 0,
9188 +
        "min": 266.2,
9189 +
        "max": 266.2,
9190 +
        "count": 1
9191 +
      },
9192 +
      "pressRelease": {
9193 +
        "mean": 397.8,
9194 +
        "std": 0,
9195 +
        "min": 397.8,
9196 +
        "max": 397.8,
9197 +
        "count": 1
9198 +
      },
9199 +
      "releasePress": {
9200 +
        "mean": 175.5,
9201 +
        "std": 0,
9202 +
        "min": 175.5,
9203 +
        "max": 175.5,
9204 +
        "count": 1
9205 +
      }
9206 +
    },
9207 +
    {
9208 +
      "normalizedKeys": "k → n",
9209 +
      "count": 1,
9210 +
      "holdTime1": {
9211 +
        "mean": 125.1,
9212 +
        "std": 0,
9213 +
        "min": 125.1,
9214 +
        "max": 125.1,
9215 +
        "count": 1
9216 +
      },
9217 +
      "holdTime2": {
9218 +
        "mean": 107.9,
9219 +
        "std": 0,
9220 +
        "min": 107.9,
9221 +
        "max": 107.9,
9222 +
        "count": 1
9223 +
      },
9224 +
      "pressPress": {
9225 +
        "mean": 100.1,
9226 +
        "std": 0,
9227 +
        "min": 100.1,
9228 +
        "max": 100.1,
9229 +
        "count": 1
9230 +
      },
9231 +
      "releaseRelease": {
9232 +
        "mean": 82.9,
9233 +
        "std": 0,
9234 +
        "min": 82.9,
9235 +
        "max": 82.9,
9236 +
        "count": 1
9237 +
      },
9238 +
      "pressRelease": {
9239 +
        "mean": 208,
9240 +
        "std": 0,
9241 +
        "min": 208,
9242 +
        "max": 208,
9243 +
        "count": 1
9244 +
      },
9245 +
      "releasePress": {
9246 +
        "mean": -25,
9247 +
        "std": 0,
9248 +
        "min": -25,
9249 +
        "max": -25,
9250 +
        "count": 1
9251 +
      }
9252 +
    },
9253 +
    {
9254 +
      "normalizedKeys": "d → o",
9255 +
      "count": 1,
9256 +
      "holdTime1": {
9257 +
        "mean": 116.4,
9258 +
        "std": 0,
9259 +
        "min": 116.4,
9260 +
        "max": 116.4,
9261 +
        "count": 1
9262 +
      },
9263 +
      "holdTime2": {
9264 +
        "mean": 77.4,
9265 +
        "std": 0,
9266 +
        "min": 77.4,
9267 +
        "max": 77.4,
9268 +
        "count": 1
9269 +
      },
9270 +
      "pressPress": {
9271 +
        "mean": 92.1,
9272 +
        "std": 0,
9273 +
        "min": 92.1,
9274 +
        "max": 92.1,
9275 +
        "count": 1
9276 +
      },
9277 +
      "releaseRelease": {
9278 +
        "mean": 53.1,
9279 +
        "std": 0,
9280 +
        "min": 53.1,
9281 +
        "max": 53.1,
9282 +
        "count": 1
9283 +
      },
9284 +
      "pressRelease": {
9285 +
        "mean": 169.5,
9286 +
        "std": 0,
9287 +
        "min": 169.5,
9288 +
        "max": 169.5,
9289 +
        "count": 1
9290 +
      },
9291 +
      "releasePress": {
9292 +
        "mean": -24.3,
9293 +
        "std": 0,
9294 +
        "min": -24.3,
9295 +
        "max": -24.3,
9296 +
        "count": 1
9297 +
      }
9298 +
    },
9299 +
    {
9300 +
      "normalizedKeys": "b → l",
9301 +
      "count": 1,
9302 +
      "holdTime1": {
9303 +
        "mean": 79.4,
9304 +
        "std": 0,
9305 +
        "min": 79.4,
9306 +
        "max": 79.4,
9307 +
        "count": 1
9308 +
      },
9309 +
      "holdTime2": {
9310 +
        "mean": 71.9,
9311 +
        "std": 0,
9312 +
        "min": 71.9,
9313 +
        "max": 71.9,
9314 +
        "count": 1
9315 +
      },
9316 +
      "pressPress": {
9317 +
        "mean": 170.1,
9318 +
        "std": 0,
9319 +
        "min": 170.1,
9320 +
        "max": 170.1,
9321 +
        "count": 1
9322 +
      },
9323 +
      "releaseRelease": {
9324 +
        "mean": 162.6,
9325 +
        "std": 0,
9326 +
        "min": 162.6,
9327 +
        "max": 162.6,
9328 +
        "count": 1
9329 +
      },
9330 +
      "pressRelease": {
9331 +
        "mean": 242,
9332 +
        "std": 0,
9333 +
        "min": 242,
9334 +
        "max": 242,
9335 +
        "count": 1
9336 +
      },
9337 +
      "releasePress": {
9338 +
        "mean": 90.7,
9339 +
        "std": 0,
9340 +
        "min": 90.7,
9341 +
        "max": 90.7,
9342 +
        "count": 1
9343 +
      }
9344 +
    },
9345 +
    {
9346 +
      "normalizedKeys": "o → b",
9347 +
      "count": 1,
9348 +
      "holdTime1": {
9349 +
        "mean": 87.7,
9350 +
        "std": 0,
9351 +
        "min": 87.7,
9352 +
        "max": 87.7,
9353 +
        "count": 1
9354 +
      },
9355 +
      "holdTime2": {
9356 +
        "mean": 105.4,
9357 +
        "std": 0,
9358 +
        "min": 105.4,
9359 +
        "max": 105.4,
9360 +
        "count": 1
9361 +
      },
9362 +
      "pressPress": {
9363 +
        "mean": 123.3,
9364 +
        "std": 0,
9365 +
        "min": 123.3,
9366 +
        "max": 123.3,
9367 +
        "count": 1
9368 +
      },
9369 +
      "releaseRelease": {
9370 +
        "mean": 141,
9371 +
        "std": 0,
9372 +
        "min": 141,
9373 +
        "max": 141,
9374 +
        "count": 1
9375 +
      },
9376 +
      "pressRelease": {
9377 +
        "mean": 228.7,
9378 +
        "std": 0,
9379 +
        "min": 228.7,
9380 +
        "max": 228.7,
9381 +
        "count": 1
9382 +
      },
9383 +
      "releasePress": {
9384 +
        "mean": 35.6,
9385 +
        "std": 0,
9386 +
        "min": 35.6,
9387 +
        "max": 35.6,
9388 +
        "count": 1
9389 +
      }
9390 +
    },
9391 +
    {
9392 +
      "normalizedKeys": "t → ,",
9393 +
      "count": 1,
9394 +
      "holdTime1": {
9395 +
        "mean": 94.5,
9396 +
        "std": 0,
9397 +
        "min": 94.5,
9398 +
        "max": 94.5,
9399 +
        "count": 1
9400 +
      },
9401 +
      "holdTime2": {
9402 +
        "mean": 92.4,
9403 +
        "std": 0,
9404 +
        "min": 92.4,
9405 +
        "max": 92.4,
9406 +
        "count": 1
9407 +
      },
9408 +
      "pressPress": {
9409 +
        "mean": 234.4,
9410 +
        "std": 0,
9411 +
        "min": 234.4,
9412 +
        "max": 234.4,
9413 +
        "count": 1
9414 +
      },
9415 +
      "releaseRelease": {
9416 +
        "mean": 232.3,
9417 +
        "std": 0,
9418 +
        "min": 232.3,
9419 +
        "max": 232.3,
9420 +
        "count": 1
9421 +
      },
9422 +
      "pressRelease": {
9423 +
        "mean": 326.8,
9424 +
        "std": 0,
9425 +
        "min": 326.8,
9426 +
        "max": 326.8,
9427 +
        "count": 1
9428 +
      },
9429 +
      "releasePress": {
9430 +
        "mean": 139.9,
9431 +
        "std": 0,
9432 +
        "min": 139.9,
9433 +
        "max": 139.9,
9434 +
        "count": 1
9435 +
      }
9436 +
    },
9437 +
    {
9438 +
      "normalizedKeys": "r → t",
9439 +
      "count": 1,
9440 +
      "holdTime1": {
9441 +
        "mean": 84.6,
9442 +
        "std": 0,
9443 +
        "min": 84.6,
9444 +
        "max": 84.6,
9445 +
        "count": 1
9446 +
      },
9447 +
      "holdTime2": {
9448 +
        "mean": 83.6,
9449 +
        "std": 0,
9450 +
        "min": 83.6,
9451 +
        "max": 83.6,
9452 +
        "count": 1
9453 +
      },
9454 +
      "pressPress": {
9455 +
        "mean": 166.8,
9456 +
        "std": 0,
9457 +
        "min": 166.8,
9458 +
        "max": 166.8,
9459 +
        "count": 1
9460 +
      },
9461 +
      "releaseRelease": {
9462 +
        "mean": 165.8,
9463 +
        "std": 0,
9464 +
        "min": 165.8,
9465 +
        "max": 165.8,
9466 +
        "count": 1
9467 +
      },
9468 +
      "pressRelease": {
9469 +
        "mean": 250.4,
9470 +
        "std": 0,
9471 +
        "min": 250.4,
9472 +
        "max": 250.4,
9473 +
        "count": 1
9474 +
      },
9475 +
      "releasePress": {
9476 +
        "mean": 82.2,
9477 +
        "std": 0,
9478 +
        "min": 82.2,
9479 +
        "max": 82.2,
9480 +
        "count": 1
9481 +
      }
9482 +
    },
9483 +
    {
9484 +
      "normalizedKeys": "' → r",
9485 +
      "count": 1,
9486 +
      "holdTime1": {
9487 +
        "mean": 121.2,
9488 +
        "std": 0,
9489 +
        "min": 121.2,
9490 +
        "max": 121.2,
9491 +
        "count": 1
9492 +
      },
9493 +
      "holdTime2": {
9494 +
        "mean": 114.9,
9495 +
        "std": 0,
9496 +
        "min": 114.9,
9497 +
        "max": 114.9,
9498 +
        "count": 1
9499 +
      },
9500 +
      "pressPress": {
9501 +
        "mean": 97.6,
9502 +
        "std": 0,
9503 +
        "min": 97.6,
9504 +
        "max": 97.6,
9505 +
        "count": 1
9506 +
      },
9507 +
      "releaseRelease": {
9508 +
        "mean": 91.3,
9509 +
        "std": 0,
9510 +
        "min": 91.3,
9511 +
        "max": 91.3,
9512 +
        "count": 1
9513 +
      },
9514 +
      "pressRelease": {
9515 +
        "mean": 212.5,
9516 +
        "std": 0,
9517 +
        "min": 212.5,
9518 +
        "max": 212.5,
9519 +
        "count": 1
9520 +
      },
9521 +
      "releasePress": {
9522 +
        "mean": -23.6,
9523 +
        "std": 0,
9524 +
        "min": -23.6,
9525 +
        "max": -23.6,
9526 +
        "count": 1
9527 +
      }
9528 +
    },
9529 +
    {
9530 +
      "normalizedKeys": "u → '",
9531 +
      "count": 1,
9532 +
      "holdTime1": {
9533 +
        "mean": 83.1,
9534 +
        "std": 0,
9535 +
        "min": 83.1,
9536 +
        "max": 83.1,
9537 +
        "count": 1
9538 +
      },
9539 +
      "holdTime2": {
9540 +
        "mean": 121.2,
9541 +
        "std": 0,
9542 +
        "min": 121.2,
9543 +
        "max": 121.2,
9544 +
        "count": 1
9545 +
      },
9546 +
      "pressPress": {
9547 +
        "mean": 237.1,
9548 +
        "std": 0,
9549 +
        "min": 237.1,
9550 +
        "max": 237.1,
9551 +
        "count": 1
9552 +
      },
9553 +
      "releaseRelease": {
9554 +
        "mean": 275.2,
9555 +
        "std": 0,
9556 +
        "min": 275.2,
9557 +
        "max": 275.2,
9558 +
        "count": 1
9559 +
      },
9560 +
      "pressRelease": {
9561 +
        "mean": 358.3,
9562 +
        "std": 0,
9563 +
        "min": 358.3,
9564 +
        "max": 358.3,
9565 +
        "count": 1
9566 +
      },
9567 +
      "releasePress": {
9568 +
        "mean": 154,
9569 +
        "std": 0,
9570 +
        "min": 154,
9571 +
        "max": 154,
9572 +
        "count": 1
9573 +
      }
9574 +
    },
9575 +
    {
9576 +
      "normalizedKeys": "r → ,",
9577 +
      "count": 1,
9578 +
      "holdTime1": {
9579 +
        "mean": 108.1,
9580 +
        "std": 0,
9581 +
        "min": 108.1,
9582 +
        "max": 108.1,
9583 +
        "count": 1
9584 +
      },
9585 +
      "holdTime2": {
9586 +
        "mean": 87.8,
9587 +
        "std": 0,
9588 +
        "min": 87.8,
9589 +
        "max": 87.8,
9590 +
        "count": 1
9591 +
      },
9592 +
      "pressPress": {
9593 +
        "mean": 116.6,
9594 +
        "std": 0,
9595 +
        "min": 116.6,
9596 +
        "max": 116.6,
9597 +
        "count": 1
9598 +
      },
9599 +
      "releaseRelease": {
9600 +
        "mean": 96.3,
9601 +
        "std": 0,
9602 +
        "min": 96.3,
9603 +
        "max": 96.3,
9604 +
        "count": 1
9605 +
      },
9606 +
      "pressRelease": {
9607 +
        "mean": 204.4,
9608 +
        "std": 0,
9609 +
        "min": 204.4,
9610 +
        "max": 204.4,
9611 +
        "count": 1
9612 +
      },
9613 +
      "releasePress": {
9614 +
        "mean": 8.5,
9615 +
        "std": 0,
9616 +
        "min": 8.5,
9617 +
        "max": 8.5,
9618 +
        "count": 1
9619 +
      }
9620 +
    },
9621 +
    {
9622 +
      "normalizedKeys": "r → n",
9623 +
      "count": 1,
9624 +
      "holdTime1": {
9625 +
        "mean": 120.8,
9626 +
        "std": 0,
9627 +
        "min": 120.8,
9628 +
        "max": 120.8,
9629 +
        "count": 1
9630 +
      },
9631 +
      "holdTime2": {
9632 +
        "mean": 86.4,
9633 +
        "std": 0,
9634 +
        "min": 86.4,
9635 +
        "max": 86.4,
9636 +
        "count": 1
9637 +
      },
9638 +
      "pressPress": {
9639 +
        "mean": 105.3,
9640 +
        "std": 0,
9641 +
        "min": 105.3,
9642 +
        "max": 105.3,
9643 +
        "count": 1
9644 +
      },
9645 +
      "releaseRelease": {
9646 +
        "mean": 70.9,
9647 +
        "std": 0,
9648 +
        "min": 70.9,
9649 +
        "max": 70.9,
9650 +
        "count": 1
9651 +
      },
9652 +
      "pressRelease": {
9653 +
        "mean": 191.7,
9654 +
        "std": 0,
9655 +
        "min": 191.7,
9656 +
        "max": 191.7,
9657 +
        "count": 1
9658 +
      },
9659 +
      "releasePress": {
9660 +
        "mean": -15.5,
9661 +
        "std": 0,
9662 +
        "min": -15.5,
9663 +
        "max": -15.5,
9664 +
        "count": 1
9665 +
      }
9666 +
    },
9667 +
    {
9668 +
      "normalizedKeys": "o → d",
9669 +
      "count": 1,
9670 +
      "holdTime1": {
9671 +
        "mean": 91.4,
9672 +
        "std": 0,
9673 +
        "min": 91.4,
9674 +
        "max": 91.4,
9675 +
        "count": 1
9676 +
      },
9677 +
      "holdTime2": {
9678 +
        "mean": 95.7,
9679 +
        "std": 0,
9680 +
        "min": 95.7,
9681 +
        "max": 95.7,
9682 +
        "count": 1
9683 +
      },
9684 +
      "pressPress": {
9685 +
        "mean": 170.8,
9686 +
        "std": 0,
9687 +
        "min": 170.8,
9688 +
        "max": 170.8,
9689 +
        "count": 1
9690 +
      },
9691 +
      "releaseRelease": {
9692 +
        "mean": 175.1,
9693 +
        "std": 0,
9694 +
        "min": 175.1,
9695 +
        "max": 175.1,
9696 +
        "count": 1
9697 +
      },
9698 +
      "pressRelease": {
9699 +
        "mean": 266.5,
9700 +
        "std": 0,
9701 +
        "min": 266.5,
9702 +
        "max": 266.5,
9703 +
        "count": 1
9704 +
      },
9705 +
      "releasePress": {
9706 +
        "mean": 79.4,
9707 +
        "std": 0,
9708 +
        "min": 79.4,
9709 +
        "max": 79.4,
9710 +
        "count": 1
9711 +
      }
9712 +
    },
9713 +
    {
9714 +
      "normalizedKeys": "m → o",
9715 +
      "count": 1,
9716 +
      "holdTime1": {
9717 +
        "mean": 79.3,
9718 +
        "std": 0,
9719 +
        "min": 79.3,
9720 +
        "max": 79.3,
9721 +
        "count": 1
9722 +
      },
9723 +
      "holdTime2": {
9724 +
        "mean": 91.4,
9725 +
        "std": 0,
9726 +
        "min": 91.4,
9727 +
        "max": 91.4,
9728 +
        "count": 1
9729 +
      },
9730 +
      "pressPress": {
9731 +
        "mean": 281.9,
9732 +
        "std": 0,
9733 +
        "min": 281.9,
9734 +
        "max": 281.9,
9735 +
        "count": 1
9736 +
      },
9737 +
      "releaseRelease": {
9738 +
        "mean": 294,
9739 +
        "std": 0,
9740 +
        "min": 294,
9741 +
        "max": 294,
9742 +
        "count": 1
9743 +
      },
9744 +
      "pressRelease": {
9745 +
        "mean": 373.3,
9746 +
        "std": 0,
9747 +
        "min": 373.3,
9748 +
        "max": 373.3,
9749 +
        "count": 1
9750 +
      },
9751 +
      "releasePress": {
9752 +
        "mean": 202.6,
9753 +
        "std": 0,
9754 +
        "min": 202.6,
9755 +
        "max": 202.6,
9756 +
        "count": 1
9757 +
      }
9758 +
    },
9759 +
    {
9760 +
      "normalizedKeys": "␣ → ⌫",
9761 +
      "count": 1,
9762 +
      "holdTime1": {
9763 +
        "mean": 124.9,
9764 +
        "std": 0,
9765 +
        "min": 124.9,
9766 +
        "max": 124.9,
9767 +
        "count": 1
9768 +
      },
9769 +
      "holdTime2": {
9770 +
        "mean": 72.4,
9771 +
        "std": 0,
9772 +
        "min": 72.4,
9773 +
        "max": 72.4,
9774 +
        "count": 1
9775 +
      },
9776 +
      "pressPress": {
9777 +
        "mean": 268.9,
9778 +
        "std": 0,
9779 +
        "min": 268.9,
9780 +
        "max": 268.9,
9781 +
        "count": 1
9782 +
      },
9783 +
      "releaseRelease": {
9784 +
        "mean": 216.4,
9785 +
        "std": 0,
9786 +
        "min": 216.4,
9787 +
        "max": 216.4,
9788 +
        "count": 1
9789 +
      },
9790 +
      "pressRelease": {
9791 +
        "mean": 341.3,
9792 +
        "std": 0,
9793 +
        "min": 341.3,
9794 +
        "max": 341.3,
9795 +
        "count": 1
9796 +
      },
9797 +
      "releasePress": {
9798 +
        "mean": 144,
9799 +
        "std": 0,
9800 +
        "min": 144,
9801 +
        "max": 144,
9802 +
        "count": 1
9803 +
      }
9804 +
    },
9805 +
    {
9806 +
      "normalizedKeys": "e → ⌫",
9807 +
      "count": 1,
9808 +
      "holdTime1": {
9809 +
        "mean": 117,
9810 +
        "std": 0,
9811 +
        "min": 117,
9812 +
        "max": 117,
9813 +
        "count": 1
9814 +
      },
9815 +
      "holdTime2": {
9816 +
        "mean": 65.2,
9817 +
        "std": 0,
9818 +
        "min": 65.2,
9819 +
        "max": 65.2,
9820 +
        "count": 1
9821 +
      },
9822 +
      "pressPress": {
9823 +
        "mean": 292,
9824 +
        "std": 0,
9825 +
        "min": 292,
9826 +
        "max": 292,
9827 +
        "count": 1
9828 +
      },
9829 +
      "releaseRelease": {
9830 +
        "mean": 240.2,
9831 +
        "std": 0,
9832 +
        "min": 240.2,
9833 +
        "max": 240.2,
9834 +
        "count": 1
9835 +
      },
9836 +
      "pressRelease": {
9837 +
        "mean": 357.2,
9838 +
        "std": 0,
9839 +
        "min": 357.2,
9840 +
        "max": 357.2,
9841 +
        "count": 1
9842 +
      },
9843 +
      "releasePress": {
9844 +
        "mean": 175,
9845 +
        "std": 0,
9846 +
        "min": 175,
9847 +
        "max": 175,
9848 +
        "count": 1
9849 +
      }
9850 +
    },
9851 +
    {
9852 +
      "normalizedKeys": "c → e",
9853 +
      "count": 1,
9854 +
      "holdTime1": {
9855 +
        "mean": 118.5,
9856 +
        "std": 0,
9857 +
        "min": 118.5,
9858 +
        "max": 118.5,
9859 +
        "count": 1
9860 +
      },
9861 +
      "holdTime2": {
9862 +
        "mean": 147.3,
9863 +
        "std": 0,
9864 +
        "min": 147.3,
9865 +
        "max": 147.3,
9866 +
        "count": 1
9867 +
      },
9868 +
      "pressPress": {
9869 +
        "mean": 221.9,
9870 +
        "std": 0,
9871 +
        "min": 221.9,
9872 +
        "max": 221.9,
9873 +
        "count": 1
9874 +
      },
9875 +
      "releaseRelease": {
9876 +
        "mean": 250.7,
9877 +
        "std": 0,
9878 +
        "min": 250.7,
9879 +
        "max": 250.7,
9880 +
        "count": 1
9881 +
      },
9882 +
      "pressRelease": {
9883 +
        "mean": 369.2,
9884 +
        "std": 0,
9885 +
        "min": 369.2,
9886 +
        "max": 369.2,
9887 +
        "count": 1
9888 +
      },
9889 +
      "releasePress": {
9890 +
        "mean": 103.4,
9891 +
        "std": 0,
9892 +
        "min": 103.4,
9893 +
        "max": 103.4,
9894 +
        "count": 1
9895 +
      }
9896 +
    },
9897 +
    {
9898 +
      "normalizedKeys": "a → c",
9899 +
      "count": 1,
9900 +
      "holdTime1": {
9901 +
        "mean": 158.3,
9902 +
        "std": 0,
9903 +
        "min": 158.3,
9904 +
        "max": 158.3,
9905 +
        "count": 1
9906 +
      },
9907 +
      "holdTime2": {
9908 +
        "mean": 118.5,
9909 +
        "std": 0,
9910 +
        "min": 118.5,
9911 +
        "max": 118.5,
9912 +
        "count": 1
9913 +
      },
9914 +
      "pressPress": {
9915 +
        "mean": 290.7,
9916 +
        "std": 0,
9917 +
        "min": 290.7,
9918 +
        "max": 290.7,
9919 +
        "count": 1
9920 +
      },
9921 +
      "releaseRelease": {
9922 +
        "mean": 250.9,
9923 +
        "std": 0,
9924 +
        "min": 250.9,
9925 +
        "max": 250.9,
9926 +
        "count": 1
9927 +
      },
9928 +
      "pressRelease": {
9929 +
        "mean": 409.2,
9930 +
        "std": 0,
9931 +
        "min": 409.2,
9932 +
        "max": 409.2,
9933 +
        "count": 1
9934 +
      },
9935 +
      "releasePress": {
9936 +
        "mean": 132.4,
9937 +
        "std": 0,
9938 +
        "min": 132.4,
9939 +
        "max": 132.4,
9940 +
        "count": 1
9941 +
      }
9942 +
    },
9943 +
    {
9944 +
      "normalizedKeys": "h → n",
9945 +
      "count": 1,
9946 +
      "holdTime1": {
9947 +
        "mean": 74.8,
9948 +
        "std": 0,
9949 +
        "min": 74.8,
9950 +
        "max": 74.8,
9951 +
        "count": 1
9952 +
      },
9953 +
      "holdTime2": {
9954 +
        "mean": 83.7,
9955 +
        "std": 0,
9956 +
        "min": 83.7,
9957 +
        "max": 83.7,
9958 +
        "count": 1
9959 +
      },
9960 +
      "pressPress": {
9961 +
        "mean": 191.6,
9962 +
        "std": 0,
9963 +
        "min": 191.6,
9964 +
        "max": 191.6,
9965 +
        "count": 1
9966 +
      },
9967 +
      "releaseRelease": {
9968 +
        "mean": 200.5,
9969 +
        "std": 0,
9970 +
        "min": 200.5,
9971 +
        "max": 200.5,
9972 +
        "count": 1
9973 +
      },
9974 +
      "pressRelease": {
9975 +
        "mean": 275.3,
9976 +
        "std": 0,
9977 +
        "min": 275.3,
9978 +
        "max": 275.3,
9979 +
        "count": 1
9980 +
      },
9981 +
      "releasePress": {
9982 +
        "mean": 116.8,
9983 +
        "std": 0,
9984 +
        "min": 116.8,
9985 +
        "max": 116.8,
9986 +
        "count": 1
9987 +
      }
9988 +
    }
9989 +
  ],
9990 +
  "metadata": {
9991 +
    "totalKeystrokes": 599,
9992 +
    "backspaceCount": 5,
9993 +
    "pauseCount": 15,
9994 +
    "avgTypingSpeed": 158,
9995 +
    "sessionDurationMs": 226854,
9996 +
    "pasteCount": 0,
9997 +
    "pastedCharCount": 0
9998 +
  }
9999 +
}
web/2.json (added) +8481 −0
1 +
{
2 +
  "id": "5174f472-9924-490c-a1f1-bc9814d36dda",
3 +
  "name": "2",
4 +
  "createdAt": "2026-03-20T11:33:28.595Z",
5 +
  "digraphCount": 522,
6 +
  "aggregations": [
7 +
    {
8 +
      "normalizedKeys": "e → ␣",
9 +
      "count": 12,
10 +
      "holdTime1": {
11 +
        "mean": 100.4,
12 +
        "std": 14.6,
13 +
        "min": 74.7,
14 +
        "max": 127.6,
15 +
        "count": 12
16 +
      },
17 +
      "holdTime2": {
18 +
        "mean": 83.9,
19 +
        "std": 19.5,
20 +
        "min": 36.4,
21 +
        "max": 99.7,
22 +
        "count": 12
23 +
      },
24 +
      "pressPress": {
25 +
        "mean": 95,
26 +
        "std": 35.8,
27 +
        "min": 41.8,
28 +
        "max": 164.2,
29 +
        "count": 12
30 +
      },
31 +
      "releaseRelease": {
32 +
        "mean": 78.6,
33 +
        "std": 24.9,
34 +
        "min": 44.8,
35 +
        "max": 138.1,
36 +
        "count": 12
37 +
      },
38 +
      "pressRelease": {
39 +
        "mean": 178.9,
40 +
        "std": 33.5,
41 +
        "min": 124.8,
42 +
        "max": 255.7,
43 +
        "count": 12
44 +
      },
45 +
      "releasePress": {
46 +
        "mean": -5.4,
47 +
        "std": 29.9,
48 +
        "min": -41.6,
49 +
        "max": 46.6,
50 +
        "count": 12
51 +
      }
52 +
    },
53 +
    {
54 +
      "normalizedKeys": "␣ → t",
55 +
      "count": 12,
56 +
      "holdTime1": {
57 +
        "mean": 68.9,
58 +
        "std": 24.2,
59 +
        "min": 17.3,
60 +
        "max": 115.7,
61 +
        "count": 12
62 +
      },
63 +
      "holdTime2": {
64 +
        "mean": 93.6,
65 +
        "std": 15.1,
66 +
        "min": 79,
67 +
        "max": 128.8,
68 +
        "count": 12
69 +
      },
70 +
      "pressPress": {
71 +
        "mean": 157.8,
72 +
        "std": 76.2,
73 +
        "min": 59.2,
74 +
        "max": 317.7,
75 +
        "count": 12
76 +
      },
77 +
      "releaseRelease": {
78 +
        "mean": 182.6,
79 +
        "std": 75.9,
80 +
        "min": 116.7,
81 +
        "max": 367.3,
82 +
        "count": 12
83 +
      },
84 +
      "pressRelease": {
85 +
        "mean": 251.4,
86 +
        "std": 83.7,
87 +
        "min": 142.2,
88 +
        "max": 433.4,
89 +
        "count": 12
90 +
      },
91 +
      "releasePress": {
92 +
        "mean": 89,
93 +
        "std": 69,
94 +
        "min": 33.6,
95 +
        "max": 251.6,
96 +
        "count": 12
97 +
      }
98 +
    },
99 +
    {
100 +
      "normalizedKeys": "t → ␣",
101 +
      "count": 12,
102 +
      "holdTime1": {
103 +
        "mean": 81.2,
104 +
        "std": 19.4,
105 +
        "min": 36.4,
106 +
        "max": 100.5,
107 +
        "count": 12
108 +
      },
109 +
      "holdTime2": {
110 +
        "mean": 85.3,
111 +
        "std": 15.8,
112 +
        "min": 65.1,
113 +
        "max": 108.3,
114 +
        "count": 12
115 +
      },
116 +
      "pressPress": {
117 +
        "mean": 102.2,
118 +
        "std": 52.7,
119 +
        "min": 54,
120 +
        "max": 248.3,
121 +
        "count": 12
122 +
      },
123 +
      "releaseRelease": {
124 +
        "mean": 106.3,
125 +
        "std": 40.4,
126 +
        "min": 74.9,
127 +
        "max": 222.5,
128 +
        "count": 12
129 +
      },
130 +
      "pressRelease": {
131 +
        "mean": 187.5,
132 +
        "std": 49.8,
133 +
        "min": 136.4,
134 +
        "max": 319.8,
135 +
        "count": 12
136 +
      },
137 +
      "releasePress": {
138 +
        "mean": 21,
139 +
        "std": 46.3,
140 +
        "min": -20.2,
141 +
        "max": 151,
142 +
        "count": 12
143 +
      }
144 +
    },
145 +
    {
146 +
      "normalizedKeys": "⌫ → ⌫",
147 +
      "count": 11,
148 +
      "holdTime1": {
149 +
        "mean": 104.4,
150 +
        "std": 112.6,
151 +
        "min": 41.4,
152 +
        "max": 442.1,
153 +
        "count": 11
154 +
      },
155 +
      "holdTime2": {
156 +
        "mean": 110.4,
157 +
        "std": 110.3,
158 +
        "min": 61,
159 +
        "max": 442.1,
160 +
        "count": 11
161 +
      },
162 +
      "pressPress": {
163 +
        "mean": 194.6,
164 +
        "std": 130.7,
165 +
        "min": 136.8,
166 +
        "max": 586.6,
167 +
        "count": 11
168 +
      },
169 +
      "releaseRelease": {
170 +
        "mean": 200.6,
171 +
        "std": 105.1,
172 +
        "min": 136.1,
173 +
        "max": 510.2,
174 +
        "count": 11
175 +
      },
176 +
      "pressRelease": {
177 +
        "mean": 305,
178 +
        "std": 159.9,
179 +
        "min": 214.9,
180 +
        "max": 663.5,
181 +
        "count": 11
182 +
      },
183 +
      "releasePress": {
184 +
        "mean": 90.2,
185 +
        "std": 20.4,
186 +
        "min": 68.1,
187 +
        "max": 144.5,
188 +
        "count": 11
189 +
      }
190 +
    },
191 +
    {
192 +
      "normalizedKeys": "t → h",
193 +
      "count": 10,
194 +
      "holdTime1": {
195 +
        "mean": 92.1,
196 +
        "std": 9.4,
197 +
        "min": 79,
198 +
        "max": 108.1,
199 +
        "count": 10
200 +
      },
201 +
      "holdTime2": {
202 +
        "mean": 91.6,
203 +
        "std": 23.5,
204 +
        "min": 66.3,
205 +
        "max": 143,
206 +
        "count": 10
207 +
      },
208 +
      "pressPress": {
209 +
        "mean": 144,
210 +
        "std": 160.9,
211 +
        "min": 52.3,
212 +
        "max": 591.3,
213 +
        "count": 10
214 +
      },
215 +
      "releaseRelease": {
216 +
        "mean": 143.5,
217 +
        "std": 166.2,
218 +
        "min": 41.7,
219 +
        "max": 600.8,
220 +
        "count": 10
221 +
      },
222 +
      "pressRelease": {
223 +
        "mean": 235.6,
224 +
        "std": 162.3,
225 +
        "min": 133.1,
226 +
        "max": 682.1,
227 +
        "count": 10
228 +
      },
229 +
      "releasePress": {
230 +
        "mean": 51.9,
231 +
        "std": 164.2,
232 +
        "min": -26.7,
233 +
        "max": 510,
234 +
        "count": 10
235 +
      }
236 +
    },
237 +
    {
238 +
      "normalizedKeys": "n → ␣",
239 +
      "count": 10,
240 +
      "holdTime1": {
241 +
        "mean": 87,
242 +
        "std": 12,
243 +
        "min": 65.9,
244 +
        "max": 108.1,
245 +
        "count": 10
246 +
      },
247 +
      "holdTime2": {
248 +
        "mean": 83.1,
249 +
        "std": 23,
250 +
        "min": 49.8,
251 +
        "max": 116.2,
252 +
        "count": 10
253 +
      },
254 +
      "pressPress": {
255 +
        "mean": 94.6,
256 +
        "std": 26.1,
257 +
        "min": 58.6,
258 +
        "max": 129.2,
259 +
        "count": 10
260 +
      },
261 +
      "releaseRelease": {
262 +
        "mean": 90.8,
263 +
        "std": 25.4,
264 +
        "min": 41.7,
265 +
        "max": 129.3,
266 +
        "count": 10
267 +
      },
268 +
      "pressRelease": {
269 +
        "mean": 177.8,
270 +
        "std": 22.5,
271 +
        "min": 147.1,
272 +
        "max": 207.7,
273 +
        "count": 10
274 +
      },
275 +
      "releasePress": {
276 +
        "mean": 7.7,
277 +
        "std": 28.5,
278 +
        "min": -33.1,
279 +
        "max": 44.7,
280 +
        "count": 10
281 +
      }
282 +
    },
283 +
    {
284 +
      "normalizedKeys": "i → n",
285 +
      "count": 9,
286 +
      "holdTime1": {
287 +
        "mean": 157.1,
288 +
        "std": 17.8,
289 +
        "min": 137.3,
290 +
        "max": 195.6,
291 +
        "count": 9
292 +
      },
293 +
      "holdTime2": {
294 +
        "mean": 122,
295 +
        "std": 19.7,
296 +
        "min": 97.3,
297 +
        "max": 153.2,
298 +
        "count": 9
299 +
      },
300 +
      "pressPress": {
301 +
        "mean": 84.8,
302 +
        "std": 19.9,
303 +
        "min": 52.9,
304 +
        "max": 125.2,
305 +
        "count": 9
306 +
      },
307 +
      "releaseRelease": {
308 +
        "mean": 49.7,
309 +
        "std": 17.3,
310 +
        "min": 33,
311 +
        "max": 88.8,
312 +
        "count": 9
313 +
      },
314 +
      "pressRelease": {
315 +
        "mean": 206.8,
316 +
        "std": 22.8,
317 +
        "min": 179.1,
318 +
        "max": 241.7,
319 +
        "count": 9
320 +
      },
321 +
      "releasePress": {
322 +
        "mean": -72.3,
323 +
        "std": 18.1,
324 +
        "min": -103.8,
325 +
        "max": -39.4,
326 +
        "count": 9
327 +
      }
328 +
    },
329 +
    {
330 +
      "normalizedKeys": "o → u",
331 +
      "count": 9,
332 +
      "holdTime1": {
333 +
        "mean": 121.3,
334 +
        "std": 29.9,
335 +
        "min": 66.1,
336 +
        "max": 165.5,
337 +
        "count": 9
338 +
      },
339 +
      "holdTime2": {
340 +
        "mean": 86.9,
341 +
        "std": 26,
342 +
        "min": 41.6,
343 +
        "max": 135.2,
344 +
        "count": 9
345 +
      },
346 +
      "pressPress": {
347 +
        "mean": 66.6,
348 +
        "std": 24.1,
349 +
        "min": 16.3,
350 +
        "max": 91.3,
351 +
        "count": 9
352 +
      },
353 +
      "releaseRelease": {
354 +
        "mean": 32.2,
355 +
        "std": 13.2,
356 +
        "min": 16.5,
357 +
        "max": 50,
358 +
        "count": 9
359 +
      },
360 +
      "pressRelease": {
361 +
        "mean": 153.5,
362 +
        "std": 28,
363 +
        "min": 116.1,
364 +
        "max": 209.2,
365 +
        "count": 9
366 +
      },
367 +
      "releasePress": {
368 +
        "mean": -54.8,
369 +
        "std": 19.8,
370 +
        "min": -91.5,
371 +
        "max": -25.1,
372 +
        "count": 9
373 +
      }
374 +
    },
375 +
    {
376 +
      "normalizedKeys": "␣ → w",
377 +
      "count": 9,
378 +
      "holdTime1": {
379 +
        "mean": 86.2,
380 +
        "std": 8.9,
381 +
        "min": 70.2,
382 +
        "max": 99.3,
383 +
        "count": 9
384 +
      },
385 +
      "holdTime2": {
386 +
        "mean": 96.9,
387 +
        "std": 16.6,
388 +
        "min": 74.9,
389 +
        "max": 126.4,
390 +
        "count": 9
391 +
      },
392 +
      "pressPress": {
393 +
        "mean": 177.5,
394 +
        "std": 62.1,
395 +
        "min": 120.3,
396 +
        "max": 266.9,
397 +
        "count": 9
398 +
      },
399 +
      "releaseRelease": {
400 +
        "mean": 188.2,
401 +
        "std": 72.1,
402 +
        "min": 116.7,
403 +
        "max": 283.7,
404 +
        "count": 9
405 +
      },
406 +
      "pressRelease": {
407 +
        "mean": 274.4,
408 +
        "std": 75.3,
409 +
        "min": 195.2,
410 +
        "max": 382.6,
411 +
        "count": 9
412 +
      },
413 +
      "releasePress": {
414 +
        "mean": 91.3,
415 +
        "std": 59,
416 +
        "min": 33.4,
417 +
        "max": 178.4,
418 +
        "count": 9
419 +
      }
420 +
    },
421 +
    {
422 +
      "normalizedKeys": "␣ → a",
423 +
      "count": 8,
424 +
      "holdTime1": {
425 +
        "mean": 91.1,
426 +
        "std": 22.5,
427 +
        "min": 57,
428 +
        "max": 132.9,
429 +
        "count": 8
430 +
      },
431 +
      "holdTime2": {
432 +
        "mean": 140.6,
433 +
        "std": 26.7,
434 +
        "min": 107.1,
435 +
        "max": 190.7,
436 +
        "count": 8
437 +
      },
438 +
      "pressPress": {
439 +
        "mean": 295.4,
440 +
        "std": 303.2,
441 +
        "min": 104.7,
442 +
        "max": 999.8,
443 +
        "count": 8
444 +
      },
445 +
      "releaseRelease": {
446 +
        "mean": 344.9,
447 +
        "std": 301.9,
448 +
        "min": 168.3,
449 +
        "max": 1053.8,
450 +
        "count": 8
451 +
      },
452 +
      "pressRelease": {
453 +
        "mean": 436,
454 +
        "std": 296.8,
455 +
        "min": 225.3,
456 +
        "max": 1132.3,
457 +
        "count": 8
458 +
      },
459 +
      "releasePress": {
460 +
        "mean": 204.2,
461 +
        "std": 309.3,
462 +
        "min": 17.1,
463 +
        "max": 921.3,
464 +
        "count": 8
465 +
      }
466 +
    },
467 +
    {
468 +
      "normalizedKeys": "␣ → j",
469 +
      "count": 8,
470 +
      "holdTime1": {
471 +
        "mean": 99.2,
472 +
        "std": 37.4,
473 +
        "min": 74.4,
474 +
        "max": 189.4,
475 +
        "count": 8
476 +
      },
477 +
      "holdTime2": {
478 +
        "mean": 93.7,
479 +
        "std": 18.3,
480 +
        "min": 80.3,
481 +
        "max": 124.5,
482 +
        "count": 8
483 +
      },
484 +
      "pressPress": {
485 +
        "mean": 270.2,
486 +
        "std": 212.2,
487 +
        "min": 100,
488 +
        "max": 737.9,
489 +
        "count": 8
490 +
      },
491 +
      "releaseRelease": {
492 +
        "mean": 264.7,
493 +
        "std": 179.4,
494 +
        "min": 107,
495 +
        "max": 635.6,
496 +
        "count": 8
497 +
      },
498 +
      "pressRelease": {
499 +
        "mean": 363.9,
500 +
        "std": 211.2,
501 +
        "min": 181.5,
502 +
        "max": 825,
503 +
        "count": 8
504 +
      },
505 +
      "releasePress": {
506 +
        "mean": 171,
507 +
        "std": 179.9,
508 +
        "min": 25.5,
509 +
        "max": 548.5,
510 +
        "count": 8
511 +
      }
512 +
    },
513 +
    {
514 +
      "normalizedKeys": "i → t",
515 +
      "count": 7,
516 +
      "holdTime1": {
517 +
        "mean": 84.5,
518 +
        "std": 32.5,
519 +
        "min": 57.8,
520 +
        "max": 150.9,
521 +
        "count": 7
522 +
      },
523 +
      "holdTime2": {
524 +
        "mean": 80.9,
525 +
        "std": 9.5,
526 +
        "min": 66.8,
527 +
        "max": 91.9,
528 +
        "count": 7
529 +
      },
530 +
      "pressPress": {
531 +
        "mean": 141.8,
532 +
        "std": 51.9,
533 +
        "min": 107.8,
534 +
        "max": 258.1,
535 +
        "count": 7
536 +
      },
537 +
      "releaseRelease": {
538 +
        "mean": 138.2,
539 +
        "std": 35.3,
540 +
        "min": 83.6,
541 +
        "max": 199.1,
542 +
        "count": 7
543 +
      },
544 +
      "pressRelease": {
545 +
        "mean": 222.6,
546 +
        "std": 57.4,
547 +
        "min": 183.4,
548 +
        "max": 350,
549 +
        "count": 7
550 +
      },
551 +
      "releasePress": {
552 +
        "mean": 57.3,
553 +
        "std": 27.3,
554 +
        "min": 16.8,
555 +
        "max": 107.2,
556 +
        "count": 7
557 +
      }
558 +
    },
559 +
    {
560 +
      "normalizedKeys": "␣ → i",
561 +
      "count": 7,
562 +
      "holdTime1": {
563 +
        "mean": 90.5,
564 +
        "std": 24.1,
565 +
        "min": 44.6,
566 +
        "max": 114.2,
567 +
        "count": 7
568 +
      },
569 +
      "holdTime2": {
570 +
        "mean": 132.1,
571 +
        "std": 43.8,
572 +
        "min": 82.2,
573 +
        "max": 195.6,
574 +
        "count": 7
575 +
      },
576 +
      "pressPress": {
577 +
        "mean": 11114.9,
578 +
        "std": 29064.1,
579 +
        "min": 66.6,
580 +
        "max": 77026.1,
581 +
        "count": 7
582 +
      },
583 +
      "releaseRelease": {
584 +
        "mean": 11156.6,
585 +
        "std": 29062.4,
586 +
        "min": 74.8,
587 +
        "max": 77063.7,
588 +
        "count": 7
589 +
      },
590 +
      "pressRelease": {
591 +
        "mean": 11247.1,
592 +
        "std": 29042.1,
593 +
        "min": 166.4,
594 +
        "max": 77108.3,
595 +
        "count": 7
596 +
      },
597 +
      "releasePress": {
598 +
        "mean": 11024.5,
599 +
        "std": 29084.4,
600 +
        "min": -25,
601 +
        "max": 76981.5,
602 +
        "count": 7
603 +
      }
604 +
    },
605 +
    {
606 +
      "normalizedKeys": ". → ␣",
607 +
      "count": 7,
608 +
      "holdTime1": {
609 +
        "mean": 81.4,
610 +
        "std": 21.7,
611 +
        "min": 57.3,
612 +
        "max": 116.8,
613 +
        "count": 7
614 +
      },
615 +
      "holdTime2": {
616 +
        "mean": 72,
617 +
        "std": 22,
618 +
        "min": 44.6,
619 +
        "max": 108.4,
620 +
        "count": 7
621 +
      },
622 +
      "pressPress": {
623 +
        "mean": 126.8,
624 +
        "std": 23,
625 +
        "min": 103,
626 +
        "max": 158,
627 +
        "count": 7
628 +
      },
629 +
      "releaseRelease": {
630 +
        "mean": 117.5,
631 +
        "std": 23.6,
632 +
        "min": 98,
633 +
        "max": 164.1,
634 +
        "count": 7
635 +
      },
636 +
      "pressRelease": {
637 +
        "mean": 198.9,
638 +
        "std": 31.8,
639 +
        "min": 156.1,
640 +
        "max": 236.5,
641 +
        "count": 7
642 +
      },
643 +
      "releasePress": {
644 +
        "mean": 45.4,
645 +
        "std": 20.7,
646 +
        "min": 23.3,
647 +
        "max": 85.6,
648 +
        "count": 7
649 +
      }
650 +
    },
651 +
    {
652 +
      "normalizedKeys": "s → ␣",
653 +
      "count": 7,
654 +
      "holdTime1": {
655 +
        "mean": 123.3,
656 +
        "std": 11.7,
657 +
        "min": 108.5,
658 +
        "max": 141.3,
659 +
        "count": 7
660 +
      },
661 +
      "holdTime2": {
662 +
        "mean": 84,
663 +
        "std": 24.4,
664 +
        "min": 57,
665 +
        "max": 132.9,
666 +
        "count": 7
667 +
      },
668 +
      "pressPress": {
669 +
        "mean": 96.7,
670 +
        "std": 28.5,
671 +
        "min": 41.7,
672 +
        "max": 134.5,
673 +
        "count": 7
674 +
      },
675 +
      "releaseRelease": {
676 +
        "mean": 57.3,
677 +
        "std": 16.4,
678 +
        "min": 33.3,
679 +
        "max": 83,
680 +
        "count": 7
681 +
      },
682 +
      "pressRelease": {
683 +
        "mean": 180.7,
684 +
        "std": 9.5,
685 +
        "min": 172.3,
686 +
        "max": 196.6,
687 +
        "count": 7
688 +
      },
689 +
      "releasePress": {
690 +
        "mean": -26.7,
691 +
        "std": 37.9,
692 +
        "min": -99.6,
693 +
        "max": 26,
694 +
        "count": 7
695 +
      }
696 +
    },
697 +
    {
698 +
      "normalizedKeys": "y → o",
699 +
      "count": 7,
700 +
      "holdTime1": {
701 +
        "mean": 84.7,
702 +
        "std": 8.9,
703 +
        "min": 72.3,
704 +
        "max": 99.9,
705 +
        "count": 7
706 +
      },
707 +
      "holdTime2": {
708 +
        "mean": 113.3,
709 +
        "std": 27.8,
710 +
        "min": 66.1,
711 +
        "max": 149.9,
712 +
        "count": 7
713 +
      },
714 +
      "pressPress": {
715 +
        "mean": 80.2,
716 +
        "std": 27.6,
717 +
        "min": 50,
718 +
        "max": 117,
719 +
        "count": 7
720 +
      },
721 +
      "releaseRelease": {
722 +
        "mean": 108.8,
723 +
        "std": 27.9,
724 +
        "min": 75.1,
725 +
        "max": 141.9,
726 +
        "count": 7
727 +
      },
728 +
      "pressRelease": {
729 +
        "mean": 193.5,
730 +
        "std": 21.7,
731 +
        "min": 174.7,
732 +
        "max": 225.4,
733 +
        "count": 7
734 +
      },
735 +
      "releasePress": {
736 +
        "mean": -4.5,
737 +
        "std": 34,
738 +
        "min": -41.3,
739 +
        "max": 44,
740 +
        "count": 7
741 +
      }
742 +
    },
743 +
    {
744 +
      "normalizedKeys": "␣ → y",
745 +
      "count": 7,
746 +
      "holdTime1": {
747 +
        "mean": 61.4,
748 +
        "std": 15.7,
749 +
        "min": 36.4,
750 +
        "max": 75,
751 +
        "count": 7
752 +
      },
753 +
      "holdTime2": {
754 +
        "mean": 84.7,
755 +
        "std": 8.9,
756 +
        "min": 72.3,
757 +
        "max": 99.9,
758 +
        "count": 7
759 +
      },
760 +
      "pressPress": {
761 +
        "mean": 145.2,
762 +
        "std": 50.1,
763 +
        "min": 98.9,
764 +
        "max": 247.5,
765 +
        "count": 7
766 +
      },
767 +
      "releaseRelease": {
768 +
        "mean": 168.5,
769 +
        "std": 43.1,
770 +
        "min": 133.2,
771 +
        "max": 258.6,
772 +
        "count": 7
773 +
      },
774 +
      "pressRelease": {
775 +
        "mean": 229.9,
776 +
        "std": 49.4,
777 +
        "min": 177.6,
778 +
        "max": 331,
779 +
        "count": 7
780 +
      },
781 +
      "releasePress": {
782 +
        "mean": 83.8,
783 +
        "std": 44.4,
784 +
        "min": 33.3,
785 +
        "max": 175.1,
786 +
        "count": 7
787 +
      }
788 +
    },
789 +
    {
790 +
      "normalizedKeys": "o → m",
791 +
      "count": 6,
792 +
      "holdTime1": {
793 +
        "mean": 102,
794 +
        "std": 17.9,
795 +
        "min": 69.2,
796 +
        "max": 117.2,
797 +
        "count": 6
798 +
      },
799 +
      "holdTime2": {
800 +
        "mean": 84.8,
801 +
        "std": 17.8,
802 +
        "min": 61.9,
803 +
        "max": 108.5,
804 +
        "count": 6
805 +
      },
806 +
      "pressPress": {
807 +
        "mean": 108.9,
808 +
        "std": 72.3,
809 +
        "min": 55.3,
810 +
        "max": 220.3,
811 +
        "count": 6
812 +
      },
813 +
      "releaseRelease": {
814 +
        "mean": 91.7,
815 +
        "std": 83.2,
816 +
        "min": 25,
817 +
        "max": 241.8,
818 +
        "count": 6
819 +
      },
820 +
      "pressRelease": {
821 +
        "mean": 193.6,
822 +
        "std": 71.9,
823 +
        "min": 134.3,
824 +
        "max": 311,
825 +
        "count": 6
826 +
      },
827 +
      "releasePress": {
828 +
        "mean": 6.9,
829 +
        "std": 83.2,
830 +
        "min": -50.3,
831 +
        "max": 151.1,
832 +
        "count": 6
833 +
      }
834 +
    },
835 +
    {
836 +
      "normalizedKeys": "␣ → s",
837 +
      "count": 6,
838 +
      "holdTime1": {
839 +
        "mean": 86.9,
840 +
        "std": 13.5,
841 +
        "min": 64,
842 +
        "max": 100.4,
843 +
        "count": 6
844 +
      },
845 +
      "holdTime2": {
846 +
        "mean": 105,
847 +
        "std": 21.4,
848 +
        "min": 79.3,
849 +
        "max": 126.8,
850 +
        "count": 6
851 +
      },
852 +
      "pressPress": {
853 +
        "mean": 291.4,
854 +
        "std": 306.9,
855 +
        "min": 100,
856 +
        "max": 893.4,
857 +
        "count": 6
858 +
      },
859 +
      "releaseRelease": {
860 +
        "mean": 309.5,
861 +
        "std": 319.4,
862 +
        "min": 117.8,
863 +
        "max": 937.5,
864 +
        "count": 6
865 +
      },
866 +
      "pressRelease": {
867 +
        "mean": 396.4,
868 +
        "std": 314.5,
869 +
        "min": 218.2,
870 +
        "max": 1020.2,
871 +
        "count": 6
872 +
      },
873 +
      "releasePress": {
874 +
        "mean": 204.5,
875 +
        "std": 312.5,
876 +
        "min": -0.4,
877 +
        "max": 810.7,
878 +
        "count": 6
879 +
      }
880 +
    },
881 +
    {
882 +
      "normalizedKeys": "h → a",
883 +
      "count": 6,
884 +
      "holdTime1": {
885 +
        "mean": 88.7,
886 +
        "std": 15.6,
887 +
        "min": 64.4,
888 +
        "max": 107.5,
889 +
        "count": 6
890 +
      },
891 +
      "holdTime2": {
892 +
        "mean": 131,
893 +
        "std": 14.4,
894 +
        "min": 115,
895 +
        "max": 154.6,
896 +
        "count": 6
897 +
      },
898 +
      "pressPress": {
899 +
        "mean": 108.4,
900 +
        "std": 34,
901 +
        "min": 58.3,
902 +
        "max": 141.6,
903 +
        "count": 6
904 +
      },
905 +
      "releaseRelease": {
906 +
        "mean": 150.7,
907 +
        "std": 25,
908 +
        "min": 108.3,
909 +
        "max": 174.9,
910 +
        "count": 6
911 +
      },
912 +
      "pressRelease": {
913 +
        "mean": 239.3,
914 +
        "std": 26.7,
915 +
        "min": 191.4,
916 +
        "max": 261.4,
917 +
        "count": 6
918 +
      },
919 +
      "releasePress": {
920 +
        "mean": 19.7,
921 +
        "std": 26.9,
922 +
        "min": -24.8,
923 +
        "max": 50.8,
924 +
        "count": 6
925 +
      }
926 +
    },
927 +
    {
928 +
      "normalizedKeys": "␣ → h",
929 +
      "count": 6,
930 +
      "holdTime1": {
931 +
        "mean": 72.1,
932 +
        "std": 15.7,
933 +
        "min": 52.2,
934 +
        "max": 90.4,
935 +
        "count": 6
936 +
      },
937 +
      "holdTime2": {
938 +
        "mean": 78.8,
939 +
        "std": 19.3,
940 +
        "min": 49.8,
941 +
        "max": 107.5,
942 +
        "count": 6
943 +
      },
944 +
      "pressPress": {
945 +
        "mean": 130.9,
946 +
        "std": 97.8,
947 +
        "min": 30.6,
948 +
        "max": 305.6,
949 +
        "count": 6
950 +
      },
951 +
      "releaseRelease": {
952 +
        "mean": 137.6,
953 +
        "std": 114.6,
954 +
        "min": 25.1,
955 +
        "max": 333.9,
956 +
        "count": 6
957 +
      },
958 +
      "pressRelease": {
959 +
        "mean": 209.7,
960 +
        "std": 106.7,
961 +
        "min": 108.2,
962 +
        "max": 388.2,
963 +
        "count": 6
964 +
      },
965 +
      "releasePress": {
966 +
        "mean": 58.8,
967 +
        "std": 106.6,
968 +
        "min": -49.7,
969 +
        "max": 251.3,
970 +
        "count": 6
971 +
      }
972 +
    },
973 +
    {
974 +
      "normalizedKeys": "s → o",
975 +
      "count": 6,
976 +
      "holdTime1": {
977 +
        "mean": 105.4,
978 +
        "std": 25.8,
979 +
        "min": 71.8,
980 +
        "max": 137.4,
981 +
        "count": 6
982 +
      },
983 +
      "holdTime2": {
984 +
        "mean": 91.1,
985 +
        "std": 18.4,
986 +
        "min": 72.1,
987 +
        "max": 116.3,
988 +
        "count": 6
989 +
      },
990 +
      "pressPress": {
991 +
        "mean": 122.8,
992 +
        "std": 13.1,
993 +
        "min": 108.4,
994 +
        "max": 145.8,
995 +
        "count": 6
996 +
      },
997 +
      "releaseRelease": {
998 +
        "mean": 108.5,
999 +
        "std": 33.7,
1000 +
        "min": 58.2,
1001 +
        "max": 158.2,
1002 +
        "count": 6
1003 +
      },
1004 +
      "pressRelease": {
1005 +
        "mean": 213.9,
1006 +
        "std": 22.4,
1007 +
        "min": 190.9,
1008 +
        "max": 241.4,
1009 +
        "count": 6
1010 +
      },
1011 +
      "releasePress": {
1012 +
        "mean": 17.4,
1013 +
        "std": 27.9,
1014 +
        "min": -19.1,
1015 +
        "max": 42,
1016 +
        "count": 6
1017 +
      }
1018 +
    },
1019 +
    {
1020 +
      "normalizedKeys": "a → t",
1021 +
      "count": 6,
1022 +
      "holdTime1": {
1023 +
        "mean": 133.5,
1024 +
        "std": 12,
1025 +
        "min": 115,
1026 +
        "max": 150.2,
1027 +
        "count": 6
1028 +
      },
1029 +
      "holdTime2": {
1030 +
        "mean": 96.3,
1031 +
        "std": 13.5,
1032 +
        "min": 74.7,
1033 +
        "max": 116.4,
1034 +
        "count": 6
1035 +
      },
1036 +
      "pressPress": {
1037 +
        "mean": 102.3,
1038 +
        "std": 17.7,
1039 +
        "min": 85.2,
1040 +
        "max": 133.5,
1041 +
        "count": 6
1042 +
      },
1043 +
      "releaseRelease": {
1044 +
        "mean": 65.1,
1045 +
        "std": 20.1,
1046 +
        "min": 41.3,
1047 +
        "max": 100,
1048 +
        "count": 6
1049 +
      },
1050 +
      "pressRelease": {
1051 +
        "mean": 198.6,
1052 +
        "std": 17.3,
1053 +
        "min": 181.7,
1054 +
        "max": 227.3,
1055 +
        "count": 6
1056 +
      },
1057 +
      "releasePress": {
1058 +
        "mean": -31.2,
1059 +
        "std": 17.8,
1060 +
        "min": -58.1,
1061 +
        "max": -8.1,
1062 +
        "count": 6
1063 +
      }
1064 +
    },
1065 +
    {
1066 +
      "normalizedKeys": "d → ␣",
1067 +
      "count": 6,
1068 +
      "holdTime1": {
1069 +
        "mean": 101.3,
1070 +
        "std": 26.3,
1071 +
        "min": 58,
1072 +
        "max": 140.9,
1073 +
        "count": 6
1074 +
      },
1075 +
      "holdTime2": {
1076 +
        "mean": 61.8,
1077 +
        "std": 31.2,
1078 +
        "min": 17.3,
1079 +
        "max": 108.2,
1080 +
        "count": 6
1081 +
      },
1082 +
      "pressPress": {
1083 +
        "mean": 120,
1084 +
        "std": 38.9,
1085 +
        "min": 83.1,
1086 +
        "max": 165.9,
1087 +
        "count": 6
1088 +
      },
1089 +
      "releaseRelease": {
1090 +
        "mean": 80.5,
1091 +
        "std": 36.7,
1092 +
        "min": 41.7,
1093 +
        "max": 133.2,
1094 +
        "count": 6
1095 +
      },
1096 +
      "pressRelease": {
1097 +
        "mean": 181.8,
1098 +
        "std": 49,
1099 +
        "min": 141.3,
1100 +
        "max": 274.1,
1101 +
        "count": 6
1102 +
      },
1103 +
      "releasePress": {
1104 +
        "mean": 18.7,
1105 +
        "std": 27.7,
1106 +
        "min": -16,
1107 +
        "max": 46.2,
1108 +
        "count": 6
1109 +
      }
1110 +
    },
1111 +
    {
1112 +
      "normalizedKeys": "n → e",
1113 +
      "count": 6,
1114 +
      "holdTime1": {
1115 +
        "mean": 97.1,
1116 +
        "std": 12.3,
1117 +
        "min": 74.8,
1118 +
        "max": 108.2,
1119 +
        "count": 6
1120 +
      },
1121 +
      "holdTime2": {
1122 +
        "mean": 94.6,
1123 +
        "std": 38.6,
1124 +
        "min": 49.6,
1125 +
        "max": 165.5,
1126 +
        "count": 6
1127 +
      },
1128 +
      "pressPress": {
1129 +
        "mean": 96.6,
1130 +
        "std": 34.2,
1131 +
        "min": 52.4,
1132 +
        "max": 141.1,
1133 +
        "count": 6
1134 +
      },
1135 +
      "releaseRelease": {
1136 +
        "mean": 94.1,
1137 +
        "std": 37,
1138 +
        "min": 48.8,
1139 +
        "max": 141.8,
1140 +
        "count": 6
1141 +
      },
1142 +
      "pressRelease": {
1143 +
        "mean": 191.3,
1144 +
        "std": 44.7,
1145 +
        "min": 141.5,
1146 +
        "max": 249.5,
1147 +
        "count": 6
1148 +
      },
1149 +
      "releasePress": {
1150 +
        "mean": -0.5,
1151 +
        "std": 27.3,
1152 +
        "min": -23.7,
1153 +
        "max": 33.2,
1154 +
        "count": 6
1155 +
      }
1156 +
    },
1157 +
    {
1158 +
      "normalizedKeys": "t → o",
1159 +
      "count": 6,
1160 +
      "holdTime1": {
1161 +
        "mean": 93.5,
1162 +
        "std": 17.8,
1163 +
        "min": 82.9,
1164 +
        "max": 128.8,
1165 +
        "count": 6
1166 +
      },
1167 +
      "holdTime2": {
1168 +
        "mean": 94.8,
1169 +
        "std": 28.6,
1170 +
        "min": 69.2,
1171 +
        "max": 139.8,
1172 +
        "count": 6
1173 +
      },
1174 +
      "pressPress": {
1175 +
        "mean": 103.4,
1176 +
        "std": 57.4,
1177 +
        "min": 28,
1178 +
        "max": 193.4,
1179 +
        "count": 6
1180 +
      },
1181 +
      "releaseRelease": {
1182 +
        "mean": 104.7,
1183 +
        "std": 54.9,
1184 +
        "min": 52.9,
1185 +
        "max": 204.4,
1186 +
        "count": 6
1187 +
      },
1188 +
      "pressRelease": {
1189 +
        "mean": 198.2,
1190 +
        "std": 71.2,
1191 +
        "min": 135.8,
1192 +
        "max": 333.2,
1193 +
        "count": 6
1194 +
      },
1195 +
      "releasePress": {
1196 +
        "mean": 9.9,
1197 +
        "std": 44.9,
1198 +
        "min": -54.9,
1199 +
        "max": 64.6,
1200 +
        "count": 6
1201 +
      }
1202 +
    },
1203 +
    {
1204 +
      "normalizedKeys": "u → ␣",
1205 +
      "count": 6,
1206 +
      "holdTime1": {
1207 +
        "mean": 79.6,
1208 +
        "std": 23.4,
1209 +
        "min": 41.6,
1210 +
        "max": 101.3,
1211 +
        "count": 6
1212 +
      },
1213 +
      "holdTime2": {
1214 +
        "mean": 78.8,
1215 +
        "std": 15.1,
1216 +
        "min": 56.3,
1217 +
        "max": 99.8,
1218 +
        "count": 6
1219 +
      },
1220 +
      "pressPress": {
1221 +
        "mean": 52.6,
1222 +
        "std": 23.5,
1223 +
        "min": 14.2,
1224 +
        "max": 78.9,
1225 +
        "count": 6
1226 +
      },
1227 +
      "releaseRelease": {
1228 +
        "mean": 51.8,
1229 +
        "std": 22.9,
1230 +
        "min": 20.2,
1231 +
        "max": 83.3,
1232 +
        "count": 6
1233 +
      },
1234 +
      "pressRelease": {
1235 +
        "mean": 131.4,
1236 +
        "std": 19.7,
1237 +
        "min": 108.2,
1238 +
        "max": 158.2,
1239 +
        "count": 6
1240 +
      },
1241 +
      "releasePress": {
1242 +
        "mean": -27,
1243 +
        "std": 29.2,
1244 +
        "min": -79.6,
1245 +
        "max": 10.9,
1246 +
        "count": 6
1247 +
      }
1248 +
    },
1249 +
    {
1250 +
      "normalizedKeys": "o → w",
1251 +
      "count": 6,
1252 +
      "holdTime1": {
1253 +
        "mean": 89.8,
1254 +
        "std": 13.6,
1255 +
        "min": 74.6,
1256 +
        "max": 114.4,
1257 +
        "count": 6
1258 +
      },
1259 +
      "holdTime2": {
1260 +
        "mean": 108.6,
1261 +
        "std": 21.6,
1262 +
        "min": 74.3,
1263 +
        "max": 132.9,
1264 +
        "count": 6
1265 +
      },
1266 +
      "pressPress": {
1267 +
        "mean": 69.8,
1268 +
        "std": 23.3,
1269 +
        "min": 41.5,
1270 +
        "max": 108.5,
1271 +
        "count": 6
1272 +
      },
1273 +
      "releaseRelease": {
1274 +
        "mean": 88.6,
1275 +
        "std": 43,
1276 +
        "min": 33,
1277 +
        "max": 157.9,
1278 +
        "count": 6
1279 +
      },
1280 +
      "pressRelease": {
1281 +
        "mean": 178.4,
1282 +
        "std": 36.5,
1283 +
        "min": 147.4,
1284 +
        "max": 241.4,
1285 +
        "count": 6
1286 +
      },
1287 +
      "releasePress": {
1288 +
        "mean": -20,
1289 +
        "std": 27.4,
1290 +
        "min": -58.4,
1291 +
        "max": 25,
1292 +
        "count": 6
1293 +
      }
1294 +
    },
1295 +
    {
1296 +
      "normalizedKeys": "l → i",
1297 +
      "count": 5,
1298 +
      "holdTime1": {
1299 +
        "mean": 81,
1300 +
        "std": 24,
1301 +
        "min": 49.5,
1302 +
        "max": 116.5,
1303 +
        "count": 5
1304 +
      },
1305 +
      "holdTime2": {
1306 +
        "mean": 102.2,
1307 +
        "std": 53.6,
1308 +
        "min": 49.9,
1309 +
        "max": 166.7,
1310 +
        "count": 5
1311 +
      },
1312 +
      "pressPress": {
1313 +
        "mean": 181,
1314 +
        "std": 15.7,
1315 +
        "min": 158,
1316 +
        "max": 199.9,
1317 +
        "count": 5
1318 +
      },
1319 +
      "releaseRelease": {
1320 +
        "mean": 202.2,
1321 +
        "std": 53.2,
1322 +
        "min": 158.2,
1323 +
        "max": 261.4,
1324 +
        "count": 5
1325 +
      },
1326 +
      "pressRelease": {
1327 +
        "mean": 283.2,
1328 +
        "std": 43.4,
1329 +
        "min": 233.2,
1330 +
        "max": 341.7,
1331 +
        "count": 5
1332 +
      },
1333 +
      "releasePress": {
1334 +
        "mean": 100,
1335 +
        "std": 11.7,
1336 +
        "min": 83.4,
1337 +
        "max": 108.5,
1338 +
        "count": 5
1339 +
      }
1340 +
    },
1341 +
    {
1342 +
      "normalizedKeys": "g → ␣",
1343 +
      "count": 5,
1344 +
      "holdTime1": {
1345 +
        "mean": 86.3,
1346 +
        "std": 17.9,
1347 +
        "min": 66.3,
1348 +
        "max": 110.1,
1349 +
        "count": 5
1350 +
      },
1351 +
      "holdTime2": {
1352 +
        "mean": 92.1,
1353 +
        "std": 21.4,
1354 +
        "min": 73.9,
1355 +
        "max": 116.4,
1356 +
        "count": 5
1357 +
      },
1358 +
      "pressPress": {
1359 +
        "mean": 165.8,
1360 +
        "std": 67.4,
1361 +
        "min": 113,
1362 +
        "max": 281.7,
1363 +
        "count": 5
1364 +
      },
1365 +
      "releaseRelease": {
1366 +
        "mean": 171.6,
1367 +
        "std": 80.5,
1368 +
        "min": 114.8,
1369 +
        "max": 297.3,
1370 +
        "count": 5
1371 +
      },
1372 +
      "pressRelease": {
1373 +
        "mean": 257.9,
1374 +
        "std": 83.4,
1375 +
        "min": 194.3,
1376 +
        "max": 395.9,
1377 +
        "count": 5
1378 +
      },
1379 +
      "releasePress": {
1380 +
        "mean": 79.5,
1381 +
        "std": 62,
1382 +
        "min": 38.6,
1383 +
        "max": 183.1,
1384 +
        "count": 5
1385 +
      }
1386 +
    },
1387 +
    {
1388 +
      "normalizedKeys": "e → t",
1389 +
      "count": 5,
1390 +
      "holdTime1": {
1391 +
        "mean": 101.9,
1392 +
        "std": 19.8,
1393 +
        "min": 74.2,
1394 +
        "max": 130,
1395 +
        "count": 5
1396 +
      },
1397 +
      "holdTime2": {
1398 +
        "mean": 94.4,
1399 +
        "std": 15.7,
1400 +
        "min": 74.2,
1401 +
        "max": 108.5,
1402 +
        "count": 5
1403 +
      },
1404 +
      "pressPress": {
1405 +
        "mean": 173.2,
1406 +
        "std": 51.5,
1407 +
        "min": 117.9,
1408 +
        "max": 255.3,
1409 +
        "count": 5
1410 +
      },
1411 +
      "releaseRelease": {
1412 +
        "mean": 165.7,
1413 +
        "std": 75.5,
1414 +
        "min": 62.1,
1415 +
        "max": 258.6,
1416 +
        "count": 5
1417 +
      },
1418 +
      "pressRelease": {
1419 +
        "mean": 267.7,
1420 +
        "std": 64.2,
1421 +
        "min": 192.1,
1422 +
        "max": 363.8,
1423 +
        "count": 5
1424 +
      },
1425 +
      "releasePress": {
1426 +
        "mean": 71.3,
1427 +
        "std": 61.5,
1428 +
        "min": -12.1,
1429 +
        "max": 150.1,
1430 +
        "count": 5
1431 +
      }
1432 +
    },
1433 +
    {
1434 +
      "normalizedKeys": "a → n",
1435 +
      "count": 5,
1436 +
      "holdTime1": {
1437 +
        "mean": 134.7,
1438 +
        "std": 21.9,
1439 +
        "min": 107.1,
1440 +
        "max": 158.3,
1441 +
        "count": 5
1442 +
      },
1443 +
      "holdTime2": {
1444 +
        "mean": 81.8,
1445 +
        "std": 14.4,
1446 +
        "min": 61.7,
1447 +
        "max": 97.6,
1448 +
        "count": 5
1449 +
      },
1450 +
      "pressPress": {
1451 +
        "mean": 147.1,
1452 +
        "std": 139.4,
1453 +
        "min": 52.4,
1454 +
        "max": 392.7,
1455 +
        "count": 5
1456 +
      },
1457 +
      "releaseRelease": {
1458 +
        "mean": 94.2,
1459 +
        "std": 127.6,
1460 +
        "min": 25.7,
1461 +
        "max": 321.6,
1462 +
        "count": 5
1463 +
      },
1464 +
      "pressRelease": {
1465 +
        "mean": 228.9,
1466 +
        "std": 127.7,
1467 +
        "min": 146.3,
1468 +
        "max": 454.4,
1469 +
        "count": 5
1470 +
      },
1471 +
      "releasePress": {
1472 +
        "mean": 12.4,
1473 +
        "std": 139.8,
1474 +
        "min": -69,
1475 +
        "max": 259.9,
1476 +
        "count": 5
1477 +
      }
1478 +
    },
1479 +
    {
1480 +
      "normalizedKeys": "h → e",
1481 +
      "count": 5,
1482 +
      "holdTime1": {
1483 +
        "mean": 83.8,
1484 +
        "std": 8.5,
1485 +
        "min": 70.7,
1486 +
        "max": 91.6,
1487 +
        "count": 5
1488 +
      },
1489 +
      "holdTime2": {
1490 +
        "mean": 126.9,
1491 +
        "std": 42.7,
1492 +
        "min": 89.3,
1493 +
        "max": 194.7,
1494 +
        "count": 5
1495 +
      },
1496 +
      "pressPress": {
1497 +
        "mean": 94,
1498 +
        "std": 58.6,
1499 +
        "min": -8.2,
1500 +
        "max": 132.2,
1501 +
        "count": 5
1502 +
      },
1503 +
      "releaseRelease": {
1504 +
        "mean": 137.1,
1505 +
        "std": 25.2,
1506 +
        "min": 94.9,
1507 +
        "max": 158.7,
1508 +
        "count": 5
1509 +
      },
1510 +
      "pressRelease": {
1511 +
        "mean": 220.9,
1512 +
        "std": 21,
1513 +
        "min": 186.5,
1514 +
        "max": 241.7,
1515 +
        "count": 5
1516 +
      },
1517 +
      "releasePress": {
1518 +
        "mean": 10.2,
1519 +
        "std": 63.9,
1520 +
        "min": -99.8,
1521 +
        "max": 59.2,
1522 +
        "count": 5
1523 +
      }
1524 +
    },
1525 +
    {
1526 +
      "normalizedKeys": "w → o",
1527 +
      "count": 5,
1528 +
      "holdTime1": {
1529 +
        "mean": 96.3,
1530 +
        "std": 20.1,
1531 +
        "min": 74.9,
1532 +
        "max": 126.4,
1533 +
        "count": 5
1534 +
      },
1535 +
      "holdTime2": {
1536 +
        "mean": 95.1,
1537 +
        "std": 39.8,
1538 +
        "min": 69,
1539 +
        "max": 165.5,
1540 +
        "count": 5
1541 +
      },
1542 +
      "pressPress": {
1543 +
        "mean": 94.8,
1544 +
        "std": 21.1,
1545 +
        "min": 60.7,
1546 +
        "max": 118.6,
1547 +
        "count": 5
1548 +
      },
1549 +
      "releaseRelease": {
1550 +
        "mean": 93.6,
1551 +
        "std": 38.3,
1552 +
        "min": 61.2,
1553 +
        "max": 158,
1554 +
        "count": 5
1555 +
      },
1556 +
      "pressRelease": {
1557 +
        "mean": 189.9,
1558 +
        "std": 44.2,
1559 +
        "min": 144.6,
1560 +
        "max": 263.3,
1561 +
        "count": 5
1562 +
      },
1563 +
      "releasePress": {
1564 +
        "mean": -1.5,
1565 +
        "std": 12.1,
1566 +
        "min": -14.2,
1567 +
        "max": 15.3,
1568 +
        "count": 5
1569 +
      }
1570 +
    },
1571 +
    {
1572 +
      "normalizedKeys": "r → ␣",
1573 +
      "count": 5,
1574 +
      "holdTime1": {
1575 +
        "mean": 106.3,
1576 +
        "std": 19.2,
1577 +
        "min": 75.8,
1578 +
        "max": 124.4,
1579 +
        "count": 5
1580 +
      },
1581 +
      "holdTime2": {
1582 +
        "mean": 94.3,
1583 +
        "std": 14.3,
1584 +
        "min": 80.3,
1585 +
        "max": 116.2,
1586 +
        "count": 5
1587 +
      },
1588 +
      "pressPress": {
1589 +
        "mean": 115.2,
1590 +
        "std": 32.4,
1591 +
        "min": 67.6,
1592 +
        "max": 149.9,
1593 +
        "count": 5
1594 +
      },
1595 +
      "releaseRelease": {
1596 +
        "mean": 103.2,
1597 +
        "std": 25.7,
1598 +
        "min": 82.4,
1599 +
        "max": 141.7,
1600 +
        "count": 5
1601 +
      },
1602 +
      "pressRelease": {
1603 +
        "mean": 209.5,
1604 +
        "std": 38.5,
1605 +
        "min": 159.1,
1606 +
        "max": 266.1,
1607 +
        "count": 5
1608 +
      },
1609 +
      "releasePress": {
1610 +
        "mean": 8.9,
1611 +
        "std": 21.4,
1612 +
        "min": -16.9,
1613 +
        "max": 33.2,
1614 +
        "count": 5
1615 +
      }
1616 +
    },
1617 +
    {
1618 +
      "normalizedKeys": "o → r",
1619 +
      "count": 5,
1620 +
      "holdTime1": {
1621 +
        "mean": 78.2,
1622 +
        "std": 5.8,
1623 +
        "min": 69,
1624 +
        "max": 83.9,
1625 +
        "count": 5
1626 +
      },
1627 +
      "holdTime2": {
1628 +
        "mean": 92.7,
1629 +
        "std": 16.9,
1630 +
        "min": 70.5,
1631 +
        "max": 115.5,
1632 +
        "count": 5
1633 +
      },
1634 +
      "pressPress": {
1635 +
        "mean": 117.7,
1636 +
        "std": 49.1,
1637 +
        "min": 83.6,
1638 +
        "max": 201.5,
1639 +
        "count": 5
1640 +
      },
1641 +
      "releaseRelease": {
1642 +
        "mean": 132.1,
1643 +
        "std": 54.5,
1644 +
        "min": 92,
1645 +
        "max": 227,
1646 +
        "count": 5
1647 +
      },
1648 +
      "pressRelease": {
1649 +
        "mean": 210.4,
1650 +
        "std": 54.3,
1651 +
        "min": 170.1,
1652 +
        "max": 303.3,
1653 +
        "count": 5
1654 +
      },
1655 +
      "releasePress": {
1656 +
        "mean": 39.4,
1657 +
        "std": 50.2,
1658 +
        "min": 2.5,
1659 +
        "max": 125.2,
1660 +
        "count": 5
1661 +
      }
1662 +
    },
1663 +
    {
1664 +
      "normalizedKeys": "s → t",
1665 +
      "count": 5,
1666 +
      "holdTime1": {
1667 +
        "mean": 106.8,
1668 +
        "std": 22.7,
1669 +
        "min": 83.1,
1670 +
        "max": 139,
1671 +
        "count": 5
1672 +
      },
1673 +
      "holdTime2": {
1674 +
        "mean": 83.1,
1675 +
        "std": 17.1,
1676 +
        "min": 60.8,
1677 +
        "max": 100.5,
1678 +
        "count": 5
1679 +
      },
1680 +
      "pressPress": {
1681 +
        "mean": 140.1,
1682 +
        "std": 27.3,
1683 +
        "min": 111.5,
1684 +
        "max": 183.2,
1685 +
        "count": 5
1686 +
      },
1687 +
      "releaseRelease": {
1688 +
        "mean": 116.4,
1689 +
        "std": 24.6,
1690 +
        "min": 91.7,
1691 +
        "max": 142.4,
1692 +
        "count": 5
1693 +
      },
1694 +
      "pressRelease": {
1695 +
        "mean": 223.2,
1696 +
        "std": 36.2,
1697 +
        "min": 181.9,
1698 +
        "max": 280.5,
1699 +
        "count": 5
1700 +
      },
1701 +
      "releasePress": {
1702 +
        "mean": 33.3,
1703 +
        "std": 9.3,
1704 +
        "min": 24,
1705 +
        "max": 44.2,
1706 +
        "count": 5
1707 +
      }
1708 +
    },
1709 +
    {
1710 +
      "normalizedKeys": "␣ → n",
1711 +
      "count": 5,
1712 +
      "holdTime1": {
1713 +
        "mean": 89.1,
1714 +
        "std": 14.4,
1715 +
        "min": 74.8,
1716 +
        "max": 108.4,
1717 +
        "count": 5
1718 +
      },
1719 +
      "holdTime2": {
1720 +
        "mean": 93.6,
1721 +
        "std": 12.5,
1722 +
        "min": 74.8,
1723 +
        "max": 108.2,
1724 +
        "count": 5
1725 +
      },
1726 +
      "pressPress": {
1727 +
        "mean": 247.2,
1728 +
        "std": 153.9,
1729 +
        "min": 91.8,
1730 +
        "max": 501.2,
1731 +
        "count": 5
1732 +
      },
1733 +
      "releaseRelease": {
1734 +
        "mean": 251.7,
1735 +
        "std": 143.5,
1736 +
        "min": 109.4,
1737 +
        "max": 483.1,
1738 +
        "count": 5
1739 +
      },
1740 +
      "pressRelease": {
1741 +
        "mean": 340.8,
1742 +
        "std": 153.5,
1743 +
        "min": 192.4,
1744 +
        "max": 591.5,
1745 +
        "count": 5
1746 +
      },
1747 +
      "releasePress": {
1748 +
        "mean": 158.1,
1749 +
        "std": 143.7,
1750 +
        "min": 8.8,
1751 +
        "max": 392.8,
1752 +
        "count": 5
1753 +
      }
1754 +
    },
1755 +
    {
1756 +
      "normalizedKeys": "w → ␣",
1757 +
      "count": 5,
1758 +
      "holdTime1": {
1759 +
        "mean": 116.1,
1760 +
        "std": 28.1,
1761 +
        "min": 74.3,
1762 +
        "max": 153.4,
1763 +
        "count": 5
1764 +
      },
1765 +
      "holdTime2": {
1766 +
        "mean": 79.7,
1767 +
        "std": 21.8,
1768 +
        "min": 49.7,
1769 +
        "max": 108.2,
1770 +
        "count": 5
1771 +
      },
1772 +
      "pressPress": {
1773 +
        "mean": 108.9,
1774 +
        "std": 8.1,
1775 +
        "min": 99.5,
1776 +
        "max": 120.1,
1777 +
        "count": 5
1778 +
      },
1779 +
      "releaseRelease": {
1780 +
        "mean": 72.5,
1781 +
        "std": 10,
1782 +
        "min": 58.3,
1783 +
        "max": 83.4,
1784 +
        "count": 5
1785 +
      },
1786 +
      "pressRelease": {
1787 +
        "mean": 188.6,
1788 +
        "std": 24.6,
1789 +
        "min": 149.2,
1790 +
        "max": 211.7,
1791 +
        "count": 5
1792 +
      },
1793 +
      "releasePress": {
1794 +
        "mean": -7.3,
1795 +
        "std": 27.4,
1796 +
        "min": -49.9,
1797 +
        "max": 25.2,
1798 +
        "count": 5
1799 +
      }
1800 +
    },
1801 +
    {
1802 +
      "normalizedKeys": "h → i",
1803 +
      "count": 4,
1804 +
      "holdTime1": {
1805 +
        "mean": 103.4,
1806 +
        "std": 32.7,
1807 +
        "min": 71.1,
1808 +
        "max": 143,
1809 +
        "count": 4
1810 +
      },
1811 +
      "holdTime2": {
1812 +
        "mean": 125.8,
1813 +
        "std": 18.9,
1814 +
        "min": 107.8,
1815 +
        "max": 146.3,
1816 +
        "count": 4
1817 +
      },
1818 +
      "pressPress": {
1819 +
        "mean": 92.6,
1820 +
        "std": 11.9,
1821 +
        "min": 85.1,
1822 +
        "max": 110.4,
1823 +
        "count": 4
1824 +
      },
1825 +
      "releaseRelease": {
1826 +
        "mean": 115,
1827 +
        "std": 58.5,
1828 +
        "min": 49.9,
1829 +
        "max": 176.6,
1830 +
        "count": 4
1831 +
      },
1832 +
      "pressRelease": {
1833 +
        "mean": 218.4,
1834 +
        "std": 26.2,
1835 +
        "min": 192.9,
1836 +
        "max": 247.7,
1837 +
        "count": 4
1838 +
      },
1839 +
      "releasePress": {
1840 +
        "mean": -10.8,
1841 +
        "std": 41.8,
1842 +
        "min": -57.9,
1843 +
        "max": 39.3,
1844 +
        "count": 4
1845 +
      }
1846 +
    },
1847 +
    {
1848 +
      "normalizedKeys": "n → g",
1849 +
      "count": 4,
1850 +
      "holdTime1": {
1851 +
        "mean": 125,
1852 +
        "std": 20.3,
1853 +
        "min": 108.2,
1854 +
        "max": 153.2,
1855 +
        "count": 4
1856 +
      },
1857 +
      "holdTime2": {
1858 +
        "mean": 91.3,
1859 +
        "std": 16.1,
1860 +
        "min": 74.4,
1861 +
        "max": 110.1,
1862 +
        "count": 4
1863 +
      },
1864 +
      "pressPress": {
1865 +
        "mean": 136.7,
1866 +
        "std": 129.5,
1867 +
        "min": 49.9,
1868 +
        "max": 324,
1869 +
        "count": 4
1870 +
      },
1871 +
      "releaseRelease": {
1872 +
        "mean": 103,
1873 +
        "std": 112.6,
1874 +
        "min": 23.9,
1875 +
        "max": 269.4,
1876 +
        "count": 4
1877 +
      },
1878 +
      "pressRelease": {
1879 +
        "mean": 228,
1880 +
        "std": 132.5,
1881 +
        "min": 132.1,
1882 +
        "max": 422.6,
1883 +
        "count": 4
1884 +
      },
1885 +
      "releasePress": {
1886 +
        "mean": 11.7,
1887 +
        "std": 109.5,
1888 +
        "min": -62.6,
1889 +
        "max": 170.8,
1890 +
        "count": 4
1891 +
      }
1892 +
    },
1893 +
    {
1894 +
      "normalizedKeys": "m → e",
1895 +
      "count": 4,
1896 +
      "holdTime1": {
1897 +
        "mean": 79.5,
1898 +
        "std": 20.1,
1899 +
        "min": 61.9,
1900 +
        "max": 108.5,
1901 +
        "count": 4
1902 +
      },
1903 +
      "holdTime2": {
1904 +
        "mean": 91.1,
1905 +
        "std": 11.7,
1906 +
        "min": 74.2,
1907 +
        "max": 100,
1908 +
        "count": 4
1909 +
      },
1910 +
      "pressPress": {
1911 +
        "mean": 65.8,
1912 +
        "std": 46.1,
1913 +
        "min": 16.1,
1914 +
        "max": 119.7,
1915 +
        "count": 4
1916 +
      },
1917 +
      "releaseRelease": {
1918 +
        "mean": 77.4,
1919 +
        "std": 31.5,
1920 +
        "min": 46.7,
1921 +
        "max": 121.1,
1922 +
        "count": 4
1923 +
      },
1924 +
      "pressRelease": {
1925 +
        "mean": 156.9,
1926 +
        "std": 39.4,
1927 +
        "min": 108.6,
1928 +
        "max": 193.9,
1929 +
        "count": 4
1930 +
      },
1931 +
      "releasePress": {
1932 +
        "mean": -13.7,
1933 +
        "std": 41.5,
1934 +
        "min": -45.8,
1935 +
        "max": 46.9,
1936 +
        "count": 4
1937 +
      }
1938 +
    },
1939 +
    {
1940 +
      "normalizedKeys": "l → ␣",
1941 +
      "count": 4,
1942 +
      "holdTime1": {
1943 +
        "mean": 85.4,
1944 +
        "std": 9.3,
1945 +
        "min": 74.4,
1946 +
        "max": 97,
1947 +
        "count": 4
1948 +
      },
1949 +
      "holdTime2": {
1950 +
        "mean": 76,
1951 +
        "std": 5.7,
1952 +
        "min": 70.2,
1953 +
        "max": 83.9,
1954 +
        "count": 4
1955 +
      },
1956 +
      "pressPress": {
1957 +
        "mean": 148.6,
1958 +
        "std": 85.3,
1959 +
        "min": 91.2,
1960 +
        "max": 275,
1961 +
        "count": 4
1962 +
      },
1963 +
      "releaseRelease": {
1964 +
        "mean": 139.3,
1965 +
        "std": 83.2,
1966 +
        "min": 91.2,
1967 +
        "max": 263.9,
1968 +
        "count": 4
1969 +
      },
1970 +
      "pressRelease": {
1971 +
        "mean": 224.6,
1972 +
        "std": 84.6,
1973 +
        "min": 174.7,
1974 +
        "max": 350.4,
1975 +
        "count": 4
1976 +
      },
1977 +
      "releasePress": {
1978 +
        "mean": 63.3,
1979 +
        "std": 83.6,
1980 +
        "min": 16.8,
1981 +
        "max": 188.5,
1982 +
        "count": 4
1983 +
      }
1984 +
    },
1985 +
    {
1986 +
      "normalizedKeys": "a → l",
1987 +
      "count": 4,
1988 +
      "holdTime1": {
1989 +
        "mean": 124.6,
1990 +
        "std": 12.1,
1991 +
        "min": 113,
1992 +
        "max": 141.5,
1993 +
        "count": 4
1994 +
      },
1995 +
      "holdTime2": {
1996 +
        "mean": 72.9,
1997 +
        "std": 21.8,
1998 +
        "min": 47.6,
1999 +
        "max": 97,
2000 +
        "count": 4
2001 +
      },
2002 +
      "pressPress": {
2003 +
        "mean": 132.9,
2004 +
        "std": 56.4,
2005 +
        "min": 71.6,
2006 +
        "max": 186.1,
2007 +
        "count": 4
2008 +
      },
2009 +
      "releaseRelease": {
2010 +
        "mean": 81.2,
2011 +
        "std": 69,
2012 +
        "min": 6.2,
2013 +
        "max": 141.6,
2014 +
        "count": 4
2015 +
      },
2016 +
      "pressRelease": {
2017 +
        "mean": 205.8,
2018 +
        "std": 77.8,
2019 +
        "min": 119.2,
2020 +
        "max": 283.1,
2021 +
        "count": 4
2022 +
      },
2023 +
      "releasePress": {
2024 +
        "mean": 8.3,
2025 +
        "std": 48.3,
2026 +
        "min": -41.4,
2027 +
        "max": 54.5,
2028 +
        "count": 4
2029 +
      }
2030 +
    },
2031 +
    {
2032 +
      "normalizedKeys": "␣ → b",
2033 +
      "count": 4,
2034 +
      "holdTime1": {
2035 +
        "mean": 64,
2036 +
        "std": 29.4,
2037 +
        "min": 32.5,
2038 +
        "max": 91.4,
2039 +
        "count": 4
2040 +
      },
2041 +
      "holdTime2": {
2042 +
        "mean": 84.2,
2043 +
        "std": 13.7,
2044 +
        "min": 70.9,
2045 +
        "max": 99.8,
2046 +
        "count": 4
2047 +
      },
2048 +
      "pressPress": {
2049 +
        "mean": 172.8,
2050 +
        "std": 139.5,
2051 +
        "min": 29,
2052 +
        "max": 359.2,
2053 +
        "count": 4
2054 +
      },
2055 +
      "releaseRelease": {
2056 +
        "mean": 193,
2057 +
        "std": 111.8,
2058 +
        "min": 75,
2059 +
        "max": 342.5,
2060 +
        "count": 4
2061 +
      },
2062 +
      "pressRelease": {
2063 +
        "mean": 257,
2064 +
        "std": 135.5,
2065 +
        "min": 120.5,
2066 +
        "max": 433.9,
2067 +
        "count": 4
2068 +
      },
2069 +
      "releasePress": {
2070 +
        "mean": 108.8,
2071 +
        "std": 117.8,
2072 +
        "min": -16.5,
2073 +
        "max": 267.8,
2074 +
        "count": 4
2075 +
      }
2076 +
    },
2077 +
    {
2078 +
      "normalizedKeys": "␣ → f",
2079 +
      "count": 4,
2080 +
      "holdTime1": {
2081 +
        "mean": 78.9,
2082 +
        "std": 11.2,
2083 +
        "min": 63.9,
2084 +
        "max": 90.6,
2085 +
        "count": 4
2086 +
      },
2087 +
      "holdTime2": {
2088 +
        "mean": 85.5,
2089 +
        "std": 21.2,
2090 +
        "min": 66.2,
2091 +
        "max": 115.7,
2092 +
        "count": 4
2093 +
      },
2094 +
      "pressPress": {
2095 +
        "mean": 369.8,
2096 +
        "std": 149.6,
2097 +
        "min": 234,
2098 +
        "max": 549.6,
2099 +
        "count": 4
2100 +
      },
2101 +
      "releaseRelease": {
2102 +
        "mean": 376.4,
2103 +
        "std": 126.9,
2104 +
        "min": 267,
2105 +
        "max": 525.2,
2106 +
        "count": 4
2107 +
      },
2108 +
      "pressRelease": {
2109 +
        "mean": 455.3,
2110 +
        "std": 134.6,
2111 +
        "min": 338.6,
2112 +
        "max": 615.8,
2113 +
        "count": 4
2114 +
      },
2115 +
      "releasePress": {
2116 +
        "mean": 290.9,
2117 +
        "std": 142.8,
2118 +
        "min": 151.3,
2119 +
        "max": 459,
2120 +
        "count": 4
2121 +
      }
2122 +
    },
2123 +
    {
2124 +
      "normalizedKeys": "␣ → o",
2125 +
      "count": 4,
2126 +
      "holdTime1": {
2127 +
        "mean": 89.4,
2128 +
        "std": 17.3,
2129 +
        "min": 66.3,
2130 +
        "max": 108.2,
2131 +
        "count": 4
2132 +
      },
2133 +
      "holdTime2": {
2134 +
        "mean": 99.4,
2135 +
        "std": 24.2,
2136 +
        "min": 81.1,
2137 +
        "max": 133.5,
2138 +
        "count": 4
2139 +
      },
2140 +
      "pressPress": {
2141 +
        "mean": 161,
2142 +
        "std": 81.3,
2143 +
        "min": 68.6,
2144 +
        "max": 266.6,
2145 +
        "count": 4
2146 +
      },
2147 +
      "releaseRelease": {
2148 +
        "mean": 171.1,
2149 +
        "std": 96.4,
2150 +
        "min": 83.4,
2151 +
        "max": 308.6,
2152 +
        "count": 4
2153 +
      },
2154 +
      "pressRelease": {
2155 +
        "mean": 260.4,
2156 +
        "std": 104.1,
2157 +
        "min": 149.7,
2158 +
        "max": 400.1,
2159 +
        "count": 4
2160 +
      },
2161 +
      "releasePress": {
2162 +
        "mean": 71.6,
2163 +
        "std": 73.3,
2164 +
        "min": 2.3,
2165 +
        "max": 175.1,
2166 +
        "count": 4
2167 +
      }
2168 +
    },
2169 +
    {
2170 +
      "normalizedKeys": "o → ␣",
2171 +
      "count": 4,
2172 +
      "holdTime1": {
2173 +
        "mean": 106.7,
2174 +
        "std": 28.2,
2175 +
        "min": 70.9,
2176 +
        "max": 139.8,
2177 +
        "count": 4
2178 +
      },
2179 +
      "holdTime2": {
2180 +
        "mean": 67.6,
2181 +
        "std": 32.4,
2182 +
        "min": 20.6,
2183 +
        "max": 94.7,
2184 +
        "count": 4
2185 +
      },
2186 +
      "pressPress": {
2187 +
        "mean": 117.5,
2188 +
        "std": 53.5,
2189 +
        "min": 50,
2190 +
        "max": 161.6,
2191 +
        "count": 4
2192 +
      },
2193 +
      "releaseRelease": {
2194 +
        "mean": 78.4,
2195 +
        "std": 43.1,
2196 +
        "min": 36.5,
2197 +
        "max": 128.1,
2198 +
        "count": 4
2199 +
      },
2200 +
      "pressRelease": {
2201 +
        "mean": 185.1,
2202 +
        "std": 62,
2203 +
        "min": 119.7,
2204 +
        "max": 240.1,
2205 +
        "count": 4
2206 +
      },
2207 +
      "releasePress": {
2208 +
        "mean": 10.9,
2209 +
        "std": 47.8,
2210 +
        "min": -58.2,
2211 +
        "max": 51.6,
2212 +
        "count": 4
2213 +
      }
2214 +
    },
2215 +
    {
2216 +
      "normalizedKeys": "h → o",
2217 +
      "count": 4,
2218 +
      "holdTime1": {
2219 +
        "mean": 73.5,
2220 +
        "std": 19,
2221 +
        "min": 49.8,
2222 +
        "max": 91.2,
2223 +
        "count": 4
2224 +
      },
2225 +
      "holdTime2": {
2226 +
        "mean": 85.3,
2227 +
        "std": 8.1,
2228 +
        "min": 74.6,
2229 +
        "max": 91.8,
2230 +
        "count": 4
2231 +
      },
2232 +
      "pressPress": {
2233 +
        "mean": 150.7,
2234 +
        "std": 23.2,
2235 +
        "min": 116.7,
2236 +
        "max": 169.1,
2237 +
        "count": 4
2238 +
      },
2239 +
      "releaseRelease": {
2240 +
        "mean": 162.5,
2241 +
        "std": 15.7,
2242 +
        "min": 141.8,
2243 +
        "max": 175.3,
2244 +
        "count": 4
2245 +
      },
2246 +
      "pressRelease": {
2247 +
        "mean": 236,
2248 +
        "std": 21.6,
2249 +
        "min": 208.5,
2250 +
        "max": 260.4,
2251 +
        "count": 4
2252 +
      },
2253 +
      "releasePress": {
2254 +
        "mean": 77.2,
2255 +
        "std": 12.3,
2256 +
        "min": 66.9,
2257 +
        "max": 91.9,
2258 +
        "count": 4
2259 +
      }
2260 +
    },
2261 +
    {
2262 +
      "normalizedKeys": "t → l",
2263 +
      "count": 3,
2264 +
      "holdTime1": {
2265 +
        "mean": 78.8,
2266 +
        "std": 8.1,
2267 +
        "min": 70.4,
2268 +
        "max": 86.5,
2269 +
        "count": 3
2270 +
      },
2271 +
      "holdTime2": {
2272 +
        "mean": 62.9,
2273 +
        "std": 20.9,
2274 +
        "min": 41.5,
2275 +
        "max": 83.2,
2276 +
        "count": 3
2277 +
      },
2278 +
      "pressPress": {
2279 +
        "mean": 134,
2280 +
        "std": 65.2,
2281 +
        "min": 62.9,
2282 +
        "max": 191.1,
2283 +
        "count": 3
2284 +
      },
2285 +
      "releaseRelease": {
2286 +
        "mean": 118.1,
2287 +
        "std": 44.6,
2288 +
        "min": 66.7,
2289 +
        "max": 146.1,
2290 +
        "count": 3
2291 +
      },
2292 +
      "pressRelease": {
2293 +
        "mean": 196.9,
2294 +
        "std": 45.2,
2295 +
        "min": 146.1,
2296 +
        "max": 232.6,
2297 +
        "count": 3
2298 +
      },
2299 +
      "releasePress": {
2300 +
        "mean": 55.2,
2301 +
        "std": 63.6,
2302 +
        "min": -16.5,
2303 +
        "max": 104.6,
2304 +
        "count": 3
2305 +
      }
2306 +
    },
2307 +
    {
2308 +
      "normalizedKeys": "␣ → l",
2309 +
      "count": 3,
2310 +
      "holdTime1": {
2311 +
        "mean": 88.4,
2312 +
        "std": 24.4,
2313 +
        "min": 73.9,
2314 +
        "max": 116.6,
2315 +
        "count": 3
2316 +
      },
2317 +
      "holdTime2": {
2318 +
        "mean": 90.8,
2319 +
        "std": 22.5,
2320 +
        "min": 74.9,
2321 +
        "max": 116.5,
2322 +
        "count": 3
2323 +
      },
2324 +
      "pressPress": {
2325 +
        "mean": 181.2,
2326 +
        "std": 249.9,
2327 +
        "min": 24.2,
2328 +
        "max": 469.3,
2329 +
        "count": 3
2330 +
      },
2331 +
      "releaseRelease": {
2332 +
        "mean": 183.5,
2333 +
        "std": 216.8,
2334 +
        "min": 50.1,
2335 +
        "max": 433.7,
2336 +
        "count": 3
2337 +
      },
2338 +
      "pressRelease": {
2339 +
        "mean": 272,
2340 +
        "std": 241.2,
2341 +
        "min": 124.9,
2342 +
        "max": 550.3,
2343 +
        "count": 3
2344 +
      },
2345 +
      "releasePress": {
2346 +
        "mean": 92.7,
2347 +
        "std": 225.5,
2348 +
        "min": -49.7,
2349 +
        "max": 352.7,
2350 +
        "count": 3
2351 +
      }
2352 +
    },
2353 +
    {
2354 +
      "normalizedKeys": "s → .",
2355 +
      "count": 3,
2356 +
      "holdTime1": {
2357 +
        "mean": 141.9,
2358 +
        "std": 57.9,
2359 +
        "min": 75.7,
2360 +
        "max": 183.4,
2361 +
        "count": 3
2362 +
      },
2363 +
      "holdTime2": {
2364 +
        "mean": 69.8,
2365 +
        "std": 11.4,
2366 +
        "min": 57.3,
2367 +
        "max": 79.7,
2368 +
        "count": 3
2369 +
      },
2370 +
      "pressPress": {
2371 +
        "mean": 258,
2372 +
        "std": 81.2,
2373 +
        "min": 197.2,
2374 +
        "max": 350.2,
2375 +
        "count": 3
2376 +
      },
2377 +
      "releaseRelease": {
2378 +
        "mean": 185.9,
2379 +
        "std": 83.5,
2380 +
        "min": 93.5,
2381 +
        "max": 256,
2382 +
        "count": 3
2383 +
      },
2384 +
      "pressRelease": {
2385 +
        "mean": 327.8,
2386 +
        "std": 82.2,
2387 +
        "min": 276.9,
2388 +
        "max": 422.6,
2389 +
        "count": 3
2390 +
      },
2391 +
      "releasePress": {
2392 +
        "mean": 116.1,
2393 +
        "std": 90.1,
2394 +
        "min": 13.8,
2395 +
        "max": 183.6,
2396 +
        "count": 3
2397 +
      }
2398 +
    },
2399 +
    {
2400 +
      "normalizedKeys": "o → n",
2401 +
      "count": 3,
2402 +
      "holdTime1": {
2403 +
        "mean": 75.5,
2404 +
        "std": 2.9,
2405 +
        "min": 72.1,
2406 +
        "max": 77.3,
2407 +
        "count": 3
2408 +
      },
2409 +
      "holdTime2": {
2410 +
        "mean": 86.1,
2411 +
        "std": 4.9,
2412 +
        "min": 83.2,
2413 +
        "max": 91.7,
2414 +
        "count": 3
2415 +
      },
2416 +
      "pressPress": {
2417 +
        "mean": 152.1,
2418 +
        "std": 12.4,
2419 +
        "min": 144.3,
2420 +
        "max": 166.4,
2421 +
        "count": 3
2422 +
      },
2423 +
      "releaseRelease": {
2424 +
        "mean": 162.6,
2425 +
        "std": 8.7,
2426 +
        "min": 156.6,
2427 +
        "max": 172.6,
2428 +
        "count": 3
2429 +
      },
2430 +
      "pressRelease": {
2431 +
        "mean": 238.1,
2432 +
        "std": 10.7,
2433 +
        "min": 228.7,
2434 +
        "max": 249.7,
2435 +
        "count": 3
2436 +
      },
2437 +
      "releasePress": {
2438 +
        "mean": 76.6,
2439 +
        "std": 11.5,
2440 +
        "min": 67,
2441 +
        "max": 89.3,
2442 +
        "count": 3
2443 +
      }
2444 +
    },
2445 +
    {
2446 +
      "normalizedKeys": "n → s",
2447 +
      "count": 3,
2448 +
      "holdTime1": {
2449 +
        "mean": 122.6,
2450 +
        "std": 34.1,
2451 +
        "min": 83.3,
2452 +
        "max": 143.9,
2453 +
        "count": 3
2454 +
      },
2455 +
      "holdTime2": {
2456 +
        "mean": 106.1,
2457 +
        "std": 17.6,
2458 +
        "min": 87.5,
2459 +
        "max": 122.4,
2460 +
        "count": 3
2461 +
      },
2462 +
      "pressPress": {
2463 +
        "mean": 114.9,
2464 +
        "std": 34.8,
2465 +
        "min": 75.5,
2466 +
        "max": 141.5,
2467 +
        "count": 3
2468 +
      },
2469 +
      "releaseRelease": {
2470 +
        "mean": 98.3,
2471 +
        "std": 72.5,
2472 +
        "min": 22.3,
2473 +
        "max": 166.7,
2474 +
        "count": 3
2475 +
      },
2476 +
      "pressRelease": {
2477 +
        "mean": 220.9,
2478 +
        "std": 50.2,
2479 +
        "min": 163,
2480 +
        "max": 250,
2481 +
        "count": 3
2482 +
      },
2483 +
      "releasePress": {
2484 +
        "mean": -7.8,
2485 +
        "std": 54.9,
2486 +
        "min": -65.2,
2487 +
        "max": 44.3,
2488 +
        "count": 3
2489 +
      }
2490 +
    },
2491 +
    {
2492 +
      "normalizedKeys": "r → e",
2493 +
      "count": 3,
2494 +
      "holdTime1": {
2495 +
        "mean": 138.7,
2496 +
        "std": 26.6,
2497 +
        "min": 108.3,
2498 +
        "max": 158,
2499 +
        "count": 3
2500 +
      },
2501 +
      "holdTime2": {
2502 +
        "mean": 130.1,
2503 +
        "std": 31.7,
2504 +
        "min": 105.2,
2505 +
        "max": 165.8,
2506 +
        "count": 3
2507 +
      },
2508 +
      "pressPress": {
2509 +
        "mean": 106.9,
2510 +
        "std": 24.1,
2511 +
        "min": 86.4,
2512 +
        "max": 133.4,
2513 +
        "count": 3
2514 +
      },
2515 +
      "releaseRelease": {
2516 +
        "mean": 98.3,
2517 +
        "std": 13.3,
2518 +
        "min": 83.3,
2519 +
        "max": 108.8,
2520 +
        "count": 3
2521 +
      },
2522 +
      "pressRelease": {
2523 +
        "mean": 237,
2524 +
        "std": 40,
2525 +
        "min": 191.6,
2526 +
        "max": 266.8,
2527 +
        "count": 3
2528 +
      },
2529 +
      "releasePress": {
2530 +
        "mean": -31.8,
2531 +
        "std": 22,
2532 +
        "min": -57,
2533 +
        "max": -16.4,
2534 +
        "count": 3
2535 +
      }
2536 +
    },
2537 +
    {
2538 +
      "normalizedKeys": "l → l",
2539 +
      "count": 3,
2540 +
      "holdTime1": {
2541 +
        "mean": 56.5,
2542 +
        "std": 8.1,
2543 +
        "min": 47.6,
2544 +
        "max": 63.5,
2545 +
        "count": 3
2546 +
      },
2547 +
      "holdTime2": {
2548 +
        "mean": 84.1,
2549 +
        "std": 8.7,
2550 +
        "min": 74.4,
2551 +
        "max": 91.3,
2552 +
        "count": 3
2553 +
      },
2554 +
      "pressPress": {
2555 +
        "mean": 122.4,
2556 +
        "std": 12.8,
2557 +
        "min": 108.3,
2558 +
        "max": 133.3,
2559 +
        "count": 3
2560 +
      },
2561 +
      "releaseRelease": {
2562 +
        "mean": 150,
2563 +
        "std": 10,
2564 +
        "min": 141.7,
2565 +
        "max": 161.1,
2566 +
        "count": 3
2567 +
      },
2568 +
      "pressRelease": {
2569 +
        "mean": 206.5,
2570 +
        "std": 15.9,
2571 +
        "min": 194.8,
2572 +
        "max": 224.6,
2573 +
        "count": 3
2574 +
      },
2575 +
      "releasePress": {
2576 +
        "mean": 65.9,
2577 +
        "std": 4.7,
2578 +
        "min": 60.7,
2579 +
        "max": 69.8,
2580 +
        "count": 3
2581 +
      }
2582 +
    },
2583 +
    {
2584 +
      "normalizedKeys": "␣ → c",
2585 +
      "count": 3,
2586 +
      "holdTime1": {
2587 +
        "mean": 72.8,
2588 +
        "std": 20.4,
2589 +
        "min": 56.3,
2590 +
        "max": 95.6,
2591 +
        "count": 3
2592 +
      },
2593 +
      "holdTime2": {
2594 +
        "mean": 91.6,
2595 +
        "std": 8.1,
2596 +
        "min": 83.8,
2597 +
        "max": 100,
2598 +
        "count": 3
2599 +
      },
2600 +
      "pressPress": {
2601 +
        "mean": 210.6,
2602 +
        "std": 54.7,
2603 +
        "min": 148.1,
2604 +
        "max": 249.9,
2605 +
        "count": 3
2606 +
      },
2607 +
      "releaseRelease": {
2608 +
        "mean": 229.4,
2609 +
        "std": 54,
2610 +
        "min": 175.6,
2611 +
        "max": 283.5,
2612 +
        "count": 3
2613 +
      },
2614 +
      "pressRelease": {
2615 +
        "mean": 302.2,
2616 +
        "std": 62.2,
2617 +
        "min": 231.9,
2618 +
        "max": 349.9,
2619 +
        "count": 3
2620 +
      },
2621 +
      "releasePress": {
2622 +
        "mean": 137.9,
2623 +
        "std": 45.9,
2624 +
        "min": 91.8,
2625 +
        "max": 183.5,
2626 +
        "count": 3
2627 +
      }
2628 +
    },
2629 +
    {
2630 +
      "normalizedKeys": "u → s",
2631 +
      "count": 3,
2632 +
      "holdTime1": {
2633 +
        "mean": 74.9,
2634 +
        "std": 26.4,
2635 +
        "min": 48.4,
2636 +
        "max": 101.2,
2637 +
        "count": 3
2638 +
      },
2639 +
      "holdTime2": {
2640 +
        "mean": 84.5,
2641 +
        "std": 28.2,
2642 +
        "min": 62.5,
2643 +
        "max": 116.2,
2644 +
        "count": 3
2645 +
      },
2646 +
      "pressPress": {
2647 +
        "mean": 102.5,
2648 +
        "std": 1.9,
2649 +
        "min": 100.3,
2650 +
        "max": 103.6,
2651 +
        "count": 3
2652 +
      },
2653 +
      "releaseRelease": {
2654 +
        "mean": 112,
2655 +
        "std": 19.7,
2656 +
        "min": 90.9,
2657 +
        "max": 129.9,
2658 +
        "count": 3
2659 +
      },
2660 +
      "pressRelease": {
2661 +
        "mean": 186.9,
2662 +
        "std": 26.3,
2663 +
        "min": 166,
2664 +
        "max": 216.5,
2665 +
        "count": 3
2666 +
      },
2667 +
      "releasePress": {
2668 +
        "mean": 27.6,
2669 +
        "std": 28.1,
2670 +
        "min": -0.9,
2671 +
        "max": 55.2,
2672 +
        "count": 3
2673 +
      }
2674 +
    },
2675 +
    {
2676 +
      "normalizedKeys": "h → ␣",
2677 +
      "count": 3,
2678 +
      "holdTime1": {
2679 +
        "mean": 67.9,
2680 +
        "std": 31.1,
2681 +
        "min": 37.6,
2682 +
        "max": 99.8,
2683 +
        "count": 3
2684 +
      },
2685 +
      "holdTime2": {
2686 +
        "mean": 89,
2687 +
        "std": 3.3,
2688 +
        "min": 85.2,
2689 +
        "max": 91.2,
2690 +
        "count": 3
2691 +
      },
2692 +
      "pressPress": {
2693 +
        "mean": 76.2,
2694 +
        "std": 43.1,
2695 +
        "min": 44.2,
2696 +
        "max": 125.2,
2697 +
        "count": 3
2698 +
      },
2699 +
      "releaseRelease": {
2700 +
        "mean": 97.3,
2701 +
        "std": 17.2,
2702 +
        "min": 83.5,
2703 +
        "max": 116.6,
2704 +
        "count": 3
2705 +
      },
2706 +
      "pressRelease": {
2707 +
        "mean": 165.2,
2708 +
        "std": 45.5,
2709 +
        "min": 129.4,
2710 +
        "max": 216.4,
2711 +
        "count": 3
2712 +
      },
2713 +
      "releasePress": {
2714 +
        "mean": 8.3,
2715 +
        "std": 16.3,
2716 +
        "min": -7.1,
2717 +
        "max": 25.4,
2718 +
        "count": 3
2719 +
      }
2720 +
    },
2721 +
    {
2722 +
      "normalizedKeys": "e → r",
2723 +
      "count": 3,
2724 +
      "holdTime1": {
2725 +
        "mean": 161.1,
2726 +
        "std": 40.6,
2727 +
        "min": 115.9,
2728 +
        "max": 194.7,
2729 +
        "count": 3
2730 +
      },
2731 +
      "holdTime2": {
2732 +
        "mean": 121.9,
2733 +
        "std": 25.5,
2734 +
        "min": 99.9,
2735 +
        "max": 149.8,
2736 +
        "count": 3
2737 +
      },
2738 +
      "pressPress": {
2739 +
        "mean": 122.2,
2740 +
        "std": 50.2,
2741 +
        "min": 75.1,
2742 +
        "max": 175,
2743 +
        "count": 3
2744 +
      },
2745 +
      "releaseRelease": {
2746 +
        "mean": 83,
2747 +
        "std": 43.7,
2748 +
        "min": 43.8,
2749 +
        "max": 130.1,
2750 +
        "count": 3
2751 +
      },
2752 +
      "pressRelease": {
2753 +
        "mean": 244.1,
2754 +
        "std": 71,
2755 +
        "min": 191.1,
2756 +
        "max": 324.8,
2757 +
        "count": 3
2758 +
      },
2759 +
      "releasePress": {
2760 +
        "mean": -38.9,
2761 +
        "std": 18.3,
2762 +
        "min": -56.1,
2763 +
        "max": -19.7,
2764 +
        "count": 3
2765 +
      }
2766 +
    },
2767 +
    {
2768 +
      "normalizedKeys": "u → t",
2769 +
      "count": 3,
2770 +
      "holdTime1": {
2771 +
        "mean": 69.7,
2772 +
        "std": 34,
2773 +
        "min": 30.5,
2774 +
        "max": 91.1,
2775 +
        "count": 3
2776 +
      },
2777 +
      "holdTime2": {
2778 +
        "mean": 67.6,
2779 +
        "std": 28.3,
2780 +
        "min": 36.4,
2781 +
        "max": 91.5,
2782 +
        "count": 3
2783 +
      },
2784 +
      "pressPress": {
2785 +
        "mean": 114.5,
2786 +
        "std": 15,
2787 +
        "min": 97.3,
2788 +
        "max": 124.8,
2789 +
        "count": 3
2790 +
      },
2791 +
      "releaseRelease": {
2792 +
        "mean": 112.3,
2793 +
        "std": 37.4,
2794 +
        "min": 70.2,
2795 +
        "max": 141.6,
2796 +
        "count": 3
2797 +
      },
2798 +
      "pressRelease": {
2799 +
        "mean": 182,
2800 +
        "std": 30.5,
2801 +
        "min": 157.7,
2802 +
        "max": 216.3,
2803 +
        "count": 3
2804 +
      },
2805 +
      "releasePress": {
2806 +
        "mean": 44.8,
2807 +
        "std": 19.1,
2808 +
        "min": 33.7,
2809 +
        "max": 66.8,
2810 +
        "count": 3
2811 +
      }
2812 +
    },
2813 +
    {
2814 +
      "normalizedKeys": "t → a",
2815 +
      "count": 3,
2816 +
      "holdTime1": {
2817 +
        "mean": 77.8,
2818 +
        "std": 20.2,
2819 +
        "min": 59.4,
2820 +
        "max": 99.4,
2821 +
        "count": 3
2822 +
      },
2823 +
      "holdTime2": {
2824 +
        "mean": 139.5,
2825 +
        "std": 14.3,
2826 +
        "min": 123.3,
2827 +
        "max": 150,
2828 +
        "count": 3
2829 +
      },
2830 +
      "pressPress": {
2831 +
        "mean": 118.9,
2832 +
        "std": 34.2,
2833 +
        "min": 94.4,
2834 +
        "max": 158,
2835 +
        "count": 3
2836 +
      },
2837 +
      "releaseRelease": {
2838 +
        "mean": 180.6,
2839 +
        "std": 25.6,
2840 +
        "min": 158.3,
2841 +
        "max": 208.6,
2842 +
        "count": 3
2843 +
      },
2844 +
      "pressRelease": {
2845 +
        "mean": 258.4,
2846 +
        "std": 45.8,
2847 +
        "min": 217.7,
2848 +
        "max": 308,
2849 +
        "count": 3
2850 +
      },
2851 +
      "releasePress": {
2852 +
        "mean": 41.1,
2853 +
        "std": 15.4,
2854 +
        "min": 29.6,
2855 +
        "max": 58.6,
2856 +
        "count": 3
2857 +
      }
2858 +
    },
2859 +
    {
2860 +
      "normalizedKeys": "k → s",
2861 +
      "count": 3,
2862 +
      "holdTime1": {
2863 +
        "mean": 93.8,
2864 +
        "std": 13.2,
2865 +
        "min": 82,
2866 +
        "max": 108,
2867 +
        "count": 3
2868 +
      },
2869 +
      "holdTime2": {
2870 +
        "mean": 115.6,
2871 +
        "std": 12.1,
2872 +
        "min": 108.5,
2873 +
        "max": 129.5,
2874 +
        "count": 3
2875 +
      },
2876 +
      "pressPress": {
2877 +
        "mean": 121.8,
2878 +
        "std": 2.3,
2879 +
        "min": 120.3,
2880 +
        "max": 124.5,
2881 +
        "count": 3
2882 +
      },
2883 +
      "releaseRelease": {
2884 +
        "mean": 143.6,
2885 +
        "std": 3.1,
2886 +
        "min": 141.7,
2887 +
        "max": 147.2,
2888 +
        "count": 3
2889 +
      },
2890 +
      "pressRelease": {
2891 +
        "mean": 237.4,
2892 +
        "std": 10.9,
2893 +
        "min": 229.2,
2894 +
        "max": 249.8,
2895 +
        "count": 3
2896 +
      },
2897 +
      "releasePress": {
2898 +
        "mean": 28,
2899 +
        "std": 13.9,
2900 +
        "min": 12.3,
2901 +
        "max": 38.7,
2902 +
        "count": 3
2903 +
      }
2904 +
    },
2905 +
    {
2906 +
      "normalizedKeys": "r → k",
2907 +
      "count": 3,
2908 +
      "holdTime1": {
2909 +
        "mean": 86.5,
2910 +
        "std": 15.7,
2911 +
        "min": 70.5,
2912 +
        "max": 101.8,
2913 +
        "count": 3
2914 +
      },
2915 +
      "holdTime2": {
2916 +
        "mean": 83.8,
2917 +
        "std": 7,
2918 +
        "min": 77.8,
2919 +
        "max": 91.5,
2920 +
        "count": 3
2921 +
      },
2922 +
      "pressPress": {
2923 +
        "mean": 116.5,
2924 +
        "std": 43.7,
2925 +
        "min": 86.7,
2926 +
        "max": 166.7,
2927 +
        "count": 3
2928 +
      },
2929 +
      "releaseRelease": {
2930 +
        "mean": 113.7,
2931 +
        "std": 40,
2932 +
        "min": 77.2,
2933 +
        "max": 156.4,
2934 +
        "count": 3
2935 +
      },
2936 +
      "pressRelease": {
2937 +
        "mean": 200.3,
2938 +
        "std": 50.6,
2939 +
        "min": 164.5,
2940 +
        "max": 258.2,
2941 +
        "count": 3
2942 +
      },
2943 +
      "releasePress": {
2944 +
        "mean": 30,
2945 +
        "std": 33,
2946 +
        "min": -0.6,
2947 +
        "max": 64.9,
2948 +
        "count": 3
2949 +
      }
2950 +
    },
2951 +
    {
2952 +
      "normalizedKeys": "e → d",
2953 +
      "count": 3,
2954 +
      "holdTime1": {
2955 +
        "mean": 93.4,
2956 +
        "std": 2.2,
2957 +
        "min": 91.6,
2958 +
        "max": 95.8,
2959 +
        "count": 3
2960 +
      },
2961 +
      "holdTime2": {
2962 +
        "mean": 101.6,
2963 +
        "std": 1.8,
2964 +
        "min": 99.6,
2965 +
        "max": 103.2,
2966 +
        "count": 3
2967 +
      },
2968 +
      "pressPress": {
2969 +
        "mean": 192.4,
2970 +
        "std": 17.7,
2971 +
        "min": 180.9,
2972 +
        "max": 212.8,
2973 +
        "count": 3
2974 +
      },
2975 +
      "releaseRelease": {
2976 +
        "mean": 200.6,
2977 +
        "std": 19.8,
2978 +
        "min": 187.1,
2979 +
        "max": 223.3,
2980 +
        "count": 3
2981 +
      },
2982 +
      "pressRelease": {
2983 +
        "mean": 294,
2984 +
        "std": 19.1,
2985 +
        "min": 282.9,
2986 +
        "max": 316,
2987 +
        "count": 3
2988 +
      },
2989 +
      "releasePress": {
2990 +
        "mean": 99,
2991 +
        "std": 18.6,
2992 +
        "min": 85.1,
2993 +
        "max": 120.1,
2994 +
        "count": 3
2995 +
      }
2996 +
    },
2997 +
    {
2998 +
      "normalizedKeys": "e → e",
2999 +
      "count": 3,
3000 +
      "holdTime1": {
3001 +
        "mean": 86.3,
3002 +
        "std": 9.9,
3003 +
        "min": 75.3,
3004 +
        "max": 94.4,
3005 +
        "count": 3
3006 +
      },
3007 +
      "holdTime2": {
3008 +
        "mean": 93.4,
3009 +
        "std": 2.2,
3010 +
        "min": 91.6,
3011 +
        "max": 95.8,
3012 +
        "count": 3
3013 +
      },
3014 +
      "pressPress": {
3015 +
        "mean": 162.9,
3016 +
        "std": 14.5,
3017 +
        "min": 146.3,
3018 +
        "max": 172.6,
3019 +
        "count": 3
3020 +
      },
3021 +
      "releaseRelease": {
3022 +
        "mean": 170,
3023 +
        "std": 5.8,
3024 +
        "min": 163.7,
3025 +
        "max": 175.1,
3026 +
        "count": 3
3027 +
      },
3028 +
      "pressRelease": {
3029 +
        "mean": 256.3,
3030 +
        "std": 15,
3031 +
        "min": 239,
3032 +
        "max": 265.7,
3033 +
        "count": 3
3034 +
      },
3035 +
      "releasePress": {
3036 +
        "mean": 76.7,
3037 +
        "std": 6.3,
3038 +
        "min": 71,
3039 +
        "max": 83.5,
3040 +
        "count": 3
3041 +
      }
3042 +
    },
3043 +
    {
3044 +
      "normalizedKeys": "␣ → d",
3045 +
      "count": 3,
3046 +
      "holdTime1": {
3047 +
        "mean": 97.5,
3048 +
        "std": 17,
3049 +
        "min": 82.9,
3050 +
        "max": 116.2,
3051 +
        "count": 3
3052 +
      },
3053 +
      "holdTime2": {
3054 +
        "mean": 98.5,
3055 +
        "std": 19.8,
3056 +
        "min": 83,
3057 +
        "max": 120.8,
3058 +
        "count": 3
3059 +
      },
3060 +
      "pressPress": {
3061 +
        "mean": 185.9,
3062 +
        "std": 27,
3063 +
        "min": 166.4,
3064 +
        "max": 216.7,
3065 +
        "count": 3
3066 +
      },
3067 +
      "releaseRelease": {
3068 +
        "mean": 186.9,
3069 +
        "std": 33.9,
3070 +
        "min": 150.1,
3071 +
        "max": 216.8,
3072 +
        "count": 3
3073 +
      },
3074 +
      "pressRelease": {
3075 +
        "mean": 284.4,
3076 +
        "std": 16.9,
3077 +
        "min": 266.3,
3078 +
        "max": 299.7,
3079 +
        "count": 3
3080 +
      },
3081 +
      "releasePress": {
3082 +
        "mean": 88.4,
3083 +
        "std": 40,
3084 +
        "min": 58.5,
3085 +
        "max": 133.8,
3086 +
        "count": 3
3087 +
      }
3088 +
    },
3089 +
    {
3090 +
      "normalizedKeys": "e → s",
3091 +
      "count": 3,
3092 +
      "holdTime1": {
3093 +
        "mean": 140.6,
3094 +
        "std": 28.9,
3095 +
        "min": 108.9,
3096 +
        "max": 165.5,
3097 +
        "count": 3
3098 +
      },
3099 +
      "holdTime2": {
3100 +
        "mean": 163.8,
3101 +
        "std": 21.2,
3102 +
        "min": 141.3,
3103 +
        "max": 183.4,
3104 +
        "count": 3
3105 +
      },
3106 +
      "pressPress": {
3107 +
        "mean": 146.1,
3108 +
        "std": 63.5,
3109 +
        "min": 91.4,
3110 +
        "max": 215.7,
3111 +
        "count": 3
3112 +
      },
3113 +
      "releaseRelease": {
3114 +
        "mean": 169.3,
3115 +
        "std": 45.9,
3116 +
        "min": 125.1,
3117 +
        "max": 216.8,
3118 +
        "count": 3
3119 +
      },
3120 +
      "pressRelease": {
3121 +
        "mean": 309.8,
3122 +
        "std": 62.8,
3123 +
        "min": 272.4,
3124 +
        "max": 382.3,
3125 +
        "count": 3
3126 +
      },
3127 +
      "releasePress": {
3128 +
        "mean": 5.5,
3129 +
        "std": 38.7,
3130 +
        "min": -17.5,
3131 +
        "max": 50.2,
3132 +
        "count": 3
3133 +
      }
3134 +
    },
3135 +
    {
3136 +
      "normalizedKeys": "l → ⌫",
3137 +
      "count": 3,
3138 +
      "holdTime1": {
3139 +
        "mean": 74.8,
3140 +
        "std": 31.8,
3141 +
        "min": 50.8,
3142 +
        "max": 110.9,
3143 +
        "count": 3
3144 +
      },
3145 +
      "holdTime2": {
3146 +
        "mean": 71.5,
3147 +
        "std": 33.8,
3148 +
        "min": 41.4,
3149 +
        "max": 108.1,
3150 +
        "count": 3
3151 +
      },
3152 +
      "pressPress": {
3153 +
        "mean": 510.9,
3154 +
        "std": 172.4,
3155 +
        "min": 349,
3156 +
        "max": 692.1,
3157 +
        "count": 3
3158 +
      },
3159 +
      "releaseRelease": {
3160 +
        "mean": 507.6,
3161 +
        "std": 235.2,
3162 +
        "min": 279.5,
3163 +
        "max": 749.4,
3164 +
        "count": 3
3165 +
      },
3166 +
      "pressRelease": {
3167 +
        "mean": 582.4,
3168 +
        "std": 206.1,
3169 +
        "min": 390.4,
3170 +
        "max": 800.2,
3171 +
        "count": 3
3172 +
      },
3173 +
      "releasePress": {
3174 +
        "mean": 436.1,
3175 +
        "std": 201.7,
3176 +
        "min": 238.1,
3177 +
        "max": 641.3,
3178 +
        "count": 3
3179 +
      }
3180 +
    },
3181 +
    {
3182 +
      "normalizedKeys": "t → t",
3183 +
      "count": 2,
3184 +
      "holdTime1": {
3185 +
        "mean": 78.2,
3186 +
        "std": 4.9,
3187 +
        "min": 74.7,
3188 +
        "max": 81.6,
3189 +
        "count": 2
3190 +
      },
3191 +
      "holdTime2": {
3192 +
        "mean": 85.5,
3193 +
        "std": 8.6,
3194 +
        "min": 79.4,
3195 +
        "max": 91.6,
3196 +
        "count": 2
3197 +
      },
3198 +
      "pressPress": {
3199 +
        "mean": 163.8,
3200 +
        "std": 2.5,
3201 +
        "min": 162,
3202 +
        "max": 165.6,
3203 +
        "count": 2
3204 +
      },
3205 +
      "releaseRelease": {
3206 +
        "mean": 171.1,
3207 +
        "std": 6.3,
3208 +
        "min": 166.7,
3209 +
        "max": 175.6,
3210 +
        "count": 2
3211 +
      },
3212 +
      "pressRelease": {
3213 +
        "mean": 249.3,
3214 +
        "std": 11.2,
3215 +
        "min": 241.4,
3216 +
        "max": 257.2,
3217 +
        "count": 2
3218 +
      },
3219 +
      "releasePress": {
3220 +
        "mean": 85.7,
3221 +
        "std": 2.3,
3222 +
        "min": 84,
3223 +
        "max": 87.3,
3224 +
        "count": 2
3225 +
      }
3226 +
    },
3227 +
    {
3228 +
      "normalizedKeys": "y → ␣",
3229 +
      "count": 2,
3230 +
      "holdTime1": {
3231 +
        "mean": 76.9,
3232 +
        "std": 14.7,
3233 +
        "min": 66.5,
3234 +
        "max": 87.3,
3235 +
        "count": 2
3236 +
      },
3237 +
      "holdTime2": {
3238 +
        "mean": 99.7,
3239 +
        "std": 24,
3240 +
        "min": 82.7,
3241 +
        "max": 116.6,
3242 +
        "count": 2
3243 +
      },
3244 +
      "pressPress": {
3245 +
        "mean": 192,
3246 +
        "std": 47,
3247 +
        "min": 158.8,
3248 +
        "max": 225.2,
3249 +
        "count": 2
3250 +
      },
3251 +
      "releaseRelease": {
3252 +
        "mean": 214.8,
3253 +
        "std": 85.6,
3254 +
        "min": 154.2,
3255 +
        "max": 275.3,
3256 +
        "count": 2
3257 +
      },
3258 +
      "pressRelease": {
3259 +
        "mean": 291.7,
3260 +
        "std": 70.9,
3261 +
        "min": 241.5,
3262 +
        "max": 341.8,
3263 +
        "count": 2
3264 +
      },
3265 +
      "releasePress": {
3266 +
        "mean": 115.1,
3267 +
        "std": 61.7,
3268 +
        "min": 71.5,
3269 +
        "max": 158.7,
3270 +
        "count": 2
3271 +
      }
3272 +
    },
3273 +
    {
3274 +
      "normalizedKeys": "i → s",
3275 +
      "count": 2,
3276 +
      "holdTime1": {
3277 +
        "mean": 109.8,
3278 +
        "std": 2.8,
3279 +
        "min": 107.8,
3280 +
        "max": 111.7,
3281 +
        "count": 2
3282 +
      },
3283 +
      "holdTime2": {
3284 +
        "mean": 100.4,
3285 +
        "std": 34.9,
3286 +
        "min": 75.7,
3287 +
        "max": 125.1,
3288 +
        "count": 2
3289 +
      },
3290 +
      "pressPress": {
3291 +
        "mean": 94.9,
3292 +
        "std": 5.7,
3293 +
        "min": 90.9,
3294 +
        "max": 98.9,
3295 +
        "count": 2
3296 +
      },
3297 +
      "releaseRelease": {
3298 +
        "mean": 85.6,
3299 +
        "std": 32,
3300 +
        "min": 62.9,
3301 +
        "max": 108.2,
3302 +
        "count": 2
3303 +
      },
3304 +
      "pressRelease": {
3305 +
        "mean": 195.3,
3306 +
        "std": 29.3,
3307 +
        "min": 174.6,
3308 +
        "max": 216,
3309 +
        "count": 2
3310 +
      },
3311 +
      "releasePress": {
3312 +
        "mean": -14.8,
3313 +
        "std": 2.9,
3314 +
        "min": -16.9,
3315 +
        "max": -12.8,
3316 +
        "count": 2
3317 +
      }
3318 +
    },
3319 +
    {
3320 +
      "normalizedKeys": "k → e",
3321 +
      "count": 2,
3322 +
      "holdTime1": {
3323 +
        "mean": 87.9,
3324 +
        "std": 6.1,
3325 +
        "min": 83.6,
3326 +
        "max": 92.2,
3327 +
        "count": 2
3328 +
      },
3329 +
      "holdTime2": {
3330 +
        "mean": 98.3,
3331 +
        "std": 14.1,
3332 +
        "min": 88.3,
3333 +
        "max": 108.3,
3334 +
        "count": 2
3335 +
      },
3336 +
      "pressPress": {
3337 +
        "mean": 77.9,
3338 +
        "std": 7.6,
3339 +
        "min": 72.5,
3340 +
        "max": 83.2,
3341 +
        "count": 2
3342 +
      },
3343 +
      "releaseRelease": {
3344 +
        "mean": 88.3,
3345 +
        "std": 27.8,
3346 +
        "min": 68.6,
3347 +
        "max": 107.9,
3348 +
        "count": 2
3349 +
      },
3350 +
      "pressRelease": {
3351 +
        "mean": 176.2,
3352 +
        "std": 21.7,
3353 +
        "min": 160.8,
3354 +
        "max": 191.5,
3355 +
        "count": 2
3356 +
      },
3357 +
      "releasePress": {
3358 +
        "mean": -10,
3359 +
        "std": 13.6,
3360 +
        "min": -19.7,
3361 +
        "max": -0.4,
3362 +
        "count": 2
3363 +
      }
3364 +
    },
3365 +
    {
3366 +
      "normalizedKeys": "i → k",
3367 +
      "count": 2,
3368 +
      "holdTime1": {
3369 +
        "mean": 62.4,
3370 +
        "std": 17.6,
3371 +
        "min": 49.9,
3372 +
        "max": 74.8,
3373 +
        "count": 2
3374 +
      },
3375 +
      "holdTime2": {
3376 +
        "mean": 87.9,
3377 +
        "std": 6.1,
3378 +
        "min": 83.6,
3379 +
        "max": 92.2,
3380 +
        "count": 2
3381 +
      },
3382 +
      "pressPress": {
3383 +
        "mean": 144.6,
3384 +
        "std": 19.6,
3385 +
        "min": 130.7,
3386 +
        "max": 158.4,
3387 +
        "count": 2
3388 +
      },
3389 +
      "releaseRelease": {
3390 +
        "mean": 170.1,
3391 +
        "std": 4.1,
3392 +
        "min": 167.2,
3393 +
        "max": 173,
3394 +
        "count": 2
3395 +
      },
3396 +
      "pressRelease": {
3397 +
        "mean": 232.5,
3398 +
        "std": 13.5,
3399 +
        "min": 222.9,
3400 +
        "max": 242,
3401 +
        "count": 2
3402 +
      },
3403 +
      "releasePress": {
3404 +
        "mean": 82.2,
3405 +
        "std": 2,
3406 +
        "min": 80.8,
3407 +
        "max": 83.6,
3408 +
        "count": 2
3409 +
      }
3410 +
    },
3411 +
    {
3412 +
      "normalizedKeys": "s → ⌫",
3413 +
      "count": 2,
3414 +
      "holdTime1": {
3415 +
        "mean": 103.1,
3416 +
        "std": 33.6,
3417 +
        "min": 79.3,
3418 +
        "max": 126.8,
3419 +
        "count": 2
3420 +
      },
3421 +
      "holdTime2": {
3422 +
        "mean": 65.9,
3423 +
        "std": 24,
3424 +
        "min": 48.9,
3425 +
        "max": 82.9,
3426 +
        "count": 2
3427 +
      },
3428 +
      "pressPress": {
3429 +
        "mean": 746.6,
3430 +
        "std": 432.5,
3431 +
        "min": 440.7,
3432 +
        "max": 1052.4,
3433 +
        "count": 2
3434 +
      },
3435 +
      "releaseRelease": {
3436 +
        "mean": 709.4,
3437 +
        "std": 490.2,
3438 +
        "min": 362.8,
3439 +
        "max": 1056,
3440 +
        "count": 2
3441 +
      },
3442 +
      "pressRelease": {
3443 +
        "mean": 812.5,
3444 +
        "std": 456.6,
3445 +
        "min": 489.6,
3446 +
        "max": 1135.3,
3447 +
        "count": 2
3448 +
      },
3449 +
      "releasePress": {
3450 +
        "mean": 643.5,
3451 +
        "std": 466.1,
3452 +
        "min": 313.9,
3453 +
        "max": 973.1,
3454 +
        "count": 2
3455 +
      }
3456 +
    },
3457 +
    {
3458 +
      "normalizedKeys": "n → d",
3459 +
      "count": 2,
3460 +
      "holdTime1": {
3461 +
        "mean": 77.8,
3462 +
        "std": 22.8,
3463 +
        "min": 61.7,
3464 +
        "max": 93.9,
3465 +
        "count": 2
3466 +
      },
3467 +
      "holdTime2": {
3468 +
        "mean": 75.1,
3469 +
        "std": 24.1,
3470 +
        "min": 58,
3471 +
        "max": 92.1,
3472 +
        "count": 2
3473 +
      },
3474 +
      "pressPress": {
3475 +
        "mean": 133.5,
3476 +
        "std": 11.6,
3477 +
        "min": 125.3,
3478 +
        "max": 141.7,
3479 +
        "count": 2
3480 +
      },
3481 +
      "releaseRelease": {
3482 +
        "mean": 130.8,
3483 +
        "std": 35.3,
3484 +
        "min": 105.8,
3485 +
        "max": 155.7,
3486 +
        "count": 2
3487 +
      },
3488 +
      "pressRelease": {
3489 +
        "mean": 208.6,
3490 +
        "std": 12.5,
3491 +
        "min": 199.7,
3492 +
        "max": 217.4,
3493 +
        "count": 2
3494 +
      },
3495 +
      "releasePress": {
3496 +
        "mean": 55.7,
3497 +
        "std": 11.2,
3498 +
        "min": 47.8,
3499 +
        "max": 63.6,
3500 +
        "count": 2
3501 +
      }
3502 +
    },
3503 +
    {
3504 +
      "normalizedKeys": "e → n",
3505 +
      "count": 2,
3506 +
      "holdTime1": {
3507 +
        "mean": 94.5,
3508 +
        "std": 7.4,
3509 +
        "min": 89.3,
3510 +
        "max": 99.7,
3511 +
        "count": 2
3512 +
      },
3513 +
      "holdTime2": {
3514 +
        "mean": 78.7,
3515 +
        "std": 18,
3516 +
        "min": 65.9,
3517 +
        "max": 91.4,
3518 +
        "count": 2
3519 +
      },
3520 +
      "pressPress": {
3521 +
        "mean": 78.6,
3522 +
        "std": 18.5,
3523 +
        "min": 65.5,
3524 +
        "max": 91.7,
3525 +
        "count": 2
3526 +
      },
3527 +
      "releaseRelease": {
3528 +
        "mean": 62.8,
3529 +
        "std": 29.2,
3530 +
        "min": 42.1,
3531 +
        "max": 83.4,
3532 +
        "count": 2
3533 +
      },
3534 +
      "pressRelease": {
3535 +
        "mean": 157.3,
3536 +
        "std": 36.6,
3537 +
        "min": 131.4,
3538 +
        "max": 183.1,
3539 +
        "count": 2
3540 +
      },
3541 +
      "releasePress": {
3542 +
        "mean": -15.9,
3543 +
        "std": 11.2,
3544 +
        "min": -23.8,
3545 +
        "max": -8,
3546 +
        "count": 2
3547 +
      }
3548 +
    },
3549 +
    {
3550 +
      "normalizedKeys": "u → r",
3551 +
      "count": 2,
3552 +
      "holdTime1": {
3553 +
        "mean": 63.3,
3554 +
        "std": 26.6,
3555 +
        "min": 44.5,
3556 +
        "max": 82.1,
3557 +
        "count": 2
3558 +
      },
3559 +
      "holdTime2": {
3560 +
        "mean": 82,
3561 +
        "std": 8.8,
3562 +
        "min": 75.8,
3563 +
        "max": 88.2,
3564 +
        "count": 2
3565 +
      },
3566 +
      "pressPress": {
3567 +
        "mean": 98.2,
3568 +
        "std": 0.3,
3569 +
        "min": 98,
3570 +
        "max": 98.4,
3571 +
        "count": 2
3572 +
      },
3573 +
      "releaseRelease": {
3574 +
        "mean": 116.9,
3575 +
        "std": 35.6,
3576 +
        "min": 91.7,
3577 +
        "max": 142.1,
3578 +
        "count": 2
3579 +
      },
3580 +
      "pressRelease": {
3581 +
        "mean": 180.2,
3582 +
        "std": 9.1,
3583 +
        "min": 173.8,
3584 +
        "max": 186.6,
3585 +
        "count": 2
3586 +
      },
3587 +
      "releasePress": {
3588 +
        "mean": 34.9,
3589 +
        "std": 26.9,
3590 +
        "min": 15.9,
3591 +
        "max": 53.9,
3592 +
        "count": 2
3593 +
      }
3594 +
    },
3595 +
    {
3596 +
      "normalizedKeys": "c → a",
3597 +
      "count": 2,
3598 +
      "holdTime1": {
3599 +
        "mean": 91.9,
3600 +
        "std": 11.5,
3601 +
        "min": 83.8,
3602 +
        "max": 100,
3603 +
        "count": 2
3604 +
      },
3605 +
      "holdTime2": {
3606 +
        "mean": 135.7,
3607 +
        "std": 32,
3608 +
        "min": 113,
3609 +
        "max": 158.3,
3610 +
        "count": 2
3611 +
      },
3612 +
      "pressPress": {
3613 +
        "mean": 135.1,
3614 +
        "std": 14.2,
3615 +
        "min": 125,
3616 +
        "max": 145.1,
3617 +
        "count": 2
3618 +
      },
3619 +
      "releaseRelease": {
3620 +
        "mean": 178.8,
3621 +
        "std": 29.3,
3622 +
        "min": 158.1,
3623 +
        "max": 199.5,
3624 +
        "count": 2
3625 +
      },
3626 +
      "pressRelease": {
3627 +
        "mean": 270.7,
3628 +
        "std": 17.8,
3629 +
        "min": 258.1,
3630 +
        "max": 283.3,
3631 +
        "count": 2
3632 +
      },
3633 +
      "releasePress": {
3634 +
        "mean": 43.2,
3635 +
        "std": 2.8,
3636 +
        "min": 41.2,
3637 +
        "max": 45.1,
3638 +
        "count": 2
3639 +
      }
3640 +
    },
3641 +
    {
3642 +
      "normalizedKeys": "p → i",
3643 +
      "count": 2,
3644 +
      "holdTime1": {
3645 +
        "mean": 115.9,
3646 +
        "std": 22.3,
3647 +
        "min": 100.1,
3648 +
        "max": 131.7,
3649 +
        "count": 2
3650 +
      },
3651 +
      "holdTime2": {
3652 +
        "mean": 26319.1,
3653 +
        "std": 37116,
3654 +
        "min": 74.1,
3655 +
        "max": 52564,
3656 +
        "count": 2
3657 +
      },
3658 +
      "pressPress": {
3659 +
        "mean": -26107.5,
3660 +
        "std": 37111.1,
3661 +
        "min": -52349,
3662 +
        "max": 134,
3663 +
        "count": 2
3664 +
      },
3665 +
      "releaseRelease": {
3666 +
        "mean": 95.7,
3667 +
        "std": 17.5,
3668 +
        "min": 83.3,
3669 +
        "max": 108,
3670 +
        "count": 2
3671 +
      },
3672 +
      "pressRelease": {
3673 +
        "mean": 211.6,
3674 +
        "std": 4.9,
3675 +
        "min": 208.1,
3676 +
        "max": 215,
3677 +
        "count": 2
3678 +
      },
3679 +
      "releasePress": {
3680 +
        "mean": -26223.4,
3681 +
        "std": 37133.4,
3682 +
        "min": -52480.7,
3683 +
        "max": 33.9,
3684 +
        "count": 2
3685 +
      }
3686 +
    },
3687 +
    {
3688 +
      "normalizedKeys": "a → p",
3689 +
      "count": 2,
3690 +
      "holdTime1": {
3691 +
        "mean": 133.3,
3692 +
        "std": 11.7,
3693 +
        "min": 125,
3694 +
        "max": 141.5,
3695 +
        "count": 2
3696 +
      },
3697 +
      "holdTime2": {
3698 +
        "mean": 92.3,
3699 +
        "std": 55.8,
3700 +
        "min": 52.8,
3701 +
        "max": 131.7,
3702 +
        "count": 2
3703 +
      },
3704 +
      "pressPress": {
3705 +
        "mean": 142.6,
3706 +
        "std": 23,
3707 +
        "min": 126.3,
3708 +
        "max": 158.8,
3709 +
        "count": 2
3710 +
      },
3711 +
      "releaseRelease": {
3712 +
        "mean": 101.6,
3713 +
        "std": 21.1,
3714 +
        "min": 86.6,
3715 +
        "max": 116.5,
3716 +
        "count": 2
3717 +
      },
3718 +
      "pressRelease": {
3719 +
        "mean": 234.8,
3720 +
        "std": 32.8,
3721 +
        "min": 211.6,
3722 +
        "max": 258,
3723 +
        "count": 2
3724 +
      },
3725 +
      "releasePress": {
3726 +
        "mean": 9.3,
3727 +
        "std": 34.6,
3728 +
        "min": -15.2,
3729 +
        "max": 33.8,
3730 +
        "count": 2
3731 +
      }
3732 +
    },
3733 +
    {
3734 +
      "normalizedKeys": "␣ → u",
3735 +
      "count": 2,
3736 +
      "holdTime1": {
3737 +
        "mean": 71.3,
3738 +
        "std": 28.6,
3739 +
        "min": 51.1,
3740 +
        "max": 91.5,
3741 +
        "count": 2
3742 +
      },
3743 +
      "holdTime2": {
3744 +
        "mean": 61.8,
3745 +
        "std": 18.9,
3746 +
        "min": 48.4,
3747 +
        "max": 75.1,
3748 +
        "count": 2
3749 +
      },
3750 +
      "pressPress": {
3751 +
        "mean": 141.1,
3752 +
        "std": 73.2,
3753 +
        "min": 89.3,
3754 +
        "max": 192.8,
3755 +
        "count": 2
3756 +
      },
3757 +
      "releaseRelease": {
3758 +
        "mean": 131.5,
3759 +
        "std": 63.5,
3760 +
        "min": 86.6,
3761 +
        "max": 176.4,
3762 +
        "count": 2
3763 +
      },
3764 +
      "pressRelease": {
3765 +
        "mean": 202.8,
3766 +
        "std": 92.1,
3767 +
        "min": 137.7,
3768 +
        "max": 267.9,
3769 +
        "count": 2
3770 +
      },
3771 +
      "releasePress": {
3772 +
        "mean": 69.8,
3773 +
        "std": 44.6,
3774 +
        "min": 38.2,
3775 +
        "max": 101.3,
3776 +
        "count": 2
3777 +
      }
3778 +
    },
3779 +
    {
3780 +
      "normalizedKeys": "b → e",
3781 +
      "count": 2,
3782 +
      "holdTime1": {
3783 +
        "mean": 95.7,
3784 +
        "std": 5.9,
3785 +
        "min": 91.5,
3786 +
        "max": 99.8,
3787 +
        "count": 2
3788 +
      },
3789 +
      "holdTime2": {
3790 +
        "mean": 101.4,
3791 +
        "std": 1.6,
3792 +
        "min": 100.3,
3793 +
        "max": 102.6,
3794 +
        "count": 2
3795 +
      },
3796 +
      "pressPress": {
3797 +
        "mean": 200.1,
3798 +
        "std": 59.1,
3799 +
        "min": 158.3,
3800 +
        "max": 241.9,
3801 +
        "count": 2
3802 +
      },
3803 +
      "releaseRelease": {
3804 +
        "mean": 205.9,
3805 +
        "std": 51.6,
3806 +
        "min": 169.4,
3807 +
        "max": 242.4,
3808 +
        "count": 2
3809 +
      },
3810 +
      "pressRelease": {
3811 +
        "mean": 301.5,
3812 +
        "std": 57.5,
3813 +
        "min": 260.9,
3814 +
        "max": 342.2,
3815 +
        "count": 2
3816 +
      },
3817 +
      "releasePress": {
3818 +
        "mean": 104.5,
3819 +
        "std": 53.2,
3820 +
        "min": 66.8,
3821 +
        "max": 142.1,
3822 +
        "count": 2
3823 +
      }
3824 +
    },
3825 +
    {
3826 +
      "normalizedKeys": "c → h",
3827 +
      "count": 2,
3828 +
      "holdTime1": {
3829 +
        "mean": 107.9,
3830 +
        "std": 24,
3831 +
        "min": 90.9,
3832 +
        "max": 124.8,
3833 +
        "count": 2
3834 +
      },
3835 +
      "holdTime2": {
3836 +
        "mean": 51,
3837 +
        "std": 19,
3838 +
        "min": 37.6,
3839 +
        "max": 64.4,
3840 +
        "count": 2
3841 +
      },
3842 +
      "pressPress": {
3843 +
        "mean": 127.5,
3844 +
        "std": 49.1,
3845 +
        "min": 92.7,
3846 +
        "max": 162.2,
3847 +
        "count": 2
3848 +
      },
3849 +
      "releaseRelease": {
3850 +
        "mean": 70.6,
3851 +
        "std": 6.2,
3852 +
        "min": 66.2,
3853 +
        "max": 75,
3854 +
        "count": 2
3855 +
      },
3856 +
      "pressRelease": {
3857 +
        "mean": 178.5,
3858 +
        "std": 30.2,
3859 +
        "min": 157.1,
3860 +
        "max": 199.8,
3861 +
        "count": 2
3862 +
      },
3863 +
      "releasePress": {
3864 +
        "mean": 19.6,
3865 +
        "std": 25.2,
3866 +
        "min": 1.8,
3867 +
        "max": 37.4,
3868 +
        "count": 2
3869 +
      }
3870 +
    },
3871 +
    {
3872 +
      "normalizedKeys": "r → o",
3873 +
      "count": 2,
3874 +
      "holdTime1": {
3875 +
        "mean": 74,
3876 +
        "std": 24.6,
3877 +
        "min": 56.6,
3878 +
        "max": 91.4,
3879 +
        "count": 2
3880 +
      },
3881 +
      "holdTime2": {
3882 +
        "mean": 100.3,
3883 +
        "std": 6.9,
3884 +
        "min": 95.4,
3885 +
        "max": 105.2,
3886 +
        "count": 2
3887 +
      },
3888 +
      "pressPress": {
3889 +
        "mean": 89.7,
3890 +
        "std": 5.1,
3891 +
        "min": 86.1,
3892 +
        "max": 93.3,
3893 +
        "count": 2
3894 +
      },
3895 +
      "releaseRelease": {
3896 +
        "mean": 116,
3897 +
        "std": 22.8,
3898 +
        "min": 99.9,
3899 +
        "max": 132.1,
3900 +
        "count": 2
3901 +
      },
3902 +
      "pressRelease": {
3903 +
        "mean": 190,
3904 +
        "std": 1.8,
3905 +
        "min": 188.7,
3906 +
        "max": 191.3,
3907 +
        "count": 2
3908 +
      },
3909 +
      "releasePress": {
3910 +
        "mean": 15.7,
3911 +
        "std": 29.7,
3912 +
        "min": -5.3,
3913 +
        "max": 36.7,
3914 +
        "count": 2
3915 +
      }
3916 +
    },
3917 +
    {
3918 +
      "normalizedKeys": "t → e",
3919 +
      "count": 2,
3920 +
      "holdTime1": {
3921 +
        "mean": 104,
3922 +
        "std": 17.5,
3923 +
        "min": 91.6,
3924 +
        "max": 116.4,
3925 +
        "count": 2
3926 +
      },
3927 +
      "holdTime2": {
3928 +
        "mean": 145.1,
3929 +
        "std": 38.9,
3930 +
        "min": 117.6,
3931 +
        "max": 172.6,
3932 +
        "count": 2
3933 +
      },
3934 +
      "pressPress": {
3935 +
        "mean": 342.6,
3936 +
        "std": 273,
3937 +
        "min": 149.5,
3938 +
        "max": 535.6,
3939 +
        "count": 2
3940 +
      },
3941 +
      "releaseRelease": {
3942 +
        "mean": 383.7,
3943 +
        "std": 216.6,
3944 +
        "min": 230.5,
3945 +
        "max": 536.8,
3946 +
        "count": 2
3947 +
      },
3948 +
      "pressRelease": {
3949 +
        "mean": 487.7,
3950 +
        "std": 234.1,
3951 +
        "min": 322.1,
3952 +
        "max": 653.2,
3953 +
        "count": 2
3954 +
      },
3955 +
      "releasePress": {
3956 +
        "mean": 238.6,
3957 +
        "std": 255.5,
3958 +
        "min": 57.9,
3959 +
        "max": 419.2,
3960 +
        "count": 2
3961 +
      }
3962 +
    },
3963 +
    {
3964 +
      "normalizedKeys": "a → ␣",
3965 +
      "count": 2,
3966 +
      "holdTime1": {
3967 +
        "mean": 145.7,
3968 +
        "std": 6.2,
3969 +
        "min": 141.3,
3970 +
        "max": 150,
3971 +
        "count": 2
3972 +
      },
3973 +
      "holdTime2": {
3974 +
        "mean": 85.1,
3975 +
        "std": 2.1,
3976 +
        "min": 83.6,
3977 +
        "max": 86.5,
3978 +
        "count": 2
3979 +
      },
3980 +
      "pressPress": {
3981 +
        "mean": 104.2,
3982 +
        "std": 18.1,
3983 +
        "min": 91.4,
3984 +
        "max": 117,
3985 +
        "count": 2
3986 +
      },
3987 +
      "releaseRelease": {
3988 +
        "mean": 43.6,
3989 +
        "std": 9.9,
3990 +
        "min": 36.6,
3991 +
        "max": 50.6,
3992 +
        "count": 2
3993 +
      },
3994 +
      "pressRelease": {
3995 +
        "mean": 189.3,
3996 +
        "std": 16.1,
3997 +
        "min": 177.9,
3998 +
        "max": 200.6,
3999 +
        "count": 2
4000 +
      },
4001 +
      "releasePress": {
4002 +
        "mean": -41.4,
4003 +
        "std": 12,
4004 +
        "min": -49.9,
4005 +
        "max": -33,
4006 +
        "count": 2
4007 +
      }
4008 +
    },
4009 +
    {
4010 +
      "normalizedKeys": "f → i",
4011 +
      "count": 2,
4012 +
      "holdTime1": {
4013 +
        "mean": 98.5,
4014 +
        "std": 24.3,
4015 +
        "min": 81.3,
4016 +
        "max": 115.7,
4017 +
        "count": 2
4018 +
      },
4019 +
      "holdTime2": {
4020 +
        "mean": 123.8,
4021 +
        "std": 57.8,
4022 +
        "min": 82.9,
4023 +
        "max": 164.6,
4024 +
        "count": 2
4025 +
      },
4026 +
      "pressPress": {
4027 +
        "mean": 300,
4028 +
        "std": 210.4,
4029 +
        "min": 151.2,
4030 +
        "max": 448.7,
4031 +
        "count": 2
4032 +
      },
4033 +
      "releaseRelease": {
4034 +
        "mean": 325.2,
4035 +
        "std": 176.9,
4036 +
        "min": 200.1,
4037 +
        "max": 450.3,
4038 +
        "count": 2
4039 +
      },
4040 +
      "pressRelease": {
4041 +
        "mean": 423.7,
4042 +
        "std": 152.6,
4043 +
        "min": 315.8,
4044 +
        "max": 531.6,
4045 +
        "count": 2
4046 +
      },
4047 +
      "releasePress": {
4048 +
        "mean": 201.5,
4049 +
        "std": 234.7,
4050 +
        "min": 35.5,
4051 +
        "max": 367.4,
4052 +
        "count": 2
4053 +
      }
4054 +
    },
4055 +
    {
4056 +
      "normalizedKeys": "p → e",
4057 +
      "count": 2,
4058 +
      "holdTime1": {
4059 +
        "mean": 81.7,
4060 +
        "std": 2.3,
4061 +
        "min": 80,
4062 +
        "max": 83.3,
4063 +
        "count": 2
4064 +
      },
4065 +
      "holdTime2": {
4066 +
        "mean": 101.7,
4067 +
        "std": 19.4,
4068 +
        "min": 88,
4069 +
        "max": 115.4,
4070 +
        "count": 2
4071 +
      },
4072 +
      "pressPress": {
4073 +
        "mean": 55.6,
4074 +
        "std": 86.7,
4075 +
        "min": -5.7,
4076 +
        "max": 116.9,
4077 +
        "count": 2
4078 +
      },
4079 +
      "releaseRelease": {
4080 +
        "mean": 75.7,
4081 +
        "std": 69.7,
4082 +
        "min": 26.4,
4083 +
        "max": 124.9,
4084 +
        "count": 2
4085 +
      },
4086 +
      "pressRelease": {
4087 +
        "mean": 157.3,
4088 +
        "std": 67.3,
4089 +
        "min": 109.7,
4090 +
        "max": 204.9,
4091 +
        "count": 2
4092 +
      },
4093 +
      "releasePress": {
4094 +
        "mean": -26,
4095 +
        "std": 89,
4096 +
        "min": -89,
4097 +
        "max": 36.9,
4098 +
        "count": 2
4099 +
      }
4100 +
    },
4101 +
    {
4102 +
      "normalizedKeys": "f → ␣",
4103 +
      "count": 2,
4104 +
      "holdTime1": {
4105 +
        "mean": 95.4,
4106 +
        "std": 41.3,
4107 +
        "min": 66.2,
4108 +
        "max": 124.6,
4109 +
        "count": 2
4110 +
      },
4111 +
      "holdTime2": {
4112 +
        "mean": 132.1,
4113 +
        "std": 81,
4114 +
        "min": 74.8,
4115 +
        "max": 189.4,
4116 +
        "count": 2
4117 +
      },
4118 +
      "pressPress": {
4119 +
        "mean": 117.3,
4120 +
        "std": 13.4,
4121 +
        "min": 107.8,
4122 +
        "max": 126.8,
4123 +
        "count": 2
4124 +
      },
4125 +
      "releaseRelease": {
4126 +
        "mean": 154,
4127 +
        "std": 53.2,
4128 +
        "min": 116.4,
4129 +
        "max": 191.6,
4130 +
        "count": 2
4131 +
      },
4132 +
      "pressRelease": {
4133 +
        "mean": 249.4,
4134 +
        "std": 94.5,
4135 +
        "min": 182.6,
4136 +
        "max": 316.2,
4137 +
        "count": 2
4138 +
      },
4139 +
      "releasePress": {
4140 +
        "mean": 21.9,
4141 +
        "std": 27.9,
4142 +
        "min": 2.2,
4143 +
        "max": 41.6,
4144 +
        "count": 2
4145 +
      }
4146 +
    },
4147 +
    {
4148 +
      "normalizedKeys": "d → a",
4149 +
      "count": 2,
4150 +
      "holdTime1": {
4151 +
        "mean": 106.2,
4152 +
        "std": 20.6,
4153 +
        "min": 91.6,
4154 +
        "max": 120.8,
4155 +
        "count": 2
4156 +
      },
4157 +
      "holdTime2": {
4158 +
        "mean": 145.9,
4159 +
        "std": 6.1,
4160 +
        "min": 141.6,
4161 +
        "max": 150.2,
4162 +
        "count": 2
4163 +
      },
4164 +
      "pressPress": {
4165 +
        "mean": 150,
4166 +
        "std": 23.6,
4167 +
        "min": 133.3,
4168 +
        "max": 166.7,
4169 +
        "count": 2
4170 +
      },
4171 +
      "releaseRelease": {
4172 +
        "mean": 189.7,
4173 +
        "std": 3.1,
4174 +
        "min": 187.5,
4175 +
        "max": 191.9,
4176 +
        "count": 2
4177 +
      },
4178 +
      "pressRelease": {
4179 +
        "mean": 295.9,
4180 +
        "std": 17.5,
4181 +
        "min": 283.5,
4182 +
        "max": 308.3,
4183 +
        "count": 2
4184 +
      },
4185 +
      "releasePress": {
4186 +
        "mean": 43.8,
4187 +
        "std": 3,
4188 +
        "min": 41.7,
4189 +
        "max": 45.9,
4190 +
        "count": 2
4191 +
      }
4192 +
    },
4193 +
    {
4194 +
      "normalizedKeys": "j → s",
4195 +
      "count": 2,
4196 +
      "holdTime1": {
4197 +
        "mean": 85.9,
4198 +
        "std": 6.6,
4199 +
        "min": 81.2,
4200 +
        "max": 90.6,
4201 +
        "count": 2
4202 +
      },
4203 +
      "holdTime2": {
4204 +
        "mean": 118.1,
4205 +
        "std": 27.3,
4206 +
        "min": 98.8,
4207 +
        "max": 137.4,
4208 +
        "count": 2
4209 +
      },
4210 +
      "pressPress": {
4211 +
        "mean": 214.4,
4212 +
        "std": 149.1,
4213 +
        "min": 108.9,
4214 +
        "max": 319.8,
4215 +
        "count": 2
4216 +
      },
4217 +
      "releaseRelease": {
4218 +
        "mean": 246.6,
4219 +
        "std": 169.8,
4220 +
        "min": 126.5,
4221 +
        "max": 366.6,
4222 +
        "count": 2
4223 +
      },
4224 +
      "pressRelease": {
4225 +
        "mean": 332.5,
4226 +
        "std": 176.4,
4227 +
        "min": 207.7,
4228 +
        "max": 457.2,
4229 +
        "count": 2
4230 +
      },
4231 +
      "releasePress": {
4232 +
        "mean": 128.5,
4233 +
        "std": 142.5,
4234 +
        "min": 27.7,
4235 +
        "max": 229.2,
4236 +
        "count": 2
4237 +
      }
4238 +
    },
4239 +
    {
4240 +
      "normalizedKeys": "j → q",
4241 +
      "count": 2,
4242 +
      "holdTime1": {
4243 +
        "mean": 80.9,
4244 +
        "std": 0.8,
4245 +
        "min": 80.3,
4246 +
        "max": 81.5,
4247 +
        "count": 2
4248 +
      },
4249 +
      "holdTime2": {
4250 +
        "mean": 125,
4251 +
        "std": 12.1,
4252 +
        "min": 116.4,
4253 +
        "max": 133.5,
4254 +
        "count": 2
4255 +
      },
4256 +
      "pressPress": {
4257 +
        "mean": 127.1,
4258 +
        "std": 6.7,
4259 +
        "min": 122.3,
4260 +
        "max": 131.8,
4261 +
        "count": 2
4262 +
      },
4263 +
      "releaseRelease": {
4264 +
        "mean": 171.1,
4265 +
        "std": 6.2,
4266 +
        "min": 166.7,
4267 +
        "max": 175.5,
4268 +
        "count": 2
4269 +
      },
4270 +
      "pressRelease": {
4271 +
        "mean": 252,
4272 +
        "std": 5.4,
4273 +
        "min": 248.2,
4274 +
        "max": 255.8,
4275 +
        "count": 2
4276 +
      },
4277 +
      "releasePress": {
4278 +
        "mean": 46.2,
4279 +
        "std": 5.9,
4280 +
        "min": 42,
4281 +
        "max": 50.3,
4282 +
        "count": 2
4283 +
      }
4284 +
    },
4285 +
    {
4286 +
      "normalizedKeys": "l → a",
4287 +
      "count": 2,
4288 +
      "holdTime1": {
4289 +
        "mean": 52.8,
4290 +
        "std": 16,
4291 +
        "min": 41.5,
4292 +
        "max": 64.1,
4293 +
        "count": 2
4294 +
      },
4295 +
      "holdTime2": {
4296 +
        "mean": 131.1,
4297 +
        "std": 14.8,
4298 +
        "min": 120.6,
4299 +
        "max": 141.5,
4300 +
        "count": 2
4301 +
      },
4302 +
      "pressPress": {
4303 +
        "mean": -55.3,
4304 +
        "std": 27.7,
4305 +
        "min": -74.9,
4306 +
        "max": -35.7,
4307 +
        "count": 2
4308 +
      },
4309 +
      "releaseRelease": {
4310 +
        "mean": 23,
4311 +
        "std": 3,
4312 +
        "min": 20.8,
4313 +
        "max": 25.1,
4314 +
        "count": 2
4315 +
      },
4316 +
      "pressRelease": {
4317 +
        "mean": 75.8,
4318 +
        "std": 12.9,
4319 +
        "min": 66.6,
4320 +
        "max": 84.9,
4321 +
        "count": 2
4322 +
      },
4323 +
      "releasePress": {
4324 +
        "mean": -108.1,
4325 +
        "std": 11.7,
4326 +
        "min": -116.4,
4327 +
        "max": -99.8,
4328 +
        "count": 2
4329 +
      }
4330 +
    },
4331 +
    {
4332 +
      "normalizedKeys": "w → i",
4333 +
      "count": 2,
4334 +
      "holdTime1": {
4335 +
        "mean": 87.4,
4336 +
        "std": 5.8,
4337 +
        "min": 83.3,
4338 +
        "max": 91.5,
4339 +
        "count": 2
4340 +
      },
4341 +
      "holdTime2": {
4342 +
        "mean": 66.6,
4343 +
        "std": 0.1,
4344 +
        "min": 66.5,
4345 +
        "max": 66.7,
4346 +
        "count": 2
4347 +
      },
4348 +
      "pressPress": {
4349 +
        "mean": 62.5,
4350 +
        "std": 5.9,
4351 +
        "min": 58.3,
4352 +
        "max": 66.7,
4353 +
        "count": 2
4354 +
      },
4355 +
      "releaseRelease": {
4356 +
        "mean": 41.7,
4357 +
        "std": 11.6,
4358 +
        "min": 33.5,
4359 +
        "max": 49.9,
4360 +
        "count": 2
4361 +
      },
4362 +
      "pressRelease": {
4363 +
        "mean": 129.1,
4364 +
        "std": 5.8,
4365 +
        "min": 125,
4366 +
        "max": 133.2,
4367 +
        "count": 2
4368 +
      },
4369 +
      "releasePress": {
4370 +
        "mean": -24.9,
4371 +
        "std": 11.7,
4372 +
        "min": -33.2,
4373 +
        "max": -16.6,
4374 +
        "count": 2
4375 +
      }
4376 +
    },
4377 +
    {
4378 +
      "normalizedKeys": "␣ → ⌫",
4379 +
      "count": 2,
4380 +
      "holdTime1": {
4381 +
        "mean": 103.7,
4382 +
        "std": 17.7,
4383 +
        "min": 91.2,
4384 +
        "max": 116.2,
4385 +
        "count": 2
4386 +
      },
4387 +
      "holdTime2": {
4388 +
        "mean": 64.6,
4389 +
        "std": 1.3,
4390 +
        "min": 63.6,
4391 +
        "max": 65.5,
4392 +
        "count": 2
4393 +
      },
4394 +
      "pressPress": {
4395 +
        "mean": 529.9,
4396 +
        "std": 76.7,
4397 +
        "min": 475.6,
4398 +
        "max": 584.1,
4399 +
        "count": 2
4400 +
      },
4401 +
      "releaseRelease": {
4402 +
        "mean": 490.7,
4403 +
        "std": 60.4,
4404 +
        "min": 448,
4405 +
        "max": 533.4,
4406 +
        "count": 2
4407 +
      },
4408 +
      "pressRelease": {
4409 +
        "mean": 594.4,
4410 +
        "std": 78.1,
4411 +
        "min": 539.2,
4412 +
        "max": 649.6,
4413 +
        "count": 2
4414 +
      },
4415 +
      "releasePress": {
4416 +
        "mean": 426.2,
4417 +
        "std": 59,
4418 +
        "min": 384.4,
4419 +
        "max": 467.9,
4420 +
        "count": 2
4421 +
      }
4422 +
    },
4423 +
    {
4424 +
      "normalizedKeys": "e → l",
4425 +
      "count": 2,
4426 +
      "holdTime1": {
4427 +
        "mean": 111.6,
4428 +
        "std": 5.4,
4429 +
        "min": 107.7,
4430 +
        "max": 115.4,
4431 +
        "count": 2
4432 +
      },
4433 +
      "holdTime2": {
4434 +
        "mean": 97.1,
4435 +
        "std": 19.6,
4436 +
        "min": 83.2,
4437 +
        "max": 110.9,
4438 +
        "count": 2
4439 +
      },
4440 +
      "pressPress": {
4441 +
        "mean": 290.8,
4442 +
        "std": 223.3,
4443 +
        "min": 132.9,
4444 +
        "max": 448.7,
4445 +
        "count": 2
4446 +
      },
4447 +
      "releaseRelease": {
4448 +
        "mean": 276.3,
4449 +
        "std": 237.4,
4450 +
        "min": 108.4,
4451 +
        "max": 444.2,
4452 +
        "count": 2
4453 +
      },
4454 +
      "pressRelease": {
4455 +
        "mean": 387.9,
4456 +
        "std": 242.9,
4457 +
        "min": 216.1,
4458 +
        "max": 559.6,
4459 +
        "count": 2
4460 +
      },
4461 +
      "releasePress": {
4462 +
        "mean": 179.3,
4463 +
        "std": 217.9,
4464 +
        "min": 25.2,
4465 +
        "max": 333.3,
4466 +
        "count": 2
4467 +
      }
4468 +
    },
4469 +
    {
4470 +
      "normalizedKeys": "⌫ → e",
4471 +
      "count": 2,
4472 +
      "holdTime1": {
4473 +
        "mean": 65.2,
4474 +
        "std": 0.4,
4475 +
        "min": 64.9,
4476 +
        "max": 65.5,
4477 +
        "count": 2
4478 +
      },
4479 +
      "holdTime2": {
4480 +
        "mean": 99.4,
4481 +
        "std": 11.7,
4482 +
        "min": 91.1,
4483 +
        "max": 107.7,
4484 +
        "count": 2
4485 +
      },
4486 +
      "pressPress": {
4487 +
        "mean": 74.9,
4488 +
        "std": 22.1,
4489 +
        "min": 59.2,
4490 +
        "max": 90.5,
4491 +
        "count": 2
4492 +
      },
4493 +
      "releaseRelease": {
4494 +
        "mean": 109.1,
4495 +
        "std": 34.3,
4496 +
        "min": 84.8,
4497 +
        "max": 133.3,
4498 +
        "count": 2
4499 +
      },
4500 +
      "pressRelease": {
4501 +
        "mean": 174.3,
4502 +
        "std": 33.9,
4503 +
        "min": 150.3,
4504 +
        "max": 198.2,
4505 +
        "count": 2
4506 +
      },
4507 +
      "releasePress": {
4508 +
        "mean": 9.7,
4509 +
        "std": 22.6,
4510 +
        "min": -6.3,
4511 +
        "max": 25.6,
4512 +
        "count": 2
4513 +
      }
4514 +
    },
4515 +
    {
4516 +
      "normalizedKeys": "␣ → p",
4517 +
      "count": 2,
4518 +
      "holdTime1": {
4519 +
        "mean": 100,
4520 +
        "std": 23.2,
4521 +
        "min": 83.6,
4522 +
        "max": 116.4,
4523 +
        "count": 2
4524 +
      },
4525 +
      "holdTime2": {
4526 +
        "mean": 129.1,
4527 +
        "std": 40.9,
4528 +
        "min": 100.1,
4529 +
        "max": 158,
4530 +
        "count": 2
4531 +
      },
4532 +
      "pressPress": {
4533 +
        "mean": 220.9,
4534 +
        "std": 29.8,
4535 +
        "min": 199.8,
4536 +
        "max": 241.9,
4537 +
        "count": 2
4538 +
      },
4539 +
      "releaseRelease": {
4540 +
        "mean": 249.9,
4541 +
        "std": 47.5,
4542 +
        "min": 216.3,
4543 +
        "max": 283.5,
4544 +
        "count": 2
4545 +
      },
4546 +
      "pressRelease": {
4547 +
        "mean": 349.9,
4548 +
        "std": 70.7,
4549 +
        "min": 299.9,
4550 +
        "max": 399.9,
4551 +
        "count": 2
4552 +
      },
4553 +
      "releasePress": {
4554 +
        "mean": 120.9,
4555 +
        "std": 6.6,
4556 +
        "min": 116.2,
4557 +
        "max": 125.5,
4558 +
        "count": 2
4559 +
      }
4560 +
    },
4561 +
    {
4562 +
      "normalizedKeys": "l → o",
4563 +
      "count": 2,
4564 +
      "holdTime1": {
4565 +
        "mean": 60.3,
4566 +
        "std": 15.3,
4567 +
        "min": 49.5,
4568 +
        "max": 71.1,
4569 +
        "count": 2
4570 +
      },
4571 +
      "holdTime2": {
4572 +
        "mean": 114.4,
4573 +
        "std": 0,
4574 +
        "min": 114.4,
4575 +
        "max": 114.4,
4576 +
        "count": 2
4577 +
      },
4578 +
      "pressPress": {
4579 +
        "mean": 139.3,
4580 +
        "std": 6.2,
4581 +
        "min": 134.9,
4582 +
        "max": 143.6,
4583 +
        "count": 2
4584 +
      },
4585 +
      "releaseRelease": {
4586 +
        "mean": 193.4,
4587 +
        "std": 21.4,
4588 +
        "min": 178.2,
4589 +
        "max": 208.5,
4590 +
        "count": 2
4591 +
      },
4592 +
      "pressRelease": {
4593 +
        "mean": 253.7,
4594 +
        "std": 6.2,
4595 +
        "min": 249.3,
4596 +
        "max": 258,
4597 +
        "count": 2
4598 +
      },
4599 +
      "releasePress": {
4600 +
        "mean": 78.9,
4601 +
        "std": 21.4,
4602 +
        "min": 63.8,
4603 +
        "max": 94.1,
4604 +
        "count": 2
4605 +
      }
4606 +
    },
4607 +
    {
4608 +
      "normalizedKeys": "q → ␣",
4609 +
      "count": 2,
4610 +
      "holdTime1": {
4611 +
        "mean": 110.9,
4612 +
        "std": 32,
4613 +
        "min": 88.3,
4614 +
        "max": 133.5,
4615 +
        "count": 2
4616 +
      },
4617 +
      "holdTime2": {
4618 +
        "mean": 88.8,
4619 +
        "std": 7.7,
4620 +
        "min": 83.3,
4621 +
        "max": 94.2,
4622 +
        "count": 2
4623 +
      },
4624 +
      "pressPress": {
4625 +
        "mean": 165.1,
4626 +
        "std": 37.9,
4627 +
        "min": 138.3,
4628 +
        "max": 191.9,
4629 +
        "count": 2
4630 +
      },
4631 +
      "releaseRelease": {
4632 +
        "mean": 143,
4633 +
        "std": 13.6,
4634 +
        "min": 133.3,
4635 +
        "max": 152.6,
4636 +
        "count": 2
4637 +
      },
4638 +
      "pressRelease": {
4639 +
        "mean": 253.9,
4640 +
        "std": 45.6,
4641 +
        "min": 221.6,
4642 +
        "max": 286.1,
4643 +
        "count": 2
4644 +
      },
4645 +
      "releasePress": {
4646 +
        "mean": 54.2,
4647 +
        "std": 5.9,
4648 +
        "min": 50,
4649 +
        "max": 58.4,
4650 +
        "count": 2
4651 +
      }
4652 +
    },
4653 +
    {
4654 +
      "normalizedKeys": "a → r",
4655 +
      "count": 2,
4656 +
      "holdTime1": {
4657 +
        "mean": 162.4,
4658 +
        "std": 5.6,
4659 +
        "min": 158.4,
4660 +
        "max": 166.3,
4661 +
        "count": 2
4662 +
      },
4663 +
      "holdTime2": {
4664 +
        "mean": 117.7,
4665 +
        "std": 9.5,
4666 +
        "min": 111,
4667 +
        "max": 124.4,
4668 +
        "count": 2
4669 +
      },
4670 +
      "pressPress": {
4671 +
        "mean": 95.8,
4672 +
        "std": 6.1,
4673 +
        "min": 91.5,
4674 +
        "max": 100.1,
4675 +
        "count": 2
4676 +
      },
4677 +
      "releaseRelease": {
4678 +
        "mean": 51.2,
4679 +
        "std": 10,
4680 +
        "min": 44.1,
4681 +
        "max": 58.2,
4682 +
        "count": 2
4683 +
      },
4684 +
      "pressRelease": {
4685 +
        "mean": 213.5,
4686 +
        "std": 15.6,
4687 +
        "min": 202.5,
4688 +
        "max": 224.5,
4689 +
        "count": 2
4690 +
      },
4691 +
      "releasePress": {
4692 +
        "mean": -66.6,
4693 +
        "std": 0.5,
4694 +
        "min": -66.9,
4695 +
        "max": -66.2,
4696 +
        "count": 2
4697 +
      }
4698 +
    },
4699 +
    {
4700 +
      "normalizedKeys": "v → e",
4701 +
      "count": 2,
4702 +
      "holdTime1": {
4703 +
        "mean": 58,
4704 +
        "std": 0.6,
4705 +
        "min": 57.6,
4706 +
        "max": 58.4,
4707 +
        "count": 2
4708 +
      },
4709 +
      "holdTime2": {
4710 +
        "mean": 95.3,
4711 +
        "std": 29.1,
4712 +
        "min": 74.7,
4713 +
        "max": 115.9,
4714 +
        "count": 2
4715 +
      },
4716 +
      "pressPress": {
4717 +
        "mean": 166.7,
4718 +
        "std": 10.9,
4719 +
        "min": 159,
4720 +
        "max": 174.4,
4721 +
        "count": 2
4722 +
      },
4723 +
      "releaseRelease": {
4724 +
        "mean": 204,
4725 +
        "std": 17.7,
4726 +
        "min": 191.5,
4727 +
        "max": 216.5,
4728 +
        "count": 2
4729 +
      },
4730 +
      "pressRelease": {
4731 +
        "mean": 262,
4732 +
        "std": 18.2,
4733 +
        "min": 249.1,
4734 +
        "max": 274.9,
4735 +
        "count": 2
4736 +
      },
4737 +
      "releasePress": {
4738 +
        "mean": 108.7,
4739 +
        "std": 11.5,
4740 +
        "min": 100.6,
4741 +
        "max": 116.8,
4742 +
        "count": 2
4743 +
      }
4744 +
    },
4745 +
    {
4746 +
      "normalizedKeys": ". → 2",
4747 +
      "count": 1,
4748 +
      "holdTime1": {
4749 +
        "mean": 87.6,
4750 +
        "std": 0,
4751 +
        "min": 87.6,
4752 +
        "max": 87.6,
4753 +
        "count": 1
4754 +
      },
4755 +
      "holdTime2": {
4756 +
        "mean": 110.4,
4757 +
        "std": 0,
4758 +
        "min": 110.4,
4759 +
        "max": 110.4,
4760 +
        "count": 1
4761 +
      },
4762 +
      "pressPress": {
4763 +
        "mean": 16456,
4764 +
        "std": 0,
4765 +
        "min": 16456,
4766 +
        "max": 16456,
4767 +
        "count": 1
4768 +
      },
4769 +
      "releaseRelease": {
4770 +
        "mean": 16478.8,
4771 +
        "std": 0,
4772 +
        "min": 16478.8,
4773 +
        "max": 16478.8,
4774 +
        "count": 1
4775 +
      },
4776 +
      "pressRelease": {
4777 +
        "mean": 16566.4,
4778 +
        "std": 0,
4779 +
        "min": 16566.4,
4780 +
        "max": 16566.4,
4781 +
        "count": 1
4782 +
      },
4783 +
      "releasePress": {
4784 +
        "mean": 16368.4,
4785 +
        "std": 0,
4786 +
        "min": 16368.4,
4787 +
        "max": 16368.4,
4788 +
        "count": 1
4789 +
      }
4790 +
    },
4791 +
    {
4792 +
      "normalizedKeys": "i → .",
4793 +
      "count": 1,
4794 +
      "holdTime1": {
4795 +
        "mean": 40.9,
4796 +
        "std": 0,
4797 +
        "min": 40.9,
4798 +
        "max": 40.9,
4799 +
        "count": 1
4800 +
      },
4801 +
      "holdTime2": {
4802 +
        "mean": 87.6,
4803 +
        "std": 0,
4804 +
        "min": 87.6,
4805 +
        "max": 87.6,
4806 +
        "count": 1
4807 +
      },
4808 +
      "pressPress": {
4809 +
        "mean": 251.7,
4810 +
        "std": 0,
4811 +
        "min": 251.7,
4812 +
        "max": 251.7,
4813 +
        "count": 1
4814 +
      },
4815 +
      "releaseRelease": {
4816 +
        "mean": 298.4,
4817 +
        "std": 0,
4818 +
        "min": 298.4,
4819 +
        "max": 298.4,
4820 +
        "count": 1
4821 +
      },
4822 +
      "pressRelease": {
4823 +
        "mean": 339.3,
4824 +
        "std": 0,
4825 +
        "min": 339.3,
4826 +
        "max": 339.3,
4827 +
        "count": 1
4828 +
      },
4829 +
      "releasePress": {
4830 +
        "mean": 210.8,
4831 +
        "std": 0,
4832 +
        "min": 210.8,
4833 +
        "max": 210.8,
4834 +
        "count": 1
4835 +
      }
4836 +
    },
4837 +
    {
4838 +
      "normalizedKeys": "a → i",
4839 +
      "count": 1,
4840 +
      "holdTime1": {
4841 +
        "mean": 190.7,
4842 +
        "std": 0,
4843 +
        "min": 190.7,
4844 +
        "max": 190.7,
4845 +
        "count": 1
4846 +
      },
4847 +
      "holdTime2": {
4848 +
        "mean": 40.9,
4849 +
        "std": 0,
4850 +
        "min": 40.9,
4851 +
        "max": 40.9,
4852 +
        "count": 1
4853 +
      },
4854 +
      "pressPress": {
4855 +
        "mean": 243.6,
4856 +
        "std": 0,
4857 +
        "min": 243.6,
4858 +
        "max": 243.6,
4859 +
        "count": 1
4860 +
      },
4861 +
      "releaseRelease": {
4862 +
        "mean": 93.8,
4863 +
        "std": 0,
4864 +
        "min": 93.8,
4865 +
        "max": 93.8,
4866 +
        "count": 1
4867 +
      },
4868 +
      "pressRelease": {
4869 +
        "mean": 284.5,
4870 +
        "std": 0,
4871 +
        "min": 284.5,
4872 +
        "max": 284.5,
4873 +
        "count": 1
4874 +
      },
4875 +
      "releasePress": {
4876 +
        "mean": 52.9,
4877 +
        "std": 0,
4878 +
        "min": 52.9,
4879 +
        "max": 52.9,
4880 +
        "count": 1
4881 +
      }
4882 +
    },
4883 +
    {
4884 +
      "normalizedKeys": "l → e",
4885 +
      "count": 1,
4886 +
      "holdTime1": {
4887 +
        "mean": 83.2,
4888 +
        "std": 0,
4889 +
        "min": 83.2,
4890 +
        "max": 83.2,
4891 +
        "count": 1
4892 +
      },
4893 +
      "holdTime2": {
4894 +
        "mean": 127.6,
4895 +
        "std": 0,
4896 +
        "min": 127.6,
4897 +
        "max": 127.6,
4898 +
        "count": 1
4899 +
      },
4900 +
      "pressPress": {
4901 +
        "mean": 167.4,
4902 +
        "std": 0,
4903 +
        "min": 167.4,
4904 +
        "max": 167.4,
4905 +
        "count": 1
4906 +
      },
4907 +
      "releaseRelease": {
4908 +
        "mean": 211.8,
4909 +
        "std": 0,
4910 +
        "min": 211.8,
4911 +
        "max": 211.8,
4912 +
        "count": 1
4913 +
      },
4914 +
      "pressRelease": {
4915 +
        "mean": 295,
4916 +
        "std": 0,
4917 +
        "min": 295,
4918 +
        "max": 295,
4919 +
        "count": 1
4920 +
      },
4921 +
      "releasePress": {
4922 +
        "mean": 84.2,
4923 +
        "std": 0,
4924 +
        "min": 84.2,
4925 +
        "max": 84.2,
4926 +
        "count": 1
4927 +
      }
4928 +
    },
4929 +
    {
4930 +
      "normalizedKeys": "k → y",
4931 +
      "count": 1,
4932 +
      "holdTime1": {
4933 +
        "mean": 78,
4934 +
        "std": 0,
4935 +
        "min": 78,
4936 +
        "max": 78,
4937 +
        "count": 1
4938 +
      },
4939 +
      "holdTime2": {
4940 +
        "mean": 66.5,
4941 +
        "std": 0,
4942 +
        "min": 66.5,
4943 +
        "max": 66.5,
4944 +
        "count": 1
4945 +
      },
4946 +
      "pressPress": {
4947 +
        "mean": 203,
4948 +
        "std": 0,
4949 +
        "min": 203,
4950 +
        "max": 203,
4951 +
        "count": 1
4952 +
      },
4953 +
      "releaseRelease": {
4954 +
        "mean": 191.5,
4955 +
        "std": 0,
4956 +
        "min": 191.5,
4957 +
        "max": 191.5,
4958 +
        "count": 1
4959 +
      },
4960 +
      "pressRelease": {
4961 +
        "mean": 269.5,
4962 +
        "std": 0,
4963 +
        "min": 269.5,
4964 +
        "max": 269.5,
4965 +
        "count": 1
4966 +
      },
4967 +
      "releasePress": {
4968 +
        "mean": 125,
4969 +
        "std": 0,
4970 +
        "min": 125,
4971 +
        "max": 125,
4972 +
        "count": 1
4973 +
      }
4974 +
    },
4975 +
    {
4976 +
      "normalizedKeys": "c → k",
4977 +
      "count": 1,
4978 +
      "holdTime1": {
4979 +
        "mean": 83.1,
4980 +
        "std": 0,
4981 +
        "min": 83.1,
4982 +
        "max": 83.1,
4983 +
        "count": 1
4984 +
      },
4985 +
      "holdTime2": {
4986 +
        "mean": 78,
4987 +
        "std": 0,
4988 +
        "min": 78,
4989 +
        "max": 78,
4990 +
        "count": 1
4991 +
      },
4992 +
      "pressPress": {
4993 +
        "mean": 121.9,
4994 +
        "std": 0,
4995 +
        "min": 121.9,
4996 +
        "max": 121.9,
4997 +
        "count": 1
4998 +
      },
4999 +
      "releaseRelease": {
5000 +
        "mean": 116.8,
5001 +
        "std": 0,
5002 +
        "min": 116.8,
5003 +
        "max": 116.8,
5004 +
        "count": 1
5005 +
      },
5006 +
      "pressRelease": {
5007 +
        "mean": 199.9,
5008 +
        "std": 0,
5009 +
        "min": 199.9,
5010 +
        "max": 199.9,
5011 +
        "count": 1
5012 +
      },
5013 +
      "releasePress": {
5014 +
        "mean": 38.8,
5015 +
        "std": 0,
5016 +
        "min": 38.8,
5017 +
        "max": 38.8,
5018 +
        "count": 1
5019 +
      }
5020 +
    },
5021 +
    {
5022 +
      "normalizedKeys": "i → c",
5023 +
      "count": 1,
5024 +
      "holdTime1": {
5025 +
        "mean": 82.2,
5026 +
        "std": 0,
5027 +
        "min": 82.2,
5028 +
        "max": 82.2,
5029 +
        "count": 1
5030 +
      },
5031 +
      "holdTime2": {
5032 +
        "mean": 83.1,
5033 +
        "std": 0,
5034 +
        "min": 83.1,
5035 +
        "max": 83.1,
5036 +
        "count": 1
5037 +
      },
5038 +
      "pressPress": {
5039 +
        "mean": 140.5,
5040 +
        "std": 0,
5041 +
        "min": 140.5,
5042 +
        "max": 140.5,
5043 +
        "count": 1
5044 +
      },
5045 +
      "releaseRelease": {
5046 +
        "mean": 141.4,
5047 +
        "std": 0,
5048 +
        "min": 141.4,
5049 +
        "max": 141.4,
5050 +
        "count": 1
5051 +
      },
5052 +
      "pressRelease": {
5053 +
        "mean": 223.6,
5054 +
        "std": 0,
5055 +
        "min": 223.6,
5056 +
        "max": 223.6,
5057 +
        "count": 1
5058 +
      },
5059 +
      "releasePress": {
5060 +
        "mean": 58.3,
5061 +
        "std": 0,
5062 +
        "min": 58.3,
5063 +
        "max": 58.3,
5064 +
        "count": 1
5065 +
      }
5066 +
    },
5067 +
    {
5068 +
      "normalizedKeys": "⌫ → o",
5069 +
      "count": 1,
5070 +
      "holdTime1": {
5071 +
        "mean": 82.9,
5072 +
        "std": 0,
5073 +
        "min": 82.9,
5074 +
        "max": 82.9,
5075 +
        "count": 1
5076 +
      },
5077 +
      "holdTime2": {
5078 +
        "mean": 117.2,
5079 +
        "std": 0,
5080 +
        "min": 117.2,
5081 +
        "max": 117.2,
5082 +
        "count": 1
5083 +
      },
5084 +
      "pressPress": {
5085 +
        "mean": 549.8,
5086 +
        "std": 0,
5087 +
        "min": 549.8,
5088 +
        "max": 549.8,
5089 +
        "count": 1
5090 +
      },
5091 +
      "releaseRelease": {
5092 +
        "mean": 584.1,
5093 +
        "std": 0,
5094 +
        "min": 584.1,
5095 +
        "max": 584.1,
5096 +
        "count": 1
5097 +
      },
5098 +
      "pressRelease": {
5099 +
        "mean": 667,
5100 +
        "std": 0,
5101 +
        "min": 667,
5102 +
        "max": 667,
5103 +
        "count": 1
5104 +
      },
5105 +
      "releasePress": {
5106 +
        "mean": 466.9,
5107 +
        "std": 0,
5108 +
        "min": 466.9,
5109 +
        "max": 466.9,
5110 +
        "count": 1
5111 +
      }
5112 +
    },
5113 +
    {
5114 +
      "normalizedKeys": "t → .",
5115 +
      "count": 1,
5116 +
      "holdTime1": {
5117 +
        "mean": 73.3,
5118 +
        "std": 0,
5119 +
        "min": 73.3,
5120 +
        "max": 73.3,
5121 +
        "count": 1
5122 +
      },
5123 +
      "holdTime2": {
5124 +
        "mean": 74.9,
5125 +
        "std": 0,
5126 +
        "min": 74.9,
5127 +
        "max": 74.9,
5128 +
        "count": 1
5129 +
      },
5130 +
      "pressPress": {
5131 +
        "mean": 148.4,
5132 +
        "std": 0,
5133 +
        "min": 148.4,
5134 +
        "max": 148.4,
5135 +
        "count": 1
5136 +
      },
5137 +
      "releaseRelease": {
5138 +
        "mean": 150,
5139 +
        "std": 0,
5140 +
        "min": 150,
5141 +
        "max": 150,
5142 +
        "count": 1
5143 +
      },
5144 +
      "pressRelease": {
5145 +
        "mean": 223.3,
5146 +
        "std": 0,
5147 +
        "min": 223.3,
5148 +
        "max": 223.3,
5149 +
        "count": 1
5150 +
      },
5151 +
      "releasePress": {
5152 +
        "mean": 75.1,
5153 +
        "std": 0,
5154 +
        "min": 75.1,
5155 +
        "max": 75.1,
5156 +
        "count": 1
5157 +
      }
5158 +
    },
5159 +
    {
5160 +
      "normalizedKeys": "d → l",
5161 +
      "count": 1,
5162 +
      "holdTime1": {
5163 +
        "mean": 92.1,
5164 +
        "std": 0,
5165 +
        "min": 92.1,
5166 +
        "max": 92.1,
5167 +
        "count": 1
5168 +
      },
5169 +
      "holdTime2": {
5170 +
        "mean": 49.5,
5171 +
        "std": 0,
5172 +
        "min": 49.5,
5173 +
        "max": 49.5,
5174 +
        "count": 1
5175 +
      },
5176 +
      "pressPress": {
5177 +
        "mean": 140.4,
5178 +
        "std": 0,
5179 +
        "min": 140.4,
5180 +
        "max": 140.4,
5181 +
        "count": 1
5182 +
      },
5183 +
      "releaseRelease": {
5184 +
        "mean": 97.8,
5185 +
        "std": 0,
5186 +
        "min": 97.8,
5187 +
        "max": 97.8,
5188 +
        "count": 1
5189 +
      },
5190 +
      "pressRelease": {
5191 +
        "mean": 189.9,
5192 +
        "std": 0,
5193 +
        "min": 189.9,
5194 +
        "max": 189.9,
5195 +
        "count": 1
5196 +
      },
5197 +
      "releasePress": {
5198 +
        "mean": 48.3,
5199 +
        "std": 0,
5200 +
        "min": 48.3,
5201 +
        "max": 48.3,
5202 +
        "count": 1
5203 +
      }
5204 +
    },
5205 +
    {
5206 +
      "normalizedKeys": "⌫ → s",
5207 +
      "count": 1,
5208 +
      "holdTime1": {
5209 +
        "mean": 63.3,
5210 +
        "std": 0,
5211 +
        "min": 63.3,
5212 +
        "max": 63.3,
5213 +
        "count": 1
5214 +
      },
5215 +
      "holdTime2": {
5216 +
        "mean": 71.8,
5217 +
        "std": 0,
5218 +
        "min": 71.8,
5219 +
        "max": 71.8,
5220 +
        "count": 1
5221 +
      },
5222 +
      "pressPress": {
5223 +
        "mean": 126.6,
5224 +
        "std": 0,
5225 +
        "min": 126.6,
5226 +
        "max": 126.6,
5227 +
        "count": 1
5228 +
      },
5229 +
      "releaseRelease": {
5230 +
        "mean": 135.1,
5231 +
        "std": 0,
5232 +
        "min": 135.1,
5233 +
        "max": 135.1,
5234 +
        "count": 1
5235 +
      },
5236 +
      "pressRelease": {
5237 +
        "mean": 198.4,
5238 +
        "std": 0,
5239 +
        "min": 198.4,
5240 +
        "max": 198.4,
5241 +
        "count": 1
5242 +
      },
5243 +
      "releasePress": {
5244 +
        "mean": 63.3,
5245 +
        "std": 0,
5246 +
        "min": 63.3,
5247 +
        "max": 63.3,
5248 +
        "count": 1
5249 +
      }
5250 +
    },
5251 +
    {
5252 +
      "normalizedKeys": "a → ⌫",
5253 +
      "count": 1,
5254 +
      "holdTime1": {
5255 +
        "mean": 57.6,
5256 +
        "std": 0,
5257 +
        "min": 57.6,
5258 +
        "max": 57.6,
5259 +
        "count": 1
5260 +
      },
5261 +
      "holdTime2": {
5262 +
        "mean": 63.3,
5263 +
        "std": 0,
5264 +
        "min": 63.3,
5265 +
        "max": 63.3,
5266 +
        "count": 1
5267 +
      },
5268 +
      "pressPress": {
5269 +
        "mean": 305.3,
5270 +
        "std": 0,
5271 +
        "min": 305.3,
5272 +
        "max": 305.3,
5273 +
        "count": 1
5274 +
      },
5275 +
      "releaseRelease": {
5276 +
        "mean": 311,
5277 +
        "std": 0,
5278 +
        "min": 311,
5279 +
        "max": 311,
5280 +
        "count": 1
5281 +
      },
5282 +
      "pressRelease": {
5283 +
        "mean": 368.6,
5284 +
        "std": 0,
5285 +
        "min": 368.6,
5286 +
        "max": 368.6,
5287 +
        "count": 1
5288 +
      },
5289 +
      "releasePress": {
5290 +
        "mean": 247.7,
5291 +
        "std": 0,
5292 +
        "min": 247.7,
5293 +
        "max": 247.7,
5294 +
        "count": 1
5295 +
      }
5296 +
    },
5297 +
    {
5298 +
      "normalizedKeys": "j → a",
5299 +
      "count": 1,
5300 +
      "holdTime1": {
5301 +
        "mean": 83.5,
5302 +
        "std": 0,
5303 +
        "min": 83.5,
5304 +
        "max": 83.5,
5305 +
        "count": 1
5306 +
      },
5307 +
      "holdTime2": {
5308 +
        "mean": 57.6,
5309 +
        "std": 0,
5310 +
        "min": 57.6,
5311 +
        "max": 57.6,
5312 +
        "count": 1
5313 +
      },
5314 +
      "pressPress": {
5315 +
        "mean": 137.9,
5316 +
        "std": 0,
5317 +
        "min": 137.9,
5318 +
        "max": 137.9,
5319 +
        "count": 1
5320 +
      },
5321 +
      "releaseRelease": {
5322 +
        "mean": 112,
5323 +
        "std": 0,
5324 +
        "min": 112,
5325 +
        "max": 112,
5326 +
        "count": 1
5327 +
      },
5328 +
      "pressRelease": {
5329 +
        "mean": 195.5,
5330 +
        "std": 0,
5331 +
        "min": 195.5,
5332 +
        "max": 195.5,
5333 +
        "count": 1
5334 +
      },
5335 +
      "releasePress": {
5336 +
        "mean": 54.4,
5337 +
        "std": 0,
5338 +
        "min": 54.4,
5339 +
        "max": 54.4,
5340 +
        "count": 1
5341 +
      }
5342 +
    },
5343 +
    {
5344 +
      "normalizedKeys": "r → n",
5345 +
      "count": 1,
5346 +
      "holdTime1": {
5347 +
        "mean": 88.2,
5348 +
        "std": 0,
5349 +
        "min": 88.2,
5350 +
        "max": 88.2,
5351 +
        "count": 1
5352 +
      },
5353 +
      "holdTime2": {
5354 +
        "mean": 83.3,
5355 +
        "std": 0,
5356 +
        "min": 83.3,
5357 +
        "max": 83.3,
5358 +
        "count": 1
5359 +
      },
5360 +
      "pressPress": {
5361 +
        "mean": 87.7,
5362 +
        "std": 0,
5363 +
        "min": 87.7,
5364 +
        "max": 87.7,
5365 +
        "count": 1
5366 +
      },
5367 +
      "releaseRelease": {
5368 +
        "mean": 82.8,
5369 +
        "std": 0,
5370 +
        "min": 82.8,
5371 +
        "max": 82.8,
5372 +
        "count": 1
5373 +
      },
5374 +
      "pressRelease": {
5375 +
        "mean": 171,
5376 +
        "std": 0,
5377 +
        "min": 171,
5378 +
        "max": 171,
5379 +
        "count": 1
5380 +
      },
5381 +
      "releasePress": {
5382 +
        "mean": -0.5,
5383 +
        "std": 0,
5384 +
        "min": -0.5,
5385 +
        "max": -0.5,
5386 +
        "count": 1
5387 +
      }
5388 +
    },
5389 +
    {
5390 +
      "normalizedKeys": "t → u",
5391 +
      "count": 1,
5392 +
      "holdTime1": {
5393 +
        "mean": 108.5,
5394 +
        "std": 0,
5395 +
        "min": 108.5,
5396 +
        "max": 108.5,
5397 +
        "count": 1
5398 +
      },
5399 +
      "holdTime2": {
5400 +
        "mean": 44.5,
5401 +
        "std": 0,
5402 +
        "min": 44.5,
5403 +
        "max": 44.5,
5404 +
        "count": 1
5405 +
      },
5406 +
      "pressPress": {
5407 +
        "mean": 122.1,
5408 +
        "std": 0,
5409 +
        "min": 122.1,
5410 +
        "max": 122.1,
5411 +
        "count": 1
5412 +
      },
5413 +
      "releaseRelease": {
5414 +
        "mean": 58.1,
5415 +
        "std": 0,
5416 +
        "min": 58.1,
5417 +
        "max": 58.1,
5418 +
        "count": 1
5419 +
      },
5420 +
      "pressRelease": {
5421 +
        "mean": 166.6,
5422 +
        "std": 0,
5423 +
        "min": 166.6,
5424 +
        "max": 166.6,
5425 +
        "count": 1
5426 +
      },
5427 +
      "releasePress": {
5428 +
        "mean": 13.6,
5429 +
        "std": 0,
5430 +
        "min": 13.6,
5431 +
        "max": 13.6,
5432 +
        "count": 1
5433 +
      }
5434 +
    },
5435 +
    {
5436 +
      "normalizedKeys": "␣ → r",
5437 +
      "count": 1,
5438 +
      "holdTime1": {
5439 +
        "mean": 65.1,
5440 +
        "std": 0,
5441 +
        "min": 65.1,
5442 +
        "max": 65.1,
5443 +
        "count": 1
5444 +
      },
5445 +
      "holdTime2": {
5446 +
        "mean": 108.3,
5447 +
        "std": 0,
5448 +
        "min": 108.3,
5449 +
        "max": 108.3,
5450 +
        "count": 1
5451 +
      },
5452 +
      "pressPress": {
5453 +
        "mean": 206.9,
5454 +
        "std": 0,
5455 +
        "min": 206.9,
5456 +
        "max": 206.9,
5457 +
        "count": 1
5458 +
      },
5459 +
      "releaseRelease": {
5460 +
        "mean": 250.1,
5461 +
        "std": 0,
5462 +
        "min": 250.1,
5463 +
        "max": 250.1,
5464 +
        "count": 1
5465 +
      },
5466 +
      "pressRelease": {
5467 +
        "mean": 315.2,
5468 +
        "std": 0,
5469 +
        "min": 315.2,
5470 +
        "max": 315.2,
5471 +
        "count": 1
5472 +
      },
5473 +
      "releasePress": {
5474 +
        "mean": 141.8,
5475 +
        "std": 0,
5476 +
        "min": 141.8,
5477 +
        "max": 141.8,
5478 +
        "count": 1
5479 +
      }
5480 +
    },
5481 +
    {
5482 +
      "normalizedKeys": "i → ␣",
5483 +
      "count": 1,
5484 +
      "holdTime1": {
5485 +
        "mean": 52564,
5486 +
        "std": 0,
5487 +
        "min": 52564,
5488 +
        "max": 52564,
5489 +
        "count": 1
5490 +
      },
5491 +
      "holdTime2": {
5492 +
        "mean": 66.4,
5493 +
        "std": 0,
5494 +
        "min": 66.4,
5495 +
        "max": 66.4,
5496 +
        "count": 1
5497 +
      },
5498 +
      "pressPress": {
5499 +
        "mean": 52556,
5500 +
        "std": 0,
5501 +
        "min": 52556,
5502 +
        "max": 52556,
5503 +
        "count": 1
5504 +
      },
5505 +
      "releaseRelease": {
5506 +
        "mean": 58.4,
5507 +
        "std": 0,
5508 +
        "min": 58.4,
5509 +
        "max": 58.4,
5510 +
        "count": 1
5511 +
      },
5512 +
      "pressRelease": {
5513 +
        "mean": 52622.4,
5514 +
        "std": 0,
5515 +
        "min": 52622.4,
5516 +
        "max": 52622.4,
5517 +
        "count": 1
5518 +
      },
5519 +
      "releasePress": {
5520 +
        "mean": -8,
5521 +
        "std": 0,
5522 +
        "min": -8,
5523 +
        "max": -8,
5524 +
        "count": 1
5525 +
      }
5526 +
    },
5527 +
    {
5528 +
      "normalizedKeys": "s → i",
5529 +
      "count": 1,
5530 +
      "holdTime1": {
5531 +
        "mean": 74.7,
5532 +
        "std": 0,
5533 +
        "min": 74.7,
5534 +
        "max": 74.7,
5535 +
        "count": 1
5536 +
      },
5537 +
      "holdTime2": {
5538 +
        "mean": 137.4,
5539 +
        "std": 0,
5540 +
        "min": 137.4,
5541 +
        "max": 137.4,
5542 +
        "count": 1
5543 +
      },
5544 +
      "pressPress": {
5545 +
        "mean": 113.7,
5546 +
        "std": 0,
5547 +
        "min": 113.7,
5548 +
        "max": 113.7,
5549 +
        "count": 1
5550 +
      },
5551 +
      "releaseRelease": {
5552 +
        "mean": 176.4,
5553 +
        "std": 0,
5554 +
        "min": 176.4,
5555 +
        "max": 176.4,
5556 +
        "count": 1
5557 +
      },
5558 +
      "pressRelease": {
5559 +
        "mean": 251.1,
5560 +
        "std": 0,
5561 +
        "min": 251.1,
5562 +
        "max": 251.1,
5563 +
        "count": 1
5564 +
      },
5565 +
      "releasePress": {
5566 +
        "mean": 39,
5567 +
        "std": 0,
5568 +
        "min": 39,
5569 +
        "max": 39,
5570 +
        "count": 1
5571 +
      }
5572 +
    },
5573 +
    {
5574 +
      "normalizedKeys": "l → d",
5575 +
      "count": 1,
5576 +
      "holdTime1": {
5577 +
        "mean": 78.5,
5578 +
        "std": 0,
5579 +
        "min": 78.5,
5580 +
        "max": 78.5,
5581 +
        "count": 1
5582 +
      },
5583 +
      "holdTime2": {
5584 +
        "mean": 104,
5585 +
        "std": 0,
5586 +
        "min": 104,
5587 +
        "max": 104,
5588 +
        "count": 1
5589 +
      },
5590 +
      "pressPress": {
5591 +
        "mean": 112.4,
5592 +
        "std": 0,
5593 +
        "min": 112.4,
5594 +
        "max": 112.4,
5595 +
        "count": 1
5596 +
      },
5597 +
      "releaseRelease": {
5598 +
        "mean": 137.9,
5599 +
        "std": 0,
5600 +
        "min": 137.9,
5601 +
        "max": 137.9,
5602 +
        "count": 1
5603 +
      },
5604 +
      "pressRelease": {
5605 +
        "mean": 216.4,
5606 +
        "std": 0,
5607 +
        "min": 216.4,
5608 +
        "max": 216.4,
5609 +
        "count": 1
5610 +
      },
5611 +
      "releasePress": {
5612 +
        "mean": 33.9,
5613 +
        "std": 0,
5614 +
        "min": 33.9,
5615 +
        "max": 33.9,
5616 +
        "count": 1
5617 +
      }
5618 +
    },
5619 +
    {
5620 +
      "normalizedKeys": "u → l",
5621 +
      "count": 1,
5622 +
      "holdTime1": {
5623 +
        "mean": 135.2,
5624 +
        "std": 0,
5625 +
        "min": 135.2,
5626 +
        "max": 135.2,
5627 +
        "count": 1
5628 +
      },
5629 +
      "holdTime2": {
5630 +
        "mean": 78.5,
5631 +
        "std": 0,
5632 +
        "min": 78.5,
5633 +
        "max": 78.5,
5634 +
        "count": 1
5635 +
      },
5636 +
      "pressPress": {
5637 +
        "mean": 191.6,
5638 +
        "std": 0,
5639 +
        "min": 191.6,
5640 +
        "max": 191.6,
5641 +
        "count": 1
5642 +
      },
5643 +
      "releaseRelease": {
5644 +
        "mean": 134.9,
5645 +
        "std": 0,
5646 +
        "min": 134.9,
5647 +
        "max": 134.9,
5648 +
        "count": 1
5649 +
      },
5650 +
      "pressRelease": {
5651 +
        "mean": 270.1,
5652 +
        "std": 0,
5653 +
        "min": 270.1,
5654 +
        "max": 270.1,
5655 +
        "count": 1
5656 +
      },
5657 +
      "releasePress": {
5658 +
        "mean": 56.4,
5659 +
        "std": 0,
5660 +
        "min": 56.4,
5661 +
        "max": 56.4,
5662 +
        "count": 1
5663 +
      }
5664 +
    },
5665 +
    {
5666 +
      "normalizedKeys": "a → c",
5667 +
      "count": 1,
5668 +
      "holdTime1": {
5669 +
        "mean": 129.9,
5670 +
        "std": 0,
5671 +
        "min": 129.9,
5672 +
        "max": 129.9,
5673 +
        "count": 1
5674 +
      },
5675 +
      "holdTime2": {
5676 +
        "mean": 124.8,
5677 +
        "std": 0,
5678 +
        "min": 124.8,
5679 +
        "max": 124.8,
5680 +
        "count": 1
5681 +
      },
5682 +
      "pressPress": {
5683 +
        "mean": 187.7,
5684 +
        "std": 0,
5685 +
        "min": 187.7,
5686 +
        "max": 187.7,
5687 +
        "count": 1
5688 +
      },
5689 +
      "releaseRelease": {
5690 +
        "mean": 182.6,
5691 +
        "std": 0,
5692 +
        "min": 182.6,
5693 +
        "max": 182.6,
5694 +
        "count": 1
5695 +
      },
5696 +
      "pressRelease": {
5697 +
        "mean": 312.5,
5698 +
        "std": 0,
5699 +
        "min": 312.5,
5700 +
        "max": 312.5,
5701 +
        "count": 1
5702 +
      },
5703 +
      "releasePress": {
5704 +
        "mean": 57.8,
5705 +
        "std": 0,
5706 +
        "min": 57.8,
5707 +
        "max": 57.8,
5708 +
        "count": 1
5709 +
      }
5710 +
    },
5711 +
    {
5712 +
      "normalizedKeys": "o → a",
5713 +
      "count": 1,
5714 +
      "holdTime1": {
5715 +
        "mean": 95.4,
5716 +
        "std": 0,
5717 +
        "min": 95.4,
5718 +
        "max": 95.4,
5719 +
        "count": 1
5720 +
      },
5721 +
      "holdTime2": {
5722 +
        "mean": 129.9,
5723 +
        "std": 0,
5724 +
        "min": 129.9,
5725 +
        "max": 129.9,
5726 +
        "count": 1
5727 +
      },
5728 +
      "pressPress": {
5729 +
        "mean": 132.1,
5730 +
        "std": 0,
5731 +
        "min": 132.1,
5732 +
        "max": 132.1,
5733 +
        "count": 1
5734 +
      },
5735 +
      "releaseRelease": {
5736 +
        "mean": 166.6,
5737 +
        "std": 0,
5738 +
        "min": 166.6,
5739 +
        "max": 166.6,
5740 +
        "count": 1
5741 +
      },
5742 +
      "pressRelease": {
5743 +
        "mean": 262,
5744 +
        "std": 0,
5745 +
        "min": 262,
5746 +
        "max": 262,
5747 +
        "count": 1
5748 +
      },
5749 +
      "releasePress": {
5750 +
        "mean": 36.7,
5751 +
        "std": 0,
5752 +
        "min": 36.7,
5753 +
        "max": 36.7,
5754 +
        "count": 1
5755 +
      }
5756 +
    },
5757 +
    {
5758 +
      "normalizedKeys": "p → r",
5759 +
      "count": 1,
5760 +
      "holdTime1": {
5761 +
        "mean": 83.7,
5762 +
        "std": 0,
5763 +
        "min": 83.7,
5764 +
        "max": 83.7,
5765 +
        "count": 1
5766 +
      },
5767 +
      "holdTime2": {
5768 +
        "mean": 56.6,
5769 +
        "std": 0,
5770 +
        "min": 56.6,
5771 +
        "max": 56.6,
5772 +
        "count": 1
5773 +
      },
5774 +
      "pressPress": {
5775 +
        "mean": 120.2,
5776 +
        "std": 0,
5777 +
        "min": 120.2,
5778 +
        "max": 120.2,
5779 +
        "count": 1
5780 +
      },
5781 +
      "releaseRelease": {
5782 +
        "mean": 93.1,
5783 +
        "std": 0,
5784 +
        "min": 93.1,
5785 +
        "max": 93.1,
5786 +
        "count": 1
5787 +
      },
5788 +
      "pressRelease": {
5789 +
        "mean": 176.8,
5790 +
        "std": 0,
5791 +
        "min": 176.8,
5792 +
        "max": 176.8,
5793 +
        "count": 1
5794 +
      },
5795 +
      "releasePress": {
5796 +
        "mean": 36.5,
5797 +
        "std": 0,
5798 +
        "min": 36.5,
5799 +
        "max": 36.5,
5800 +
        "count": 1
5801 +
      }
5802 +
    },
5803 +
    {
5804 +
      "normalizedKeys": "p → p",
5805 +
      "count": 1,
5806 +
      "holdTime1": {
5807 +
        "mean": 52.8,
5808 +
        "std": 0,
5809 +
        "min": 52.8,
5810 +
        "max": 52.8,
5811 +
        "count": 1
5812 +
      },
5813 +
      "holdTime2": {
5814 +
        "mean": 83.7,
5815 +
        "std": 0,
5816 +
        "min": 83.7,
5817 +
        "max": 83.7,
5818 +
        "count": 1
5819 +
      },
5820 +
      "pressPress": {
5821 +
        "mean": 116.2,
5822 +
        "std": 0,
5823 +
        "min": 116.2,
5824 +
        "max": 116.2,
5825 +
        "count": 1
5826 +
      },
5827 +
      "releaseRelease": {
5828 +
        "mean": 147.1,
5829 +
        "std": 0,
5830 +
        "min": 147.1,
5831 +
        "max": 147.1,
5832 +
        "count": 1
5833 +
      },
5834 +
      "pressRelease": {
5835 +
        "mean": 199.9,
5836 +
        "std": 0,
5837 +
        "min": 199.9,
5838 +
        "max": 199.9,
5839 +
        "count": 1
5840 +
      },
5841 +
      "releasePress": {
5842 +
        "mean": 63.4,
5843 +
        "std": 0,
5844 +
        "min": 63.4,
5845 +
        "max": 63.4,
5846 +
        "count": 1
5847 +
      }
5848 +
    },
5849 +
    {
5850 +
      "normalizedKeys": "b → u",
5851 +
      "count": 1,
5852 +
      "holdTime1": {
5853 +
        "mean": 70.9,
5854 +
        "std": 0,
5855 +
        "min": 70.9,
5856 +
        "max": 70.9,
5857 +
        "count": 1
5858 +
      },
5859 +
      "holdTime2": {
5860 +
        "mean": 30.5,
5861 +
        "std": 0,
5862 +
        "min": 30.5,
5863 +
        "max": 30.5,
5864 +
        "count": 1
5865 +
      },
5866 +
      "pressPress": {
5867 +
        "mean": 107.2,
5868 +
        "std": 0,
5869 +
        "min": 107.2,
5870 +
        "max": 107.2,
5871 +
        "count": 1
5872 +
      },
5873 +
      "releaseRelease": {
5874 +
        "mean": 66.8,
5875 +
        "std": 0,
5876 +
        "min": 66.8,
5877 +
        "max": 66.8,
5878 +
        "count": 1
5879 +
      },
5880 +
      "pressRelease": {
5881 +
        "mean": 137.7,
5882 +
        "std": 0,
5883 +
        "min": 137.7,
5884 +
        "max": 137.7,
5885 +
        "count": 1
5886 +
      },
5887 +
      "releasePress": {
5888 +
        "mean": 36.3,
5889 +
        "std": 0,
5890 +
        "min": 36.3,
5891 +
        "max": 36.3,
5892 +
        "count": 1
5893 +
      }
5894 +
    },
5895 +
    {
5896 +
      "normalizedKeys": ", → ␣",
5897 +
      "count": 1,
5898 +
      "holdTime1": {
5899 +
        "mean": 74.4,
5900 +
        "std": 0,
5901 +
        "min": 74.4,
5902 +
        "max": 74.4,
5903 +
        "count": 1
5904 +
      },
5905 +
      "holdTime2": {
5906 +
        "mean": 32.5,
5907 +
        "std": 0,
5908 +
        "min": 32.5,
5909 +
        "max": 32.5,
5910 +
        "count": 1
5911 +
      },
5912 +
      "pressPress": {
5913 +
        "mean": 128.1,
5914 +
        "std": 0,
5915 +
        "min": 128.1,
5916 +
        "max": 128.1,
5917 +
        "count": 1
5918 +
      },
5919 +
      "releaseRelease": {
5920 +
        "mean": 86.2,
5921 +
        "std": 0,
5922 +
        "min": 86.2,
5923 +
        "max": 86.2,
5924 +
        "count": 1
5925 +
      },
5926 +
      "pressRelease": {
5927 +
        "mean": 160.6,
5928 +
        "std": 0,
5929 +
        "min": 160.6,
5930 +
        "max": 160.6,
5931 +
        "count": 1
5932 +
      },
5933 +
      "releasePress": {
5934 +
        "mean": 53.7,
5935 +
        "std": 0,
5936 +
        "min": 53.7,
5937 +
        "max": 53.7,
5938 +
        "count": 1
5939 +
      }
5940 +
    },
5941 +
    {
5942 +
      "normalizedKeys": "⌫ → ,",
5943 +
      "count": 1,
5944 +
      "holdTime1": {
5945 +
        "mean": 83.7,
5946 +
        "std": 0,
5947 +
        "min": 83.7,
5948 +
        "max": 83.7,
5949 +
        "count": 1
5950 +
      },
5951 +
      "holdTime2": {
5952 +
        "mean": 74.4,
5953 +
        "std": 0,
5954 +
        "min": 74.4,
5955 +
        "max": 74.4,
5956 +
        "count": 1
5957 +
      },
5958 +
      "pressPress": {
5959 +
        "mean": 226.2,
5960 +
        "std": 0,
5961 +
        "min": 226.2,
5962 +
        "max": 226.2,
5963 +
        "count": 1
5964 +
      },
5965 +
      "releaseRelease": {
5966 +
        "mean": 216.9,
5967 +
        "std": 0,
5968 +
        "min": 216.9,
5969 +
        "max": 216.9,
5970 +
        "count": 1
5971 +
      },
5972 +
      "pressRelease": {
5973 +
        "mean": 300.6,
5974 +
        "std": 0,
5975 +
        "min": 300.6,
5976 +
        "max": 300.6,
5977 +
        "count": 1
5978 +
      },
5979 +
      "releasePress": {
5980 +
        "mean": 142.5,
5981 +
        "std": 0,
5982 +
        "min": 142.5,
5983 +
        "max": 142.5,
5984 +
        "count": 1
5985 +
      }
5986 +
    },
5987 +
    {
5988 +
      "normalizedKeys": "e → ⌫",
5989 +
      "count": 1,
5990 +
      "holdTime1": {
5991 +
        "mean": 119.3,
5992 +
        "std": 0,
5993 +
        "min": 119.3,
5994 +
        "max": 119.3,
5995 +
        "count": 1
5996 +
      },
5997 +
      "holdTime2": {
5998 +
        "mean": 75.9,
5999 +
        "std": 0,
6000 +
        "min": 75.9,
6001 +
        "max": 75.9,
6002 +
        "count": 1
6003 +
      },
6004 +
      "pressPress": {
6005 +
        "mean": 350.3,
6006 +
        "std": 0,
6007 +
        "min": 350.3,
6008 +
        "max": 350.3,
6009 +
        "count": 1
6010 +
      },
6011 +
      "releaseRelease": {
6012 +
        "mean": 306.9,
6013 +
        "std": 0,
6014 +
        "min": 306.9,
6015 +
        "max": 306.9,
6016 +
        "count": 1
6017 +
      },
6018 +
      "pressRelease": {
6019 +
        "mean": 426.2,
6020 +
        "std": 0,
6021 +
        "min": 426.2,
6022 +
        "max": 426.2,
6023 +
        "count": 1
6024 +
      },
6025 +
      "releasePress": {
6026 +
        "mean": 231,
6027 +
        "std": 0,
6028 +
        "min": 231,
6029 +
        "max": 231,
6030 +
        "count": 1
6031 +
      }
6032 +
    },
6033 +
    {
6034 +
      "normalizedKeys": "m → ␣",
6035 +
      "count": 1,
6036 +
      "holdTime1": {
6037 +
        "mean": 99.8,
6038 +
        "std": 0,
6039 +
        "min": 99.8,
6040 +
        "max": 99.8,
6041 +
        "count": 1
6042 +
      },
6043 +
      "holdTime2": {
6044 +
        "mean": 46.9,
6045 +
        "std": 0,
6046 +
        "min": 46.9,
6047 +
        "max": 46.9,
6048 +
        "count": 1
6049 +
      },
6050 +
      "pressPress": {
6051 +
        "mean": 86.2,
6052 +
        "std": 0,
6053 +
        "min": 86.2,
6054 +
        "max": 86.2,
6055 +
        "count": 1
6056 +
      },
6057 +
      "releaseRelease": {
6058 +
        "mean": 33.3,
6059 +
        "std": 0,
6060 +
        "min": 33.3,
6061 +
        "max": 33.3,
6062 +
        "count": 1
6063 +
      },
6064 +
      "pressRelease": {
6065 +
        "mean": 133.1,
6066 +
        "std": 0,
6067 +
        "min": 133.1,
6068 +
        "max": 133.1,
6069 +
        "count": 1
6070 +
      },
6071 +
      "releasePress": {
6072 +
        "mean": -13.6,
6073 +
        "std": 0,
6074 +
        "min": -13.6,
6075 +
        "max": -13.6,
6076 +
        "count": 1
6077 +
      }
6078 +
    },
6079 +
    {
6080 +
      "normalizedKeys": "f → r",
6081 +
      "count": 1,
6082 +
      "holdTime1": {
6083 +
        "mean": 78.6,
6084 +
        "std": 0,
6085 +
        "min": 78.6,
6086 +
        "max": 78.6,
6087 +
        "count": 1
6088 +
      },
6089 +
      "holdTime2": {
6090 +
        "mean": 91.4,
6091 +
        "std": 0,
6092 +
        "min": 91.4,
6093 +
        "max": 91.4,
6094 +
        "count": 1
6095 +
      },
6096 +
      "pressPress": {
6097 +
        "mean": 182.6,
6098 +
        "std": 0,
6099 +
        "min": 182.6,
6100 +
        "max": 182.6,
6101 +
        "count": 1
6102 +
      },
6103 +
      "releaseRelease": {
6104 +
        "mean": 195.4,
6105 +
        "std": 0,
6106 +
        "min": 195.4,
6107 +
        "max": 195.4,
6108 +
        "count": 1
6109 +
      },
6110 +
      "pressRelease": {
6111 +
        "mean": 274,
6112 +
        "std": 0,
6113 +
        "min": 274,
6114 +
        "max": 274,
6115 +
        "count": 1
6116 +
      },
6117 +
      "releasePress": {
6118 +
        "mean": 104,
6119 +
        "std": 0,
6120 +
        "min": 104,
6121 +
        "max": 104,
6122 +
        "count": 1
6123 +
      }
6124 +
    },
6125 +
    {
6126 +
      "normalizedKeys": "e → .",
6127 +
      "count": 1,
6128 +
      "holdTime1": {
6129 +
        "mean": 93.9,
6130 +
        "std": 0,
6131 +
        "min": 93.9,
6132 +
        "max": 93.9,
6133 +
        "count": 1
6134 +
      },
6135 +
      "holdTime2": {
6136 +
        "mean": 116.8,
6137 +
        "std": 0,
6138 +
        "min": 116.8,
6139 +
        "max": 116.8,
6140 +
        "count": 1
6141 +
      },
6142 +
      "pressPress": {
6143 +
        "mean": 208.6,
6144 +
        "std": 0,
6145 +
        "min": 208.6,
6146 +
        "max": 208.6,
6147 +
        "count": 1
6148 +
      },
6149 +
      "releaseRelease": {
6150 +
        "mean": 231.5,
6151 +
        "std": 0,
6152 +
        "min": 231.5,
6153 +
        "max": 231.5,
6154 +
        "count": 1
6155 +
      },
6156 +
      "pressRelease": {
6157 +
        "mean": 325.4,
6158 +
        "std": 0,
6159 +
        "min": 325.4,
6160 +
        "max": 325.4,
6161 +
        "count": 1
6162 +
      },
6163 +
      "releasePress": {
6164 +
        "mean": 114.7,
6165 +
        "std": 0,
6166 +
        "min": 114.7,
6167 +
        "max": 114.7,
6168 +
        "count": 1
6169 +
      }
6170 +
    },
6171 +
    {
6172 +
      "normalizedKeys": "l → y",
6173 +
      "count": 1,
6174 +
      "holdTime1": {
6175 +
        "mean": 91.3,
6176 +
        "std": 0,
6177 +
        "min": 91.3,
6178 +
        "max": 91.3,
6179 +
        "count": 1
6180 +
      },
6181 +
      "holdTime2": {
6182 +
        "mean": 87.3,
6183 +
        "std": 0,
6184 +
        "min": 87.3,
6185 +
        "max": 87.3,
6186 +
        "count": 1
6187 +
      },
6188 +
      "pressPress": {
6189 +
        "mean": 58.2,
6190 +
        "std": 0,
6191 +
        "min": 58.2,
6192 +
        "max": 58.2,
6193 +
        "count": 1
6194 +
      },
6195 +
      "releaseRelease": {
6196 +
        "mean": 54.2,
6197 +
        "std": 0,
6198 +
        "min": 54.2,
6199 +
        "max": 54.2,
6200 +
        "count": 1
6201 +
      },
6202 +
      "pressRelease": {
6203 +
        "mean": 145.5,
6204 +
        "std": 0,
6205 +
        "min": 145.5,
6206 +
        "max": 145.5,
6207 +
        "count": 1
6208 +
      },
6209 +
      "releasePress": {
6210 +
        "mean": -33.1,
6211 +
        "std": 0,
6212 +
        "min": -33.1,
6213 +
        "max": -33.1,
6214 +
        "count": 1
6215 +
      }
6216 +
    },
6217 +
    {
6218 +
      "normalizedKeys": "o → t",
6219 +
      "count": 1,
6220 +
      "holdTime1": {
6221 +
        "mean": 72.9,
6222 +
        "std": 0,
6223 +
        "min": 72.9,
6224 +
        "max": 72.9,
6225 +
        "count": 1
6226 +
      },
6227 +
      "holdTime2": {
6228 +
        "mean": 59.4,
6229 +
        "std": 0,
6230 +
        "min": 59.4,
6231 +
        "max": 59.4,
6232 +
        "count": 1
6233 +
      },
6234 +
      "pressPress": {
6235 +
        "mean": 80.1,
6236 +
        "std": 0,
6237 +
        "min": 80.1,
6238 +
        "max": 80.1,
6239 +
        "count": 1
6240 +
      },
6241 +
      "releaseRelease": {
6242 +
        "mean": 66.6,
6243 +
        "std": 0,
6244 +
        "min": 66.6,
6245 +
        "max": 66.6,
6246 +
        "count": 1
6247 +
      },
6248 +
      "pressRelease": {
6249 +
        "mean": 139.5,
6250 +
        "std": 0,
6251 +
        "min": 139.5,
6252 +
        "max": 139.5,
6253 +
        "count": 1
6254 +
      },
6255 +
      "releasePress": {
6256 +
        "mean": 7.2,
6257 +
        "std": 0,
6258 +
        "min": 7.2,
6259 +
        "max": 7.2,
6260 +
        "count": 1
6261 +
      }
6262 +
    },
6263 +
    {
6264 +
      "normalizedKeys": "y → p",
6265 +
      "count": 1,
6266 +
      "holdTime1": {
6267 +
        "mean": 70.5,
6268 +
        "std": 0,
6269 +
        "min": 70.5,
6270 +
        "max": 70.5,
6271 +
        "count": 1
6272 +
      },
6273 +
      "holdTime2": {
6274 +
        "mean": 80,
6275 +
        "std": 0,
6276 +
        "min": 80,
6277 +
        "max": 80,
6278 +
        "count": 1
6279 +
      },
6280 +
      "pressPress": {
6281 +
        "mean": 111.4,
6282 +
        "std": 0,
6283 +
        "min": 111.4,
6284 +
        "max": 111.4,
6285 +
        "count": 1
6286 +
      },
6287 +
      "releaseRelease": {
6288 +
        "mean": 120.9,
6289 +
        "std": 0,
6290 +
        "min": 120.9,
6291 +
        "max": 120.9,
6292 +
        "count": 1
6293 +
      },
6294 +
      "pressRelease": {
6295 +
        "mean": 191.4,
6296 +
        "std": 0,
6297 +
        "min": 191.4,
6298 +
        "max": 191.4,
6299 +
        "count": 1
6300 +
      },
6301 +
      "releasePress": {
6302 +
        "mean": 40.9,
6303 +
        "std": 0,
6304 +
        "min": 40.9,
6305 +
        "max": 40.9,
6306 +
        "count": 1
6307 +
      }
6308 +
    },
6309 +
    {
6310 +
      "normalizedKeys": "t → y",
6311 +
      "count": 1,
6312 +
      "holdTime1": {
6313 +
        "mean": 115.7,
6314 +
        "std": 0,
6315 +
        "min": 115.7,
6316 +
        "max": 115.7,
6317 +
        "count": 1
6318 +
      },
6319 +
      "holdTime2": {
6320 +
        "mean": 70.5,
6321 +
        "std": 0,
6322 +
        "min": 70.5,
6323 +
        "max": 70.5,
6324 +
        "count": 1
6325 +
      },
6326 +
      "pressPress": {
6327 +
        "mean": 207.1,
6328 +
        "std": 0,
6329 +
        "min": 207.1,
6330 +
        "max": 207.1,
6331 +
        "count": 1
6332 +
      },
6333 +
      "releaseRelease": {
6334 +
        "mean": 161.9,
6335 +
        "std": 0,
6336 +
        "min": 161.9,
6337 +
        "max": 161.9,
6338 +
        "count": 1
6339 +
      },
6340 +
      "pressRelease": {
6341 +
        "mean": 277.6,
6342 +
        "std": 0,
6343 +
        "min": 277.6,
6344 +
        "max": 277.6,
6345 +
        "count": 1
6346 +
      },
6347 +
      "releasePress": {
6348 +
        "mean": 91.4,
6349 +
        "std": 0,
6350 +
        "min": 91.4,
6351 +
        "max": 91.4,
6352 +
        "count": 1
6353 +
      }
6354 +
    },
6355 +
    {
6356 +
      "normalizedKeys": "j → u",
6357 +
      "count": 1,
6358 +
      "holdTime1": {
6359 +
        "mean": 121,
6360 +
        "std": 0,
6361 +
        "min": 121,
6362 +
        "max": 121,
6363 +
        "count": 1
6364 +
      },
6365 +
      "holdTime2": {
6366 +
        "mean": 101.2,
6367 +
        "std": 0,
6368 +
        "min": 101.2,
6369 +
        "max": 101.2,
6370 +
        "count": 1
6371 +
      },
6372 +
      "pressPress": {
6373 +
        "mean": 204.1,
6374 +
        "std": 0,
6375 +
        "min": 204.1,
6376 +
        "max": 204.1,
6377 +
        "count": 1
6378 +
      },
6379 +
      "releaseRelease": {
6380 +
        "mean": 184.3,
6381 +
        "std": 0,
6382 +
        "min": 184.3,
6383 +
        "max": 184.3,
6384 +
        "count": 1
6385 +
      },
6386 +
      "pressRelease": {
6387 +
        "mean": 305.3,
6388 +
        "std": 0,
6389 +
        "min": 305.3,
6390 +
        "max": 305.3,
6391 +
        "count": 1
6392 +
      },
6393 +
      "releasePress": {
6394 +
        "mean": 83.1,
6395 +
        "std": 0,
6396 +
        "min": 83.1,
6397 +
        "max": 83.1,
6398 +
        "count": 1
6399 +
      }
6400 +
    },
6401 +
    {
6402 +
      "normalizedKeys": "a → .",
6403 +
      "count": 1,
6404 +
      "holdTime1": {
6405 +
        "mean": 145.3,
6406 +
        "std": 0,
6407 +
        "min": 145.3,
6408 +
        "max": 145.3,
6409 +
        "count": 1
6410 +
      },
6411 +
      "holdTime2": {
6412 +
        "mean": 104.9,
6413 +
        "std": 0,
6414 +
        "min": 104.9,
6415 +
        "max": 104.9,
6416 +
        "count": 1
6417 +
      },
6418 +
      "pressPress": {
6419 +
        "mean": 98.7,
6420 +
        "std": 0,
6421 +
        "min": 98.7,
6422 +
        "max": 98.7,
6423 +
        "count": 1
6424 +
      },
6425 +
      "releaseRelease": {
6426 +
        "mean": 58.3,
6427 +
        "std": 0,
6428 +
        "min": 58.3,
6429 +
        "max": 58.3,
6430 +
        "count": 1
6431 +
      },
6432 +
      "pressRelease": {
6433 +
        "mean": 203.6,
6434 +
        "std": 0,
6435 +
        "min": 203.6,
6436 +
        "max": 203.6,
6437 +
        "count": 1
6438 +
      },
6439 +
      "releasePress": {
6440 +
        "mean": -46.6,
6441 +
        "std": 0,
6442 +
        "min": -46.6,
6443 +
        "max": -46.6,
6444 +
        "count": 1
6445 +
      }
6446 +
    },
6447 +
    {
6448 +
      "normalizedKeys": "g → e",
6449 +
      "count": 1,
6450 +
      "holdTime1": {
6451 +
        "mean": 80.4,
6452 +
        "std": 0,
6453 +
        "min": 80.4,
6454 +
        "max": 80.4,
6455 +
        "count": 1
6456 +
      },
6457 +
      "holdTime2": {
6458 +
        "mean": 130,
6459 +
        "std": 0,
6460 +
        "min": 130,
6461 +
        "max": 130,
6462 +
        "count": 1
6463 +
      },
6464 +
      "pressPress": {
6465 +
        "mean": 150.4,
6466 +
        "std": 0,
6467 +
        "min": 150.4,
6468 +
        "max": 150.4,
6469 +
        "count": 1
6470 +
      },
6471 +
      "releaseRelease": {
6472 +
        "mean": 200,
6473 +
        "std": 0,
6474 +
        "min": 200,
6475 +
        "max": 200,
6476 +
        "count": 1
6477 +
      },
6478 +
      "pressRelease": {
6479 +
        "mean": 280.4,
6480 +
        "std": 0,
6481 +
        "min": 280.4,
6482 +
        "max": 280.4,
6483 +
        "count": 1
6484 +
      },
6485 +
      "releasePress": {
6486 +
        "mean": 70,
6487 +
        "std": 0,
6488 +
        "min": 70,
6489 +
        "max": 70,
6490 +
        "count": 1
6491 +
      }
6492 +
    },
6493 +
    {
6494 +
      "normalizedKeys": "␣ → g",
6495 +
      "count": 1,
6496 +
      "holdTime1": {
6497 +
        "mean": 20.6,
6498 +
        "std": 0,
6499 +
        "min": 20.6,
6500 +
        "max": 20.6,
6501 +
        "count": 1
6502 +
      },
6503 +
      "holdTime2": {
6504 +
        "mean": 80.4,
6505 +
        "std": 0,
6506 +
        "min": 80.4,
6507 +
        "max": 80.4,
6508 +
        "count": 1
6509 +
      },
6510 +
      "pressPress": {
6511 +
        "mean": 128.2,
6512 +
        "std": 0,
6513 +
        "min": 128.2,
6514 +
        "max": 128.2,
6515 +
        "count": 1
6516 +
      },
6517 +
      "releaseRelease": {
6518 +
        "mean": 188,
6519 +
        "std": 0,
6520 +
        "min": 188,
6521 +
        "max": 188,
6522 +
        "count": 1
6523 +
      },
6524 +
      "pressRelease": {
6525 +
        "mean": 208.6,
6526 +
        "std": 0,
6527 +
        "min": 208.6,
6528 +
        "max": 208.6,
6529 +
        "count": 1
6530 +
      },
6531 +
      "releasePress": {
6532 +
        "mean": 107.6,
6533 +
        "std": 0,
6534 +
        "min": 107.6,
6535 +
        "max": 107.6,
6536 +
        "count": 1
6537 +
      }
6538 +
    },
6539 +
    {
6540 +
      "normalizedKeys": "q → .",
6541 +
      "count": 1,
6542 +
      "holdTime1": {
6543 +
        "mean": 116.4,
6544 +
        "std": 0,
6545 +
        "min": 116.4,
6546 +
        "max": 116.4,
6547 +
        "count": 1
6548 +
      },
6549 +
      "holdTime2": {
6550 +
        "mean": 63.8,
6551 +
        "std": 0,
6552 +
        "min": 63.8,
6553 +
        "max": 63.8,
6554 +
        "count": 1
6555 +
      },
6556 +
      "pressPress": {
6557 +
        "mean": 271.4,
6558 +
        "std": 0,
6559 +
        "min": 271.4,
6560 +
        "max": 271.4,
6561 +
        "count": 1
6562 +
      },
6563 +
      "releaseRelease": {
6564 +
        "mean": 218.8,
6565 +
        "std": 0,
6566 +
        "min": 218.8,
6567 +
        "max": 218.8,
6568 +
        "count": 1
6569 +
      },
6570 +
      "pressRelease": {
6571 +
        "mean": 335.2,
6572 +
        "std": 0,
6573 +
        "min": 335.2,
6574 +
        "max": 335.2,
6575 +
        "count": 1
6576 +
      },
6577 +
      "releasePress": {
6578 +
        "mean": 155,
6579 +
        "std": 0,
6580 +
        "min": 155,
6581 +
        "max": 155,
6582 +
        "count": 1
6583 +
      }
6584 +
    },
6585 +
    {
6586 +
      "normalizedKeys": "e → w",
6587 +
      "count": 1,
6588 +
      "holdTime1": {
6589 +
        "mean": 165.8,
6590 +
        "std": 0,
6591 +
        "min": 165.8,
6592 +
        "max": 165.8,
6593 +
        "count": 1
6594 +
      },
6595 +
      "holdTime2": {
6596 +
        "mean": 153.4,
6597 +
        "std": 0,
6598 +
        "min": 153.4,
6599 +
        "max": 153.4,
6600 +
        "count": 1
6601 +
      },
6602 +
      "pressPress": {
6603 +
        "mean": 95.1,
6604 +
        "std": 0,
6605 +
        "min": 95.1,
6606 +
        "max": 95.1,
6607 +
        "count": 1
6608 +
      },
6609 +
      "releaseRelease": {
6610 +
        "mean": 82.7,
6611 +
        "std": 0,
6612 +
        "min": 82.7,
6613 +
        "max": 82.7,
6614 +
        "count": 1
6615 +
      },
6616 +
      "pressRelease": {
6617 +
        "mean": 248.5,
6618 +
        "std": 0,
6619 +
        "min": 248.5,
6620 +
        "max": 248.5,
6621 +
        "count": 1
6622 +
      },
6623 +
      "releasePress": {
6624 +
        "mean": -70.7,
6625 +
        "std": 0,
6626 +
        "min": -70.7,
6627 +
        "max": -70.7,
6628 +
        "count": 1
6629 +
      }
6630 +
    },
6631 +
    {
6632 +
      "normalizedKeys": "b → r",
6633 +
      "count": 1,
6634 +
      "holdTime1": {
6635 +
        "mean": 74.7,
6636 +
        "std": 0,
6637 +
        "min": 74.7,
6638 +
        "max": 74.7,
6639 +
        "count": 1
6640 +
      },
6641 +
      "holdTime2": {
6642 +
        "mean": 158,
6643 +
        "std": 0,
6644 +
        "min": 158,
6645 +
        "max": 158,
6646 +
        "count": 1
6647 +
      },
6648 +
      "pressPress": {
6649 +
        "mean": 116.1,
6650 +
        "std": 0,
6651 +
        "min": 116.1,
6652 +
        "max": 116.1,
6653 +
        "count": 1
6654 +
      },
6655 +
      "releaseRelease": {
6656 +
        "mean": 199.4,
6657 +
        "std": 0,
6658 +
        "min": 199.4,
6659 +
        "max": 199.4,
6660 +
        "count": 1
6661 +
      },
6662 +
      "pressRelease": {
6663 +
        "mean": 274.1,
6664 +
        "std": 0,
6665 +
        "min": 274.1,
6666 +
        "max": 274.1,
6667 +
        "count": 1
6668 +
      },
6669 +
      "releasePress": {
6670 +
        "mean": 41.4,
6671 +
        "std": 0,
6672 +
        "min": 41.4,
6673 +
        "max": 41.4,
6674 +
        "count": 1
6675 +
      }
6676 +
    },
6677 +
    {
6678 +
      "normalizedKeys": "⌫ → i",
6679 +
      "count": 1,
6680 +
      "holdTime1": {
6681 +
        "mean": 89.7,
6682 +
        "std": 0,
6683 +
        "min": 89.7,
6684 +
        "max": 89.7,
6685 +
        "count": 1
6686 +
      },
6687 +
      "holdTime2": {
6688 +
        "mean": 57.8,
6689 +
        "std": 0,
6690 +
        "min": 57.8,
6691 +
        "max": 57.8,
6692 +
        "count": 1
6693 +
      },
6694 +
      "pressPress": {
6695 +
        "mean": 256.9,
6696 +
        "std": 0,
6697 +
        "min": 256.9,
6698 +
        "max": 256.9,
6699 +
        "count": 1
6700 +
      },
6701 +
      "releaseRelease": {
6702 +
        "mean": 225,
6703 +
        "std": 0,
6704 +
        "min": 225,
6705 +
        "max": 225,
6706 +
        "count": 1
6707 +
      },
6708 +
      "pressRelease": {
6709 +
        "mean": 314.7,
6710 +
        "std": 0,
6711 +
        "min": 314.7,
6712 +
        "max": 314.7,
6713 +
        "count": 1
6714 +
      },
6715 +
      "releasePress": {
6716 +
        "mean": 167.2,
6717 +
        "std": 0,
6718 +
        "min": 167.2,
6719 +
        "max": 167.2,
6720 +
        "count": 1
6721 +
      }
6722 +
    },
6723 +
    {
6724 +
      "normalizedKeys": "r → s",
6725 +
      "count": 1,
6726 +
      "holdTime1": {
6727 +
        "mean": 91.1,
6728 +
        "std": 0,
6729 +
        "min": 91.1,
6730 +
        "max": 91.1,
6731 +
        "count": 1
6732 +
      },
6733 +
      "holdTime2": {
6734 +
        "mean": 139,
6735 +
        "std": 0,
6736 +
        "min": 139,
6737 +
        "max": 139,
6738 +
        "count": 1
6739 +
      },
6740 +
      "pressPress": {
6741 +
        "mean": 110.6,
6742 +
        "std": 0,
6743 +
        "min": 110.6,
6744 +
        "max": 110.6,
6745 +
        "count": 1
6746 +
      },
6747 +
      "releaseRelease": {
6748 +
        "mean": 158.5,
6749 +
        "std": 0,
6750 +
        "min": 158.5,
6751 +
        "max": 158.5,
6752 +
        "count": 1
6753 +
      },
6754 +
      "pressRelease": {
6755 +
        "mean": 249.6,
6756 +
        "std": 0,
6757 +
        "min": 249.6,
6758 +
        "max": 249.6,
6759 +
        "count": 1
6760 +
      },
6761 +
      "releasePress": {
6762 +
        "mean": 19.5,
6763 +
        "std": 0,
6764 +
        "min": 19.5,
6765 +
        "max": 19.5,
6766 +
        "count": 1
6767 +
      }
6768 +
    },
6769 +
    {
6770 +
      "normalizedKeys": "i → r",
6771 +
      "count": 1,
6772 +
      "holdTime1": {
6773 +
        "mean": 82.9,
6774 +
        "std": 0,
6775 +
        "min": 82.9,
6776 +
        "max": 82.9,
6777 +
        "count": 1
6778 +
      },
6779 +
      "holdTime2": {
6780 +
        "mean": 91.1,
6781 +
        "std": 0,
6782 +
        "min": 91.1,
6783 +
        "max": 91.1,
6784 +
        "count": 1
6785 +
      },
6786 +
      "pressPress": {
6787 +
        "mean": 116,
6788 +
        "std": 0,
6789 +
        "min": 116,
6790 +
        "max": 116,
6791 +
        "count": 1
6792 +
      },
6793 +
      "releaseRelease": {
6794 +
        "mean": 124.2,
6795 +
        "std": 0,
6796 +
        "min": 124.2,
6797 +
        "max": 124.2,
6798 +
        "count": 1
6799 +
      },
6800 +
      "pressRelease": {
6801 +
        "mean": 207.1,
6802 +
        "std": 0,
6803 +
        "min": 207.1,
6804 +
        "max": 207.1,
6805 +
        "count": 1
6806 +
      },
6807 +
      "releasePress": {
6808 +
        "mean": 33.1,
6809 +
        "std": 0,
6810 +
        "min": 33.1,
6811 +
        "max": 33.1,
6812 +
        "count": 1
6813 +
      }
6814 +
    },
6815 +
    {
6816 +
      "normalizedKeys": "p → l",
6817 +
      "count": 1,
6818 +
      "holdTime1": {
6819 +
        "mean": 71.8,
6820 +
        "std": 0,
6821 +
        "min": 71.8,
6822 +
        "max": 71.8,
6823 +
        "count": 1
6824 +
      },
6825 +
      "holdTime2": {
6826 +
        "mean": 62.7,
6827 +
        "std": 0,
6828 +
        "min": 62.7,
6829 +
        "max": 62.7,
6830 +
        "count": 1
6831 +
      },
6832 +
      "pressPress": {
6833 +
        "mean": 213.1,
6834 +
        "std": 0,
6835 +
        "min": 213.1,
6836 +
        "max": 213.1,
6837 +
        "count": 1
6838 +
      },
6839 +
      "releaseRelease": {
6840 +
        "mean": 204,
6841 +
        "std": 0,
6842 +
        "min": 204,
6843 +
        "max": 204,
6844 +
        "count": 1
6845 +
      },
6846 +
      "pressRelease": {
6847 +
        "mean": 275.8,
6848 +
        "std": 0,
6849 +
        "min": 275.8,
6850 +
        "max": 275.8,
6851 +
        "count": 1
6852 +
      },
6853 +
      "releasePress": {
6854 +
        "mean": 141.3,
6855 +
        "std": 0,
6856 +
        "min": 141.3,
6857 +
        "max": 141.3,
6858 +
        "count": 1
6859 +
      }
6860 +
    },
6861 +
    {
6862 +
      "normalizedKeys": "⌫ → p",
6863 +
      "count": 1,
6864 +
      "holdTime1": {
6865 +
        "mean": 72.7,
6866 +
        "std": 0,
6867 +
        "min": 72.7,
6868 +
        "max": 72.7,
6869 +
        "count": 1
6870 +
      },
6871 +
      "holdTime2": {
6872 +
        "mean": 71.8,
6873 +
        "std": 0,
6874 +
        "min": 71.8,
6875 +
        "max": 71.8,
6876 +
        "count": 1
6877 +
      },
6878 +
      "pressPress": {
6879 +
        "mean": 219.6,
6880 +
        "std": 0,
6881 +
        "min": 219.6,
6882 +
        "max": 219.6,
6883 +
        "count": 1
6884 +
      },
6885 +
      "releaseRelease": {
6886 +
        "mean": 218.7,
6887 +
        "std": 0,
6888 +
        "min": 218.7,
6889 +
        "max": 218.7,
6890 +
        "count": 1
6891 +
      },
6892 +
      "pressRelease": {
6893 +
        "mean": 291.4,
6894 +
        "std": 0,
6895 +
        "min": 291.4,
6896 +
        "max": 291.4,
6897 +
        "count": 1
6898 +
      },
6899 +
      "releasePress": {
6900 +
        "mean": 146.9,
6901 +
        "std": 0,
6902 +
        "min": 146.9,
6903 +
        "max": 146.9,
6904 +
        "count": 1
6905 +
      }
6906 +
    },
6907 +
    {
6908 +
      "normalizedKeys": "i → p",
6909 +
      "count": 1,
6910 +
      "holdTime1": {
6911 +
        "mean": 74.1,
6912 +
        "std": 0,
6913 +
        "min": 74.1,
6914 +
        "max": 74.1,
6915 +
        "count": 1
6916 +
      },
6917 +
      "holdTime2": {
6918 +
        "mean": 83.3,
6919 +
        "std": 0,
6920 +
        "min": 83.3,
6921 +
        "max": 83.3,
6922 +
        "count": 1
6923 +
      },
6924 +
      "pressPress": {
6925 +
        "mean": 140.7,
6926 +
        "std": 0,
6927 +
        "min": 140.7,
6928 +
        "max": 140.7,
6929 +
        "count": 1
6930 +
      },
6931 +
      "releaseRelease": {
6932 +
        "mean": 149.9,
6933 +
        "std": 0,
6934 +
        "min": 149.9,
6935 +
        "max": 149.9,
6936 +
        "count": 1
6937 +
      },
6938 +
      "pressRelease": {
6939 +
        "mean": 224,
6940 +
        "std": 0,
6941 +
        "min": 224,
6942 +
        "max": 224,
6943 +
        "count": 1
6944 +
      },
6945 +
      "releasePress": {
6946 +
        "mean": 66.6,
6947 +
        "std": 0,
6948 +
        "min": 66.6,
6949 +
        "max": 66.6,
6950 +
        "count": 1
6951 +
      }
6952 +
    },
6953 +
    {
6954 +
      "normalizedKeys": "m → a",
6955 +
      "count": 1,
6956 +
      "holdTime1": {
6957 +
        "mean": 90.7,
6958 +
        "std": 0,
6959 +
        "min": 90.7,
6960 +
        "max": 90.7,
6961 +
        "count": 1
6962 +
      },
6963 +
      "holdTime2": {
6964 +
        "mean": 127.3,
6965 +
        "std": 0,
6966 +
        "min": 127.3,
6967 +
        "max": 127.3,
6968 +
        "count": 1
6969 +
      },
6970 +
      "pressPress": {
6971 +
        "mean": 113.5,
6972 +
        "std": 0,
6973 +
        "min": 113.5,
6974 +
        "max": 113.5,
6975 +
        "count": 1
6976 +
      },
6977 +
      "releaseRelease": {
6978 +
        "mean": 150.1,
6979 +
        "std": 0,
6980 +
        "min": 150.1,
6981 +
        "max": 150.1,
6982 +
        "count": 1
6983 +
      },
6984 +
      "pressRelease": {
6985 +
        "mean": 240.8,
6986 +
        "std": 0,
6987 +
        "min": 240.8,
6988 +
        "max": 240.8,
6989 +
        "count": 1
6990 +
      },
6991 +
      "releasePress": {
6992 +
        "mean": 22.8,
6993 +
        "std": 0,
6994 +
        "min": 22.8,
6995 +
        "max": 22.8,
6996 +
        "count": 1
6997 +
      }
6998 +
    },
6999 +
    {
7000 +
      "normalizedKeys": "a → u",
7001 +
      "count": 1,
7002 +
      "holdTime1": {
7003 +
        "mean": 132.5,
7004 +
        "std": 0,
7005 +
        "min": 132.5,
7006 +
        "max": 132.5,
7007 +
        "count": 1
7008 +
      },
7009 +
      "holdTime2": {
7010 +
        "mean": 91.1,
7011 +
        "std": 0,
7012 +
        "min": 91.1,
7013 +
        "max": 91.1,
7014 +
        "count": 1
7015 +
      },
7016 +
      "pressPress": {
7017 +
        "mean": 99.5,
7018 +
        "std": 0,
7019 +
        "min": 99.5,
7020 +
        "max": 99.5,
7021 +
        "count": 1
7022 +
      },
7023 +
      "releaseRelease": {
7024 +
        "mean": 58.1,
7025 +
        "std": 0,
7026 +
        "min": 58.1,
7027 +
        "max": 58.1,
7028 +
        "count": 1
7029 +
      },
7030 +
      "pressRelease": {
7031 +
        "mean": 190.6,
7032 +
        "std": 0,
7033 +
        "min": 190.6,
7034 +
        "max": 190.6,
7035 +
        "count": 1
7036 +
      },
7037 +
      "releasePress": {
7038 +
        "mean": -33,
7039 +
        "std": 0,
7040 +
        "min": -33,
7041 +
        "max": -33,
7042 +
        "count": 1
7043 +
      }
7044 +
    },
7045 +
    {
7046 +
      "normalizedKeys": "w → s",
7047 +
      "count": 1,
7048 +
      "holdTime1": {
7049 +
        "mean": 91.4,
7050 +
        "std": 0,
7051 +
        "min": 91.4,
7052 +
        "max": 91.4,
7053 +
        "count": 1
7054 +
      },
7055 +
      "holdTime2": {
7056 +
        "mean": 127.9,
7057 +
        "std": 0,
7058 +
        "min": 127.9,
7059 +
        "max": 127.9,
7060 +
        "count": 1
7061 +
      },
7062 +
      "pressPress": {
7063 +
        "mean": 211.5,
7064 +
        "std": 0,
7065 +
        "min": 211.5,
7066 +
        "max": 211.5,
7067 +
        "count": 1
7068 +
      },
7069 +
      "releaseRelease": {
7070 +
        "mean": 248,
7071 +
        "std": 0,
7072 +
        "min": 248,
7073 +
        "max": 248,
7074 +
        "count": 1
7075 +
      },
7076 +
      "pressRelease": {
7077 +
        "mean": 339.4,
7078 +
        "std": 0,
7079 +
        "min": 339.4,
7080 +
        "max": 339.4,
7081 +
        "count": 1
7082 +
      },
7083 +
      "releasePress": {
7084 +
        "mean": 120.1,
7085 +
        "std": 0,
7086 +
        "min": 120.1,
7087 +
        "max": 120.1,
7088 +
        "count": 1
7089 +
      }
7090 +
    },
7091 +
    {
7092 +
      "normalizedKeys": "f → l",
7093 +
      "count": 1,
7094 +
      "holdTime1": {
7095 +
        "mean": 101.5,
7096 +
        "std": 0,
7097 +
        "min": 101.5,
7098 +
        "max": 101.5,
7099 +
        "count": 1
7100 +
      },
7101 +
      "holdTime2": {
7102 +
        "mean": 71.1,
7103 +
        "std": 0,
7104 +
        "min": 71.1,
7105 +
        "max": 71.1,
7106 +
        "count": 1
7107 +
      },
7108 +
      "pressPress": {
7109 +
        "mean": 123.5,
7110 +
        "std": 0,
7111 +
        "min": 123.5,
7112 +
        "max": 123.5,
7113 +
        "count": 1
7114 +
      },
7115 +
      "releaseRelease": {
7116 +
        "mean": 93.1,
7117 +
        "std": 0,
7118 +
        "min": 93.1,
7119 +
        "max": 93.1,
7120 +
        "count": 1
7121 +
      },
7122 +
      "pressRelease": {
7123 +
        "mean": 194.6,
7124 +
        "std": 0,
7125 +
        "min": 194.6,
7126 +
        "max": 194.6,
7127 +
        "count": 1
7128 +
      },
7129 +
      "releasePress": {
7130 +
        "mean": 22,
7131 +
        "std": 0,
7132 +
        "min": 22,
7133 +
        "max": 22,
7134 +
        "count": 1
7135 +
      }
7136 +
    },
7137 +
    {
7138 +
      "normalizedKeys": "k → f",
7139 +
      "count": 1,
7140 +
      "holdTime1": {
7141 +
        "mean": 77.8,
7142 +
        "std": 0,
7143 +
        "min": 77.8,
7144 +
        "max": 77.8,
7145 +
        "count": 1
7146 +
      },
7147 +
      "holdTime2": {
7148 +
        "mean": 101.5,
7149 +
        "std": 0,
7150 +
        "min": 101.5,
7151 +
        "max": 101.5,
7152 +
        "count": 1
7153 +
      },
7154 +
      "pressPress": {
7155 +
        "mean": 135.6,
7156 +
        "std": 0,
7157 +
        "min": 135.6,
7158 +
        "max": 135.6,
7159 +
        "count": 1
7160 +
      },
7161 +
      "releaseRelease": {
7162 +
        "mean": 159.3,
7163 +
        "std": 0,
7164 +
        "min": 159.3,
7165 +
        "max": 159.3,
7166 +
        "count": 1
7167 +
      },
7168 +
      "pressRelease": {
7169 +
        "mean": 237.1,
7170 +
        "std": 0,
7171 +
        "min": 237.1,
7172 +
        "max": 237.1,
7173 +
        "count": 1
7174 +
      },
7175 +
      "releasePress": {
7176 +
        "mean": 57.8,
7177 +
        "std": 0,
7178 +
        "min": 57.8,
7179 +
        "max": 57.8,
7180 +
        "count": 1
7181 +
      }
7182 +
    },
7183 +
    {
7184 +
      "normalizedKeys": "w → n",
7185 +
      "count": 1,
7186 +
      "holdTime1": {
7187 +
        "mean": 132.9,
7188 +
        "std": 0,
7189 +
        "min": 132.9,
7190 +
        "max": 132.9,
7191 +
        "count": 1
7192 +
      },
7193 +
      "holdTime2": {
7194 +
        "mean": 99.9,
7195 +
        "std": 0,
7196 +
        "min": 99.9,
7197 +
        "max": 99.9,
7198 +
        "count": 1
7199 +
      },
7200 +
      "pressPress": {
7201 +
        "mean": 125.5,
7202 +
        "std": 0,
7203 +
        "min": 125.5,
7204 +
        "max": 125.5,
7205 +
        "count": 1
7206 +
      },
7207 +
      "releaseRelease": {
7208 +
        "mean": 92.5,
7209 +
        "std": 0,
7210 +
        "min": 92.5,
7211 +
        "max": 92.5,
7212 +
        "count": 1
7213 +
      },
7214 +
      "pressRelease": {
7215 +
        "mean": 225.4,
7216 +
        "std": 0,
7217 +
        "min": 225.4,
7218 +
        "max": 225.4,
7219 +
        "count": 1
7220 +
      },
7221 +
      "releasePress": {
7222 +
        "mean": -7.4,
7223 +
        "std": 0,
7224 +
        "min": -7.4,
7225 +
        "max": -7.4,
7226 +
        "count": 1
7227 +
      }
7228 +
    },
7229 +
    {
7230 +
      "normalizedKeys": "s → e",
7231 +
      "count": 1,
7232 +
      "holdTime1": {
7233 +
        "mean": 62.5,
7234 +
        "std": 0,
7235 +
        "min": 62.5,
7236 +
        "max": 62.5,
7237 +
        "count": 1
7238 +
      },
7239 +
      "holdTime2": {
7240 +
        "mean": 107.5,
7241 +
        "std": 0,
7242 +
        "min": 107.5,
7243 +
        "max": 107.5,
7244 +
        "count": 1
7245 +
      },
7246 +
      "pressPress": {
7247 +
        "mean": 121.2,
7248 +
        "std": 0,
7249 +
        "min": 121.2,
7250 +
        "max": 121.2,
7251 +
        "count": 1
7252 +
      },
7253 +
      "releaseRelease": {
7254 +
        "mean": 166.2,
7255 +
        "std": 0,
7256 +
        "min": 166.2,
7257 +
        "max": 166.2,
7258 +
        "count": 1
7259 +
      },
7260 +
      "pressRelease": {
7261 +
        "mean": 228.7,
7262 +
        "std": 0,
7263 +
        "min": 228.7,
7264 +
        "max": 228.7,
7265 +
        "count": 1
7266 +
      },
7267 +
      "releasePress": {
7268 +
        "mean": 58.7,
7269 +
        "std": 0,
7270 +
        "min": 58.7,
7271 +
        "max": 58.7,
7272 +
        "count": 1
7273 +
      }
7274 +
    },
7275 +
    {
7276 +
      "normalizedKeys": "⌫ → q",
7277 +
      "count": 1,
7278 +
      "holdTime1": {
7279 +
        "mean": 76.2,
7280 +
        "std": 0,
7281 +
        "min": 76.2,
7282 +
        "max": 76.2,
7283 +
        "count": 1
7284 +
      },
7285 +
      "holdTime2": {
7286 +
        "mean": 88.3,
7287 +
        "std": 0,
7288 +
        "min": 88.3,
7289 +
        "max": 88.3,
7290 +
        "count": 1
7291 +
      },
7292 +
      "pressPress": {
7293 +
        "mean": 100.3,
7294 +
        "std": 0,
7295 +
        "min": 100.3,
7296 +
        "max": 100.3,
7297 +
        "count": 1
7298 +
      },
7299 +
      "releaseRelease": {
7300 +
        "mean": 112.4,
7301 +
        "std": 0,
7302 +
        "min": 112.4,
7303 +
        "max": 112.4,
7304 +
        "count": 1
7305 +
      },
7306 +
      "pressRelease": {
7307 +
        "mean": 188.6,
7308 +
        "std": 0,
7309 +
        "min": 188.6,
7310 +
        "max": 188.6,
7311 +
        "count": 1
7312 +
      },
7313 +
      "releasePress": {
7314 +
        "mean": 24.1,
7315 +
        "std": 0,
7316 +
        "min": 24.1,
7317 +
        "max": 24.1,
7318 +
        "count": 1
7319 +
      }
7320 +
    },
7321 +
    {
7322 +
      "normalizedKeys": "w → ⌫",
7323 +
      "count": 1,
7324 +
      "holdTime1": {
7325 +
        "mean": 79.4,
7326 +
        "std": 0,
7327 +
        "min": 79.4,
7328 +
        "max": 79.4,
7329 +
        "count": 1
7330 +
      },
7331 +
      "holdTime2": {
7332 +
        "mean": 76.2,
7333 +
        "std": 0,
7334 +
        "min": 76.2,
7335 +
        "max": 76.2,
7336 +
        "count": 1
7337 +
      },
7338 +
      "pressPress": {
7339 +
        "mean": 382.3,
7340 +
        "std": 0,
7341 +
        "min": 382.3,
7342 +
        "max": 382.3,
7343 +
        "count": 1
7344 +
      },
7345 +
      "releaseRelease": {
7346 +
        "mean": 379.1,
7347 +
        "std": 0,
7348 +
        "min": 379.1,
7349 +
        "max": 379.1,
7350 +
        "count": 1
7351 +
      },
7352 +
      "pressRelease": {
7353 +
        "mean": 458.5,
7354 +
        "std": 0,
7355 +
        "min": 458.5,
7356 +
        "max": 458.5,
7357 +
        "count": 1
7358 +
      },
7359 +
      "releasePress": {
7360 +
        "mean": 302.9,
7361 +
        "std": 0,
7362 +
        "min": 302.9,
7363 +
        "max": 302.9,
7364 +
        "count": 1
7365 +
      }
7366 +
    },
7367 +
    {
7368 +
      "normalizedKeys": "j → w",
7369 +
      "count": 1,
7370 +
      "holdTime1": {
7371 +
        "mean": 124.5,
7372 +
        "std": 0,
7373 +
        "min": 124.5,
7374 +
        "max": 124.5,
7375 +
        "count": 1
7376 +
      },
7377 +
      "holdTime2": {
7378 +
        "mean": 79.4,
7379 +
        "std": 0,
7380 +
        "min": 79.4,
7381 +
        "max": 79.4,
7382 +
        "count": 1
7383 +
      },
7384 +
      "pressPress": {
7385 +
        "mean": 277.8,
7386 +
        "std": 0,
7387 +
        "min": 277.8,
7388 +
        "max": 277.8,
7389 +
        "count": 1
7390 +
      },
7391 +
      "releaseRelease": {
7392 +
        "mean": 232.7,
7393 +
        "std": 0,
7394 +
        "min": 232.7,
7395 +
        "max": 232.7,
7396 +
        "count": 1
7397 +
      },
7398 +
      "pressRelease": {
7399 +
        "mean": 357.2,
7400 +
        "std": 0,
7401 +
        "min": 357.2,
7402 +
        "max": 357.2,
7403 +
        "count": 1
7404 +
      },
7405 +
      "releasePress": {
7406 +
        "mean": 153.3,
7407 +
        "std": 0,
7408 +
        "min": 153.3,
7409 +
        "max": 153.3,
7410 +
        "count": 1
7411 +
      }
7412 +
    },
7413 +
    {
7414 +
      "normalizedKeys": "s → h",
7415 +
      "count": 1,
7416 +
      "holdTime1": {
7417 +
        "mean": 99.8,
7418 +
        "std": 0,
7419 +
        "min": 99.8,
7420 +
        "max": 99.8,
7421 +
        "count": 1
7422 +
      },
7423 +
      "holdTime2": {
7424 +
        "mean": 91.2,
7425 +
        "std": 0,
7426 +
        "min": 91.2,
7427 +
        "max": 91.2,
7428 +
        "count": 1
7429 +
      },
7430 +
      "pressPress": {
7431 +
        "mean": 75.3,
7432 +
        "std": 0,
7433 +
        "min": 75.3,
7434 +
        "max": 75.3,
7435 +
        "count": 1
7436 +
      },
7437 +
      "releaseRelease": {
7438 +
        "mean": 66.7,
7439 +
        "std": 0,
7440 +
        "min": 66.7,
7441 +
        "max": 66.7,
7442 +
        "count": 1
7443 +
      },
7444 +
      "pressRelease": {
7445 +
        "mean": 166.5,
7446 +
        "std": 0,
7447 +
        "min": 166.5,
7448 +
        "max": 166.5,
7449 +
        "count": 1
7450 +
      },
7451 +
      "releasePress": {
7452 +
        "mean": -24.5,
7453 +
        "std": 0,
7454 +
        "min": -24.5,
7455 +
        "max": -24.5,
7456 +
        "count": 1
7457 +
      }
7458 +
    },
7459 +
    {
7460 +
      "normalizedKeys": "' → l",
7461 +
      "count": 1,
7462 +
      "holdTime1": {
7463 +
        "mean": 53.1,
7464 +
        "std": 0,
7465 +
        "min": 53.1,
7466 +
        "max": 53.1,
7467 +
        "count": 1
7468 +
      },
7469 +
      "holdTime2": {
7470 +
        "mean": 58.4,
7471 +
        "std": 0,
7472 +
        "min": 58.4,
7473 +
        "max": 58.4,
7474 +
        "count": 1
7475 +
      },
7476 +
      "pressPress": {
7477 +
        "mean": 169.8,
7478 +
        "std": 0,
7479 +
        "min": 169.8,
7480 +
        "max": 169.8,
7481 +
        "count": 1
7482 +
      },
7483 +
      "releaseRelease": {
7484 +
        "mean": 175.1,
7485 +
        "std": 0,
7486 +
        "min": 175.1,
7487 +
        "max": 175.1,
7488 +
        "count": 1
7489 +
      },
7490 +
      "pressRelease": {
7491 +
        "mean": 228.2,
7492 +
        "std": 0,
7493 +
        "min": 228.2,
7494 +
        "max": 228.2,
7495 +
        "count": 1
7496 +
      },
7497 +
      "releasePress": {
7498 +
        "mean": 116.7,
7499 +
        "std": 0,
7500 +
        "min": 116.7,
7501 +
        "max": 116.7,
7502 +
        "count": 1
7503 +
      }
7504 +
    },
7505 +
    {
7506 +
      "normalizedKeys": "e → '",
7507 +
      "count": 1,
7508 +
      "holdTime1": {
7509 +
        "mean": 141.1,
7510 +
        "std": 0,
7511 +
        "min": 141.1,
7512 +
        "max": 141.1,
7513 +
        "count": 1
7514 +
      },
7515 +
      "holdTime2": {
7516 +
        "mean": 53.1,
7517 +
        "std": 0,
7518 +
        "min": 53.1,
7519 +
        "max": 53.1,
7520 +
        "count": 1
7521 +
      },
7522 +
      "pressPress": {
7523 +
        "mean": 162.2,
7524 +
        "std": 0,
7525 +
        "min": 162.2,
7526 +
        "max": 162.2,
7527 +
        "count": 1
7528 +
      },
7529 +
      "releaseRelease": {
7530 +
        "mean": 74.2,
7531 +
        "std": 0,
7532 +
        "min": 74.2,
7533 +
        "max": 74.2,
7534 +
        "count": 1
7535 +
      },
7536 +
      "pressRelease": {
7537 +
        "mean": 215.3,
7538 +
        "std": 0,
7539 +
        "min": 215.3,
7540 +
        "max": 215.3,
7541 +
        "count": 1
7542 +
      },
7543 +
      "releasePress": {
7544 +
        "mean": 21.1,
7545 +
        "std": 0,
7546 +
        "min": 21.1,
7547 +
        "max": 21.1,
7548 +
        "count": 1
7549 +
      }
7550 +
    },
7551 +
    {
7552 +
      "normalizedKeys": "w → e",
7553 +
      "count": 1,
7554 +
      "holdTime1": {
7555 +
        "mean": 100.6,
7556 +
        "std": 0,
7557 +
        "min": 100.6,
7558 +
        "max": 100.6,
7559 +
        "count": 1
7560 +
      },
7561 +
      "holdTime2": {
7562 +
        "mean": 141.1,
7563 +
        "std": 0,
7564 +
        "min": 141.1,
7565 +
        "max": 141.1,
7566 +
        "count": 1
7567 +
      },
7568 +
      "pressPress": {
7569 +
        "mean": 76.2,
7570 +
        "std": 0,
7571 +
        "min": 76.2,
7572 +
        "max": 76.2,
7573 +
        "count": 1
7574 +
      },
7575 +
      "releaseRelease": {
7576 +
        "mean": 116.7,
7577 +
        "std": 0,
7578 +
        "min": 116.7,
7579 +
        "max": 116.7,
7580 +
        "count": 1
7581 +
      },
7582 +
      "pressRelease": {
7583 +
        "mean": 217.3,
7584 +
        "std": 0,
7585 +
        "min": 217.3,
7586 +
        "max": 217.3,
7587 +
        "count": 1
7588 +
      },
7589 +
      "releasePress": {
7590 +
        "mean": -24.4,
7591 +
        "std": 0,
7592 +
        "min": -24.4,
7593 +
        "max": -24.4,
7594 +
        "count": 1
7595 +
      }
7596 +
    },
7597 +
    {
7598 +
      "normalizedKeys": "o → s",
7599 +
      "count": 1,
7600 +
      "holdTime1": {
7601 +
        "mean": 108.1,
7602 +
        "std": 0,
7603 +
        "min": 108.1,
7604 +
        "max": 108.1,
7605 +
        "count": 1
7606 +
      },
7607 +
      "holdTime2": {
7608 +
        "mean": 83.1,
7609 +
        "std": 0,
7610 +
        "min": 83.1,
7611 +
        "max": 83.1,
7612 +
        "count": 1
7613 +
      },
7614 +
      "pressPress": {
7615 +
        "mean": 66.7,
7616 +
        "std": 0,
7617 +
        "min": 66.7,
7618 +
        "max": 66.7,
7619 +
        "count": 1
7620 +
      },
7621 +
      "releaseRelease": {
7622 +
        "mean": 41.7,
7623 +
        "std": 0,
7624 +
        "min": 41.7,
7625 +
        "max": 41.7,
7626 +
        "count": 1
7627 +
      },
7628 +
      "pressRelease": {
7629 +
        "mean": 149.8,
7630 +
        "std": 0,
7631 +
        "min": 149.8,
7632 +
        "max": 149.8,
7633 +
        "count": 1
7634 +
      },
7635 +
      "releasePress": {
7636 +
        "mean": -41.4,
7637 +
        "std": 0,
7638 +
        "min": -41.4,
7639 +
        "max": -41.4,
7640 +
        "count": 1
7641 +
      }
7642 +
    },
7643 +
    {
7644 +
      "normalizedKeys": "p → o",
7645 +
      "count": 1,
7646 +
      "holdTime1": {
7647 +
        "mean": 158,
7648 +
        "std": 0,
7649 +
        "min": 158,
7650 +
        "max": 158,
7651 +
        "count": 1
7652 +
      },
7653 +
      "holdTime2": {
7654 +
        "mean": 108.1,
7655 +
        "std": 0,
7656 +
        "min": 108.1,
7657 +
        "max": 108.1,
7658 +
        "count": 1
7659 +
      },
7660 +
      "pressPress": {
7661 +
        "mean": 107.8,
7662 +
        "std": 0,
7663 +
        "min": 107.8,
7664 +
        "max": 107.8,
7665 +
        "count": 1
7666 +
      },
7667 +
      "releaseRelease": {
7668 +
        "mean": 57.9,
7669 +
        "std": 0,
7670 +
        "min": 57.9,
7671 +
        "max": 57.9,
7672 +
        "count": 1
7673 +
      },
7674 +
      "pressRelease": {
7675 +
        "mean": 215.9,
7676 +
        "std": 0,
7677 +
        "min": 215.9,
7678 +
        "max": 215.9,
7679 +
        "count": 1
7680 +
      },
7681 +
      "releasePress": {
7682 +
        "mean": -50.2,
7683 +
        "std": 0,
7684 +
        "min": -50.2,
7685 +
        "max": -50.2,
7686 +
        "count": 1
7687 +
      }
7688 +
    },
7689 +
    {
7690 +
      "normalizedKeys": "o → g",
7691 +
      "count": 1,
7692 +
      "holdTime1": {
7693 +
        "mean": 114.4,
7694 +
        "std": 0,
7695 +
        "min": 114.4,
7696 +
        "max": 114.4,
7697 +
        "count": 1
7698 +
      },
7699 +
      "holdTime2": {
7700 +
        "mean": 66.3,
7701 +
        "std": 0,
7702 +
        "min": 66.3,
7703 +
        "max": 66.3,
7704 +
        "count": 1
7705 +
      },
7706 +
      "pressPress": {
7707 +
        "mean": 98.1,
7708 +
        "std": 0,
7709 +
        "min": 98.1,
7710 +
        "max": 98.1,
7711 +
        "count": 1
7712 +
      },
7713 +
      "releaseRelease": {
7714 +
        "mean": 50,
7715 +
        "std": 0,
7716 +
        "min": 50,
7717 +
        "max": 50,
7718 +
        "count": 1
7719 +
      },
7720 +
      "pressRelease": {
7721 +
        "mean": 164.4,
7722 +
        "std": 0,
7723 +
        "min": 164.4,
7724 +
        "max": 164.4,
7725 +
        "count": 1
7726 +
      },
7727 +
      "releasePress": {
7728 +
        "mean": -16.3,
7729 +
        "std": 0,
7730 +
        "min": -16.3,
7731 +
        "max": -16.3,
7732 +
        "count": 1
7733 +
      }
7734 +
    },
7735 +
    {
7736 +
      "normalizedKeys": "b → l",
7737 +
      "count": 1,
7738 +
      "holdTime1": {
7739 +
        "mean": 66.6,
7740 +
        "std": 0,
7741 +
        "min": 66.6,
7742 +
        "max": 66.6,
7743 +
        "count": 1
7744 +
      },
7745 +
      "holdTime2": {
7746 +
        "mean": 49.5,
7747 +
        "std": 0,
7748 +
        "min": 49.5,
7749 +
        "max": 49.5,
7750 +
        "count": 1
7751 +
      },
7752 +
      "pressPress": {
7753 +
        "mean": 108,
7754 +
        "std": 0,
7755 +
        "min": 108,
7756 +
        "max": 108,
7757 +
        "count": 1
7758 +
      },
7759 +
      "releaseRelease": {
7760 +
        "mean": 90.9,
7761 +
        "std": 0,
7762 +
        "min": 90.9,
7763 +
        "max": 90.9,
7764 +
        "count": 1
7765 +
      },
7766 +
      "pressRelease": {
7767 +
        "mean": 157.5,
7768 +
        "std": 0,
7769 +
        "min": 157.5,
7770 +
        "max": 157.5,
7771 +
        "count": 1
7772 +
      },
7773 +
      "releasePress": {
7774 +
        "mean": 41.4,
7775 +
        "std": 0,
7776 +
        "min": 41.4,
7777 +
        "max": 41.4,
7778 +
        "count": 1
7779 +
      }
7780 +
    },
7781 +
    {
7782 +
      "normalizedKeys": "⌫ → b",
7783 +
      "count": 1,
7784 +
      "holdTime1": {
7785 +
        "mean": 48.9,
7786 +
        "std": 0,
7787 +
        "min": 48.9,
7788 +
        "max": 48.9,
7789 +
        "count": 1
7790 +
      },
7791 +
      "holdTime2": {
7792 +
        "mean": 66.6,
7793 +
        "std": 0,
7794 +
        "min": 66.6,
7795 +
        "max": 66.6,
7796 +
        "count": 1
7797 +
      },
7798 +
      "pressPress": {
7799 +
        "mean": 124.5,
7800 +
        "std": 0,
7801 +
        "min": 124.5,
7802 +
        "max": 124.5,
7803 +
        "count": 1
7804 +
      },
7805 +
      "releaseRelease": {
7806 +
        "mean": 142.2,
7807 +
        "std": 0,
7808 +
        "min": 142.2,
7809 +
        "max": 142.2,
7810 +
        "count": 1
7811 +
      },
7812 +
      "pressRelease": {
7813 +
        "mean": 191.1,
7814 +
        "std": 0,
7815 +
        "min": 191.1,
7816 +
        "max": 191.1,
7817 +
        "count": 1
7818 +
      },
7819 +
      "releasePress": {
7820 +
        "mean": 75.6,
7821 +
        "std": 0,
7822 +
        "min": 75.6,
7823 +
        "max": 75.6,
7824 +
        "count": 1
7825 +
      }
7826 +
    },
7827 +
    {
7828 +
      "normalizedKeys": "o → e",
7829 +
      "count": 1,
7830 +
      "holdTime1": {
7831 +
        "mean": 85,
7832 +
        "std": 0,
7833 +
        "min": 85,
7834 +
        "max": 85,
7835 +
        "count": 1
7836 +
      },
7837 +
      "holdTime2": {
7838 +
        "mean": 108.9,
7839 +
        "std": 0,
7840 +
        "min": 108.9,
7841 +
        "max": 108.9,
7842 +
        "count": 1
7843 +
      },
7844 +
      "pressPress": {
7845 +
        "mean": 100.2,
7846 +
        "std": 0,
7847 +
        "min": 100.2,
7848 +
        "max": 100.2,
7849 +
        "count": 1
7850 +
      },
7851 +
      "releaseRelease": {
7852 +
        "mean": 124.1,
7853 +
        "std": 0,
7854 +
        "min": 124.1,
7855 +
        "max": 124.1,
7856 +
        "count": 1
7857 +
      },
7858 +
      "pressRelease": {
7859 +
        "mean": 209.1,
7860 +
        "std": 0,
7861 +
        "min": 209.1,
7862 +
        "max": 209.1,
7863 +
        "count": 1
7864 +
      },
7865 +
      "releasePress": {
7866 +
        "mean": 15.2,
7867 +
        "std": 0,
7868 +
        "min": 15.2,
7869 +
        "max": 15.2,
7870 +
        "count": 1
7871 +
      }
7872 +
    },
7873 +
    {
7874 +
      "normalizedKeys": "d → o",
7875 +
      "count": 1,
7876 +
      "holdTime1": {
7877 +
        "mean": 83,
7878 +
        "std": 0,
7879 +
        "min": 83,
7880 +
        "max": 83,
7881 +
        "count": 1
7882 +
      },
7883 +
      "holdTime2": {
7884 +
        "mean": 85,
7885 +
        "std": 0,
7886 +
        "min": 85,
7887 +
        "max": 85,
7888 +
        "count": 1
7889 +
      },
7890 +
      "pressPress": {
7891 +
        "mean": 116.2,
7892 +
        "std": 0,
7893 +
        "min": 116.2,
7894 +
        "max": 116.2,
7895 +
        "count": 1
7896 +
      },
7897 +
      "releaseRelease": {
7898 +
        "mean": 118.2,
7899 +
        "std": 0,
7900 +
        "min": 118.2,
7901 +
        "max": 118.2,
7902 +
        "count": 1
7903 +
      },
7904 +
      "pressRelease": {
7905 +
        "mean": 201.2,
7906 +
        "std": 0,
7907 +
        "min": 201.2,
7908 +
        "max": 201.2,
7909 +
        "count": 1
7910 +
      },
7911 +
      "releasePress": {
7912 +
        "mean": 33.2,
7913 +
        "std": 0,
7914 +
        "min": 33.2,
7915 +
        "max": 33.2,
7916 +
        "count": 1
7917 +
      }
7918 +
    },
7919 +
    {
7920 +
      "normalizedKeys": "w → h",
7921 +
      "count": 1,
7922 +
      "holdTime1": {
7923 +
        "mean": 115.7,
7924 +
        "std": 0,
7925 +
        "min": 115.7,
7926 +
        "max": 115.7,
7927 +
        "count": 1
7928 +
      },
7929 +
      "holdTime2": {
7930 +
        "mean": 103,
7931 +
        "std": 0,
7932 +
        "min": 103,
7933 +
        "max": 103,
7934 +
        "count": 1
7935 +
      },
7936 +
      "pressPress": {
7937 +
        "mean": 121,
7938 +
        "std": 0,
7939 +
        "min": 121,
7940 +
        "max": 121,
7941 +
        "count": 1
7942 +
      },
7943 +
      "releaseRelease": {
7944 +
        "mean": 108.3,
7945 +
        "std": 0,
7946 +
        "min": 108.3,
7947 +
        "max": 108.3,
7948 +
        "count": 1
7949 +
      },
7950 +
      "pressRelease": {
7951 +
        "mean": 224,
7952 +
        "std": 0,
7953 +
        "min": 224,
7954 +
        "max": 224,
7955 +
        "count": 1
7956 +
      },
7957 +
      "releasePress": {
7958 +
        "mean": 5.3,
7959 +
        "std": 0,
7960 +
        "min": 5.3,
7961 +
        "max": 5.3,
7962 +
        "count": 1
7963 +
      }
7964 +
    },
7965 +
    {
7966 +
      "normalizedKeys": "⌫ → k",
7967 +
      "count": 1,
7968 +
      "holdTime1": {
7969 +
        "mean": 108.1,
7970 +
        "std": 0,
7971 +
        "min": 108.1,
7972 +
        "max": 108.1,
7973 +
        "count": 1
7974 +
      },
7975 +
      "holdTime2": {
7976 +
        "mean": 108,
7977 +
        "std": 0,
7978 +
        "min": 108,
7979 +
        "max": 108,
7980 +
        "count": 1
7981 +
      },
7982 +
      "pressPress": {
7983 +
        "mean": 208.3,
7984 +
        "std": 0,
7985 +
        "min": 208.3,
7986 +
        "max": 208.3,
7987 +
        "count": 1
7988 +
      },
7989 +
      "releaseRelease": {
7990 +
        "mean": 208.2,
7991 +
        "std": 0,
7992 +
        "min": 208.2,
7993 +
        "max": 208.2,
7994 +
        "count": 1
7995 +
      },
7996 +
      "pressRelease": {
7997 +
        "mean": 316.3,
7998 +
        "std": 0,
7999 +
        "min": 316.3,
8000 +
        "max": 316.3,
8001 +
        "count": 1
8002 +
      },
8003 +
      "releasePress": {
8004 +
        "mean": 100.2,
8005 +
        "std": 0,
8006 +
        "min": 100.2,
8007 +
        "max": 100.2,
8008 +
        "count": 1
8009 +
      }
8010 +
    },
8011 +
    {
8012 +
      "normalizedKeys": "r → l",
8013 +
      "count": 1,
8014 +
      "holdTime1": {
8015 +
        "mean": 88.4,
8016 +
        "std": 0,
8017 +
        "min": 88.4,
8018 +
        "max": 88.4,
8019 +
        "count": 1
8020 +
      },
8021 +
      "holdTime2": {
8022 +
        "mean": 50.8,
8023 +
        "std": 0,
8024 +
        "min": 50.8,
8025 +
        "max": 50.8,
8026 +
        "count": 1
8027 +
      },
8028 +
      "pressPress": {
8029 +
        "mean": 129.3,
8030 +
        "std": 0,
8031 +
        "min": 129.3,
8032 +
        "max": 129.3,
8033 +
        "count": 1
8034 +
      },
8035 +
      "releaseRelease": {
8036 +
        "mean": 91.7,
8037 +
        "std": 0,
8038 +
        "min": 91.7,
8039 +
        "max": 91.7,
8040 +
        "count": 1
8041 +
      },
8042 +
      "pressRelease": {
8043 +
        "mean": 180.1,
8044 +
        "std": 0,
8045 +
        "min": 180.1,
8046 +
        "max": 180.1,
8047 +
        "count": 1
8048 +
      },
8049 +
      "releasePress": {
8050 +
        "mean": 40.9,
8051 +
        "std": 0,
8052 +
        "min": 40.9,
8053 +
        "max": 40.9,
8054 +
        "count": 1
8055 +
      }
8056 +
    },
8057 +
    {
8058 +
      "normalizedKeys": "⌫ → h",
8059 +
      "count": 1,
8060 +
      "holdTime1": {
8061 +
        "mean": 71.9,
8062 +
        "std": 0,
8063 +
        "min": 71.9,
8064 +
        "max": 71.9,
8065 +
        "count": 1
8066 +
      },
8067 +
      "holdTime2": {
8068 +
        "mean": 86.2,
8069 +
        "std": 0,
8070 +
        "min": 86.2,
8071 +
        "max": 86.2,
8072 +
        "count": 1
8073 +
      },
8074 +
      "pressPress": {
8075 +
        "mean": 211.1,
8076 +
        "std": 0,
8077 +
        "min": 211.1,
8078 +
        "max": 211.1,
8079 +
        "count": 1
8080 +
      },
8081 +
      "releaseRelease": {
8082 +
        "mean": 225.4,
8083 +
        "std": 0,
8084 +
        "min": 225.4,
8085 +
        "max": 225.4,
8086 +
        "count": 1
8087 +
      },
8088 +
      "pressRelease": {
8089 +
        "mean": 297.3,
8090 +
        "std": 0,
8091 +
        "min": 297.3,
8092 +
        "max": 297.3,
8093 +
        "count": 1
8094 +
      },
8095 +
      "releasePress": {
8096 +
        "mean": 139.2,
8097 +
        "std": 0,
8098 +
        "min": 139.2,
8099 +
        "max": 139.2,
8100 +
        "count": 1
8101 +
      }
8102 +
    },
8103 +
    {
8104 +
      "normalizedKeys": "j → ⌫",
8105 +
      "count": 1,
8106 +
      "holdTime1": {
8107 +
        "mean": 87.1,
8108 +
        "std": 0,
8109 +
        "min": 87.1,
8110 +
        "max": 87.1,
8111 +
        "count": 1
8112 +
      },
8113 +
      "holdTime2": {
8114 +
        "mean": 71.9,
8115 +
        "std": 0,
8116 +
        "min": 71.9,
8117 +
        "max": 71.9,
8118 +
        "count": 1
8119 +
      },
8120 +
      "pressPress": {
8121 +
        "mean": 454.9,
8122 +
        "std": 0,
8123 +
        "min": 454.9,
8124 +
        "max": 454.9,
8125 +
        "count": 1
8126 +
      },
8127 +
      "releaseRelease": {
8128 +
        "mean": 439.7,
8129 +
        "std": 0,
8130 +
        "min": 439.7,
8131 +
        "max": 439.7,
8132 +
        "count": 1
8133 +
      },
8134 +
      "pressRelease": {
8135 +
        "mean": 526.8,
8136 +
        "std": 0,
8137 +
        "min": 526.8,
8138 +
        "max": 526.8,
8139 +
        "count": 1
8140 +
      },
8141 +
      "releasePress": {
8142 +
        "mean": 367.8,
8143 +
        "std": 0,
8144 +
        "min": 367.8,
8145 +
        "max": 367.8,
8146 +
        "count": 1
8147 +
      }
8148 +
    },
8149 +
    {
8150 +
      "normalizedKeys": "o → f",
8151 +
      "count": 1,
8152 +
      "holdTime1": {
8153 +
        "mean": 99.6,
8154 +
        "std": 0,
8155 +
        "min": 99.6,
8156 +
        "max": 99.6,
8157 +
        "count": 1
8158 +
      },
8159 +
      "holdTime2": {
8160 +
        "mean": 124.6,
8161 +
        "std": 0,
8162 +
        "min": 124.6,
8163 +
        "max": 124.6,
8164 +
        "count": 1
8165 +
      },
8166 +
      "pressPress": {
8167 +
        "mean": 150,
8168 +
        "std": 0,
8169 +
        "min": 150,
8170 +
        "max": 150,
8171 +
        "count": 1
8172 +
      },
8173 +
      "releaseRelease": {
8174 +
        "mean": 175,
8175 +
        "std": 0,
8176 +
        "min": 175,
8177 +
        "max": 175,
8178 +
        "count": 1
8179 +
      },
8180 +
      "pressRelease": {
8181 +
        "mean": 274.6,
8182 +
        "std": 0,
8183 +
        "min": 274.6,
8184 +
        "max": 274.6,
8185 +
        "count": 1
8186 +
      },
8187 +
      "releasePress": {
8188 +
        "mean": 50.4,
8189 +
        "std": 0,
8190 +
        "min": 50.4,
8191 +
        "max": 50.4,
8192 +
        "count": 1
8193 +
      }
8194 +
    },
8195 +
    {
8196 +
      "normalizedKeys": "r → d",
8197 +
      "count": 1,
8198 +
      "holdTime1": {
8199 +
        "mean": 111,
8200 +
        "std": 0,
8201 +
        "min": 111,
8202 +
        "max": 111,
8203 +
        "count": 1
8204 +
      },
8205 +
      "holdTime2": {
8206 +
        "mean": 140.9,
8207 +
        "std": 0,
8208 +
        "min": 140.9,
8209 +
        "max": 140.9,
8210 +
        "count": 1
8211 +
      },
8212 +
      "pressPress": {
8213 +
        "mean": 275.2,
8214 +
        "std": 0,
8215 +
        "min": 275.2,
8216 +
        "max": 275.2,
8217 +
        "count": 1
8218 +
      },
8219 +
      "releaseRelease": {
8220 +
        "mean": 305.1,
8221 +
        "std": 0,
8222 +
        "min": 305.1,
8223 +
        "max": 305.1,
8224 +
        "count": 1
8225 +
      },
8226 +
      "pressRelease": {
8227 +
        "mean": 416.1,
8228 +
        "std": 0,
8229 +
        "min": 416.1,
8230 +
        "max": 416.1,
8231 +
        "count": 1
8232 +
      },
8233 +
      "releasePress": {
8234 +
        "mean": 164.2,
8235 +
        "std": 0,
8236 +
        "min": 164.2,
8237 +
        "max": 164.2,
8238 +
        "count": 1
8239 +
      }
8240 +
    },
8241 +
    {
8242 +
      "normalizedKeys": "e → a",
8243 +
      "count": 1,
8244 +
      "holdTime1": {
8245 +
        "mean": 141.9,
8246 +
        "std": 0,
8247 +
        "min": 141.9,
8248 +
        "max": 141.9,
8249 +
        "count": 1
8250 +
      },
8251 +
      "holdTime2": {
8252 +
        "mean": 158.4,
8253 +
        "std": 0,
8254 +
        "min": 158.4,
8255 +
        "max": 158.4,
8256 +
        "count": 1
8257 +
      },
8258 +
      "pressPress": {
8259 +
        "mean": 109,
8260 +
        "std": 0,
8261 +
        "min": 109,
8262 +
        "max": 109,
8263 +
        "count": 1
8264 +
      },
8265 +
      "releaseRelease": {
8266 +
        "mean": 125.5,
8267 +
        "std": 0,
8268 +
        "min": 125.5,
8269 +
        "max": 125.5,
8270 +
        "count": 1
8271 +
      },
8272 +
      "pressRelease": {
8273 +
        "mean": 267.4,
8274 +
        "std": 0,
8275 +
        "min": 267.4,
8276 +
        "max": 267.4,
8277 +
        "count": 1
8278 +
      },
8279 +
      "releasePress": {
8280 +
        "mean": -32.9,
8281 +
        "std": 0,
8282 +
        "min": -32.9,
8283 +
        "max": -32.9,
8284 +
        "count": 1
8285 +
      }
8286 +
    },
8287 +
    {
8288 +
      "normalizedKeys": "e → v",
8289 +
      "count": 1,
8290 +
      "holdTime1": {
8291 +
        "mean": 49.6,
8292 +
        "std": 0,
8293 +
        "min": 49.6,
8294 +
        "max": 49.6,
8295 +
        "count": 1
8296 +
      },
8297 +
      "holdTime2": {
8298 +
        "mean": 58.4,
8299 +
        "std": 0,
8300 +
        "min": 58.4,
8301 +
        "max": 58.4,
8302 +
        "count": 1
8303 +
      },
8304 +
      "pressPress": {
8305 +
        "mean": 141.6,
8306 +
        "std": 0,
8307 +
        "min": 141.6,
8308 +
        "max": 141.6,
8309 +
        "count": 1
8310 +
      },
8311 +
      "releaseRelease": {
8312 +
        "mean": 150.4,
8313 +
        "std": 0,
8314 +
        "min": 150.4,
8315 +
        "max": 150.4,
8316 +
        "count": 1
8317 +
      },
8318 +
      "pressRelease": {
8319 +
        "mean": 200,
8320 +
        "std": 0,
8321 +
        "min": 200,
8322 +
        "max": 200,
8323 +
        "count": 1
8324 +
      },
8325 +
      "releasePress": {
8326 +
        "mean": 92,
8327 +
        "std": 0,
8328 +
        "min": 92,
8329 +
        "max": 92,
8330 +
        "count": 1
8331 +
      }
8332 +
    },
8333 +
    {
8334 +
      "normalizedKeys": "a → v",
8335 +
      "count": 1,
8336 +
      "holdTime1": {
8337 +
        "mean": 116.7,
8338 +
        "std": 0,
8339 +
        "min": 116.7,
8340 +
        "max": 116.7,
8341 +
        "count": 1
8342 +
      },
8343 +
      "holdTime2": {
8344 +
        "mean": 57.6,
8345 +
        "std": 0,
8346 +
        "min": 57.6,
8347 +
        "max": 57.6,
8348 +
        "count": 1
8349 +
      },
8350 +
      "pressPress": {
8351 +
        "mean": 125.9,
8352 +
        "std": 0,
8353 +
        "min": 125.9,
8354 +
        "max": 125.9,
8355 +
        "count": 1
8356 +
      },
8357 +
      "releaseRelease": {
8358 +
        "mean": 66.8,
8359 +
        "std": 0,
8360 +
        "min": 66.8,
8361 +
        "max": 66.8,
8362 +
        "count": 1
8363 +
      },
8364 +
      "pressRelease": {
8365 +
        "mean": 183.5,
8366 +
        "std": 0,
8367 +
        "min": 183.5,
8368 +
        "max": 183.5,
8369 +
        "count": 1
8370 +
      },
8371 +
      "releasePress": {
8372 +
        "mean": 9.2,
8373 +
        "std": 0,
8374 +
        "min": 9.2,
8375 +
        "max": 9.2,
8376 +
        "count": 1
8377 +
      }
8378 +
    },
8379 +
    {
8380 +
      "normalizedKeys": "c → e",
8381 +
      "count": 1,
8382 +
      "holdTime1": {
8383 +
        "mean": 70.2,
8384 +
        "std": 0,
8385 +
        "min": 70.2,
8386 +
        "max": 70.2,
8387 +
        "count": 1
8388 +
      },
8389 +
      "holdTime2": {
8390 +
        "mean": 147.3,
8391 +
        "std": 0,
8392 +
        "min": 147.3,
8393 +
        "max": 147.3,
8394 +
        "count": 1
8395 +
      },
8396 +
      "pressPress": {
8397 +
        "mean": 183.6,
8398 +
        "std": 0,
8399 +
        "min": 183.6,
8400 +
        "max": 183.6,
8401 +
        "count": 1
8402 +
      },
8403 +
      "releaseRelease": {
8404 +
        "mean": 260.7,
8405 +
        "std": 0,
8406 +
        "min": 260.7,
8407 +
        "max": 260.7,
8408 +
        "count": 1
8409 +
      },
8410 +
      "pressRelease": {
8411 +
        "mean": 330.9,
8412 +
        "std": 0,
8413 +
        "min": 330.9,
8414 +
        "max": 330.9,
8415 +
        "count": 1
8416 +
      },
8417 +
      "releasePress": {
8418 +
        "mean": 113.4,
8419 +
        "std": 0,
8420 +
        "min": 113.4,
8421 +
        "max": 113.4,
8422 +
        "count": 1
8423 +
      }
8424 +
    },
8425 +
    {
8426 +
      "normalizedKeys": "n → c",
8427 +
      "count": 1,
8428 +
      "holdTime1": {
8429 +
        "mean": 97.6,
8430 +
        "std": 0,
8431 +
        "min": 97.6,
8432 +
        "max": 97.6,
8433 +
        "count": 1
8434 +
      },
8435 +
      "holdTime2": {
8436 +
        "mean": 70.2,
8437 +
        "std": 0,
8438 +
        "min": 70.2,
8439 +
        "max": 70.2,
8440 +
        "count": 1
8441 +
      },
8442 +
      "pressPress": {
8443 +
        "mean": 383.2,
8444 +
        "std": 0,
8445 +
        "min": 383.2,
8446 +
        "max": 383.2,
8447 +
        "count": 1
8448 +
      },
8449 +
      "releaseRelease": {
8450 +
        "mean": 355.8,
8451 +
        "std": 0,
8452 +
        "min": 355.8,
8453 +
        "max": 355.8,
8454 +
        "count": 1
8455 +
      },
8456 +
      "pressRelease": {
8457 +
        "mean": 453.4,
8458 +
        "std": 0,
8459 +
        "min": 453.4,
8460 +
        "max": 453.4,
8461 +
        "count": 1
8462 +
      },
8463 +
      "releasePress": {
8464 +
        "mean": 285.6,
8465 +
        "std": 0,
8466 +
        "min": 285.6,
8467 +
        "max": 285.6,
8468 +
        "count": 1
8469 +
      }
8470 +
    }
8471 +
  ],
8472 +
  "metadata": {
8473 +
    "totalKeystrokes": 526,
8474 +
    "backspaceCount": 22,
8475 +
    "pauseCount": 12,
8476 +
    "avgTypingSpeed": 184,
8477 +
    "sessionDurationMs": 171524,
8478 +
    "pasteCount": 0,
8479 +
    "pastedCharCount": 0
8480 +
  }
8481 +
}