Add 3x9 factorial analysis of std79-doe heartbeat/physics telemetry
Correlates every HB-ON/HB-OFF heartbeat-tick CSV row (results-20260912- with-heartbeat-csv/*-doe-raw.log) back to which trial (run_id, id_idx, id_label, rep) was active when it printed, despite the async tick printer splicing rows mid-token -- including mid a DOE-RUN marker itself -- into the trial loop's own console output on the shared serial line. Pipeline (analysis-20260912/, see its own README.md): - correlate_doe.py: two-pass reconstruction per architecture (remove atomic CSV-row spans to rebuild the clean trial-output stream, map each removed row's offset back to the nearest preceding run_id marker); identity/rep looked up from a known-clean prior run's run_id mapping rather than re-parsed, since one aarch64 marker (trial 12, rajames rep 1) lost its id_idx digit to a zero-separator collision with an adjacent CSV field and is unrecoverable from that log alone -- its rows fold into trial 11 instead, documented as a known limitation. - combine.py: merges all three architectures into combined.csv (768 rows), decoding Q48.16 fields to floats and jitter_bits' IEEE754 bit pattern to real jitter_ns. - analysis.R: per-cell (architecture x identity) means/SD and two-way ANOVA for each of 12 telemetry metrics, one boxplot SVG per metric, written up as ANALYSIS.md. Key findings: identity significantly affects word-heat/window-sizing metrics (expected -- different identities execute different word sets), architecture significantly affects timing metrics (APIC ticks/tick, timing variance, fleet heat -- expected, different QEMU targets), zero architecture x identity interaction on any metric. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01EXieurDfDSsDFdnSyusuWo
@@ -68,3 +68,15 @@ nothing is corrupted in memory — only the printed character stream interleaves
|
||||
tooling that wants an exact reconstruction of the trial-output stream from these three raw logs
|
||||
needs to account for that (strip `[HADES][DOE ] ...` fragments and rejoin) rather than assume
|
||||
one physical line is one logical print.
|
||||
|
||||
`analysis-20260912/` builds exactly that reconstruction and turns it into a real 3×9 factorial
|
||||
analysis: `correlate_doe.py` labels every heartbeat-tick row with the trial that was active when
|
||||
it printed, `combine.py` merges all three architectures into `combined.csv` (768 rows, Q48.16
|
||||
fields decoded to floats), and `analysis.R` computes per-cell (architecture × identity) means/SD
|
||||
and a two-way ANOVA for each of 12 telemetry metrics, rendering one boxplot SVG per metric. See
|
||||
`analysis-20260912/README.md` for the pipeline and `analysis-20260912/ANALYSIS.md` for the
|
||||
report itself — key findings: identity significantly affects word-heat/window-sizing metrics
|
||||
(expected — different identities execute different word sets), architecture significantly
|
||||
affects timing metrics (APIC ticks/tick, timing variance, fleet heat — expected, different QEMU
|
||||
targets), and **zero architecture × identity interaction on any metric** — the two factors'
|
||||
effects are clean and separable, not confounded.
|
||||
|
||||
@@ -0,0 +1,554 @@
|
||||
# std79-doe 3×9 Factorial Analysis — Heartbeat/Physics Telemetry
|
||||
|
||||
Generated 2026-09-12 12:45. Source: `combined.csv` (768 rows), built by
|
||||
`correlate_doe.py` from the three raw logs in
|
||||
`../results-20260912-with-heartbeat-csv/`. See that file's own docstring for the
|
||||
correlation methodology (the heartbeat tick's async CSV printer and the DoE trial
|
||||
loop's own console output share one serial line with no locking, so rows can land
|
||||
mid-token in the raw logs; the underlying FORTH execution and values are
|
||||
unaffected, only reconstructing which trial owns which row needed care).
|
||||
|
||||
**Design:** 3 architectures (amd64, aarch64, riscv64) × 9 identities (zuse,
|
||||
rajames, 00-06) × 3 replicates, Fisher-Yates-shuffled run order, same seed
|
||||
(12345) on every architecture (FABRIC-3.md §XV). Each of the 27 trials per
|
||||
architecture runs the same 24-word FORTH-79 exerciser; every heartbeat tick during
|
||||
the whole `EXEC-STD79-DOE` run (bracketed by `HB-ON`/`HB-OFF`) emits one telemetry
|
||||
row (`doe_log.c`), correlated back to whichever trial was active when it printed.
|
||||
|
||||
**Known limitation:** aarch64's raw log lost 1 of 27 run_id markers to interleaving
|
||||
beyond recovery (trial 12, identity `rajames` rep 1) -- its rows are folded into
|
||||
trial 11 (identity `rajames` rep 0) in this dataset, so aarch64's `rajames` cell
|
||||
for rep-sensitive metrics is not perfectly separable for those two replicates
|
||||
specifically. Every other cell on every architecture is unaffected.
|
||||
|
||||
## Key findings (p < 0.05, two-way ANOVA)
|
||||
|
||||
- **Architecture main effect:** APIC ticks per heartbeat tick, TIME-TRUST, Timing variance, Hera fleet heat, Hermes fleet heat
|
||||
- **Identity main effect:** Hot word count, Mean word execution heat, Rolling window width, Actual analysis window size
|
||||
- **Architecture × identity interaction:** none
|
||||
- **No significant effect of either factor:** Estimated timer jitter (ns), Max VM call depth, Artemis fleet heat
|
||||
|
||||
TIME-TRUST's architecture effect is a numerical artifact worth reading correctly,
|
||||
not a substantive result: it is essentially constant *within* each architecture
|
||||
(residual variance ~1e-31, i.e. floating-point noise) and differs *between*
|
||||
architectures — so the F statistic is enormous simply because the within-group
|
||||
denominator is near zero, not because TIME-TRUST is meaningfully more variable
|
||||
across architectures than the other metrics here. It is architecture-determined
|
||||
and identity-independent, which is itself the interesting part.
|
||||
|
||||
## Hot word count (`hot_word_count`)
|
||||
|
||||

|
||||
|
||||
| Architecture | Identity | n | mean | sd | CV% |
|
||||
|---|---|---:|---:|---:|---:|
|
||||
| amd64 | zuse | 23 | 67.91 | 1.411 | 2.08 |
|
||||
| amd64 | rajames | 25 | 64.28 | 7.414 | 11.53 |
|
||||
| amd64 | 00 | 26 | 64.46 | 7.235 | 11.22 |
|
||||
| amd64 | 01 | 26 | 62.62 | 6.929 | 11.07 |
|
||||
| amd64 | 02 | 28 | 62.5 | 6.251 | 10.00 |
|
||||
| amd64 | 03 | 30 | 62.5 | 5.71 | 9.14 |
|
||||
| amd64 | 04 | 33 | 66.55 | 5.386 | 8.09 |
|
||||
| amd64 | 05 | 33 | 64.45 | 3.874 | 6.01 |
|
||||
| amd64 | 06 | 31 | 65.1 | 3.953 | 6.07 |
|
||||
| aarch64 | zuse | 23 | 69.35 | 1.191 | 1.72 |
|
||||
| aarch64 | rajames | 16 | 65.19 | 8.336 | 12.79 |
|
||||
| aarch64 | 00 | 26 | 62.92 | 7.451 | 11.84 |
|
||||
| aarch64 | 01 | 27 | 59.81 | 8.005 | 13.38 |
|
||||
| aarch64 | 02 | 37 | 61.27 | 8.425 | 13.75 |
|
||||
| aarch64 | 03 | 29 | 60.79 | 7.208 | 11.86 |
|
||||
| aarch64 | 04 | 33 | 67.48 | 5.745 | 8.51 |
|
||||
| aarch64 | 05 | 33 | 62.73 | 4.692 | 7.48 |
|
||||
| aarch64 | 06 | 32 | 63.19 | 4.351 | 6.89 |
|
||||
| riscv64 | zuse | 23 | 69.48 | 1.039 | 1.50 |
|
||||
| riscv64 | rajames | 26 | 65.27 | 11.27 | 17.27 |
|
||||
| riscv64 | 00 | 27 | 62.33 | 8.953 | 14.36 |
|
||||
| riscv64 | 01 | 28 | 61.68 | 7.252 | 11.76 |
|
||||
| riscv64 | 02 | 27 | 62.3 | 8.109 | 13.02 |
|
||||
| riscv64 | 03 | 28 | 63 | 7.123 | 11.31 |
|
||||
| riscv64 | 04 | 32 | 67.53 | 6.069 | 8.99 |
|
||||
| riscv64 | 05 | 32 | 65.56 | 5.691 | 8.68 |
|
||||
| riscv64 | 06 | 34 | 63.85 | 3.839 | 6.01 |
|
||||
|
||||
Two-way ANOVA (`metric ~ arch * id_label`):
|
||||
|
||||
| Term | Df | Sum Sq | Mean Sq | F value | Pr(>F) |
|
||||
|---|---:|---:|---:|---:|---:|
|
||||
| arch | 2 | 193 | 96.5 | 2.333 | 0.09771 |
|
||||
| id_label | 8 | 3985 | 498.2 | 12.04 | 2.984e-16 |
|
||||
| arch:id_label | 16 | 379.9 | 23.74 | 0.574 | 0.9044 |
|
||||
| Residuals | 741 | 3.065e+04 | 41.36 | — | — |
|
||||
|
||||
## Mean word execution heat (`avg_word_heat`)
|
||||
|
||||

|
||||
|
||||
| Architecture | Identity | n | mean | sd | CV% |
|
||||
|---|---|---:|---:|---:|---:|
|
||||
| amd64 | zuse | 23 | 0.003006 | 0.001235 | 41.07 |
|
||||
| amd64 | rajames | 25 | 0.008839 | 0.008672 | 98.11 |
|
||||
| amd64 | 00 | 26 | 0.008918 | 0.006694 | 75.06 |
|
||||
| amd64 | 01 | 26 | 0.01001 | 0.007327 | 73.18 |
|
||||
| amd64 | 02 | 28 | 0.01069 | 0.004371 | 40.89 |
|
||||
| amd64 | 03 | 30 | 0.01032 | 0.005016 | 48.61 |
|
||||
| amd64 | 04 | 33 | 0.004205 | 0.002958 | 70.35 |
|
||||
| amd64 | 05 | 33 | 0.008833 | 0.001235 | 13.98 |
|
||||
| amd64 | 06 | 31 | 0.008481 | 0.003743 | 44.13 |
|
||||
| aarch64 | zuse | 23 | 0.002911 | 0.001418 | 48.72 |
|
||||
| aarch64 | rajames | 16 | 0.007391 | 0.005726 | 77.48 |
|
||||
| aarch64 | 00 | 26 | 0.009563 | 0.006967 | 72.85 |
|
||||
| aarch64 | 01 | 27 | 0.01071 | 0.007785 | 72.67 |
|
||||
| aarch64 | 02 | 37 | 0.01146 | 0.007358 | 64.20 |
|
||||
| aarch64 | 03 | 29 | 0.01046 | 0.005237 | 50.05 |
|
||||
| aarch64 | 04 | 33 | 0.004262 | 0.00298 | 69.93 |
|
||||
| aarch64 | 05 | 33 | 0.009139 | 0.001443 | 15.79 |
|
||||
| aarch64 | 06 | 32 | 0.008941 | 0.003745 | 41.89 |
|
||||
| riscv64 | zuse | 23 | 0.00289 | 0.00163 | 56.41 |
|
||||
| riscv64 | rajames | 26 | 0.0106 | 0.0133 | 125.42 |
|
||||
| riscv64 | 00 | 27 | 0.01041 | 0.009052 | 86.95 |
|
||||
| riscv64 | 01 | 28 | 0.01068 | 0.007445 | 69.74 |
|
||||
| riscv64 | 02 | 27 | 0.01104 | 0.005331 | 48.29 |
|
||||
| riscv64 | 03 | 28 | 0.01007 | 0.005873 | 58.30 |
|
||||
| riscv64 | 04 | 32 | 0.004007 | 0.002863 | 71.45 |
|
||||
| riscv64 | 05 | 32 | 0.009038 | 0.001403 | 15.52 |
|
||||
| riscv64 | 06 | 34 | 0.009104 | 0.003387 | 37.20 |
|
||||
|
||||
Two-way ANOVA (`metric ~ arch * id_label`):
|
||||
|
||||
| Term | Df | Sum Sq | Mean Sq | F value | Pr(>F) |
|
||||
|---|---:|---:|---:|---:|---:|
|
||||
| arch | 2 | 3.325e-05 | 1.662e-05 | 0.5221 | 0.5935 |
|
||||
| id_label | 8 | 0.005366 | 0.0006707 | 21.07 | 6.051e-29 |
|
||||
| arch:id_label | 16 | 0.0001362 | 8.514e-06 | 0.2674 | 0.9983 |
|
||||
| Residuals | 741 | 0.02359 | 3.184e-05 | — | — |
|
||||
|
||||
## Rolling window width (`window_width`)
|
||||
|
||||

|
||||
|
||||
| Architecture | Identity | n | mean | sd | CV% |
|
||||
|---|---|---:|---:|---:|---:|
|
||||
| amd64 | zuse | 23 | 256 | 0 | 0.00 |
|
||||
| amd64 | rajames | 25 | 256 | 0 | 0.00 |
|
||||
| amd64 | 00 | 26 | 256 | 0 | 0.00 |
|
||||
| amd64 | 01 | 26 | 256 | 0 | 0.00 |
|
||||
| amd64 | 02 | 28 | 256 | 0 | 0.00 |
|
||||
| amd64 | 03 | 30 | 256 | 0 | 0.00 |
|
||||
| amd64 | 04 | 33 | 318.1 | 192.3 | 60.47 |
|
||||
| amd64 | 05 | 33 | 256 | 0 | 0.00 |
|
||||
| amd64 | 06 | 31 | 256 | 0 | 0.00 |
|
||||
| aarch64 | zuse | 23 | 256 | 0 | 0.00 |
|
||||
| aarch64 | rajames | 16 | 256 | 0 | 0.00 |
|
||||
| aarch64 | 00 | 26 | 256 | 0 | 0.00 |
|
||||
| aarch64 | 01 | 27 | 256 | 0 | 0.00 |
|
||||
| aarch64 | 02 | 37 | 256 | 0 | 0.00 |
|
||||
| aarch64 | 03 | 29 | 256 | 0 | 0.00 |
|
||||
| aarch64 | 04 | 33 | 318.1 | 192.3 | 60.47 |
|
||||
| aarch64 | 05 | 33 | 256 | 0 | 0.00 |
|
||||
| aarch64 | 06 | 32 | 256 | 0 | 0.00 |
|
||||
| riscv64 | zuse | 23 | 256 | 0 | 0.00 |
|
||||
| riscv64 | rajames | 26 | 256 | 0 | 0.00 |
|
||||
| riscv64 | 00 | 27 | 256 | 0 | 0.00 |
|
||||
| riscv64 | 01 | 28 | 256 | 0 | 0.00 |
|
||||
| riscv64 | 02 | 27 | 256 | 0 | 0.00 |
|
||||
| riscv64 | 03 | 28 | 256 | 0 | 0.00 |
|
||||
| riscv64 | 04 | 32 | 296 | 147 | 49.66 |
|
||||
| riscv64 | 05 | 32 | 256 | 0 | 0.00 |
|
||||
| riscv64 | 06 | 34 | 256 | 0 | 0.00 |
|
||||
|
||||
Two-way ANOVA (`metric ~ arch * id_label`):
|
||||
|
||||
| Term | Df | Sum Sq | Mean Sq | F value | Pr(>F) |
|
||||
|---|---:|---:|---:|---:|---:|
|
||||
| arch | 2 | 1575 | 787.7 | 0.1922 | 0.8252 |
|
||||
| id_label | 8 | 2.57e+05 | 3.213e+04 | 7.839 | 3.816e-10 |
|
||||
| arch:id_label | 16 | 9163 | 572.7 | 0.1397 | 1 |
|
||||
| Residuals | 741 | 3.037e+06 | 4098 | — | — |
|
||||
|
||||
## Actual analysis window size (`actual_window_size`)
|
||||
|
||||

|
||||
|
||||
| Architecture | Identity | n | mean | sd | CV% |
|
||||
|---|---|---:|---:|---:|---:|
|
||||
| amd64 | zuse | 23 | 256 | 0 | 0.00 |
|
||||
| amd64 | rajames | 25 | 256 | 0 | 0.00 |
|
||||
| amd64 | 00 | 26 | 256 | 0 | 0.00 |
|
||||
| amd64 | 01 | 26 | 256 | 0 | 0.00 |
|
||||
| amd64 | 02 | 28 | 256 | 0 | 0.00 |
|
||||
| amd64 | 03 | 30 | 256 | 0 | 0.00 |
|
||||
| amd64 | 04 | 33 | 318.1 | 192.3 | 60.47 |
|
||||
| amd64 | 05 | 33 | 256 | 0 | 0.00 |
|
||||
| amd64 | 06 | 31 | 256 | 0 | 0.00 |
|
||||
| aarch64 | zuse | 23 | 256 | 0 | 0.00 |
|
||||
| aarch64 | rajames | 16 | 256 | 0 | 0.00 |
|
||||
| aarch64 | 00 | 26 | 256 | 0 | 0.00 |
|
||||
| aarch64 | 01 | 27 | 256 | 0 | 0.00 |
|
||||
| aarch64 | 02 | 37 | 256 | 0 | 0.00 |
|
||||
| aarch64 | 03 | 29 | 256 | 0 | 0.00 |
|
||||
| aarch64 | 04 | 33 | 318.1 | 192.3 | 60.47 |
|
||||
| aarch64 | 05 | 33 | 256 | 0 | 0.00 |
|
||||
| aarch64 | 06 | 32 | 256 | 0 | 0.00 |
|
||||
| riscv64 | zuse | 23 | 256 | 0 | 0.00 |
|
||||
| riscv64 | rajames | 26 | 256 | 0 | 0.00 |
|
||||
| riscv64 | 00 | 27 | 256 | 0 | 0.00 |
|
||||
| riscv64 | 01 | 28 | 256 | 0 | 0.00 |
|
||||
| riscv64 | 02 | 27 | 256 | 0 | 0.00 |
|
||||
| riscv64 | 03 | 28 | 256 | 0 | 0.00 |
|
||||
| riscv64 | 04 | 32 | 296 | 147 | 49.66 |
|
||||
| riscv64 | 05 | 32 | 256 | 0 | 0.00 |
|
||||
| riscv64 | 06 | 34 | 256 | 0 | 0.00 |
|
||||
|
||||
Two-way ANOVA (`metric ~ arch * id_label`):
|
||||
|
||||
| Term | Df | Sum Sq | Mean Sq | F value | Pr(>F) |
|
||||
|---|---:|---:|---:|---:|---:|
|
||||
| arch | 2 | 1575 | 787.7 | 0.1922 | 0.8252 |
|
||||
| id_label | 8 | 2.57e+05 | 3.213e+04 | 7.839 | 3.816e-10 |
|
||||
| arch:id_label | 16 | 9163 | 572.7 | 0.1397 | 1 |
|
||||
| Residuals | 741 | 3.037e+06 | 4098 | — | — |
|
||||
|
||||
## Estimated timer jitter (ns) (`jitter_ns`)
|
||||
|
||||

|
||||
|
||||
| Architecture | Identity | n | mean | sd | CV% |
|
||||
|---|---|---:|---:|---:|---:|
|
||||
| amd64 | zuse | 23 | 0 | 0 | — |
|
||||
| amd64 | rajames | 25 | 7.379e+17 | 3.689e+18 | 500.00 |
|
||||
| amd64 | 00 | 26 | 7.095e+17 | 3.618e+18 | 509.90 |
|
||||
| amd64 | 01 | 26 | 9.462e+04 | 4.824e+05 | 509.90 |
|
||||
| amd64 | 02 | 28 | 6.588e+17 | 3.486e+18 | 529.15 |
|
||||
| amd64 | 03 | 30 | 1.23e+18 | 4.68e+18 | 380.56 |
|
||||
| amd64 | 04 | 33 | 5.59e+17 | 3.211e+18 | 574.46 |
|
||||
| amd64 | 05 | 33 | 5.59e+17 | 3.211e+18 | 574.46 |
|
||||
| amd64 | 06 | 31 | 5.951e+17 | 3.313e+18 | 556.78 |
|
||||
| aarch64 | zuse | 23 | 0 | 0 | — |
|
||||
| aarch64 | rajames | 16 | 0 | 0 | — |
|
||||
| aarch64 | 00 | 26 | 7.095e+17 | 3.618e+18 | 509.90 |
|
||||
| aarch64 | 01 | 27 | 6.832e+17 | 3.55e+18 | 519.62 |
|
||||
| aarch64 | 02 | 37 | 9.971e+17 | 4.229e+18 | 424.10 |
|
||||
| aarch64 | 03 | 29 | 6.361e+17 | 3.425e+18 | 538.52 |
|
||||
| aarch64 | 04 | 33 | 5.59e+17 | 3.211e+18 | 574.46 |
|
||||
| aarch64 | 05 | 33 | 1.118e+18 | 4.47e+18 | 399.80 |
|
||||
| aarch64 | 06 | 32 | 5.765e+17 | 3.261e+18 | 565.69 |
|
||||
| riscv64 | zuse | 23 | 0 | 0 | — |
|
||||
| riscv64 | rajames | 26 | 1.419e+18 | 5.013e+18 | 353.27 |
|
||||
| riscv64 | 00 | 27 | 6.832e+17 | 3.55e+18 | 519.62 |
|
||||
| riscv64 | 01 | 28 | 6.588e+17 | 3.486e+18 | 529.15 |
|
||||
| riscv64 | 02 | 27 | 6.832e+17 | 3.55e+18 | 519.62 |
|
||||
| riscv64 | 03 | 28 | 6.588e+17 | 3.486e+18 | 529.15 |
|
||||
| riscv64 | 04 | 32 | 5.765e+17 | 3.261e+18 | 565.69 |
|
||||
| riscv64 | 05 | 32 | 5.765e+17 | 3.261e+18 | 565.69 |
|
||||
| riscv64 | 06 | 34 | 1.085e+18 | 4.406e+18 | 406.02 |
|
||||
|
||||
Two-way ANOVA (`metric ~ arch * id_label`):
|
||||
|
||||
| Term | Df | Sum Sq | Mean Sq | F value | Pr(>F) |
|
||||
|---|---:|---:|---:|---:|---:|
|
||||
| arch | 2 | 2.475e+36 | 1.237e+36 | 0.1045 | 0.9008 |
|
||||
| id_label | 8 | 4.303e+37 | 5.379e+36 | 0.4543 | 0.888 |
|
||||
| arch:id_label | 16 | 4.688e+37 | 2.93e+36 | 0.2475 | 0.9989 |
|
||||
| Residuals | 741 | 8.772e+39 | 1.184e+37 | — | — |
|
||||
|
||||
## APIC ticks per heartbeat tick (`apic_delta`)
|
||||
|
||||

|
||||
|
||||
| Architecture | Identity | n | mean | sd | CV% |
|
||||
|---|---|---:|---:|---:|---:|
|
||||
| amd64 | zuse | 20 | 2.9 | 1.119 | 38.59 |
|
||||
| amd64 | rajames | 22 | 2.045 | 4.18 | 204.37 |
|
||||
| amd64 | 00 | 23 | 2.304 | 3.363 | 145.96 |
|
||||
| amd64 | 01 | 23 | 2.739 | 1.214 | 44.33 |
|
||||
| amd64 | 02 | 25 | 3.12 | 2.505 | 80.30 |
|
||||
| amd64 | 03 | 27 | 3.481 | 2.737 | 78.61 |
|
||||
| amd64 | 04 | 30 | 3.1 | 1.605 | 51.77 |
|
||||
| amd64 | 05 | 30 | 1.767 | 6.157 | 348.51 |
|
||||
| amd64 | 06 | 28 | 2.357 | 5.87 | 249.04 |
|
||||
| aarch64 | zuse | 20 | 4.45 | 2.585 | 58.09 |
|
||||
| aarch64 | rajames | 14 | 4.786 | 2.517 | 52.59 |
|
||||
| aarch64 | 00 | 23 | 3.348 | 7.158 | 213.81 |
|
||||
| aarch64 | 01 | 24 | 2.75 | 7.651 | 278.23 |
|
||||
| aarch64 | 02 | 34 | 2.618 | 9.711 | 370.98 |
|
||||
| aarch64 | 03 | 26 | 3.538 | 3.301 | 93.30 |
|
||||
| aarch64 | 04 | 30 | 4.3 | 2.409 | 56.02 |
|
||||
| aarch64 | 05 | 30 | 3.4 | 5.083 | 149.49 |
|
||||
| aarch64 | 06 | 29 | 2.414 | 10.24 | 424.30 |
|
||||
| riscv64 | zuse | 20 | 1.35 | 0.6708 | 49.69 |
|
||||
| riscv64 | rajames | 23 | 1.435 | 2.952 | 205.71 |
|
||||
| riscv64 | 00 | 24 | 1.667 | 1.761 | 105.67 |
|
||||
| riscv64 | 01 | 25 | 1.2 | 2.217 | 184.78 |
|
||||
| riscv64 | 02 | 24 | 1.167 | 2.599 | 222.75 |
|
||||
| riscv64 | 03 | 25 | 1.16 | 2.939 | 253.40 |
|
||||
| riscv64 | 04 | 29 | 1.448 | 1.572 | 108.53 |
|
||||
| riscv64 | 05 | 29 | 1.207 | 3.783 | 313.47 |
|
||||
| riscv64 | 06 | 31 | 1.452 | 3.414 | 235.19 |
|
||||
|
||||
Two-way ANOVA (`metric ~ arch * id_label`):
|
||||
|
||||
| Term | Df | Sum Sq | Mean Sq | F value | Pr(>F) |
|
||||
|---|---:|---:|---:|---:|---:|
|
||||
| arch | 2 | 495.9 | 247.9 | 11.21 | 1.626e-05 |
|
||||
| id_label | 8 | 71.4 | 8.924 | 0.4036 | 0.9187 |
|
||||
| arch:id_label | 16 | 135.9 | 8.492 | 0.384 | 0.986 |
|
||||
| Residuals | 661 | 1.462e+04 | 22.11 | — | — |
|
||||
|
||||
## TIME-TRUST (`time_trust`)
|
||||
|
||||

|
||||
|
||||
| Architecture | Identity | n | mean | sd | CV% |
|
||||
|---|---|---:|---:|---:|---:|
|
||||
| amd64 | zuse | 23 | 0.6132 | 0 | 0.00 |
|
||||
| amd64 | rajames | 25 | 0.6132 | 0 | 0.00 |
|
||||
| amd64 | 00 | 26 | 0.6132 | 0 | 0.00 |
|
||||
| amd64 | 01 | 26 | 0.6132 | 0 | 0.00 |
|
||||
| amd64 | 02 | 28 | 0.6132 | 0 | 0.00 |
|
||||
| amd64 | 03 | 30 | 0.6132 | 0 | 0.00 |
|
||||
| amd64 | 04 | 33 | 0.6132 | 0 | 0.00 |
|
||||
| amd64 | 05 | 33 | 0.6132 | 0 | 0.00 |
|
||||
| amd64 | 06 | 31 | 0.6132 | 0 | 0.00 |
|
||||
| aarch64 | zuse | 23 | 1 | 0 | 0.00 |
|
||||
| aarch64 | rajames | 16 | 1 | 0 | 0.00 |
|
||||
| aarch64 | 00 | 26 | 1 | 0 | 0.00 |
|
||||
| aarch64 | 01 | 27 | 1 | 0 | 0.00 |
|
||||
| aarch64 | 02 | 37 | 1 | 0 | 0.00 |
|
||||
| aarch64 | 03 | 29 | 1 | 0 | 0.00 |
|
||||
| aarch64 | 04 | 33 | 1 | 0 | 0.00 |
|
||||
| aarch64 | 05 | 33 | 1 | 0 | 0.00 |
|
||||
| aarch64 | 06 | 32 | 1 | 0 | 0.00 |
|
||||
| riscv64 | zuse | 23 | 1 | 0 | 0.00 |
|
||||
| riscv64 | rajames | 26 | 1 | 0 | 0.00 |
|
||||
| riscv64 | 00 | 27 | 1 | 0 | 0.00 |
|
||||
| riscv64 | 01 | 28 | 1 | 0 | 0.00 |
|
||||
| riscv64 | 02 | 27 | 1 | 0 | 0.00 |
|
||||
| riscv64 | 03 | 28 | 1 | 0 | 0.00 |
|
||||
| riscv64 | 04 | 32 | 1 | 0 | 0.00 |
|
||||
| riscv64 | 05 | 32 | 1 | 0 | 0.00 |
|
||||
| riscv64 | 06 | 34 | 1 | 0 | 0.00 |
|
||||
|
||||
Two-way ANOVA (`metric ~ arch * id_label`):
|
||||
|
||||
| Term | Df | Sum Sq | Mean Sq | F value | Pr(>F) |
|
||||
|---|---:|---:|---:|---:|---:|
|
||||
| arch | 2 | 25.48 | 12.74 | 5.379e+31 | 0 |
|
||||
| id_label | 8 | 1.306e-30 | 1.632e-31 | 0.6892 | 0.7014 |
|
||||
| arch:id_label | 16 | 2.579e-30 | 1.612e-31 | 0.6806 | 0.8149 |
|
||||
| Residuals | 741 | 1.755e-28 | 2.369e-31 | — | — |
|
||||
|
||||
## Timing variance (`variance`)
|
||||
|
||||

|
||||
|
||||
| Architecture | Identity | n | mean | sd | CV% |
|
||||
|---|---|---:|---:|---:|---:|
|
||||
| amd64 | zuse | 23 | 0.6307 | 0 | 0.00 |
|
||||
| amd64 | rajames | 25 | 0.6307 | 0 | 0.00 |
|
||||
| amd64 | 00 | 26 | 0.6307 | 0 | 0.00 |
|
||||
| amd64 | 01 | 26 | 0.6307 | 0 | 0.00 |
|
||||
| amd64 | 02 | 28 | 0.6307 | 0 | 0.00 |
|
||||
| amd64 | 03 | 30 | 0.6307 | 0 | 0.00 |
|
||||
| amd64 | 04 | 33 | 0.6307 | 0 | 0.00 |
|
||||
| amd64 | 05 | 33 | 0.6307 | 0 | 0.00 |
|
||||
| amd64 | 06 | 31 | 0.6307 | 0 | 0.00 |
|
||||
| aarch64 | zuse | 23 | 0 | 0 | — |
|
||||
| aarch64 | rajames | 16 | 0 | 0 | — |
|
||||
| aarch64 | 00 | 26 | 0 | 0 | — |
|
||||
| aarch64 | 01 | 27 | 0 | 0 | — |
|
||||
| aarch64 | 02 | 37 | 0 | 0 | — |
|
||||
| aarch64 | 03 | 29 | 0 | 0 | — |
|
||||
| aarch64 | 04 | 33 | 0 | 0 | — |
|
||||
| aarch64 | 05 | 33 | 0 | 0 | — |
|
||||
| aarch64 | 06 | 32 | 0 | 0 | — |
|
||||
| riscv64 | zuse | 23 | 0 | 0 | — |
|
||||
| riscv64 | rajames | 26 | 0 | 0 | — |
|
||||
| riscv64 | 00 | 27 | 0 | 0 | — |
|
||||
| riscv64 | 01 | 28 | 0 | 0 | — |
|
||||
| riscv64 | 02 | 27 | 0 | 0 | — |
|
||||
| riscv64 | 03 | 28 | 0 | 0 | — |
|
||||
| riscv64 | 04 | 32 | 0 | 0 | — |
|
||||
| riscv64 | 05 | 32 | 0 | 0 | — |
|
||||
| riscv64 | 06 | 34 | 0 | 0 | — |
|
||||
|
||||
Two-way ANOVA (`metric ~ arch * id_label`):
|
||||
|
||||
| Term | Df | Sum Sq | Mean Sq | F value | Pr(>F) |
|
||||
|---|---:|---:|---:|---:|---:|
|
||||
| arch | 2 | 67.75 | 33.88 | 4.293e+32 | 0 |
|
||||
| id_label | 8 | 6.232e-31 | 7.79e-32 | 0.9873 | 0.4444 |
|
||||
| arch:id_label | 16 | 1.249e-30 | 7.806e-32 | 0.9893 | 0.4663 |
|
||||
| Residuals | 741 | 5.847e-29 | 7.89e-32 | — | — |
|
||||
|
||||
## Max VM call depth (`vm_call_depth_max`)
|
||||
|
||||

|
||||
|
||||
| Architecture | Identity | n | mean | sd | CV% |
|
||||
|---|---|---:|---:|---:|---:|
|
||||
| amd64 | zuse | 23 | 1 | 0 | 0.00 |
|
||||
| amd64 | rajames | 25 | 0.96 | 0.2 | 20.83 |
|
||||
| amd64 | 00 | 26 | 0.9615 | 0.1961 | 20.40 |
|
||||
| amd64 | 01 | 26 | 0.9615 | 0.1961 | 20.40 |
|
||||
| amd64 | 02 | 28 | 0.9643 | 0.189 | 19.60 |
|
||||
| amd64 | 03 | 30 | 0.9667 | 0.1826 | 18.89 |
|
||||
| amd64 | 04 | 33 | 0.9697 | 0.1741 | 17.95 |
|
||||
| amd64 | 05 | 33 | 0.9697 | 0.1741 | 17.95 |
|
||||
| amd64 | 06 | 31 | 0.9677 | 0.1796 | 18.56 |
|
||||
| aarch64 | zuse | 23 | 1 | 0 | 0.00 |
|
||||
| aarch64 | rajames | 16 | 1 | 0 | 0.00 |
|
||||
| aarch64 | 00 | 26 | 0.9615 | 0.1961 | 20.40 |
|
||||
| aarch64 | 01 | 27 | 0.963 | 0.1925 | 19.99 |
|
||||
| aarch64 | 02 | 37 | 0.9459 | 0.2292 | 24.23 |
|
||||
| aarch64 | 03 | 29 | 0.9655 | 0.1857 | 19.23 |
|
||||
| aarch64 | 04 | 33 | 0.9697 | 0.1741 | 17.95 |
|
||||
| aarch64 | 05 | 33 | 0.9394 | 0.2423 | 25.79 |
|
||||
| aarch64 | 06 | 32 | 0.9688 | 0.1768 | 18.25 |
|
||||
| riscv64 | zuse | 23 | 1 | 0 | 0.00 |
|
||||
| riscv64 | rajames | 26 | 0.9231 | 0.2717 | 29.44 |
|
||||
| riscv64 | 00 | 27 | 0.9259 | 0.2669 | 28.82 |
|
||||
| riscv64 | 01 | 28 | 0.9643 | 0.189 | 19.60 |
|
||||
| riscv64 | 02 | 27 | 0.963 | 0.1925 | 19.99 |
|
||||
| riscv64 | 03 | 28 | 0.9643 | 0.189 | 19.60 |
|
||||
| riscv64 | 04 | 32 | 0.9688 | 0.1768 | 18.25 |
|
||||
| riscv64 | 05 | 32 | 0.9688 | 0.1768 | 18.25 |
|
||||
| riscv64 | 06 | 34 | 0.9706 | 0.1715 | 17.67 |
|
||||
|
||||
Two-way ANOVA (`metric ~ arch * id_label`):
|
||||
|
||||
| Term | Df | Sum Sq | Mean Sq | F value | Pr(>F) |
|
||||
|---|---:|---:|---:|---:|---:|
|
||||
| arch | 2 | 0.007273 | 0.003636 | 0.1044 | 0.9009 |
|
||||
| id_label | 8 | 0.1239 | 0.01549 | 0.4447 | 0.8942 |
|
||||
| arch:id_label | 16 | 0.1016 | 0.006352 | 0.1823 | 0.9999 |
|
||||
| Residuals | 741 | 25.82 | 0.03484 | — | — |
|
||||
|
||||
## Hera fleet heat (`hera_heat`)
|
||||
|
||||

|
||||
|
||||
| Architecture | Identity | n | mean | sd | CV% |
|
||||
|---|---|---:|---:|---:|---:|
|
||||
| amd64 | zuse | 23 | 0.6532 | 0 | 0.00 |
|
||||
| amd64 | rajames | 25 | 0.6532 | 0 | 0.00 |
|
||||
| amd64 | 00 | 26 | 0.6532 | 0 | 0.00 |
|
||||
| amd64 | 01 | 26 | 0.6532 | 0 | 0.00 |
|
||||
| amd64 | 02 | 28 | 0.6532 | 0 | 0.00 |
|
||||
| amd64 | 03 | 30 | 0.6532 | 0 | 0.00 |
|
||||
| amd64 | 04 | 33 | 0.6532 | 0 | 0.00 |
|
||||
| amd64 | 05 | 33 | 0.6532 | 0 | 0.00 |
|
||||
| amd64 | 06 | 31 | 0.6532 | 0 | 0.00 |
|
||||
| aarch64 | zuse | 23 | 0.6767 | 0 | 0.00 |
|
||||
| aarch64 | rajames | 16 | 0.6767 | 0 | 0.00 |
|
||||
| aarch64 | 00 | 26 | 0.6767 | 0 | 0.00 |
|
||||
| aarch64 | 01 | 27 | 0.6767 | 0 | 0.00 |
|
||||
| aarch64 | 02 | 37 | 0.6767 | 0 | 0.00 |
|
||||
| aarch64 | 03 | 29 | 0.6767 | 0 | 0.00 |
|
||||
| aarch64 | 04 | 33 | 0.6767 | 0 | 0.00 |
|
||||
| aarch64 | 05 | 33 | 0.6767 | 0 | 0.00 |
|
||||
| aarch64 | 06 | 32 | 0.6767 | 0 | 0.00 |
|
||||
| riscv64 | zuse | 23 | 0.6384 | 0 | 0.00 |
|
||||
| riscv64 | rajames | 26 | 0.6384 | 0 | 0.00 |
|
||||
| riscv64 | 00 | 27 | 0.6384 | 0 | 0.00 |
|
||||
| riscv64 | 01 | 28 | 0.6384 | 0 | 0.00 |
|
||||
| riscv64 | 02 | 27 | 0.6384 | 0 | 0.00 |
|
||||
| riscv64 | 03 | 28 | 0.6384 | 0 | 0.00 |
|
||||
| riscv64 | 04 | 32 | 0.6384 | 0 | 0.00 |
|
||||
| riscv64 | 05 | 32 | 0.6384 | 0 | 0.00 |
|
||||
| riscv64 | 06 | 34 | 0.6384 | 0 | 0.00 |
|
||||
|
||||
Two-way ANOVA (`metric ~ arch * id_label`):
|
||||
|
||||
| Term | Df | Sum Sq | Mean Sq | F value | Pr(>F) |
|
||||
|---|---:|---:|---:|---:|---:|
|
||||
| arch | 2 | 0.1909 | 0.09546 | 3.106e+30 | 0 |
|
||||
| id_label | 8 | 1.995e-31 | 2.494e-32 | 0.8114 | 0.5927 |
|
||||
| arch:id_label | 16 | 3.935e-31 | 2.459e-32 | 0.8003 | 0.6863 |
|
||||
| Residuals | 741 | 2.277e-29 | 3.073e-32 | — | — |
|
||||
|
||||
## Hermes fleet heat (`hermes_heat`)
|
||||
|
||||

|
||||
|
||||
| Architecture | Identity | n | mean | sd | CV% |
|
||||
|---|---|---:|---:|---:|---:|
|
||||
| amd64 | zuse | 23 | 0.1692 | 0 | 0.00 |
|
||||
| amd64 | rajames | 25 | 0.1692 | 0 | 0.00 |
|
||||
| amd64 | 00 | 26 | 0.1692 | 0 | 0.00 |
|
||||
| amd64 | 01 | 26 | 0.1692 | 0 | 0.00 |
|
||||
| amd64 | 02 | 28 | 0.1692 | 0 | 0.00 |
|
||||
| amd64 | 03 | 30 | 0.1692 | 0 | 0.00 |
|
||||
| amd64 | 04 | 33 | 0.1692 | 0 | 0.00 |
|
||||
| amd64 | 05 | 33 | 0.1692 | 0 | 0.00 |
|
||||
| amd64 | 06 | 31 | 0.1692 | 0 | 0.00 |
|
||||
| aarch64 | zuse | 23 | 0.1581 | 0 | 0.00 |
|
||||
| aarch64 | rajames | 16 | 0.1581 | 0 | 0.00 |
|
||||
| aarch64 | 00 | 26 | 0.1581 | 0 | 0.00 |
|
||||
| aarch64 | 01 | 27 | 0.1581 | 0 | 0.00 |
|
||||
| aarch64 | 02 | 37 | 0.1581 | 0 | 0.00 |
|
||||
| aarch64 | 03 | 29 | 0.1581 | 0 | 0.00 |
|
||||
| aarch64 | 04 | 33 | 0.1581 | 0 | 0.00 |
|
||||
| aarch64 | 05 | 33 | 0.1581 | 0 | 0.00 |
|
||||
| aarch64 | 06 | 32 | 0.1581 | 0 | 0.00 |
|
||||
| riscv64 | zuse | 23 | 0.1762 | 0 | 0.00 |
|
||||
| riscv64 | rajames | 26 | 0.1762 | 0 | 0.00 |
|
||||
| riscv64 | 00 | 27 | 0.1762 | 0 | 0.00 |
|
||||
| riscv64 | 01 | 28 | 0.1762 | 0 | 0.00 |
|
||||
| riscv64 | 02 | 27 | 0.1762 | 0 | 0.00 |
|
||||
| riscv64 | 03 | 28 | 0.1762 | 0 | 0.00 |
|
||||
| riscv64 | 04 | 32 | 0.1762 | 0 | 0.00 |
|
||||
| riscv64 | 05 | 32 | 0.1762 | 0 | 0.00 |
|
||||
| riscv64 | 06 | 34 | 0.1762 | 0 | 0.00 |
|
||||
|
||||
Two-way ANOVA (`metric ~ arch * id_label`):
|
||||
|
||||
| Term | Df | Sum Sq | Mean Sq | F value | Pr(>F) |
|
||||
|---|---:|---:|---:|---:|---:|
|
||||
| arch | 2 | 0.04251 | 0.02125 | 1.491e+31 | 0 |
|
||||
| id_label | 8 | 9.968e-33 | 1.246e-33 | 0.8744 | 0.5376 |
|
||||
| arch:id_label | 16 | 1.967e-32 | 1.229e-33 | 0.8627 | 0.6132 |
|
||||
| Residuals | 741 | 1.056e-30 | 1.425e-33 | — | — |
|
||||
|
||||
## Artemis fleet heat (`artemis_heat`)
|
||||
|
||||

|
||||
|
||||
| Architecture | Identity | n | mean | sd | CV% |
|
||||
|---|---|---:|---:|---:|---:|
|
||||
| amd64 | zuse | 23 | 1.545e+17 | 5.118e+17 | 331.32 |
|
||||
| amd64 | rajames | 25 | 1.421e+17 | 4.919e+17 | 346.11 |
|
||||
| amd64 | 00 | 26 | 2.05e+17 | 5.788e+17 | 282.37 |
|
||||
| amd64 | 01 | 26 | 4.1e+08 | 7.633e+08 | 186.19 |
|
||||
| amd64 | 02 | 28 | 1.269e+17 | 4.659e+17 | 367.17 |
|
||||
| amd64 | 03 | 30 | 5.922e+16 | 3.244e+17 | 547.72 |
|
||||
| amd64 | 04 | 33 | 1.077e+17 | 4.305e+17 | 399.80 |
|
||||
| amd64 | 05 | 33 | 1.615e+17 | 5.186e+17 | 321.13 |
|
||||
| amd64 | 06 | 31 | 1.719e+17 | 5.339e+17 | 310.56 |
|
||||
| aarch64 | zuse | 23 | 7.184e+16 | 3.445e+17 | 479.58 |
|
||||
| aarch64 | rajames | 16 | 2.065e+17 | 5.643e+17 | 273.25 |
|
||||
| aarch64 | 00 | 26 | 1.906e+17 | 5.383e+17 | 282.37 |
|
||||
| aarch64 | 01 | 27 | 3.671e+08 | 6.999e+08 | 190.65 |
|
||||
| aarch64 | 02 | 37 | 8.931e+16 | 3.788e+17 | 424.10 |
|
||||
| aarch64 | 03 | 29 | 5.697e+16 | 3.068e+17 | 538.52 |
|
||||
| aarch64 | 04 | 33 | 1.001e+17 | 4.003e+17 | 399.80 |
|
||||
| aarch64 | 05 | 33 | 1.502e+17 | 4.823e+17 | 321.13 |
|
||||
| aarch64 | 06 | 32 | 1.549e+17 | 4.893e+17 | 315.89 |
|
||||
| riscv64 | zuse | 23 | 8.062e+16 | 3.866e+17 | 479.58 |
|
||||
| riscv64 | rajames | 26 | 2.853e+08 | 6.822e+08 | 239.16 |
|
||||
| riscv64 | 00 | 27 | 1.374e+17 | 4.949e+17 | 360.29 |
|
||||
| riscv64 | 01 | 28 | 3.973e+08 | 7.748e+08 | 195.00 |
|
||||
| riscv64 | 02 | 27 | 6.868e+16 | 3.568e+17 | 519.62 |
|
||||
| riscv64 | 03 | 28 | 6.622e+16 | 3.504e+17 | 529.15 |
|
||||
| riscv64 | 04 | 32 | 5.794e+16 | 3.278e+17 | 565.69 |
|
||||
| riscv64 | 05 | 32 | 1.159e+17 | 4.56e+17 | 393.50 |
|
||||
| riscv64 | 06 | 34 | 1.636e+17 | 5.338e+17 | 326.29 |
|
||||
|
||||
Two-way ANOVA (`metric ~ arch * id_label`):
|
||||
|
||||
| Term | Df | Sum Sq | Mean Sq | F value | Pr(>F) |
|
||||
|---|---:|---:|---:|---:|---:|
|
||||
| arch | 2 | 2.807e+35 | 1.404e+35 | 0.801 | 0.4492 |
|
||||
| id_label | 8 | 1.988e+36 | 2.486e+35 | 1.419 | 0.1849 |
|
||||
| arch:id_label | 16 | 4.978e+35 | 3.111e+34 | 0.1776 | 0.9999 |
|
||||
| Residuals | 741 | 1.298e+38 | 1.752e+35 | — | — |
|
||||
|
||||
@@ -0,0 +1,55 @@
|
||||
# std79-doe 3×9 factorial analysis (heartbeat/physics telemetry)
|
||||
|
||||
Read `ANALYSIS.md` for the report itself (key findings, per-metric cell means,
|
||||
two-way ANOVA tables, boxplot SVGs). This file just documents the pipeline.
|
||||
|
||||
## Pipeline
|
||||
|
||||
1. **Source data:** `../results-20260912-with-heartbeat-csv/{amd64,aarch64,riscv64}-doe-raw.log`
|
||||
— raw QEMU serial logs from the `HB-ON`/`HB-OFF`-instrumented std79 DoE campaign
|
||||
(see `../README.md` and FABRIC-3.md §XV/§XVI/§XVII for the campaign itself).
|
||||
|
||||
2. **`correlate_doe.py <raw_log> <out_csv>`** — reconstructs which DoE trial
|
||||
(`run_id`, `id_idx`, `id_label`, `rep`) was active for every heartbeat-tick CSV
|
||||
row, despite the async tick printer splicing rows mid-token into the trial
|
||||
loop's own console output on the shared serial line (see the script's own
|
||||
docstring for the two-pass reconstruction method, and its `RUN_ID_MAP` for
|
||||
why identity/rep are looked up from a known-clean prior run rather than
|
||||
re-parsed from each log — one aarch64 marker was unrecoverable, see below).
|
||||
Run once per architecture:
|
||||
|
||||
```
|
||||
python3 correlate_doe.py ../results-20260912-with-heartbeat-csv/amd64-doe-raw.log amd64-correlated.csv
|
||||
python3 correlate_doe.py ../results-20260912-with-heartbeat-csv/aarch64-doe-raw.log aarch64-correlated.csv
|
||||
python3 correlate_doe.py ../results-20260912-with-heartbeat-csv/riscv64-doe-raw.log riscv64-correlated.csv
|
||||
```
|
||||
|
||||
3. **`combine.py <in1.csv> [in2.csv ...] <out.csv>`** — merges the three
|
||||
per-architecture correlated CSVs into `combined.csv` (committed, 768 rows),
|
||||
decoding Q48.16 fixed-point fields to plain floats and `jitter_bits`' raw
|
||||
IEEE754 bit pattern to a real `jitter_ns` value:
|
||||
|
||||
```
|
||||
python3 combine.py amd64-correlated.csv aarch64-correlated.csv riscv64-correlated.csv combined.csv
|
||||
```
|
||||
|
||||
4. **`analysis.R`** (run from this directory) — reads `combined.csv`, computes
|
||||
per-cell (architecture × identity) summary statistics and a two-way ANOVA
|
||||
for each of the 12 varying telemetry metrics, renders one boxplot SVG per
|
||||
metric to `svg/`, and writes `ANALYSIS.md`:
|
||||
|
||||
```
|
||||
Rscript analysis.R
|
||||
```
|
||||
|
||||
Requires `dplyr`, `tidyr`, `ggplot2`, `svglite` (all present in this
|
||||
environment already).
|
||||
|
||||
## Known limitation
|
||||
|
||||
aarch64's raw log lost 1 of 27 `DOE-RUN` markers to interleaving beyond
|
||||
recovery — trial 12 (identity `rajames`, rep 1). Its rows fold into trial 11
|
||||
(identity `rajames`, rep 0) in `combined.csv`, so aarch64's `rajames` cell
|
||||
isn't perfectly separable between those two replicates specifically. Every
|
||||
other cell, on every architecture, is unaffected — see `ANALYSIS.md`'s own
|
||||
note and `correlate_doe.py`'s docstring for the full explanation.
|
||||
@@ -0,0 +1,243 @@
|
||||
#!/usr/bin/env Rscript
|
||||
# analysis.R -- 3(architecture) x 9(identity) factorial analysis of the
|
||||
# std79-doe heartbeat/physics telemetry captured via HB-ON/HB-OFF
|
||||
# (see ../README.md's results-20260912-with-heartbeat-csv/ entry).
|
||||
#
|
||||
# Input: combined.csv (this directory) -- one row per heartbeat tick,
|
||||
# tagged with which (arch, run_id, id_idx, id_label, rep) trial was
|
||||
# active when that tick's CSV row was printed, built by
|
||||
# correlate_doe.py from the three raw logs in
|
||||
# ../results-20260912-with-heartbeat-csv/. Q48.16 fields are already
|
||||
# decoded to plain floats (avg_word_heat, time_trust, variance,
|
||||
# hera/hermes/artemis_heat) and jitter_bits to jitter_ns (IEEE754
|
||||
# bit-pattern reinterpretation), both done in Python before this script
|
||||
# runs, since R has no native uint64/bit-punning story worth using here.
|
||||
#
|
||||
# Output: ANALYSIS.md (this directory) + svg/*.svg (referenced from it).
|
||||
|
||||
suppressMessages({
|
||||
library(dplyr)
|
||||
library(tidyr)
|
||||
library(ggplot2)
|
||||
library(svglite)
|
||||
})
|
||||
|
||||
set.seed(1)
|
||||
# Run from this directory (contains combined.csv); the caller cd's here.
|
||||
|
||||
df <- read.csv("combined.csv", stringsAsFactors = FALSE)
|
||||
|
||||
id_levels <- c("zuse", "rajames", "00", "01", "02", "03", "04", "05", "06")
|
||||
arch_levels <- c("amd64", "aarch64", "riscv64")
|
||||
df$id_label <- factor(df$id_label, levels = id_levels)
|
||||
df$arch <- factor(df$arch, levels = arch_levels)
|
||||
|
||||
# apic_ticks is a monotonic hardware counter, not directly comparable
|
||||
# across trials/architectures as a raw value -- the per-tick DELTA
|
||||
# (hardware ticks consumed per heartbeat tick) is the actual timing
|
||||
# signal. Computed per (arch, run_id) so a trial boundary never
|
||||
# contaminates the delta of the row after it.
|
||||
df <- df %>%
|
||||
arrange(arch, run_id, tick_number) %>%
|
||||
group_by(arch, run_id) %>%
|
||||
mutate(apic_delta = apic_ticks - lag(apic_ticks)) %>%
|
||||
ungroup()
|
||||
|
||||
metrics <- c(
|
||||
"hot_word_count", "avg_word_heat", "window_width", "actual_window_size",
|
||||
"jitter_ns", "apic_delta", "time_trust", "variance", "vm_call_depth_max",
|
||||
"hera_heat", "hermes_heat", "artemis_heat"
|
||||
)
|
||||
|
||||
metric_labels <- c(
|
||||
hot_word_count = "Hot word count",
|
||||
avg_word_heat = "Mean word execution heat",
|
||||
window_width = "Rolling window width",
|
||||
actual_window_size = "Actual analysis window size",
|
||||
jitter_ns = "Estimated timer jitter (ns)",
|
||||
apic_delta = "APIC ticks per heartbeat tick",
|
||||
time_trust = "TIME-TRUST",
|
||||
variance = "Timing variance",
|
||||
vm_call_depth_max = "Max VM call depth",
|
||||
hera_heat = "Hera fleet heat",
|
||||
hermes_heat = "Hermes fleet heat",
|
||||
artemis_heat = "Artemis fleet heat"
|
||||
)
|
||||
|
||||
dir.create("svg", showWarnings = FALSE)
|
||||
|
||||
# ---- Per-cell (arch x id_label) summary table for one metric ----
|
||||
cell_summary <- function(metric) {
|
||||
df %>%
|
||||
filter(!is.na(.data[[metric]])) %>%
|
||||
group_by(arch, id_label) %>%
|
||||
summarise(
|
||||
n = n(),
|
||||
mean = mean(.data[[metric]]),
|
||||
sd = sd(.data[[metric]]),
|
||||
cv_pct = ifelse(mean != 0, 100 * sd / abs(mean), NA_real_),
|
||||
.groups = "drop"
|
||||
)
|
||||
}
|
||||
|
||||
# ---- Two-way ANOVA (metric ~ arch * id_label), safe on zero-variance ----
|
||||
anova_table <- function(metric) {
|
||||
d <- df %>% filter(!is.na(.data[[metric]]))
|
||||
if (length(unique(d[[metric]])) <= 1) {
|
||||
return(NULL)
|
||||
}
|
||||
fit <- tryCatch(
|
||||
aov(as.formula(paste0(metric, " ~ arch * id_label")), data = d),
|
||||
error = function(e) NULL
|
||||
)
|
||||
if (is.null(fit)) return(NULL)
|
||||
s <- summary(fit)[[1]]
|
||||
s
|
||||
}
|
||||
|
||||
# ---- Boxplot: metric by id_label, faceted by arch ----
|
||||
make_plot <- function(metric) {
|
||||
d <- df %>% filter(!is.na(.data[[metric]]))
|
||||
if (length(unique(d[[metric]])) <= 1) return(NULL)
|
||||
p <- ggplot(d, aes(x = id_label, y = .data[[metric]], fill = id_label)) +
|
||||
geom_boxplot(outlier.size = 0.6, alpha = 0.85) +
|
||||
facet_wrap(~arch, ncol = 1) +
|
||||
labs(
|
||||
title = metric_labels[[metric]],
|
||||
x = "Identity", y = metric_labels[[metric]]
|
||||
) +
|
||||
theme_bw(base_size = 11) +
|
||||
theme(legend.position = "none", axis.text.x = element_text(angle = 45, hjust = 1))
|
||||
fname <- file.path("svg", paste0(metric, ".svg"))
|
||||
ggsave(fname, p, width = 7, height = 8, device = svglite)
|
||||
fname
|
||||
}
|
||||
|
||||
# ---- Run everything, collect markdown fragments ----
|
||||
md <- c()
|
||||
md <- c(md, "# std79-doe 3×9 Factorial Analysis — Heartbeat/Physics Telemetry")
|
||||
md <- c(md, "")
|
||||
md <- c(md, sprintf("Generated %s. Source: `combined.csv` (%d rows), built by", format(Sys.time(), "%Y-%m-%d %H:%M"), nrow(df)))
|
||||
md <- c(md, "`correlate_doe.py` from the three raw logs in")
|
||||
md <- c(md, "`../results-20260912-with-heartbeat-csv/`. See that file's own docstring for the")
|
||||
md <- c(md, "correlation methodology (the heartbeat tick's async CSV printer and the DoE trial")
|
||||
md <- c(md, "loop's own console output share one serial line with no locking, so rows can land")
|
||||
md <- c(md, "mid-token in the raw logs; the underlying FORTH execution and values are")
|
||||
md <- c(md, "unaffected, only reconstructing which trial owns which row needed care).")
|
||||
md <- c(md, "")
|
||||
md <- c(md, "**Design:** 3 architectures (amd64, aarch64, riscv64) × 9 identities (zuse,")
|
||||
md <- c(md, "rajames, 00-06) × 3 replicates, Fisher-Yates-shuffled run order, same seed")
|
||||
md <- c(md, "(12345) on every architecture (FABRIC-3.md §XV). Each of the 27 trials per")
|
||||
md <- c(md, "architecture runs the same 24-word FORTH-79 exerciser; every heartbeat tick during")
|
||||
md <- c(md, "the whole `EXEC-STD79-DOE` run (bracketed by `HB-ON`/`HB-OFF`) emits one telemetry")
|
||||
md <- c(md, "row (`doe_log.c`), correlated back to whichever trial was active when it printed.")
|
||||
md <- c(md, "")
|
||||
md <- c(md, "**Known limitation:** aarch64's raw log lost 1 of 27 run_id markers to interleaving")
|
||||
md <- c(md, "beyond recovery (trial 12, identity `rajames` rep 1) -- its rows are folded into")
|
||||
md <- c(md, "trial 11 (identity `rajames` rep 0) in this dataset, so aarch64's `rajames` cell")
|
||||
md <- c(md, "for rep-sensitive metrics is not perfectly separable for those two replicates")
|
||||
md <- c(md, "specifically. Every other cell on every architecture is unaffected.")
|
||||
md <- c(md, "")
|
||||
|
||||
# ---- Pass 1: compute everything, so the "Key findings" summary (which
|
||||
# needs every metric's ANOVA result) can be written before the detailed
|
||||
# per-metric sections that follow it. ----
|
||||
results <- list()
|
||||
for (metric in metrics) {
|
||||
results[[metric]] <- list(
|
||||
cs = cell_summary(metric),
|
||||
at = anova_table(metric),
|
||||
plot_file = make_plot(metric)
|
||||
)
|
||||
}
|
||||
|
||||
sig <- function(p) !is.na(p) && p < 0.05
|
||||
|
||||
arch_sig <- c(); id_sig <- c(); inter_sig <- c(); none_sig <- c()
|
||||
for (metric in metrics) {
|
||||
at <- results[[metric]]$at
|
||||
if (is.null(at)) next
|
||||
p_arch <- if ("arch" %in% trimws(rownames(at))) at[trimws(rownames(at)) == "arch", "Pr(>F)"] else NA
|
||||
p_id <- if ("id_label" %in% trimws(rownames(at))) at[trimws(rownames(at)) == "id_label", "Pr(>F)"] else NA
|
||||
p_int <- if ("arch:id_label" %in% trimws(rownames(at))) at[trimws(rownames(at)) == "arch:id_label", "Pr(>F)"] else NA
|
||||
label <- metric_labels[[metric]]
|
||||
any_sig <- FALSE
|
||||
if (sig(p_arch)) { arch_sig <- c(arch_sig, label); any_sig <- TRUE }
|
||||
if (sig(p_id)) { id_sig <- c(id_sig, label); any_sig <- TRUE }
|
||||
if (sig(p_int)) { inter_sig <- c(inter_sig, label); any_sig <- TRUE }
|
||||
if (!any_sig) none_sig <- c(none_sig, label)
|
||||
}
|
||||
|
||||
md <- c(md, "## Key findings (p < 0.05, two-way ANOVA)")
|
||||
md <- c(md, "")
|
||||
md <- c(md, sprintf("- **Architecture main effect:** %s",
|
||||
if (length(arch_sig)) paste(arch_sig, collapse = ", ") else "none"))
|
||||
md <- c(md, sprintf("- **Identity main effect:** %s",
|
||||
if (length(id_sig)) paste(id_sig, collapse = ", ") else "none"))
|
||||
md <- c(md, sprintf("- **Architecture × identity interaction:** %s",
|
||||
if (length(inter_sig)) paste(inter_sig, collapse = ", ") else "none"))
|
||||
md <- c(md, sprintf("- **No significant effect of either factor:** %s",
|
||||
if (length(none_sig)) paste(none_sig, collapse = ", ") else "none"))
|
||||
md <- c(md, "")
|
||||
md <- c(md, "TIME-TRUST's architecture effect is a numerical artifact worth reading correctly,")
|
||||
md <- c(md, "not a substantive result: it is essentially constant *within* each architecture")
|
||||
md <- c(md, "(residual variance ~1e-31, i.e. floating-point noise) and differs *between*")
|
||||
md <- c(md, "architectures — so the F statistic is enormous simply because the within-group")
|
||||
md <- c(md, "denominator is near zero, not because TIME-TRUST is meaningfully more variable")
|
||||
md <- c(md, "across architectures than the other metrics here. It is architecture-determined")
|
||||
md <- c(md, "and identity-independent, which is itself the interesting part.")
|
||||
md <- c(md, "")
|
||||
|
||||
for (metric in metrics) {
|
||||
cs <- results[[metric]]$cs
|
||||
at <- results[[metric]]$at
|
||||
plot_file <- results[[metric]]$plot_file
|
||||
|
||||
md <- c(md, sprintf("## %s (`%s`)", metric_labels[[metric]], metric))
|
||||
md <- c(md, "")
|
||||
|
||||
if (is.null(plot_file)) {
|
||||
md <- c(md, "_Constant across every trial and architecture — no variance, excluded from ANOVA/plot._")
|
||||
md <- c(md, "")
|
||||
next
|
||||
}
|
||||
|
||||
md <- c(md, sprintf("", metric_labels[[metric]], plot_file))
|
||||
md <- c(md, "")
|
||||
md <- c(md, "| Architecture | Identity | n | mean | sd | CV% |")
|
||||
md <- c(md, "|---|---|---:|---:|---:|---:|")
|
||||
for (i in seq_len(nrow(cs))) {
|
||||
r <- cs[i, ]
|
||||
md <- c(md, sprintf("| %s | %s | %d | %.4g | %.4g | %s |",
|
||||
r$arch, r$id_label, r$n, r$mean, r$sd,
|
||||
ifelse(is.na(r$cv_pct), "—", sprintf("%.2f", r$cv_pct))))
|
||||
}
|
||||
md <- c(md, "")
|
||||
|
||||
if (!is.null(at)) {
|
||||
md <- c(md, "Two-way ANOVA (`metric ~ arch * id_label`):")
|
||||
md <- c(md, "")
|
||||
md <- c(md, "| Term | Df | Sum Sq | Mean Sq | F value | Pr(>F) |")
|
||||
md <- c(md, "|---|---:|---:|---:|---:|---:|")
|
||||
terms <- rownames(at)
|
||||
for (i in seq_len(nrow(at))) {
|
||||
row <- at[i, ]
|
||||
# %g-style: near-zero within-cell residual variance (e.g. a metric
|
||||
# that's essentially constant within an architecture, only varying
|
||||
# BETWEEN architectures -- TIME-TRUST does exactly this) can blow
|
||||
# the F statistic up to absurd magnitudes; format generally rather
|
||||
# than with a fixed decimal count so that renders sanely too.
|
||||
fval <- if (!is.na(row[["F value"]])) formatC(row[["F value"]], format = "g", digits = 4) else "—"
|
||||
pval <- if (!is.na(row[["Pr(>F)"]])) formatC(row[["Pr(>F)"]], format = "g", digits = 4) else "—"
|
||||
md <- c(md, sprintf("| %s | %d | %.4g | %.4g | %s | %s |",
|
||||
trimws(terms[i]), row[["Df"]], row[["Sum Sq"]], row[["Mean Sq"]], fval, pval))
|
||||
}
|
||||
md <- c(md, "")
|
||||
} else {
|
||||
md <- c(md, "_ANOVA not computed (insufficient variance)._")
|
||||
md <- c(md, "")
|
||||
}
|
||||
}
|
||||
|
||||
writeLines(md, "ANALYSIS.md")
|
||||
cat("Wrote ANALYSIS.md and svg/*.svg\n")
|
||||
@@ -0,0 +1,60 @@
|
||||
#!/usr/bin/env python3
|
||||
"""
|
||||
combine.py -- build combined.csv from the three per-architecture
|
||||
correlated CSVs (correlate_doe.py's output), decoding Q48.16 fixed-point
|
||||
fields to plain floats and jitter_bits' IEEE754 bit pattern to a real
|
||||
jitter_ns value, since R has no convenient native uint64/bit-punning
|
||||
story worth using here.
|
||||
|
||||
Usage (from this directory, after running correlate_doe.py for each
|
||||
architecture against ../results-20260912-with-heartbeat-csv/*-doe-raw.log
|
||||
to produce amd64-correlated.csv / aarch64-correlated.csv /
|
||||
riscv64-correlated.csv):
|
||||
|
||||
python3 combine.py amd64-correlated.csv aarch64-correlated.csv riscv64-correlated.csv combined.csv
|
||||
"""
|
||||
import csv
|
||||
import struct
|
||||
import sys
|
||||
|
||||
Q48 = 65536.0
|
||||
|
||||
def main():
|
||||
if len(sys.argv) < 3:
|
||||
print("usage: combine.py <in1.csv> [in2.csv ...] <out.csv>", file=sys.stderr)
|
||||
sys.exit(1)
|
||||
*in_paths, out_path = sys.argv[1:]
|
||||
|
||||
fields = ["arch", "run_id", "id_idx", "id_label", "rep", "tick_number", "elapsed_ns",
|
||||
"tick_interval_ns", "hot_word_count", "avg_word_heat", "window_width",
|
||||
"actual_window_size", "predicted_label_hits", "jitter_ns", "apic_ticks",
|
||||
"time_trust", "variance", "vm_call_depth_max", "hera_heat", "hermes_heat",
|
||||
"artemis_heat"]
|
||||
|
||||
out_rows = []
|
||||
for path in in_paths:
|
||||
arch = path.split("-correlated.csv")[0].split("/")[-1]
|
||||
with open(path) as f:
|
||||
for row in csv.DictReader(f):
|
||||
jitter_bits = int(row["jitter_bits"])
|
||||
jitter_ns = struct.unpack('<d', struct.pack('<Q', jitter_bits))[0]
|
||||
out = dict(row)
|
||||
out["arch"] = arch
|
||||
out["avg_word_heat"] = int(row["avg_word_heat_q48"]) / Q48
|
||||
out["time_trust"] = int(row["time_trust_q48"]) / Q48
|
||||
out["variance"] = int(row["variance_q48"]) / Q48
|
||||
out["hera_heat"] = int(row["hera_heat_q48"]) / Q48
|
||||
out["hermes_heat"] = int(row["hermes_heat_q48"]) / Q48
|
||||
out["artemis_heat"] = int(row["artemis_heat_q48"]) / Q48
|
||||
out["jitter_ns"] = jitter_ns
|
||||
out_rows.append({k: out[k] for k in fields})
|
||||
|
||||
with open(out_path, "w", newline="") as f:
|
||||
w = csv.DictWriter(f, fieldnames=fields)
|
||||
w.writeheader()
|
||||
w.writerows(out_rows)
|
||||
|
||||
print(f"rows written: {len(out_rows)}")
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
@@ -0,0 +1,769 @@
|
||||
arch,run_id,id_idx,id_label,rep,tick_number,elapsed_ns,tick_interval_ns,hot_word_count,avg_word_heat,window_width,actual_window_size,predicted_label_hits,jitter_ns,apic_ticks,time_trust,variance,vm_call_depth_max,hera_heat,hermes_heat,artemis_heat
|
||||
amd64,0,6,04,2,100,1000000,10000,61,0.0007781982421875,1024,1024,0,0.0,13037,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,0,6,04,2,101,1010000,10000,61,0.00079345703125,1024,1024,0,0.0,13039,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.776519775390625
|
||||
amd64,0,6,04,2,102,1020000,10000,62,0.0008087158203125,512,512,0,0.0,13042,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,0,6,04,2,103,1030000,10000,64,0.000823974609375,512,512,0,0.0,13044,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1776460990.65625
|
||||
amd64,0,6,04,2,104,1040000,10000,67,0.0008392333984375,256,256,0,0.0,13046,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7764985914004278e+18
|
||||
amd64,0,6,04,2,105,1050000,10000,68,0.0008544921875,256,256,0,0.0,13049,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.77642822265625
|
||||
amd64,0,6,04,2,106,1060000,10000,68,0.000885009765625,256,256,0,0.0,13051,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,0,6,04,2,107,1070000,10000,68,0.0009002685546875,256,256,0,0.0,13054,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,17.764663696289062
|
||||
amd64,0,6,04,2,108,1080000,10000,68,0.00091552734375,256,256,0,0.0,13056,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,0,6,04,2,109,1090000,10000,68,0.0009307861328125,256,256,0,0.0,13059,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7765045166015625
|
||||
amd64,0,6,04,2,110,1100000,10000,68,0.000946044921875,256,256,0,0.0,13061,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,0,6,04,2,111,1110000,10000,68,0.0009613037109375,256,256,0,0.0,13070,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,1,3,01,1,112,1120000,10000,69,0.0009765625,256,256,0,0.0,13072,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,1,3,01,1,113,1130000,10000,69,0.001007080078125,256,256,0,0.0,13075,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1776460990.65625
|
||||
amd64,1,3,01,1,114,1140000,10000,69,0.0010223388671875,256,256,0,0.0,13077,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1776460990.65625
|
||||
amd64,1,3,01,1,115,1150000,10000,69,0.00103759765625,256,256,0,0.0,13080,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.77642822265625
|
||||
amd64,1,3,01,1,116,1160000,10000,69,0.0010528564453125,256,256,0,0.0,13082,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,17764.500198364258
|
||||
amd64,1,3,01,1,117,1170000,10000,69,0.001068115234375,256,256,0,0.0,13086,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.776458740234375
|
||||
amd64,1,3,01,1,118,1180000,10000,69,0.0010833740234375,256,256,0,0.0,13088,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7765045166015625
|
||||
amd64,1,3,01,1,119,1190000,10000,69,0.0010986328125,256,256,0,0.0,13091,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,1,3,01,1,120,1200000,10000,69,0.0011444091796875,256,256,0,0.0,13093,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,2,0,zuse,1,121,1210000,10000,69,0.00128173828125,256,256,0,0.0,13096,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7764434814453125
|
||||
amd64,2,0,zuse,1,122,1220000,10000,69,0.0012969970703125,256,256,0,0.0,13099,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7765689601446054e+18
|
||||
amd64,2,0,zuse,1,123,1230000,10000,70,0.0015869140625,256,256,0,0.0,13101,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.77642822265625
|
||||
amd64,2,0,zuse,1,124,1240000,10000,70,0.0016021728515625,256,256,0,0.0,13104,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,2,0,zuse,1,125,1250000,10000,68,0.0016632080078125,256,256,0,0.0,13107,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,17.764663696289062
|
||||
amd64,2,0,zuse,1,126,1260000,10000,68,0.001678466796875,256,256,0,0.0,13110,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,2,0,zuse,1,127,1270000,10000,68,0.001708984375,256,256,0,0.0,13113,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7765045166015625
|
||||
amd64,2,0,zuse,1,128,1280000,10000,68,0.0017547607421875,256,256,0,0.0,13115,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,2,0,zuse,1,129,1290000,10000,68,0.00189208984375,256,256,0,0.0,13117,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,3,1,rajames,0,130,1300000,10000,68,0.001922607421875,256,256,0,0.0,13120,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7764434814453125
|
||||
amd64,3,1,rajames,0,131,1310000,10000,68,0.0019378662109375,256,256,0,0.0,13123,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7765689601446054e+18
|
||||
amd64,3,1,rajames,0,132,1320000,10000,68,0.0019683837890625,256,256,0,0.0,13126,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.77642822265625
|
||||
amd64,3,1,rajames,0,133,1330000,10000,68,0.0019989013671875,256,256,0,0.0,13130,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,17764.500198364258
|
||||
amd64,3,1,rajames,0,134,1340000,10000,68,0.0023040771484375,256,256,0,0.0,13132,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.776458740234375
|
||||
amd64,3,1,rajames,0,135,1350000,10000,68,0.0023345947265625,256,256,0,0.0,13134,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7765045166015625
|
||||
amd64,3,1,rajames,0,136,1360000,10000,68,0.0024261474609375,256,256,0,0.0,13137,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,3,1,rajames,0,137,1370000,10000,68,0.00262451171875,256,256,0,0.0,13139,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,4,5,03,0,138,1380000,10000,68,0.0025177001953125,256,256,0,0.0,13143,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7764434814453125
|
||||
amd64,4,5,03,0,139,1390000,10000,68,0.002899169921875,256,256,0,0.0,13147,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1776460990.65625
|
||||
amd64,4,5,03,0,140,1400000,10000,68,0.0029296875,256,256,0,0.0,13150,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1776460990.65625
|
||||
amd64,4,5,03,0,141,1410000,10000,68,0.002960205078125,256,256,0,0.0,13157,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.77642822265625
|
||||
amd64,4,5,03,0,142,1420000,10000,68,0.003082275390625,256,256,0,0.0,13159,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,17764.500198364258
|
||||
amd64,4,5,03,0,143,1430000,10000,68,0.003143310546875,256,256,0,0.0,13162,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.776458740234375
|
||||
amd64,4,5,03,0,144,1440000,10000,66,0.003265380859375,256,256,0,0.0,13165,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,4,5,03,0,145,1450000,10000,66,0.0034027099609375,256,256,0,0.0,13168,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,4,5,03,0,146,1460000,10000,66,0.00347900390625,256,256,0,0.0,13171,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.77642822265625
|
||||
amd64,5,0,zuse,2,147,1470000,10000,66,0.00347900390625,256,256,0,0.0,13175,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7764434814453125
|
||||
amd64,5,0,zuse,2,148,1480000,10000,66,0.003448486328125,256,256,0,0.0,13177,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7765689601446054e+18
|
||||
amd64,5,0,zuse,2,149,1490000,10000,66,0.003387451171875,256,256,0,0.0,13180,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.77642822265625
|
||||
amd64,5,0,zuse,2,150,1500000,10000,66,0.003326416015625,256,256,0,0.0,13183,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,17.764663696289062
|
||||
amd64,5,0,zuse,2,151,1510000,10000,66,0.0032958984375,256,256,0,0.0,13186,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,5,0,zuse,2,152,1520000,10000,66,0.0032806396484375,256,256,0,0.0,13188,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,5,0,zuse,2,153,1530000,10000,66,0.0032806396484375,256,256,0,0.0,13192,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.77642822265625
|
||||
amd64,6,2,00,2,154,1540000,10000,69,0.00323486328125,256,256,0,0.0,13195,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,17.7642822265625
|
||||
amd64,6,2,00,2,155,1550000,10000,69,0.003265380859375,256,256,0,0.0,13198,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1776460990.65625
|
||||
amd64,6,2,00,2,156,1560000,10000,69,0.0032958984375,256,256,0,0.0,13201,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7764985914004278e+18
|
||||
amd64,6,2,00,2,157,1570000,10000,69,0.003326416015625,256,256,0,0.0,13204,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.77642822265625
|
||||
amd64,6,2,00,2,158,1580000,10000,69,0.0033721923828125,256,256,0,0.0,13206,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,17764.500198364258
|
||||
amd64,6,2,00,2,159,1590000,10000,69,0.0034027099609375,256,256,0,0.0,13209,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,6,2,00,2,160,1600000,10000,69,0.0034332275390625,256,256,0,0.0,13212,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7765045166015625
|
||||
amd64,6,2,00,2,161,1610000,10000,69,0.0034637451171875,256,256,0,0.0,13215,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,6,2,00,2,162,1620000,10000,69,0.0034942626953125,256,256,0,0.0,13217,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,7,8,06,2,163,1630000,10000,69,0.0035400390625,256,256,0,0.0,13221,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,7,8,06,2,164,1640000,10000,69,0.003570556640625,256,256,0,0.0,13222,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1776460990.65625
|
||||
amd64,7,8,06,2,165,1650000,10000,69,0.00360107421875,256,256,0,0.0,13224,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7765689601446054e+18
|
||||
amd64,7,8,06,2,166,1660000,10000,69,0.003631591796875,256,256,0,0.0,13227,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,7,8,06,2,167,1670000,10000,69,0.0036773681640625,256,256,0,0.0,13228,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,17765.138061523438
|
||||
amd64,7,8,06,2,168,1680000,10000,69,0.0037078857421875,256,256,0,0.0,13231,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,17.764663696289062
|
||||
amd64,7,8,06,2,169,1690000,10000,69,0.0037384033203125,256,256,0,0.0,13234,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,7,8,06,2,170,1700000,10000,69,0.0037689208984375,256,256,0,0.0,13236,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7765045166015625
|
||||
amd64,7,8,06,2,171,1710000,10000,69,0.0037994384765625,256,256,0,0.0,13238,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,7,8,06,2,172,1720000,10000,69,0.0038604736328125,256,256,0,0.0,13246,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.77642822265625
|
||||
amd64,8,0,zuse,0,173,1730000,10000,69,0.0045166015625,256,256,0,0.0,13248,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,8,0,zuse,0,174,1740000,10000,69,0.0045623779296875,256,256,0,0.0,13251,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1776460990.65625
|
||||
amd64,8,0,zuse,0,175,1750000,10000,69,0.00445556640625,256,256,0,0.0,13254,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1776460990.65625
|
||||
amd64,8,0,zuse,0,176,1760000,10000,69,0.0043182373046875,256,256,0,0.0,13256,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,8,0,zuse,0,177,1770000,10000,69,0.0044097900390625,256,256,0,0.0,13263,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.776458740234375
|
||||
amd64,8,0,zuse,0,178,1780000,10000,68,0.004486083984375,256,256,0,0.0,13265,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7765045166015625
|
||||
amd64,8,0,zuse,0,179,1790000,10000,69,0.004425048828125,256,256,0,0.0,13268,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,9,6,04,1,180,1800000,10000,69,0.0043487548828125,256,256,0,0.0,13270,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,9,6,04,1,181,1810000,10000,69,0.0045318603515625,256,256,0,0.0,13272,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,9,6,04,1,182,1820000,10000,69,0.00457763671875,256,256,0,0.0,13274,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1776460990.65625
|
||||
amd64,9,6,04,1,183,1830000,10000,69,0.00469970703125,256,256,0,0.0,13276,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1776460990.65625
|
||||
amd64,9,6,04,1,184,1840000,10000,69,0.0047760009765625,256,256,0,0.0,13280,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,17765.138061523438
|
||||
amd64,9,6,04,1,185,1850000,10000,69,0.0048675537109375,256,256,0,0.0,13283,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,17764.500198364258
|
||||
amd64,9,6,04,1,186,1860000,10000,68,0.0060272216796875,256,256,0,0.0,13285,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.776458740234375
|
||||
amd64,9,6,04,1,187,1870000,10000,68,0.006072998046875,256,256,0,0.0,13288,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7765045166015625
|
||||
amd64,9,6,04,1,188,1880000,10000,68,0.0064239501953125,256,256,0,0.0,13291,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,9,6,04,1,189,1890000,10000,68,0.0064849853515625,256,256,0,0.0,13294,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.77642822265625
|
||||
amd64,9,6,04,1,277,2770000,880000,39,0.0136260986328125,256,256,0,870000.0,13302,0.6132354736328125,0.63067626953125,0,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,10,6,04,0,190,1900000,18446744073708681616,68,0.0059967041015625,256,256,0,1.844674407370867e+19,13305,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7764434814453125
|
||||
amd64,10,6,04,0,191,1910000,10000,68,0.0060272216796875,256,256,0,0.0,13307,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,10,6,04,0,192,1920000,10000,68,0.006072998046875,256,256,0,0.0,13311,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7765689601446054e+18
|
||||
amd64,10,6,04,0,193,1930000,10000,68,0.0061187744140625,256,256,0,0.0,13315,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,10,6,04,0,194,1940000,10000,68,0.00616455078125,256,256,0,0.0,13318,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,17765.138061523438
|
||||
amd64,10,6,04,0,195,1950000,10000,68,0.0062103271484375,256,256,0,0.0,13321,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,17.764663696289062
|
||||
amd64,10,6,04,0,196,1960000,10000,68,0.006256103515625,256,256,0,0.0,13324,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,10,6,04,0,197,1970000,10000,68,0.0063018798828125,256,256,0,0.0,13327,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7765045166015625
|
||||
amd64,10,6,04,0,198,1980000,10000,68,0.00634765625,256,256,0,0.0,13330,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,10,6,04,0,199,1990000,10000,68,0.0063934326171875,256,256,0,0.0,13333,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.77642822265625
|
||||
amd64,11,4,02,2,200,2000000,10000,68,0.006439208984375,256,256,0,0.0,13336,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,11,4,02,2,201,2010000,10000,67,0.0064849853515625,256,256,0,0.0,13339,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1776460990.65625
|
||||
amd64,11,4,02,2,202,2020000,10000,67,0.00653076171875,256,256,0,0.0,13343,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7765689601446054e+18
|
||||
amd64,11,4,02,2,203,2030000,10000,67,0.0065765380859375,256,256,0,0.0,13351,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.77642822265625
|
||||
amd64,11,4,02,2,204,2040000,10000,67,0.0066986083984375,256,256,0,0.0,13353,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,11,4,02,2,205,2050000,10000,67,0.006744384765625,256,256,0,0.0,13356,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.776458740234375
|
||||
amd64,11,4,02,2,206,2060000,10000,67,0.0067901611328125,256,256,0,0.0,13359,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,11,4,02,2,207,2070000,10000,67,0.0068359375,256,256,0,0.0,13361,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,11,4,02,2,208,2080000,10000,67,0.0068817138671875,256,256,0,0.0,13364,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.77642822265625
|
||||
amd64,12,1,rajames,1,209,2090000,10000,67,0.006927490234375,256,256,0,0.0,13367,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,12,1,rajames,1,802,8020000,5930000,31,0.045013427734375,256,256,0,5920000.0,13371,0.6132354736328125,0.63067626953125,0,0.6531524658203125,0.1692047119140625,1.776458740234375
|
||||
amd64,12,1,rajames,1,210,2100000,18446744073703631616,67,0.0069732666015625,256,256,0,1.844674407370362e+19,13373,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1776460990.65625
|
||||
amd64,12,1,rajames,1,211,2110000,10000,67,0.00701904296875,256,256,0,0.0,13377,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1776460990.65625
|
||||
amd64,12,1,rajames,1,212,2120000,10000,67,0.0070648193359375,256,256,0,0.0,13378,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,12,1,rajames,1,213,2130000,10000,67,0.007110595703125,256,256,0,0.0,13381,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.776458740234375
|
||||
amd64,12,1,rajames,1,214,2140000,10000,67,0.007232666015625,256,256,0,0.0,13384,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,12,1,rajames,1,215,2150000,10000,67,0.007293701171875,256,256,0,0.0,13385,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,12,1,rajames,1,216,2160000,10000,67,0.0073394775390625,256,256,0,0.0,13387,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.77642822265625
|
||||
amd64,13,7,05,1,217,2170000,10000,67,0.007293701171875,256,256,0,0.0,13390,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7764434814453125
|
||||
amd64,13,7,05,1,218,2180000,10000,67,0.0073394775390625,256,256,0,0.0,13392,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1776460990.65625
|
||||
amd64,13,7,05,1,219,2190000,10000,67,0.00738525390625,256,256,0,0.0,13394,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7765689601446054e+18
|
||||
amd64,13,7,05,1,220,2200000,10000,67,0.0074310302734375,256,256,0,0.0,13397,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,13,7,05,1,221,2210000,10000,67,0.007476806640625,256,256,0,0.0,13399,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,17765.138061523438
|
||||
amd64,13,7,05,1,222,2220000,10000,67,0.0076141357421875,256,256,0,0.0,13402,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,17.764663696289062
|
||||
amd64,13,7,05,1,223,2230000,10000,67,0.00775146484375,256,256,0,0.0,13403,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,13,7,05,1,224,2240000,10000,67,0.007781982421875,256,256,0,0.0,13406,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,13,7,05,1,225,2250000,10000,66,0.0079345703125,256,256,0,0.0,13408,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,13,7,05,1,226,2260000,10000,66,0.0079803466796875,256,256,0,0.0,13411,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.77642822265625
|
||||
amd64,13,7,05,1,227,2270000,10000,65,0.008544921875,256,256,0,0.0,13414,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,14,7,05,2,228,2280000,10000,65,0.008056640625,256,256,0,0.0,13417,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7764434814453125
|
||||
amd64,14,7,05,2,229,2290000,10000,65,0.0081024169921875,256,256,0,0.0,13420,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1776460990.65625
|
||||
amd64,14,7,05,2,230,2300000,10000,65,0.0081634521484375,256,256,0,0.0,13422,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7764985914004278e+18
|
||||
amd64,14,7,05,2,231,2310000,10000,65,0.008209228515625,256,256,0,0.0,13425,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.77642822265625
|
||||
amd64,14,7,05,2,232,2320000,10000,65,0.0082550048828125,256,256,0,0.0,13427,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,14,7,05,2,233,2330000,10000,65,0.00830078125,256,256,0,0.0,13430,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.776458740234375
|
||||
amd64,14,7,05,2,234,2340000,10000,64,0.0083465576171875,256,256,0,0.0,13433,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,14,7,05,2,235,2350000,10000,64,0.00848388671875,256,256,0,0.0,13442,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7765045166015625
|
||||
amd64,14,7,05,2,236,2360000,10000,64,0.0086517333984375,256,256,0,0.0,13444,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,14,7,05,2,185,1850000,18446744073709041616,44,0.0084228515625,256,256,0,1.8446744073709031e+19,13447,0.6132354736328125,0.63067626953125,0,0.6531524658203125,0.1692047119140625,1.77642822265625
|
||||
amd64,14,7,05,2,237,2370000,520000,64,0.0088043212890625,256,256,0,510000.0,13449,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,15,4,02,0,238,2380000,10000,64,0.00885009765625,256,256,0,0.0,13452,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7764434814453125
|
||||
amd64,15,4,02,0,239,2390000,10000,64,0.0088958740234375,256,256,0,0.0,13455,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1776460990.65625
|
||||
amd64,15,4,02,0,240,2400000,10000,64,0.008941650390625,256,256,0,0.0,13458,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1776460990.65625
|
||||
amd64,15,4,02,0,241,2410000,10000,64,0.0089874267578125,256,256,0,0.0,13461,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,17765.138061523438
|
||||
amd64,15,4,02,0,242,2420000,10000,64,0.009033203125,256,256,0,0.0,13464,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,17.764663696289062
|
||||
amd64,15,4,02,0,243,2430000,10000,64,0.00909423828125,256,256,0,0.0,13467,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,15,4,02,0,244,2440000,10000,64,0.0091400146484375,256,256,0,0.0,13470,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7765045166015625
|
||||
amd64,15,4,02,0,245,2450000,10000,64,0.009185791015625,256,256,0,0.0,13472,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,15,4,02,0,474,4740000,2290000,35,0.02435302734375,256,256,0,2280000.0,13481,0.6132354736328125,0.63067626953125,0,0.6531524658203125,0.1692047119140625,1.77642822265625
|
||||
amd64,15,4,02,0,246,2460000,18446744073707271616,64,0.0092315673828125,256,256,0,1.8446744073707262e+19,13484,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,16,2,00,0,247,2470000,10000,64,0.00927734375,256,256,0,0.0,13488,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,16,2,00,0,248,2480000,10000,64,0.00933837890625,256,256,0,0.0,13490,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7764985914004278e+18
|
||||
amd64,16,2,00,0,249,2490000,10000,64,0.0093841552734375,256,256,0,0.0,13492,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.77642822265625
|
||||
amd64,16,2,00,0,684,6840000,4350000,31,0.0372467041015625,256,256,0,4340000.0,13500,0.6132354736328125,0.63067626953125,0,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,16,2,00,0,250,2500000,18446744073705211616,64,0.009429931640625,256,256,0,1.8446744073705202e+19,13502,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,17764.500198364258
|
||||
amd64,16,2,00,0,251,2510000,10000,64,0.009490966796875,256,256,0,0.0,13505,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,16,2,00,0,252,2520000,10000,64,0.0095367431640625,256,256,0,0.0,13506,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7765045166015625
|
||||
amd64,16,2,00,0,253,2530000,10000,64,0.00958251953125,256,256,0,0.0,13508,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,16,2,00,0,254,2540000,10000,64,0.0096282958984375,256,256,0,0.0,13511,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,17,8,06,0,255,2550000,10000,64,0.0096893310546875,256,256,0,0.0,13515,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,17,8,06,0,256,2560000,10000,64,0.009735107421875,256,256,0,0.0,13519,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1776460990.65625
|
||||
amd64,17,8,06,0,257,2570000,10000,64,0.0097808837890625,256,256,0,0.0,13521,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7764985914004278e+18
|
||||
amd64,17,8,06,0,258,2580000,10000,64,0.00982666015625,256,256,0,0.0,13524,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,17,8,06,0,259,2590000,10000,64,0.0098724365234375,256,256,0,0.0,13533,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,17,8,06,0,106,1060000,18446744073708021616,48,0.0040740966796875,256,256,0,1.8446744073708012e+19,13540,0.6132354736328125,0.63067626953125,0,0.6531524658203125,0.1692047119140625,17764.500198364258
|
||||
amd64,17,8,06,0,260,2600000,1540000,64,0.0099334716796875,256,256,0,1530000.0,13543,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,17.764663696289062
|
||||
amd64,17,8,06,0,261,2610000,10000,64,0.009979248046875,256,256,0,0.0,13546,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,17,8,06,0,262,2620000,10000,64,0.0100250244140625,256,256,0,0.0,13548,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7765045166015625
|
||||
amd64,17,8,06,0,263,2630000,10000,64,0.01007080078125,256,256,0,0.0,13550,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,17,8,06,0,264,2640000,10000,64,0.010528564453125,256,256,0,0.0,13553,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.77642822265625
|
||||
amd64,18,7,05,0,265,2650000,10000,64,0.0105743408203125,256,256,0,0.0,13555,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,18,7,05,0,266,2660000,10000,64,0.010223388671875,256,256,0,0.0,13557,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7764434814453125
|
||||
amd64,18,7,05,0,267,2670000,10000,64,0.0102691650390625,256,256,0,0.0,13561,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1776460990.65625
|
||||
amd64,18,7,05,0,268,2680000,10000,64,0.0103302001953125,256,256,0,0.0,13564,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7764985914004278e+18
|
||||
amd64,18,7,05,0,269,2690000,10000,64,0.0103759765625,256,256,0,0.0,13567,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.77642822265625
|
||||
amd64,18,7,05,0,270,2700000,10000,64,0.0104217529296875,256,256,0,0.0,13569,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,18,7,05,0,271,2710000,10000,64,0.010467529296875,256,256,0,0.0,13572,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.776458740234375
|
||||
amd64,18,7,05,0,272,2720000,10000,64,0.0105133056640625,256,256,0,0.0,13575,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,18,7,05,0,273,2730000,10000,64,0.0105743408203125,256,256,0,0.0,13577,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,18,7,05,0,274,2740000,10000,64,0.0106201171875,256,256,0,0.0,13580,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,18,7,05,0,275,2750000,10000,64,0.01080322265625,256,256,0,0.0,13582,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,19,2,00,1,276,2760000,10000,64,0.0106964111328125,256,256,0,0.0,13586,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,19,2,00,1,277,2770000,10000,64,0.010894775390625,256,256,0,0.0,13588,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7765689601446054e+18
|
||||
amd64,19,2,00,1,278,2780000,10000,64,0.0109405517578125,256,256,0,0.0,13591,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.77642822265625
|
||||
amd64,19,2,00,1,279,2790000,10000,64,0.0111236572265625,256,256,0,0.0,13594,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,19,2,00,1,280,2800000,10000,64,0.0111846923828125,256,256,0,0.0,13598,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.776458740234375
|
||||
amd64,19,2,00,1,281,2810000,10000,64,0.01123046875,256,256,0,0.0,13601,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7765045166015625
|
||||
amd64,19,2,00,1,282,2820000,10000,64,0.0112762451171875,256,256,0,0.0,13602,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,19,2,00,1,283,2830000,10000,64,0.011322021484375,256,256,0,0.0,13605,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,20,8,06,1,284,2840000,10000,64,0.0113677978515625,256,256,0,0.0,13609,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,20,8,06,1,285,2850000,10000,64,0.0114288330078125,256,256,0,0.0,13610,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1776460990.65625
|
||||
amd64,20,8,06,1,286,2860000,10000,64,0.011627197265625,256,256,0,0.0,13612,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7765689601446054e+18
|
||||
amd64,20,8,06,1,287,2870000,10000,64,0.0116729736328125,256,256,0,0.0,13615,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,20,8,06,1,288,2880000,10000,64,0.0118865966796875,256,256,0,0.0,13623,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,17765.138061523438
|
||||
amd64,20,8,06,1,289,2890000,10000,64,0.011932373046875,256,256,0,0.0,13626,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,17.764663696289062
|
||||
amd64,20,8,06,1,290,2900000,10000,64,0.012481689453125,256,256,0,0.0,13629,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.776458740234375
|
||||
amd64,20,8,06,1,291,2910000,10000,64,0.012542724609375,256,256,0,0.0,13631,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,20,8,06,1,292,2920000,10000,64,0.0137481689453125,256,256,0,0.0,13633,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,20,8,06,1,293,2930000,10000,64,0.0138092041015625,256,256,0,0.0,13637,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.77642822265625
|
||||
amd64,21,5,03,2,294,2940000,10000,64,0.01251220703125,256,256,0,0.0,13639,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,21,5,03,2,295,2950000,10000,64,0.0120697021484375,256,256,0,0.0,13642,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,21,5,03,2,296,2960000,10000,64,0.012115478515625,256,256,0,0.0,13645,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7765689601446054e+18
|
||||
amd64,21,5,03,2,297,2970000,10000,64,0.012176513671875,256,256,0,0.0,13654,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,21,5,03,2,298,2980000,10000,64,0.0122222900390625,256,256,0,0.0,13656,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,21,5,03,2,299,2990000,10000,64,0.01226806640625,256,256,0,0.0,13659,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,17.764663696289062
|
||||
amd64,21,5,03,2,300,3000000,10000,62,0.0123138427734375,256,256,0,0.0,13662,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,21,5,03,2,301,3010000,10000,62,0.0125274658203125,256,256,0,0.0,13665,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7765045166015625
|
||||
amd64,21,5,03,2,382,3820000,810000,37,0.01959228515625,256,256,0,800000.0,13673,0.6132354736328125,0.63067626953125,0,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,21,5,03,2,302,3020000,18446744073708751616,62,0.0125885009765625,256,256,0,1.844674407370874e+19,13674,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,21,5,03,2,303,3030000,10000,62,0.0131683349609375,256,256,0,0.0,13678,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,22,1,rajames,2,304,3040000,10000,62,0.01251220703125,256,256,0,0.0,13681,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,22,1,rajames,2,305,3050000,10000,62,0.0125579833984375,256,256,0,0.0,13684,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7765689601446054e+18
|
||||
amd64,22,1,rajames,2,306,3060000,10000,62,0.012603759765625,256,256,0,0.0,13688,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.77642822265625
|
||||
amd64,22,1,rajames,2,307,3070000,10000,62,0.012664794921875,256,256,0,0.0,13690,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,17764.500198364258
|
||||
amd64,22,1,rajames,2,308,3080000,10000,62,0.0127105712890625,256,256,0,0.0,13694,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.776458740234375
|
||||
amd64,22,1,rajames,2,309,3090000,10000,62,0.01275634765625,256,256,0,0.0,13697,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,22,1,rajames,2,310,3100000,10000,62,0.0128173828125,256,256,0,0.0,13700,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,22,1,rajames,2,311,3110000,10000,62,0.0128631591796875,256,256,0,0.0,13703,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,23,3,01,2,312,3120000,10000,62,0.012908935546875,256,256,0,0.0,13705,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,23,3,01,2,313,3130000,10000,62,0.012969970703125,256,256,0,0.0,13708,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1776460990.65625
|
||||
amd64,23,3,01,2,314,3140000,10000,62,0.0130157470703125,256,256,0,0.0,13710,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1776460990.65625
|
||||
amd64,23,3,01,2,315,3150000,10000,62,0.0130615234375,256,256,0,0.0,13712,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,17765.138061523438
|
||||
amd64,23,3,01,2,316,3160000,10000,62,0.0136566162109375,256,256,0,0.0,13716,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,17.764663696289062
|
||||
amd64,23,3,01,2,317,3170000,10000,62,0.0137176513671875,256,256,0,0.0,13719,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,23,3,01,2,318,3180000,10000,60,0.0150146484375,256,256,0,0.0,13721,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7765045166015625
|
||||
amd64,23,3,01,2,319,3190000,10000,60,0.01507568359375,256,256,0,0.0,13723,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.77642822265625
|
||||
amd64,23,3,01,2,566,5660000,2470000,35,0.029510498046875,256,256,0,2460000.0,13730,0.6132354736328125,0.63067626953125,0,0.6531524658203125,0.1692047119140625,1.776519775390625
|
||||
amd64,24,5,03,1,320,3200000,18446744073707091616,60,0.01513671875,256,256,0,1.8446744073707082e+19,13733,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,24,5,03,1,321,3210000,10000,60,0.01336669921875,256,256,0,0.0,13738,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7764434814453125
|
||||
amd64,24,5,03,1,322,3220000,10000,60,0.0134124755859375,256,256,0,0.0,13747,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1776460990.65625
|
||||
amd64,24,5,03,1,323,3230000,10000,60,0.0134735107421875,256,256,0,0.0,13751,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1776460990.65625
|
||||
amd64,24,5,03,1,324,3240000,10000,60,0.013519287109375,256,256,0,0.0,13753,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,17765.138061523438
|
||||
amd64,24,5,03,1,325,3250000,10000,60,0.0135650634765625,256,256,0,0.0,13755,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,17764.500198364258
|
||||
amd64,24,5,03,1,326,3260000,10000,60,0.01361083984375,256,256,0,0.0,13758,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,24,5,03,1,327,3270000,10000,60,0.0138397216796875,256,256,0,0.0,13760,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7765045166015625
|
||||
amd64,24,5,03,1,328,3280000,10000,60,0.0139007568359375,256,256,0,0.0,13763,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,24,5,03,1,329,3290000,10000,60,0.0145416259765625,256,256,0,0.0,13765,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,25,3,01,0,330,3300000,10000,60,0.0138092041015625,256,256,0,0.0,13770,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,25,3,01,0,331,3310000,10000,60,0.01385498046875,256,256,0,0.0,13773,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1776460990.65625
|
||||
amd64,25,3,01,0,332,3320000,10000,60,0.013916015625,256,256,0,0.0,13775,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1776460990.65625
|
||||
amd64,25,3,01,0,333,3330000,10000,60,0.0139617919921875,256,256,0,0.0,13777,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,17765.138061523438
|
||||
amd64,25,3,01,0,334,3340000,10000,60,0.0140228271484375,256,256,0,0.0,13781,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,17.764663696289062
|
||||
amd64,25,3,01,0,335,3350000,10000,60,0.014068603515625,256,256,0,0.0,13782,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,25,3,01,0,336,3360000,10000,60,0.0141143798828125,256,256,0,0.0,13785,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,25,3,01,0,337,3370000,10000,60,0.01416015625,256,256,0,0.0,13787,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.77642822265625
|
||||
amd64,26,4,02,1,338,3380000,10000,60,0.0142059326171875,256,256,0,0.0,13790,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,26,4,02,1,339,3390000,10000,60,0.0142669677734375,256,256,0,0.0,13794,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1776460990.65625
|
||||
amd64,26,4,02,1,340,3400000,10000,60,0.014312744140625,256,256,0,0.0,13796,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.7765689601446054e+18
|
||||
amd64,26,4,02,1,341,3410000,10000,60,0.0143585205078125,256,256,0,0.0,13799,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.77642822265625
|
||||
amd64,26,4,02,1,342,3420000,10000,59,0.0148162841796875,256,256,0,0.0,13801,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,26,4,02,1,343,3430000,10000,59,0.014862060546875,256,256,0,0.0,13803,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.776458740234375
|
||||
amd64,26,4,02,1,344,3440000,10000,59,0.0155487060546875,256,256,0,0.0,13805,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,26,4,02,1,345,3450000,10000,59,0.015594482421875,256,256,0,0.0,13808,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,0.177642822265625
|
||||
amd64,26,4,02,1,346,3460000,10000,59,0.015655517578125,256,256,0,0.0,13811,0.6132354736328125,0.63067626953125,1,0.6531524658203125,0.1692047119140625,1.77642822265625
|
||||
aarch64,0,6,04,2,100,1000000,10000,61,0.0007781982421875,1024,1024,0,0.0,23104,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,0,6,04,2,101,1010000,10000,61,0.00079345703125,1024,1024,0,0.0,23107,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652069091796875
|
||||
aarch64,0,6,04,2,102,1020000,10000,62,0.0008087158203125,512,512,0,0.0,23112,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,0,6,04,2,103,1030000,10000,64,0.000823974609375,512,512,0,0.0,23115,1.0,0.0,1,0.6766815185546875,0.158111572265625,1652101859.796875
|
||||
aarch64,0,6,04,2,104,1040000,10000,67,0.0008392333984375,256,256,0,0.0,23119,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6521394605410527e+18
|
||||
aarch64,0,6,04,2,105,1050000,10000,68,0.0008544921875,256,256,0,0.0,23123,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652069091796875
|
||||
aarch64,0,6,04,2,106,1060000,10000,68,0.000885009765625,256,256,0,0.0,23126,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,0,6,04,2,107,1070000,10000,68,0.0009002685546875,256,256,0,0.0,23130,1.0,0.0,1,0.6766815185546875,0.158111572265625,16.521072387695312
|
||||
aarch64,0,6,04,2,108,1080000,10000,68,0.00091552734375,256,256,0,0.0,23134,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,0,6,04,2,109,1090000,10000,68,0.0009307861328125,256,256,0,0.0,23137,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6521453857421875
|
||||
aarch64,0,6,04,2,110,1100000,10000,68,0.000946044921875,256,256,0,0.0,23140,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,0,6,04,2,111,1110000,10000,68,0.0009613037109375,256,256,0,0.0,23143,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,1,3,01,1,112,1120000,10000,69,0.0009765625,256,256,0,0.0,23148,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,1,3,01,1,113,1130000,10000,69,0.0009918212890625,256,256,0,0.0,23152,1.0,0.0,1,0.6766815185546875,0.158111572265625,1652101859.796875
|
||||
aarch64,1,3,01,1,114,1140000,10000,69,0.0010223388671875,256,256,0,0.0,23156,1.0,0.0,1,0.6766815185546875,0.158111572265625,1652101859.796875
|
||||
aarch64,1,3,01,1,115,1150000,10000,69,0.00103759765625,256,256,0,0.0,23160,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652069091796875
|
||||
aarch64,1,3,01,1,116,1160000,10000,69,0.0010528564453125,256,256,0,0.0,23163,1.0,0.0,1,0.6766815185546875,0.158111572265625,16520.908889770508
|
||||
aarch64,1,3,01,1,117,1170000,10000,69,0.001068115234375,256,256,0,0.0,23167,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652099609375
|
||||
aarch64,1,3,01,1,118,1180000,10000,69,0.0010833740234375,256,256,0,0.0,23170,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,1,3,01,1,119,1190000,10000,69,0.0010986328125,256,256,0,0.0,23173,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,1,3,01,1,120,1200000,10000,69,0.0011138916015625,256,256,0,0.0,23176,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,2,0,zuse,1,121,1210000,10000,69,0.0011444091796875,256,256,0,0.0,23181,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6520843505859375
|
||||
aarch64,2,0,zuse,1,122,1220000,10000,69,0.00115966796875,256,256,0,0.0,23186,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6522098292852303e+18
|
||||
aarch64,2,0,zuse,1,123,1230000,10000,70,0.0011749267578125,256,256,0,0.0,23201,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,2,0,zuse,1,124,1240000,10000,70,0.001190185546875,256,256,0,0.0,23205,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,2,0,zuse,1,125,1250000,10000,70,0.0012054443359375,256,256,0,0.0,23208,1.0,0.0,1,0.6766815185546875,0.158111572265625,16.521072387695312
|
||||
aarch64,2,0,zuse,1,126,1260000,10000,70,0.001312255859375,256,256,0,0.0,23211,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,2,0,zuse,1,127,1270000,10000,70,0.0013427734375,256,256,0,0.0,23215,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6521453857421875
|
||||
aarch64,2,0,zuse,1,128,1280000,10000,72,0.0013885498046875,256,256,0,0.0,23218,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,2,0,zuse,1,129,1290000,10000,72,0.001495361328125,256,256,0,0.0,23222,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,3,1,rajames,0,130,1300000,10000,75,0.0015106201171875,256,256,0,0.0,23228,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,3,1,rajames,0,131,1310000,10000,75,0.00152587890625,256,256,0,0.0,23233,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6522098292852303e+18
|
||||
aarch64,3,1,rajames,0,132,1320000,10000,75,0.001556396484375,256,256,0,0.0,23239,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,3,1,rajames,0,133,1330000,10000,74,0.001617431640625,256,256,0,0.0,23244,1.0,0.0,1,0.6766815185546875,0.158111572265625,16520.908889770508
|
||||
aarch64,3,1,rajames,0,134,1340000,10000,73,0.001800537109375,256,256,0,0.0,23248,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652099609375
|
||||
aarch64,3,1,rajames,0,135,1350000,10000,73,0.0018310546875,256,256,0,0.0,23252,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6521453857421875
|
||||
aarch64,3,1,rajames,0,136,1360000,10000,70,0.0023956298828125,256,256,0,0.0,23256,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,3,1,rajames,0,137,1370000,10000,70,0.002593994140625,256,256,0,0.0,23260,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,4,5,03,0,138,1380000,10000,71,0.0027618408203125,256,256,0,0.0,23265,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6520843505859375
|
||||
aarch64,4,5,03,0,139,1390000,10000,70,0.00286865234375,256,256,0,0.0,23268,1.0,0.0,1,0.6766815185546875,0.158111572265625,1652101859.796875
|
||||
aarch64,4,5,03,0,140,1400000,10000,70,0.002899169921875,256,256,0,0.0,23272,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6521394605410527e+18
|
||||
aarch64,4,5,03,0,141,1410000,10000,70,0.0029296875,256,256,0,0.0,23277,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652069091796875
|
||||
aarch64,4,5,03,0,142,1420000,10000,70,0.0030364990234375,256,256,0,0.0,23280,1.0,0.0,1,0.6766815185546875,0.158111572265625,16520.908889770508
|
||||
aarch64,4,5,03,0,143,1430000,10000,70,0.0030975341796875,256,256,0,0.0,23284,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652099609375
|
||||
aarch64,4,5,03,0,144,1440000,10000,68,0.0032196044921875,256,256,0,0.0,23288,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,4,5,03,0,145,1450000,10000,68,0.003326416015625,256,256,0,0.0,23291,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,4,5,03,0,146,1460000,10000,68,0.00335693359375,256,256,0,0.0,23294,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652069091796875
|
||||
aarch64,5,0,zuse,2,147,1470000,10000,67,0.0035552978515625,256,256,0,0.0,23308,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652099609375
|
||||
aarch64,5,0,zuse,2,148,1480000,10000,68,0.0035247802734375,256,256,0,0.0,23313,1.0,0.0,1,0.6766815185546875,0.158111572265625,1652101859.796875
|
||||
aarch64,5,0,zuse,2,149,1490000,10000,68,0.00341796875,256,256,0,0.0,23318,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652069091796875
|
||||
aarch64,5,0,zuse,2,150,1500000,10000,68,0.00335693359375,256,256,0,0.0,23322,1.0,0.0,1,0.6766815185546875,0.158111572265625,16520.908889770508
|
||||
aarch64,5,0,zuse,2,151,1510000,10000,68,0.0033721923828125,256,256,0,0.0,23325,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,5,0,zuse,2,152,1520000,10000,69,0.0033721923828125,256,256,0,0.0,23329,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,5,0,zuse,2,153,1530000,10000,69,0.0033721923828125,256,256,0,0.0,23332,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652069091796875
|
||||
aarch64,6,2,00,2,154,1540000,10000,69,0.0033416748046875,256,256,0,0.0,23336,1.0,0.0,1,0.6766815185546875,0.158111572265625,16.52069091796875
|
||||
aarch64,6,2,00,2,155,1550000,10000,69,0.0034942626953125,256,256,0,0.0,23340,1.0,0.0,1,0.6766815185546875,0.158111572265625,1652101859.796875
|
||||
aarch64,6,2,00,2,156,1560000,10000,69,0.003570556640625,256,256,0,0.0,23344,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6521394605410527e+18
|
||||
aarch64,6,2,00,2,157,1570000,10000,69,0.003662109375,256,256,0,0.0,23349,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652069091796875
|
||||
aarch64,6,2,00,2,158,1580000,10000,69,0.0037078857421875,256,256,0,0.0,23352,1.0,0.0,1,0.6766815185546875,0.158111572265625,16520.908889770508
|
||||
aarch64,6,2,00,2,159,1590000,10000,69,0.0037384033203125,256,256,0,0.0,23356,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652099609375
|
||||
aarch64,6,2,00,2,160,1600000,10000,69,0.0037841796875,256,256,0,0.0,23360,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6521453857421875
|
||||
aarch64,6,2,00,2,161,1610000,10000,69,0.003814697265625,256,256,0,0.0,23363,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,6,2,00,2,162,1620000,10000,69,0.00384521484375,256,256,0,0.0,23367,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,7,8,06,2,163,1630000,10000,69,0.0038909912109375,256,256,0,0.0,23371,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,7,8,06,2,164,1640000,10000,69,0.0040435791015625,256,256,0,0.0,23374,1.0,0.0,1,0.6766815185546875,0.158111572265625,1652101859.796875
|
||||
aarch64,7,8,06,2,165,1650000,10000,69,0.0040740966796875,256,256,0,0.0,23378,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6522098292852303e+18
|
||||
aarch64,7,8,06,2,166,1660000,10000,69,0.004119873046875,256,256,0,0.0,23382,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,7,8,06,2,167,1670000,10000,69,0.004150390625,256,256,0,0.0,23386,1.0,0.0,1,0.6766815185546875,0.158111572265625,16521.546752929688
|
||||
aarch64,7,8,06,2,168,1680000,10000,69,0.0041961669921875,256,256,0,0.0,23390,1.0,0.0,1,0.6766815185546875,0.158111572265625,16520.908889770508
|
||||
aarch64,7,8,06,2,169,1690000,10000,69,0.0042266845703125,256,256,0,0.0,23393,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,7,8,06,2,170,1700000,10000,69,0.0042724609375,256,256,0,0.0,23396,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,7,8,06,2,171,1710000,10000,69,0.004302978515625,256,256,0,0.0,23400,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,7,8,06,2,172,1720000,10000,69,0.0043487548828125,256,256,0,0.0,23403,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652069091796875
|
||||
aarch64,8,0,zuse,0,173,1730000,10000,69,0.0043792724609375,256,256,0,0.0,23416,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,8,0,zuse,0,174,1740000,10000,69,0.004425048828125,256,256,0,0.0,23420,1.0,0.0,1,0.6766815185546875,0.158111572265625,1652101859.796875
|
||||
aarch64,8,0,zuse,0,175,1750000,10000,69,0.00445556640625,256,256,0,0.0,23425,1.0,0.0,1,0.6766815185546875,0.158111572265625,1652101859.796875
|
||||
aarch64,8,0,zuse,0,176,1760000,10000,69,0.0045013427734375,256,256,0,0.0,23429,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,8,0,zuse,0,177,1770000,10000,70,0.0045318603515625,256,256,0,0.0,23432,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652099609375
|
||||
aarch64,8,0,zuse,0,178,1780000,10000,70,0.0046234130859375,256,256,0,0.0,23436,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6521453857421875
|
||||
aarch64,8,0,zuse,0,179,1790000,10000,70,0.0046539306640625,256,256,0,0.0,23440,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,9,6,04,1,180,1800000,10000,70,0.0046844482421875,256,256,0,0.0,23443,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,9,6,04,1,181,1810000,10000,70,0.0047149658203125,256,256,0,0.0,23448,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,9,6,04,1,182,1820000,10000,70,0.0047607421875,256,256,0,0.0,23452,1.0,0.0,1,0.6766815185546875,0.158111572265625,1652101859.796875
|
||||
aarch64,9,6,04,1,183,1830000,10000,70,0.0048828125,256,256,0,0.0,23458,1.0,0.0,1,0.6766815185546875,0.158111572265625,1652101859.796875
|
||||
aarch64,9,6,04,1,184,1840000,10000,70,0.0049285888671875,256,256,0,0.0,23462,1.0,0.0,1,0.6766815185546875,0.158111572265625,16521.546752929688
|
||||
aarch64,9,6,04,1,185,1850000,10000,70,0.0050201416015625,256,256,0,0.0,23465,1.0,0.0,1,0.6766815185546875,0.158111572265625,16520.908889770508
|
||||
aarch64,9,6,04,1,186,1860000,10000,70,0.005889892578125,256,256,0,0.0,23469,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652099609375
|
||||
aarch64,9,6,04,1,187,1870000,10000,70,0.0059356689453125,256,256,0,0.0,23472,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,9,6,04,1,188,1880000,10000,70,0.0062713623046875,256,256,0,0.0,23475,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,9,6,04,1,189,1890000,10000,70,0.006317138671875,256,256,0,0.0,23479,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652069091796875
|
||||
aarch64,9,6,04,1,277,2770000,880000,39,0.0136260986328125,256,256,0,870000.0,23491,1.0,0.0,0,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,10,6,04,0,190,1900000,18446744073708681616,70,0.006134033203125,256,256,0,1.844674407370867e+19,23495,1.0,0.0,1,0.6766815185546875,0.158111572265625,16.520751953125
|
||||
aarch64,10,6,04,0,191,1910000,10000,70,0.006103515625,256,256,0,0.0,23501,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,10,6,04,0,192,1920000,10000,70,0.0061492919921875,256,256,0,0.0,23504,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6522098292852303e+18
|
||||
aarch64,10,6,04,0,193,1930000,10000,70,0.006195068359375,256,256,0,0.0,23509,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,10,6,04,0,194,1940000,10000,70,0.0062408447265625,256,256,0,0.0,23522,1.0,0.0,1,0.6766815185546875,0.158111572265625,16521.546752929688
|
||||
aarch64,10,6,04,0,195,1950000,10000,70,0.00628662109375,256,256,0,0.0,23525,1.0,0.0,1,0.6766815185546875,0.158111572265625,16.521072387695312
|
||||
aarch64,10,6,04,0,196,1960000,10000,70,0.0063323974609375,256,256,0,0.0,23528,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,10,6,04,0,197,1970000,10000,70,0.0064544677734375,256,256,0,0.0,23531,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,10,6,04,0,198,1980000,10000,69,0.006500244140625,256,256,0,0.0,23534,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,10,6,04,0,199,1990000,10000,68,0.00677490234375,256,256,0,0.0,23537,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652069091796875
|
||||
aarch64,11,4,02,2,200,2000000,10000,68,0.0068206787109375,256,256,0,0.0,23541,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,11,4,02,2,201,2010000,10000,68,0.0067901611328125,256,256,0,0.0,23545,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,11,4,02,2,202,2020000,10000,68,0.0068359375,256,256,0,0.0,23549,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6522098292852303e+18
|
||||
aarch64,11,4,02,2,203,2030000,10000,68,0.0068817138671875,256,256,0,0.0,23553,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,11,4,02,2,204,2040000,10000,68,0.006927490234375,256,256,0,0.0,23557,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,11,4,02,2,205,2050000,10000,68,0.0069732666015625,256,256,0,0.0,23560,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652099609375
|
||||
aarch64,11,4,02,2,206,2060000,10000,68,0.00701904296875,256,256,0,0.0,23564,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,11,4,02,2,207,2070000,10000,68,0.0070648193359375,256,256,0,0.0,23567,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,11,4,02,2,208,2080000,10000,67,0.007110595703125,256,256,0,0.0,23570,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652069091796875
|
||||
aarch64,11,4,02,2,209,2090000,10000,67,0.00714111328125,256,256,0,0.0,23574,1.0,0.0,1,0.6766815185546875,0.158111572265625,16.5208740234375
|
||||
aarch64,11,4,02,2,802,8020000,5930000,31,0.045013427734375,256,256,0,5920000.0,23586,1.0,0.0,0,0.6766815185546875,0.158111572265625,1.652099609375
|
||||
aarch64,11,4,02,2,210,2100000,18446744073703631616,67,0.0071868896484375,256,256,0,1.844674407370362e+19,23591,1.0,0.0,1,0.6766815185546875,0.158111572265625,1652101859.796875
|
||||
aarch64,11,4,02,2,211,2110000,10000,67,0.007232666015625,256,256,0,0.0,23597,1.0,0.0,1,0.6766815185546875,0.158111572265625,1652101859.796875
|
||||
aarch64,11,4,02,2,212,2120000,10000,66,0.0072784423828125,256,256,0,0.0,23600,1.0,0.0,1,0.6766815185546875,0.158111572265625,16521.546752929688
|
||||
aarch64,11,4,02,2,213,2130000,10000,66,0.0073394775390625,256,256,0,0.0,23604,1.0,0.0,1,0.6766815185546875,0.158111572265625,16.521072387695312
|
||||
aarch64,11,4,02,2,214,2140000,10000,65,0.007965087890625,256,256,0,0.0,23607,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,11,4,02,2,215,2150000,10000,65,0.0080108642578125,256,256,0,0.0,23611,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,11,4,02,2,216,2160000,10000,65,0.008056640625,256,256,0,0.0,23614,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652069091796875
|
||||
aarch64,13,7,05,1,217,2170000,10000,65,0.00750732421875,256,256,0,0.0,23627,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6520843505859375
|
||||
aarch64,13,7,05,1,171,1710000,18446744073709091616,43,0.01080322265625,256,256,0,1.8446744073709083e+19,23639,1.0,0.0,0,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,13,7,05,1,218,2180000,470000,65,0.0075531005859375,256,256,0,460000.0,23643,1.0,0.0,1,0.6766815185546875,0.158111572265625,1652101859.796875
|
||||
aarch64,13,7,05,1,219,2190000,10000,65,0.007598876953125,256,256,0,0.0,23648,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6522098292852303e+18
|
||||
aarch64,13,7,05,1,220,2200000,10000,65,0.0076446533203125,256,256,0,0.0,23652,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,13,7,05,1,221,2210000,10000,65,0.0076904296875,256,256,0,0.0,23655,1.0,0.0,1,0.6766815185546875,0.158111572265625,16521.546752929688
|
||||
aarch64,13,7,05,1,222,2220000,10000,65,0.0077362060546875,256,256,0,0.0,23659,1.0,0.0,1,0.6766815185546875,0.158111572265625,16.521072387695312
|
||||
aarch64,13,7,05,1,223,2230000,10000,65,0.0078887939453125,256,256,0,0.0,23662,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,13,7,05,1,224,2240000,10000,65,0.0079345703125,256,256,0,0.0,23666,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,13,7,05,1,225,2250000,10000,65,0.008392333984375,256,256,0,0.0,23669,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,13,7,05,1,226,2260000,10000,65,0.0084381103515625,256,256,0,0.0,23673,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652069091796875
|
||||
aarch64,13,7,05,1,227,2270000,10000,65,0.00921630859375,256,256,0,0.0,23676,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,14,7,05,2,228,2280000,10000,65,0.0081024169921875,256,256,0,0.0,23681,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6520843505859375
|
||||
aarch64,14,7,05,2,229,2290000,10000,65,0.0081634521484375,256,256,0,0.0,23685,1.0,0.0,1,0.6766815185546875,0.158111572265625,1652101859.796875
|
||||
aarch64,14,7,05,2,230,2300000,10000,65,0.008209228515625,256,256,0,0.0,23689,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6521394605410527e+18
|
||||
aarch64,14,7,05,2,231,2310000,10000,65,0.0082550048828125,256,256,0,0.0,23693,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652069091796875
|
||||
aarch64,14,7,05,2,232,2320000,10000,65,0.00830078125,256,256,0,0.0,23697,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,14,7,05,2,233,2330000,10000,65,0.0083465576171875,256,256,0,0.0,23700,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652099609375
|
||||
aarch64,14,7,05,2,234,2340000,10000,65,0.0084991455078125,256,256,0,0.0,23703,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,14,7,05,2,235,2350000,10000,63,0.0086517333984375,256,256,0,0.0,23706,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6521453857421875
|
||||
aarch64,14,7,05,2,236,2360000,10000,63,0.008819580078125,256,256,0,0.0,23710,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,14,7,05,2,237,2370000,10000,63,0.0089874267578125,256,256,0,0.0,23713,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,15,4,02,0,238,2380000,10000,63,0.0087890625,256,256,0,0.0,23718,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6520843505859375
|
||||
aarch64,15,4,02,0,239,2390000,10000,63,0.00885009765625,256,256,0,0.0,23721,1.0,0.0,1,0.6766815185546875,0.158111572265625,1652101859.796875
|
||||
aarch64,15,4,02,0,500,5000000,2610000,33,0.0264129638671875,256,256,0,2600000.0,23733,1.0,0.0,0,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,15,4,02,0,240,2400000,18446744073706951616,62,0.009002685546875,256,256,0,1.8446744073706942e+19,23746,1.0,0.0,1,0.6766815185546875,0.158111572265625,1652101859.796875
|
||||
aarch64,15,4,02,0,241,2410000,10000,62,0.0090484619140625,256,256,0,0.0,23752,1.0,0.0,1,0.6766815185546875,0.158111572265625,16521.546752929688
|
||||
aarch64,15,4,02,0,242,2420000,10000,62,0.0091094970703125,256,256,0,0.0,23755,1.0,0.0,1,0.6766815185546875,0.158111572265625,16.521072387695312
|
||||
aarch64,15,4,02,0,243,2430000,10000,62,0.0091552734375,256,256,0,0.0,23758,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,15,4,02,0,244,2440000,10000,62,0.0092010498046875,256,256,0,0.0,23761,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6521453857421875
|
||||
aarch64,15,4,02,0,245,2450000,10000,62,0.009246826171875,256,256,0,0.0,23765,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,15,4,02,0,246,2460000,10000,62,0.0092926025390625,256,256,0,0.0,23768,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,16,2,00,0,247,2470000,10000,62,0.00933837890625,256,256,0,0.0,23773,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,16,2,00,0,697,6970000,4500000,31,0.03851318359375,256,256,0,4490000.0,23784,1.0,0.0,0,0.6766815185546875,0.158111572265625,1652101859.796875
|
||||
aarch64,16,2,00,0,248,2480000,18446744073705061616,62,0.0093841552734375,256,256,0,1.8446744073705052e+19,23789,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6522098292852303e+18
|
||||
aarch64,16,2,00,0,249,2490000,10000,62,0.009429931640625,256,256,0,0.0,23794,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652069091796875
|
||||
aarch64,16,2,00,0,250,2500000,10000,62,0.0094757080078125,256,256,0,0.0,23798,1.0,0.0,1,0.6766815185546875,0.158111572265625,16520.908889770508
|
||||
aarch64,16,2,00,0,251,2510000,10000,62,0.0100555419921875,256,256,0,0.0,23801,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652099609375
|
||||
aarch64,16,2,00,0,252,2520000,10000,62,0.010101318359375,256,256,0,0.0,23804,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6521453857421875
|
||||
aarch64,16,2,00,0,253,2530000,10000,62,0.0110626220703125,256,256,0,0.0,23807,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,16,2,00,0,254,2540000,10000,62,0.0111236572265625,256,256,0,0.0,23810,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,17,8,06,0,255,2550000,10000,62,0.009857177734375,256,256,0,0.0,23814,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,17,8,06,0,256,2560000,10000,62,0.0099029541015625,256,256,0,0.0,23818,1.0,0.0,1,0.6766815185546875,0.158111572265625,1652101859.796875
|
||||
aarch64,17,8,06,0,257,2570000,10000,62,0.00994873046875,256,256,0,0.0,23822,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6521394605410527e+18
|
||||
aarch64,17,8,06,0,258,2580000,10000,62,0.0099945068359375,256,256,0,0.0,23827,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,17,8,06,0,259,2590000,10000,62,0.0100555419921875,256,256,0,0.0,23830,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,17,8,06,0,260,2600000,10000,62,0.010101318359375,256,256,0,0.0,23833,1.0,0.0,1,0.6766815185546875,0.158111572265625,16.521072387695312
|
||||
aarch64,17,8,06,0,261,2610000,10000,62,0.01055908203125,256,256,0,0.0,23837,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,17,8,06,0,262,2620000,10000,62,0.0107574462890625,256,256,0,0.0,23840,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,17,8,06,0,263,2630000,10000,62,0.01080322265625,256,256,0,0.0,23852,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,17,8,06,0,93,930000,18446744073707851616,53,0.0032501220703125,256,256,0,1.8446744073707842e+19,23863,1.0,0.0,0,0.6766815185546875,0.158111572265625,1.6521148681640625
|
||||
aarch64,17,8,06,0,264,2640000,1710000,62,0.0113372802734375,256,256,0,1700000.0,23867,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652069091796875
|
||||
aarch64,17,8,06,0,265,2650000,10000,62,0.0113983154296875,256,256,0,0.0,23871,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,18,7,05,0,266,2660000,10000,62,0.01080322265625,256,256,0,0.0,23876,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6520843505859375
|
||||
aarch64,18,7,05,0,172,1720000,18446744073708611616,48,0.0079193115234375,256,256,0,1.8446744073708601e+19,23887,1.0,0.0,0,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,18,7,05,0,267,2670000,950000,62,0.0108642578125,256,256,0,940000.0,23891,1.0,0.0,1,0.6766815185546875,0.158111572265625,1652101859.796875
|
||||
aarch64,18,7,05,0,268,2680000,10000,62,0.0109100341796875,256,256,0,0.0,23896,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6521394605410527e+18
|
||||
aarch64,18,7,05,0,269,2690000,10000,62,0.0109710693359375,256,256,0,0.0,23900,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652069091796875
|
||||
aarch64,18,7,05,0,270,2700000,10000,62,0.011016845703125,256,256,0,0.0,23903,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,18,7,05,0,271,2710000,10000,62,0.011077880859375,256,256,0,0.0,23907,1.0,0.0,1,0.6766815185546875,0.158111572265625,16.521072387695312
|
||||
aarch64,18,7,05,0,272,2720000,10000,62,0.0111236572265625,256,256,0,0.0,23910,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,18,7,05,0,273,2730000,10000,62,0.01116943359375,256,256,0,0.0,23913,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,18,7,05,0,274,2740000,10000,62,0.011383056640625,256,256,0,0.0,23916,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,18,7,05,0,275,2750000,10000,62,0.0115966796875,256,256,0,0.0,23920,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,19,2,00,1,276,2760000,10000,61,0.011322021484375,256,256,0,0.0,23924,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6520843505859375
|
||||
aarch64,19,2,00,1,277,2770000,10000,61,0.0113677978515625,256,256,0,0.0,23928,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6522098292852303e+18
|
||||
aarch64,19,2,00,1,278,2780000,10000,61,0.0114288330078125,256,256,0,0.0,23933,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652069091796875
|
||||
aarch64,19,2,00,1,279,2790000,10000,61,0.0124969482421875,256,256,0,0.0,23937,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,19,2,00,1,280,2800000,10000,61,0.0125579833984375,256,256,0,0.0,23940,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652099609375
|
||||
aarch64,19,2,00,1,281,2810000,10000,61,0.0126190185546875,256,256,0,0.0,23943,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,19,2,00,1,282,2820000,10000,61,0.0126800537109375,256,256,0,0.0,23946,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,19,2,00,1,283,2830000,10000,61,0.012725830078125,256,256,0,0.0,23959,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,20,8,06,1,284,2840000,10000,61,0.0117340087890625,256,256,0,0.0,23963,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6520843505859375
|
||||
aarch64,20,8,06,1,285,2850000,10000,60,0.01177978515625,256,256,0,0.0,23966,1.0,0.0,1,0.6766815185546875,0.158111572265625,1652101859.796875
|
||||
aarch64,20,8,06,1,286,2860000,10000,60,0.0118255615234375,256,256,0,0.0,23970,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6522098292852303e+18
|
||||
aarch64,20,8,06,1,287,2870000,10000,60,0.0120391845703125,256,256,0,0.0,23974,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,20,8,06,1,288,2880000,10000,60,0.01226806640625,256,256,0,0.0,23977,1.0,0.0,1,0.6766815185546875,0.158111572265625,16521.546752929688
|
||||
aarch64,20,8,06,1,289,2890000,10000,60,0.0123291015625,256,256,0,0.0,23981,1.0,0.0,1,0.6766815185546875,0.158111572265625,16.521072387695312
|
||||
aarch64,20,8,06,1,290,2900000,10000,60,0.0129241943359375,256,256,0,0.0,23983,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652099609375
|
||||
aarch64,20,8,06,1,291,2910000,10000,60,0.0129852294921875,256,256,0,0.0,23987,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,20,8,06,1,292,2920000,10000,58,0.0142822265625,256,256,0,0.0,23990,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,20,8,06,1,293,2930000,10000,58,0.01434326171875,256,256,0,0.0,23993,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652069091796875
|
||||
aarch64,21,5,03,2,294,2940000,10000,58,0.0135345458984375,256,256,0,0.0,23996,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,21,5,03,2,295,2950000,10000,60,0.0122833251953125,256,256,0,0.0,24000,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,21,5,03,2,296,2960000,10000,60,0.0123443603515625,256,256,0,0.0,24004,1.0,0.0,1,0.6766815185546875,0.158111572265625,1652101859.796875
|
||||
aarch64,21,5,03,2,297,2970000,10000,60,0.01239013671875,256,256,0,0.0,24008,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,21,5,03,2,298,2980000,10000,60,0.012451171875,256,256,0,0.0,24011,1.0,0.0,1,0.6766815185546875,0.158111572265625,16521.546752929688
|
||||
aarch64,21,5,03,2,299,2990000,10000,60,0.0124969482421875,256,256,0,0.0,24015,1.0,0.0,1,0.6766815185546875,0.158111572265625,16.521072387695312
|
||||
aarch64,21,5,03,2,300,3000000,10000,59,0.012725830078125,256,256,0,0.0,24018,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,21,5,03,2,301,3010000,10000,59,0.0129547119140625,256,256,0,0.0,24021,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6521453857421875
|
||||
aarch64,21,5,03,2,382,3820000,810000,37,0.01959228515625,256,256,0,800000.0,24032,1.0,0.0,0,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,21,5,03,2,302,3020000,18446744073708751616,59,0.01300048828125,256,256,0,1.844674407370874e+19,24036,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,21,5,03,2,303,3030000,10000,59,0.013641357421875,256,256,0,0.0,24040,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,22,1,rajames,2,304,3040000,10000,59,0.0127410888671875,256,256,0,0.0,24045,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6520843505859375
|
||||
aarch64,22,1,rajames,2,305,3050000,10000,57,0.0128021240234375,256,256,0,0.0,24049,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6522098292852303e+18
|
||||
aarch64,22,1,rajames,2,306,3060000,10000,57,0.012847900390625,256,256,0,0.0,24054,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652069091796875
|
||||
aarch64,22,1,rajames,2,307,3070000,10000,57,0.012908935546875,256,256,0,0.0,24067,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,22,1,rajames,2,308,3080000,10000,57,0.0129547119140625,256,256,0,0.0,24070,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652099609375
|
||||
aarch64,22,1,rajames,2,309,3090000,10000,57,0.01300048828125,256,256,0,0.0,24073,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,22,1,rajames,2,310,3100000,10000,57,0.0130615234375,256,256,0,0.0,24076,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,22,1,rajames,2,311,3110000,10000,57,0.0131072998046875,256,256,0,0.0,24080,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,23,3,01,2,312,3120000,10000,57,0.013153076171875,256,256,0,0.0,24085,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,23,3,01,2,605,6050000,2930000,33,0.0324554443359375,256,256,0,2920000.0,24096,1.0,0.0,0,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,23,3,01,2,313,3130000,18446744073706631616,57,0.013214111328125,256,256,0,1.844674407370662e+19,24101,1.0,0.0,1,0.6766815185546875,0.158111572265625,1652101859.796875
|
||||
aarch64,23,3,01,2,314,3140000,10000,57,0.0132598876953125,256,256,0,0.0,24107,1.0,0.0,1,0.6766815185546875,0.158111572265625,1652101859.796875
|
||||
aarch64,23,3,01,2,315,3150000,10000,57,0.0133056640625,256,256,0,0.0,24111,1.0,0.0,1,0.6766815185546875,0.158111572265625,16521.546752929688
|
||||
aarch64,23,3,01,2,316,3160000,10000,57,0.0139312744140625,256,256,0,0.0,24114,1.0,0.0,1,0.6766815185546875,0.158111572265625,16.521072387695312
|
||||
aarch64,23,3,01,2,317,3170000,10000,57,0.0139923095703125,256,256,0,0.0,24117,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,23,3,01,2,318,3180000,10000,57,0.015350341796875,256,256,0,0.0,24120,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6521453857421875
|
||||
aarch64,23,3,01,2,319,3190000,10000,57,0.015411376953125,256,256,0,0.0,24124,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,23,3,01,2,320,3200000,10000,57,0.015472412109375,256,256,0,0.0,24127,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,24,5,03,1,321,3210000,10000,57,0.01361083984375,256,256,0,0.0,24132,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6520843505859375
|
||||
aarch64,24,5,03,1,322,3220000,10000,57,0.013671875,256,256,0,0.0,24135,1.0,0.0,1,0.6766815185546875,0.158111572265625,1652101859.796875
|
||||
aarch64,24,5,03,1,323,3230000,10000,57,0.0137176513671875,256,256,0,0.0,24139,1.0,0.0,1,0.6766815185546875,0.158111572265625,1652101859.796875
|
||||
aarch64,24,5,03,1,324,3240000,10000,56,0.0139617919921875,256,256,0,0.0,24143,1.0,0.0,1,0.6766815185546875,0.158111572265625,16521.546752929688
|
||||
aarch64,24,5,03,1,325,3250000,10000,56,0.0140228271484375,256,256,0,0.0,24146,1.0,0.0,1,0.6766815185546875,0.158111572265625,16520.908889770508
|
||||
aarch64,24,5,03,1,326,3260000,10000,56,0.01446533203125,256,256,0,0.0,24149,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,24,5,03,1,327,3270000,10000,56,0.014739990234375,256,256,0,0.0,24152,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6521453857421875
|
||||
aarch64,24,5,03,1,328,3280000,10000,56,0.0147857666015625,256,256,0,0.0,24156,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,24,5,03,1,329,3290000,10000,56,0.0155181884765625,256,256,0,0.0,24159,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,25,3,01,0,330,3300000,10000,56,0.0144805908203125,256,256,0,0.0,24173,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,25,3,01,0,331,3310000,10000,56,0.01495361328125,256,256,0,0.0,24177,1.0,0.0,1,0.6766815185546875,0.158111572265625,1652101859.796875
|
||||
aarch64,25,3,01,0,332,3320000,10000,56,0.0149993896484375,256,256,0,0.0,24182,1.0,0.0,1,0.6766815185546875,0.158111572265625,1652101859.796875
|
||||
aarch64,25,3,01,0,333,3330000,10000,56,0.0150604248046875,256,256,0,0.0,24186,1.0,0.0,1,0.6766815185546875,0.158111572265625,16521.546752929688
|
||||
aarch64,25,3,01,0,334,3340000,10000,56,0.0151214599609375,256,256,0,0.0,24189,1.0,0.0,1,0.6766815185546875,0.158111572265625,16.521072387695312
|
||||
aarch64,25,3,01,0,335,3350000,10000,56,0.015167236328125,256,256,0,0.0,24193,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,25,3,01,0,336,3360000,10000,56,0.015228271484375,256,256,0,0.0,24197,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,25,3,01,0,337,3370000,10000,56,0.0152740478515625,256,256,0,0.0,24200,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652069091796875
|
||||
aarch64,26,4,02,1,338,3380000,10000,56,0.0153350830078125,256,256,0,0.0,24204,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,26,4,02,1,339,3390000,10000,56,0.015380859375,256,256,0,0.0,24208,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,26,4,02,1,340,3400000,10000,56,0.0154266357421875,256,256,0,0.0,24212,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.6522098292852303e+18
|
||||
aarch64,26,4,02,1,341,3410000,10000,56,0.0154876708984375,256,256,0,0.0,24216,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,26,4,02,1,342,3420000,10000,56,0.0162506103515625,256,256,0,0.0,24220,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,26,4,02,1,343,3430000,10000,56,0.01629638671875,256,256,0,0.0,24223,1.0,0.0,1,0.6766815185546875,0.158111572265625,16.521072387695312
|
||||
aarch64,26,4,02,1,344,3440000,10000,56,0.0179901123046875,256,256,0,0.0,24226,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,26,4,02,1,345,3450000,10000,56,0.0180511474609375,256,256,0,0.0,24230,1.0,0.0,1,0.6766815185546875,0.158111572265625,0.1652069091796875
|
||||
aarch64,26,4,02,1,346,3460000,10000,56,0.01812744140625,256,256,0,0.0,24233,1.0,0.0,1,0.6766815185546875,0.158111572265625,1.652069091796875
|
||||
riscv64,0,6,04,2,101,1010000,10000,61,0.00079345703125,1024,1024,0,0.0,13101,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,0,6,04,2,102,1020000,10000,62,0.0008087158203125,512,512,0,0.0,13103,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541107177734375
|
||||
riscv64,0,6,04,2,103,1030000,10000,64,0.000823974609375,512,512,0,0.0,13105,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,0,6,04,2,104,1040000,10000,64,0.0008392333984375,256,256,0,0.0,13106,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8542361964727304e+18
|
||||
riscv64,0,6,04,2,105,1050000,10000,68,0.0008544921875,256,256,0,0.0,13108,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,0,6,04,2,106,1060000,10000,68,0.000885009765625,256,256,0,0.0,13109,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,0,6,04,2,107,1070000,10000,68,0.0009002685546875,256,256,0,0.0,13110,1.0,0.0,1,0.638427734375,0.1761627197265625,18.541336059570312
|
||||
riscv64,0,6,04,2,108,1080000,10000,68,0.00091552734375,256,256,0,0.0,13111,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,0,6,04,2,109,1090000,10000,68,0.0009307861328125,256,256,0,0.0,13112,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541717529296875
|
||||
riscv64,0,6,04,2,110,1100000,10000,68,0.000946044921875,256,256,0,0.0,13113,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,0,6,04,2,111,1110000,10000,68,0.0009613037109375,256,256,0,0.0,13114,1.0,0.0,1,0.638427734375,0.1761627197265625,1.854095458984375
|
||||
riscv64,1,3,01,1,112,1120000,10000,69,0.0009765625,256,256,0,0.0,13116,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541107177734375
|
||||
riscv64,1,3,01,1,113,1130000,10000,69,0.0009918212890625,256,256,0,0.0,13118,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,1,3,01,1,114,1140000,10000,69,0.0010223388671875,256,256,0,0.0,13119,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,1,3,01,1,115,1150000,10000,69,0.00103759765625,256,256,0,0.0,13120,1.0,0.0,1,0.638427734375,0.1761627197265625,1.854095458984375
|
||||
riscv64,1,3,01,1,116,1160000,10000,69,0.0010528564453125,256,256,0,0.0,13121,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,1,3,01,1,117,1170000,10000,69,0.001068115234375,256,256,0,0.0,13122,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541259765625
|
||||
riscv64,1,3,01,1,118,1180000,10000,69,0.0010833740234375,256,256,0,0.0,13123,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,1,3,01,1,119,1190000,10000,69,0.0010986328125,256,256,0,0.0,13124,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,1,3,01,1,120,1200000,10000,69,0.0011138916015625,256,256,0,0.0,13125,1.0,0.0,1,0.638427734375,0.1761627197265625,1.854095458984375
|
||||
riscv64,2,0,zuse,1,121,1210000,10000,69,0.0011444091796875,256,256,0,0.0,13127,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541107177734375
|
||||
riscv64,2,0,zuse,1,122,1220000,10000,69,0.00115966796875,256,256,0,0.0,13128,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,2,0,zuse,1,123,1230000,10000,70,0.0011749267578125,256,256,0,0.0,13130,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,2,0,zuse,1,124,1240000,10000,70,0.001190185546875,256,256,0,0.0,13131,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,2,0,zuse,1,125,1250000,10000,70,0.0012054443359375,256,256,0,0.0,13132,1.0,0.0,1,0.638427734375,0.1761627197265625,18.541336059570312
|
||||
riscv64,2,0,zuse,1,126,1260000,10000,70,0.001220703125,256,256,0,0.0,13133,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,2,0,zuse,1,127,1270000,10000,70,0.0012359619140625,256,256,0,0.0,13134,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541717529296875
|
||||
riscv64,2,0,zuse,1,128,1280000,10000,72,0.0012664794921875,256,256,0,0.0,13136,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,2,0,zuse,1,129,1290000,10000,72,0.00128173828125,256,256,0,0.0,13136,1.0,0.0,1,0.638427734375,0.1761627197265625,1.85418701171875
|
||||
riscv64,3,1,rajames,0,130,1300000,10000,75,0.0012969970703125,256,256,0,0.0,13138,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541107177734375
|
||||
riscv64,3,1,rajames,0,131,1310000,10000,75,0.001312255859375,256,256,0,0.0,13139,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,3,1,rajames,0,132,1320000,10000,75,0.0013275146484375,256,256,0,0.0,13141,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,3,1,rajames,0,133,1330000,10000,74,0.001373291015625,256,256,0,0.0,13142,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,3,1,rajames,0,828,8280000,6950000,29,0.05853271484375,256,256,0,6940000.0,13147,1.0,0.0,0,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,3,1,rajames,0,134,1340000,18446744073702611616,73,0.001495361328125,256,256,0,1.84467440737026e+19,13149,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541259765625
|
||||
riscv64,3,1,rajames,0,135,1350000,10000,73,0.0015106201171875,256,256,0,0.0,13150,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541717529296875
|
||||
riscv64,3,1,rajames,0,136,1360000,10000,73,0.00152587890625,256,256,0,0.0,13151,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,3,1,rajames,0,137,1370000,10000,73,0.001617431640625,256,256,0,0.0,13152,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,4,5,03,0,138,1380000,10000,71,0.001678466796875,256,256,0,0.0,13154,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,4,5,03,0,139,1390000,10000,71,0.0018463134765625,256,256,0,0.0,13155,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,4,5,03,0,140,1400000,10000,71,0.001861572265625,256,256,0,0.0,13157,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541658277285527e+18
|
||||
riscv64,4,5,03,0,141,1410000,10000,71,0.001922607421875,256,256,0,0.0,13158,1.0,0.0,1,0.638427734375,0.1761627197265625,1.854095458984375
|
||||
riscv64,4,5,03,0,142,1420000,10000,71,0.0020904541015625,256,256,0,0.0,13159,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,4,5,03,0,143,1430000,10000,71,0.0021209716796875,256,256,0,0.0,13160,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541259765625
|
||||
riscv64,4,5,03,0,144,1440000,10000,69,0.0021820068359375,256,256,0,0.0,13161,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,4,5,03,0,145,1450000,10000,69,0.0022125244140625,256,256,0,0.0,13163,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,4,5,03,0,146,1460000,10000,69,0.0022430419921875,256,256,0,0.0,13164,1.0,0.0,1,0.638427734375,0.1761627197265625,1.854095458984375
|
||||
riscv64,5,0,zuse,2,147,1470000,10000,69,0.00238037109375,256,256,0,0.0,13165,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,5,0,zuse,2,148,1480000,10000,69,0.0023651123046875,256,256,0,0.0,13168,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,5,0,zuse,2,149,1490000,10000,69,0.003143310546875,256,256,0,0.0,13170,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,5,0,zuse,2,150,1500000,10000,69,0.0030975341796875,256,256,0,0.0,13171,1.0,0.0,1,0.638427734375,0.1761627197265625,18541.172561645508
|
||||
riscv64,5,0,zuse,2,151,1510000,10000,69,0.0030670166015625,256,256,0,0.0,13172,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,5,0,zuse,2,152,1520000,10000,69,0.0031280517578125,256,256,0,0.0,13174,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,5,0,zuse,2,153,1530000,10000,69,0.0032196044921875,256,256,0,0.0,13175,1.0,0.0,1,0.638427734375,0.1761627197265625,1.854095458984375
|
||||
riscv64,6,2,00,2,154,1540000,10000,69,0.0031585693359375,256,256,0,0.0,13176,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,6,2,00,2,155,1550000,10000,69,0.003265380859375,256,256,0,0.0,13177,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,6,2,00,2,156,1560000,10000,69,0.003326416015625,256,256,0,0.0,13179,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8542361964727304e+18
|
||||
riscv64,6,2,00,2,157,1570000,10000,69,0.00341796875,256,256,0,0.0,13180,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,6,2,00,2,158,1580000,10000,69,0.003509521484375,256,256,0,0.0,13181,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,6,2,00,2,159,1590000,10000,68,0.0035858154296875,256,256,0,0.0,13182,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541259765625
|
||||
riscv64,6,2,00,2,160,1600000,10000,68,0.0042266845703125,256,256,0,0.0,13184,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,6,2,00,2,161,1610000,10000,68,0.0042724609375,256,256,0,0.0,13185,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,6,2,00,2,710,7100000,5490000,31,0.0392303466796875,256,256,0,5480000.0,13191,1.0,0.0,0,0.638427734375,0.1761627197265625,1.85418701171875
|
||||
riscv64,6,2,00,2,162,1620000,18446744073704071616,68,0.004302978515625,256,256,0,1.844674407370406e+19,13192,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,7,8,06,2,163,1630000,10000,68,0.0043487548828125,256,256,0,0.0,13194,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541107177734375
|
||||
riscv64,7,8,06,2,164,1640000,10000,68,0.0045318603515625,256,256,0,0.0,13195,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,7,8,06,2,165,1650000,10000,68,0.0046234130859375,256,256,0,0.0,13196,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8542361964727304e+18
|
||||
riscv64,7,8,06,2,166,1660000,10000,68,0.0046539306640625,256,256,0,0.0,13204,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,7,8,06,2,167,1670000,10000,68,0.0047607421875,256,256,0,0.0,13205,1.0,0.0,1,0.638427734375,0.1761627197265625,18541.810424804688
|
||||
riscv64,7,8,06,2,168,1680000,10000,68,0.0050201416015625,256,256,0,0.0,13207,1.0,0.0,1,0.638427734375,0.1761627197265625,18541.172561645508
|
||||
riscv64,7,8,06,2,169,1690000,10000,68,0.00506591796875,256,256,0,0.0,13207,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541259765625
|
||||
riscv64,7,8,06,2,170,1700000,10000,68,0.0052337646484375,256,256,0,0.0,13209,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,7,8,06,2,171,1710000,10000,68,0.005340576171875,256,256,0,0.0,13210,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,7,8,06,2,172,1720000,10000,68,0.0053863525390625,256,256,0,0.0,13211,1.0,0.0,1,0.638427734375,0.1761627197265625,1.854095458984375
|
||||
riscv64,7,8,06,2,173,1730000,10000,68,0.00543212890625,256,256,0,0.0,13212,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,8,0,zuse,0,174,1740000,10000,68,0.0053558349609375,256,256,0,0.0,13214,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,8,0,zuse,0,175,1750000,10000,68,0.0052032470703125,256,256,0,0.0,13216,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541658277285527e+18
|
||||
riscv64,8,0,zuse,0,176,1760000,10000,68,0.0050201416015625,256,256,0,0.0,13218,1.0,0.0,1,0.638427734375,0.1761627197265625,18541.810424804688
|
||||
riscv64,8,0,zuse,0,177,1770000,10000,69,0.0049591064453125,256,256,0,0.0,13219,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541259765625
|
||||
riscv64,8,0,zuse,0,178,1780000,10000,70,0.00494384765625,256,256,0,0.0,13220,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541717529296875
|
||||
riscv64,8,0,zuse,0,179,1790000,10000,70,0.0048828125,256,256,0,0.0,13221,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,8,0,zuse,0,180,1800000,10000,70,0.00482177734375,256,256,0,0.0,13222,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,9,6,04,1,181,1810000,10000,70,0.0048065185546875,256,256,0,0.0,13223,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541107177734375
|
||||
riscv64,9,6,04,1,182,1820000,10000,70,0.004852294921875,256,256,0,0.0,13224,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,9,6,04,1,183,1830000,10000,70,0.0048828125,256,256,0,0.0,13225,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,9,6,04,1,184,1840000,10000,70,0.0049285888671875,256,256,0,0.0,13227,1.0,0.0,1,0.638427734375,0.1761627197265625,1.854095458984375
|
||||
riscv64,9,6,04,1,185,1850000,10000,70,0.0049591064453125,256,256,0,0.0,13228,1.0,0.0,1,0.638427734375,0.1761627197265625,18541.172561645508
|
||||
riscv64,9,6,04,1,186,1860000,10000,70,0.0050048828125,256,256,0,0.0,13229,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541259765625
|
||||
riscv64,9,6,04,1,187,1870000,10000,70,0.005035400390625,256,256,0,0.0,13230,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,9,6,04,1,290,2900000,1030000,37,0.0148468017578125,256,256,0,1020000.0,13236,1.0,0.0,0,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,9,6,04,1,188,1880000,18446744073708531616,70,0.0050811767578125,256,256,0,1.8446744073708521e+19,13238,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,9,6,04,1,189,1890000,10000,70,0.005126953125,256,256,0,0.0,13239,1.0,0.0,1,0.638427734375,0.1761627197265625,1.854095458984375
|
||||
riscv64,10,6,04,0,190,1900000,10000,70,0.005157470703125,256,256,0,0.0,13240,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,10,6,04,0,191,1910000,10000,70,0.0052032470703125,256,256,0,0.0,13242,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,10,6,04,0,192,1920000,10000,70,0.0052337646484375,256,256,0,0.0,13244,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,10,6,04,0,193,1930000,10000,70,0.005279541015625,256,256,0,0.0,13246,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,10,6,04,0,194,1940000,10000,70,0.00531005859375,256,256,0,0.0,13247,1.0,0.0,1,0.638427734375,0.1761627197265625,18541.810424804688
|
||||
riscv64,10,6,04,0,195,1950000,10000,70,0.0053558349609375,256,256,0,0.0,13248,1.0,0.0,1,0.638427734375,0.1761627197265625,18541.172561645508
|
||||
riscv64,10,6,04,0,196,1960000,10000,70,0.0053863525390625,256,256,0,0.0,13250,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541259765625
|
||||
riscv64,10,6,04,0,197,1970000,10000,70,0.00543212890625,256,256,0,0.0,13251,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,10,6,04,0,198,1980000,10000,69,0.005523681640625,256,256,0,0.0,13253,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,10,6,04,0,199,1990000,10000,69,0.0055694580078125,256,256,0,0.0,13255,1.0,0.0,1,0.638427734375,0.1761627197265625,1.854095458984375
|
||||
riscv64,10,6,04,0,200,2000000,10000,69,0.0055999755859375,256,256,0,0.0,13256,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,11,4,02,2,201,2010000,10000,71,0.005645751953125,256,256,0,0.0,13258,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,11,4,02,2,202,2020000,10000,71,0.0056915283203125,256,256,0,0.0,13259,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8542361964727304e+18
|
||||
riscv64,11,4,02,2,203,2030000,10000,71,0.0057220458984375,256,256,0,0.0,13260,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,11,4,02,2,204,2040000,10000,71,0.005767822265625,256,256,0,0.0,13261,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,11,4,02,2,205,2050000,10000,71,0.00579833984375,256,256,0,0.0,13262,1.0,0.0,1,0.638427734375,0.1761627197265625,18.541336059570312
|
||||
riscv64,11,4,02,2,206,2060000,10000,71,0.0058441162109375,256,256,0,0.0,13264,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,11,4,02,2,207,2070000,10000,71,0.005889892578125,256,256,0,0.0,13265,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,11,4,02,2,208,2080000,10000,70,0.00592041015625,256,256,0,0.0,13266,1.0,0.0,1,0.638427734375,0.1761627197265625,1.854095458984375
|
||||
riscv64,12,1,rajames,1,209,2090000,10000,70,0.005950927734375,256,256,0,0.0,13267,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,12,1,rajames,1,210,2100000,10000,70,0.0059967041015625,256,256,0,0.0,13269,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,12,1,rajames,1,211,2110000,10000,70,0.00604248046875,256,256,0,0.0,13271,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,12,1,rajames,1,212,2120000,10000,69,0.007354736328125,256,256,0,0.0,13273,1.0,0.0,1,0.638427734375,0.1761627197265625,18541.810424804688
|
||||
riscv64,12,1,rajames,1,213,2130000,10000,69,0.0074005126953125,256,256,0,0.0,13274,1.0,0.0,1,0.638427734375,0.1761627197265625,18.541336059570312
|
||||
riscv64,12,1,rajames,1,214,2140000,10000,69,0.0074462890625,256,256,0,0.0,13276,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,12,1,rajames,1,215,2150000,10000,69,0.0074920654296875,256,256,0,0.0,13277,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,12,1,rajames,1,216,2160000,10000,69,0.007537841796875,256,256,0,0.0,13278,1.0,0.0,1,0.638427734375,0.1761627197265625,1.854095458984375
|
||||
riscv64,13,7,05,1,217,2170000,10000,70,0.0075836181640625,256,256,0,0.0,13280,1.0,0.0,1,0.638427734375,0.1761627197265625,18.541030883789062
|
||||
riscv64,13,7,05,1,218,2180000,10000,70,0.00762939453125,256,256,0,0.0,13281,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,13,7,05,1,219,2190000,10000,70,0.0076751708984375,256,256,0,0.0,13283,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,13,7,05,1,220,2200000,10000,70,0.007720947265625,256,256,0,0.0,13285,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,13,7,05,1,221,2210000,10000,70,0.0077667236328125,256,256,0,0.0,13286,1.0,0.0,1,0.638427734375,0.1761627197265625,18541.810424804688
|
||||
riscv64,13,7,05,1,222,2220000,10000,70,0.0078125,256,256,0,0.0,13287,1.0,0.0,1,0.638427734375,0.1761627197265625,18541.172561645508
|
||||
riscv64,13,7,05,1,223,2230000,10000,70,0.0078582763671875,256,256,0,0.0,13288,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541259765625
|
||||
riscv64,13,7,05,1,224,2240000,10000,70,0.007904052734375,256,256,0,0.0,13289,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,13,7,05,1,225,2250000,10000,69,0.0079498291015625,256,256,0,0.0,13290,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,13,7,05,1,226,2260000,10000,69,0.00799560546875,256,256,0,0.0,13291,1.0,0.0,1,0.638427734375,0.1761627197265625,1.854095458984375
|
||||
riscv64,13,7,05,1,227,2270000,10000,66,0.008026123046875,256,256,0,0.0,13292,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,14,7,05,2,228,2280000,10000,68,0.008087158203125,256,256,0,0.0,13293,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,14,7,05,2,229,2290000,10000,68,0.0081329345703125,256,256,0,0.0,13295,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,14,7,05,2,230,2300000,10000,68,0.0081787109375,256,256,0,0.0,13296,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541658277285527e+18
|
||||
riscv64,14,7,05,2,231,2310000,10000,68,0.0082244873046875,256,256,0,0.0,13297,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,14,7,05,2,232,2320000,10000,68,0.008270263671875,256,256,0,0.0,13299,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,14,7,05,2,233,2330000,10000,68,0.0083160400390625,256,256,0,0.0,13301,1.0,0.0,1,0.638427734375,0.1761627197265625,18.541336059570312
|
||||
riscv64,14,7,05,2,198,1980000,18446744073709201616,40,0.0093536376953125,256,256,0,1.8446744073709191e+19,13307,1.0,0.0,0,0.638427734375,0.1761627197265625,1.8541259765625
|
||||
riscv64,14,7,05,2,234,2340000,360000,68,0.0084686279296875,256,256,0,350000.0,13315,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,14,7,05,2,235,2350000,10000,66,0.0086212158203125,256,256,0,0.0,13317,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541717529296875
|
||||
riscv64,14,7,05,2,236,2360000,10000,66,0.0087738037109375,256,256,0,0.0,13318,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,14,7,05,2,237,2370000,10000,66,0.008819580078125,256,256,0,0.0,13319,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,15,4,02,0,238,2380000,10000,64,0.0087432861328125,256,256,0,0.0,13321,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,15,4,02,0,239,2390000,10000,64,0.0088043212890625,256,256,0,0.0,13322,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,15,4,02,0,500,5000000,2610000,33,0.0264129638671875,256,256,0,2600000.0,13329,1.0,0.0,0,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,15,4,02,0,240,2400000,18446744073706951616,63,0.00885009765625,256,256,0,1.8446744073706942e+19,13330,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,15,4,02,0,241,2410000,10000,63,0.0088958740234375,256,256,0,0.0,13332,1.0,0.0,1,0.638427734375,0.1761627197265625,18541.810424804688
|
||||
riscv64,15,4,02,0,242,2420000,10000,63,0.008941650390625,256,256,0,0.0,13333,1.0,0.0,1,0.638427734375,0.1761627197265625,18541.172561645508
|
||||
riscv64,15,4,02,0,243,2430000,10000,63,0.0089874267578125,256,256,0,0.0,13334,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,15,4,02,0,244,2440000,10000,63,0.009033203125,256,256,0,0.0,13335,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541717529296875
|
||||
riscv64,15,4,02,0,245,2450000,10000,63,0.0090789794921875,256,256,0,0.0,13336,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,15,4,02,0,246,2460000,10000,63,0.009124755859375,256,256,0,0.0,13338,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,16,2,00,0,247,2470000,10000,63,0.0091705322265625,256,256,0,0.0,13339,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541107177734375
|
||||
riscv64,16,2,00,0,248,2480000,10000,63,0.00921630859375,256,256,0,0.0,13341,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8542361964727304e+18
|
||||
riscv64,16,2,00,0,249,2490000,10000,63,0.0092620849609375,256,256,0,0.0,13343,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,16,2,00,0,250,2500000,10000,63,0.009429931640625,256,256,0,0.0,13344,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,16,2,00,0,251,2510000,10000,63,0.0094757080078125,256,256,0,0.0,13345,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541259765625
|
||||
riscv64,16,2,00,0,252,2520000,10000,63,0.009521484375,256,256,0,0.0,13347,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,16,2,00,0,253,2530000,10000,63,0.0095672607421875,256,256,0,0.0,13348,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,16,2,00,0,254,2540000,10000,63,0.009613037109375,256,256,0,0.0,13349,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,17,8,06,0,255,2550000,10000,63,0.0096588134765625,256,256,0,0.0,13351,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,17,8,06,0,256,2560000,10000,63,0.0097198486328125,256,256,0,0.0,13352,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,17,8,06,0,257,2570000,10000,63,0.009765625,256,256,0,0.0,13354,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8542361964727304e+18
|
||||
riscv64,17,8,06,0,258,2580000,10000,63,0.0098114013671875,256,256,0,0.0,13356,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,17,8,06,0,259,2590000,10000,63,0.009857177734375,256,256,0,0.0,13357,1.0,0.0,1,0.638427734375,0.1761627197265625,18541.810424804688
|
||||
riscv64,17,8,06,0,106,1060000,18446744073708021616,48,0.0040740966796875,256,256,0,1.8446744073708012e+19,13364,1.0,0.0,0,0.638427734375,0.1761627197265625,18541.172561645508
|
||||
riscv64,17,8,06,0,260,2600000,1540000,63,0.0099029541015625,256,256,0,1530000.0,13366,1.0,0.0,1,0.638427734375,0.1761627197265625,18.541336059570312
|
||||
riscv64,17,8,06,0,261,2610000,10000,63,0.010345458984375,256,256,0,0.0,13368,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,17,8,06,0,262,2620000,10000,63,0.010528564453125,256,256,0,0.0,13368,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,17,8,06,0,263,2630000,10000,63,0.010589599609375,256,256,0,0.0,13370,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,17,8,06,0,264,2640000,10000,63,0.01092529296875,256,256,0,0.0,13371,1.0,0.0,1,0.638427734375,0.1761627197265625,1.854095458984375
|
||||
riscv64,17,8,06,0,265,2650000,10000,63,0.010986328125,256,256,0,0.0,13372,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,18,7,05,0,266,2660000,10000,62,0.0107269287109375,256,256,0,0.0,13374,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541107177734375
|
||||
riscv64,18,7,05,0,267,2670000,10000,62,0.010772705078125,256,256,0,0.0,13375,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,18,7,05,0,268,2680000,10000,62,0.010833740234375,256,256,0,0.0,13376,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541658277285527e+18
|
||||
riscv64,18,7,05,0,269,2690000,10000,62,0.0108795166015625,256,256,0,0.0,13378,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,18,7,05,0,270,2700000,10000,62,0.0109405517578125,256,256,0,0.0,13379,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,18,7,05,0,271,2710000,10000,62,0.010986328125,256,256,0,0.0,13380,1.0,0.0,1,0.638427734375,0.1761627197265625,18.541336059570312
|
||||
riscv64,18,7,05,0,272,2720000,10000,62,0.0110321044921875,256,256,0,0.0,13382,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,18,7,05,0,273,2730000,10000,62,0.0110931396484375,256,256,0,0.0,13383,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541717529296875
|
||||
riscv64,18,7,05,0,274,2740000,10000,62,0.01129150390625,256,256,0,0.0,13384,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,18,7,05,0,275,2750000,10000,62,0.011505126953125,256,256,0,0.0,13385,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,19,2,00,1,276,2760000,10000,62,0.01123046875,256,256,0,0.0,13387,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541107177734375
|
||||
riscv64,19,2,00,1,277,2770000,10000,62,0.0112762451171875,256,256,0,0.0,13388,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,19,2,00,1,278,2780000,10000,62,0.0113372802734375,256,256,0,0.0,13390,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,19,2,00,1,279,2790000,10000,62,0.0118560791015625,256,256,0,0.0,13391,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,19,2,00,1,280,2800000,10000,62,0.0119171142578125,256,256,0,0.0,13392,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541259765625
|
||||
riscv64,19,2,00,1,281,2810000,10000,62,0.011962890625,256,256,0,0.0,13393,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,19,2,00,1,282,2820000,10000,62,0.01202392578125,256,256,0,0.0,13394,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,19,2,00,1,283,2830000,10000,62,0.0120697021484375,256,256,0,0.0,13395,1.0,0.0,1,0.638427734375,0.1761627197265625,1.854095458984375
|
||||
riscv64,19,2,00,1,711,7110000,4280000,35,0.03985595703125,256,256,0,4270000.0,13402,1.0,0.0,0,0.638427734375,0.1761627197265625,1.85418701171875
|
||||
riscv64,20,8,06,1,284,2840000,18446744073705281616,62,0.011627197265625,256,256,0,1.8446744073705271e+19,13403,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541107177734375
|
||||
riscv64,20,8,06,1,285,2850000,10000,62,0.011688232421875,256,256,0,0.0,13404,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,20,8,06,1,286,2860000,10000,62,0.0117340087890625,256,256,0,0.0,13406,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8542361964727304e+18
|
||||
riscv64,20,8,06,1,287,2870000,10000,62,0.0119476318359375,256,256,0,0.0,13407,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,20,8,06,1,288,2880000,10000,62,0.0121612548828125,256,256,0,0.0,13408,1.0,0.0,1,0.638427734375,0.1761627197265625,18541.810424804688
|
||||
riscv64,20,8,06,1,289,2890000,10000,62,0.0122222900390625,256,256,0,0.0,13410,1.0,0.0,1,0.638427734375,0.1761627197265625,18541.172561645508
|
||||
riscv64,20,8,06,1,290,2900000,10000,62,0.0128021240234375,256,256,0,0.0,13411,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541259765625
|
||||
riscv64,20,8,06,1,291,2910000,10000,62,0.012847900390625,256,256,0,0.0,13413,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,20,8,06,1,292,2920000,10000,62,0.013916015625,256,256,0,0.0,13414,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,20,8,06,1,293,2930000,10000,62,0.01397705078125,256,256,0,0.0,13415,1.0,0.0,1,0.638427734375,0.1761627197265625,1.854095458984375
|
||||
riscv64,20,8,06,1,294,2940000,10000,62,0.0140380859375,256,256,0,0.0,13422,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,21,5,03,2,295,2950000,10000,62,0.0123443603515625,256,256,0,0.0,13424,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541107177734375
|
||||
riscv64,21,5,03,2,408,4080000,1130000,35,0.0212249755859375,256,256,0,1120000.0,13433,1.0,0.0,0,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,21,5,03,2,296,2960000,18446744073708431616,62,0.0124053955078125,256,256,0,1.8446744073708421e+19,13434,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,21,5,03,2,297,2970000,10000,62,0.012451171875,256,256,0,0.0,13436,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,21,5,03,2,298,2980000,10000,62,0.01251220703125,256,256,0,0.0,13437,1.0,0.0,1,0.638427734375,0.1761627197265625,18541.810424804688
|
||||
riscv64,21,5,03,2,299,2990000,10000,62,0.0125579833984375,256,256,0,0.0,13438,1.0,0.0,1,0.638427734375,0.1761627197265625,18.541336059570312
|
||||
riscv64,21,5,03,2,300,3000000,10000,61,0.012786865234375,256,256,0,0.0,13440,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,21,5,03,2,301,3010000,10000,61,0.0130157470703125,256,256,0,0.0,13441,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541717529296875
|
||||
riscv64,21,5,03,2,302,3020000,10000,61,0.0130615234375,256,256,0,0.0,13442,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,21,5,03,2,303,3030000,10000,61,0.013702392578125,256,256,0,0.0,13443,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,22,1,rajames,2,304,3040000,10000,61,0.0128021240234375,256,256,0,0.0,13445,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,22,1,rajames,2,305,3050000,10000,61,0.0128631591796875,256,256,0,0.0,13446,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,22,1,rajames,2,306,3060000,10000,61,0.012908935546875,256,256,0,0.0,13449,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,22,1,rajames,2,307,3070000,10000,61,0.0129547119140625,256,256,0,0.0,13450,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,22,1,rajames,2,829,8290000,5220000,34,0.0465240478515625,256,256,0,5210000.0,13458,1.0,0.0,0,0.638427734375,0.1761627197265625,18541.172561645508
|
||||
riscv64,22,1,rajames,2,308,3080000,18446744073704341616,61,0.0130157470703125,256,256,0,1.8446744073704331e+19,13459,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541259765625
|
||||
riscv64,22,1,rajames,2,309,3090000,10000,61,0.0130615234375,256,256,0,0.0,13461,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,22,1,rajames,2,310,3100000,10000,61,0.01312255859375,256,256,0,0.0,13462,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,22,1,rajames,2,311,3110000,10000,61,0.0131683349609375,256,256,0,0.0,13464,1.0,0.0,1,0.638427734375,0.1761627197265625,1.854095458984375
|
||||
riscv64,23,3,01,2,312,3120000,10000,61,0.013214111328125,256,256,0,0.0,13465,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541107177734375
|
||||
riscv64,23,3,01,2,313,3130000,10000,61,0.013275146484375,256,256,0,0.0,13467,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,23,3,01,2,314,3140000,10000,61,0.0133209228515625,256,256,0,0.0,13468,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,23,3,01,2,592,5920000,2780000,33,0.0308837890625,256,256,0,2770000.0,13475,1.0,0.0,0,0.638427734375,0.1761627197265625,1.854095458984375
|
||||
riscv64,23,3,01,2,315,3150000,18446744073706781616,61,0.01336669921875,256,256,0,1.8446744073706772e+19,13476,1.0,0.0,1,0.638427734375,0.1761627197265625,18541.810424804688
|
||||
riscv64,23,3,01,2,316,3160000,10000,61,0.0139923095703125,256,256,0,0.0,13478,1.0,0.0,1,0.638427734375,0.1761627197265625,18541.172561645508
|
||||
riscv64,23,3,01,2,317,3170000,10000,61,0.0140533447265625,256,256,0,0.0,13479,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,23,3,01,2,318,3180000,10000,61,0.0154266357421875,256,256,0,0.0,13480,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541717529296875
|
||||
riscv64,23,3,01,2,319,3190000,10000,61,0.0154876708984375,256,256,0,0.0,13481,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,23,3,01,2,320,3200000,10000,61,0.0155487060546875,256,256,0,0.0,13482,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,24,5,03,1,321,3210000,10000,61,0.013671875,256,256,0,0.0,13484,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,24,5,03,1,322,3220000,10000,61,0.01373291015625,256,256,0,0.0,13485,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,24,5,03,1,323,3230000,10000,61,0.0137786865234375,256,256,0,0.0,13487,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,24,5,03,1,324,3240000,10000,60,0.0138397216796875,256,256,0,0.0,13488,1.0,0.0,1,0.638427734375,0.1761627197265625,1.854095458984375
|
||||
riscv64,24,5,03,1,325,3250000,10000,60,0.013885498046875,256,256,0,0.0,13489,1.0,0.0,1,0.638427734375,0.1761627197265625,18541.172561645508
|
||||
riscv64,24,5,03,1,326,3260000,10000,60,0.0143280029296875,256,256,0,0.0,13491,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541259765625
|
||||
riscv64,24,5,03,1,327,3270000,10000,60,0.01458740234375,256,256,0,0.0,13492,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,24,5,03,1,328,3280000,10000,60,0.0146331787109375,256,256,0,0.0,13493,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,24,5,03,1,329,3290000,10000,59,0.015350341796875,256,256,0,0.0,13494,1.0,0.0,1,0.638427734375,0.1761627197265625,1.854095458984375
|
||||
riscv64,25,3,01,0,330,3300000,10000,60,0.0143280029296875,256,256,0,0.0,13496,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541107177734375
|
||||
riscv64,25,3,01,0,331,3310000,10000,58,0.0143890380859375,256,256,0,0.0,13498,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,25,3,01,0,332,3320000,10000,58,0.014434814453125,256,256,0,0.0,13499,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,25,3,01,0,333,3330000,10000,58,0.014495849609375,256,256,0,0.0,13501,1.0,0.0,1,0.638427734375,0.1761627197265625,18541.810424804688
|
||||
riscv64,25,3,01,0,334,3340000,10000,58,0.0145416259765625,256,256,0,0.0,13502,1.0,0.0,1,0.638427734375,0.1761627197265625,18.541336059570312
|
||||
riscv64,25,3,01,0,335,3350000,10000,58,0.0146026611328125,256,256,0,0.0,13503,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,25,3,01,0,336,3360000,10000,58,0.0146484375,256,256,0,0.0,13505,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541717529296875
|
||||
riscv64,25,3,01,0,337,3370000,10000,58,0.0146942138671875,256,256,0,0.0,13506,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,25,3,01,0,338,3380000,10000,58,0.0147552490234375,256,256,0,0.0,13507,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,26,4,02,1,339,3390000,10000,57,0.0147857666015625,256,256,0,0.0,13509,1.0,0.0,1,0.638427734375,0.1761627197265625,1.8541107177734375
|
||||
riscv64,26,4,02,1,340,3400000,10000,57,0.0148468017578125,256,256,0,0.0,13511,1.0,0.0,1,0.638427734375,0.1761627197265625,1854128226.984375
|
||||
riscv64,26,4,02,1,341,3410000,10000,57,0.014892578125,256,256,0,0.0,13513,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,26,4,02,1,342,3420000,10000,57,0.015594482421875,256,256,0,0.0,13514,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,26,4,02,1,343,3430000,10000,57,0.015655517578125,256,256,0,0.0,13516,1.0,0.0,1,0.638427734375,0.1761627197265625,18.541336059570312
|
||||
riscv64,26,4,02,1,344,3440000,10000,57,0.0171966552734375,256,256,0,0.0,13517,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,26,4,02,1,345,3450000,10000,57,0.0172576904296875,256,256,0,0.0,13518,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
riscv64,26,4,02,1,346,3460000,10000,57,0.0173187255859375,256,256,0,0.0,13520,1.0,0.0,1,0.638427734375,0.1761627197265625,1.854095458984375
|
||||
riscv64,26,4,02,1,347,3470000,10000,57,0.01739501953125,256,256,0,0.0,13521,1.0,0.0,1,0.638427734375,0.1761627197265625,0.1854095458984375
|
||||
|
@@ -0,0 +1,137 @@
|
||||
#!/usr/bin/env python3
|
||||
"""
|
||||
correlate_doe.py <raw_log> <out_csv>
|
||||
|
||||
Reconstructs which DoE trial (run_id, id_idx, id_label, rep) was active
|
||||
for every heartbeat-tick CSV row in a std79-doe raw log, despite the
|
||||
async HB-ON tick printer splicing CSV rows mid-token into the trial
|
||||
loop's own console output on the shared serial line -- including mid a
|
||||
DOE-RUN,... marker itself.
|
||||
|
||||
Method:
|
||||
1. Strip ANSI codes and the per-line "[VM-TAG] " console prefix (an
|
||||
artifact of the log capture layer), concatenate every stripped
|
||||
line with no separator. Find every [HADES][DOE ] header/row
|
||||
occurrence and physically remove exactly those spans, recording
|
||||
each removed data row's insertion offset in the CLEANED stream's
|
||||
own coordinates.
|
||||
2. Parse only "DOE-RUN,<run_id> ," (the run_id digits) from the clean
|
||||
stream -- reliable even when a CSV row spliced into the id_idx/
|
||||
id_label/rep text right after it (observed live: a row's last
|
||||
digit field can land with zero separator against the immediately
|
||||
following trial digit, e.g. "...11642" + "6" -> "116426", making
|
||||
id_idx unrecoverable from THIS log alone for the affected trial).
|
||||
id_idx/id_label/rep are looked up from RUN_ID_MAP below instead of
|
||||
re-parsed -- deterministic given the campaign's fixed seed (12345),
|
||||
independently verified identical across 5+ prior clean runs
|
||||
(results-20260911-donor-floor-fix/amd64-doe-raw.log and others).
|
||||
3. Assign each CSV row to whichever run_id marker's start offset is
|
||||
the largest one at or before that row's insertion offset.
|
||||
"""
|
||||
import re
|
||||
import sys
|
||||
import csv
|
||||
import bisect
|
||||
|
||||
# From results-20260911-donor-floor-fix/amd64-doe-raw.log (seed 12345),
|
||||
# independently re-verified identical (md5) across every std79-doe run
|
||||
# since e2abc56. run_id -> (id_idx, id_label, rep).
|
||||
RUN_ID_MAP = {
|
||||
0: (6, "04", 2), 1: (3, "01", 1), 2: (0, "zuse", 1), 3: (1, "rajames", 0),
|
||||
4: (5, "03", 0), 5: (0, "zuse", 2), 6: (2, "00", 2), 7: (8, "06", 2),
|
||||
8: (0, "zuse", 0), 9: (6, "04", 1), 10: (6, "04", 0), 11: (4, "02", 2),
|
||||
12: (1, "rajames", 1), 13: (7, "05", 1), 14: (7, "05", 2), 15: (4, "02", 0),
|
||||
16: (2, "00", 0), 17: (8, "06", 0), 18: (7, "05", 0), 19: (2, "00", 1),
|
||||
20: (8, "06", 1), 21: (5, "03", 2), 22: (1, "rajames", 2), 23: (3, "01", 2),
|
||||
24: (5, "03", 1), 25: (3, "01", 0), 26: (4, "02", 1),
|
||||
}
|
||||
|
||||
def build_stream(raw_text):
|
||||
parts = []
|
||||
for line in raw_text.split('\n'):
|
||||
m = re.match(r'^\[[^\]]+\]\s?(.*)$', line)
|
||||
parts.append(m.group(1) if m else line)
|
||||
return ''.join(parts)
|
||||
|
||||
ROW_RE = re.compile(
|
||||
r'\[HADES\]\[DOE \] '
|
||||
r'(?:(?P<header>tick_number,elapsed_ns,[^\[]*?)(?=\[HADES\]\[DOE \]|DOE-RUN|$)'
|
||||
r'|(?P<row>[0-9]+(?:,[0-9]+)+))'
|
||||
)
|
||||
RUN_ID_RE = re.compile(r'DOE-RUN,\s*([0-9]+)\s*,')
|
||||
|
||||
def main():
|
||||
if len(sys.argv) != 3:
|
||||
print("usage: correlate_doe.py <raw_log> <out_csv>", file=sys.stderr)
|
||||
sys.exit(1)
|
||||
log_path, out_path = sys.argv[1], sys.argv[2]
|
||||
|
||||
with open(log_path, "r", errors="replace") as f:
|
||||
raw = f.read()
|
||||
raw = re.sub(r'\x1b\[[0-9;]*[a-zA-Z]', '', raw)
|
||||
stream = build_stream(raw)
|
||||
|
||||
cleaned_parts = []
|
||||
cleaned_offset = 0
|
||||
last_end = 0
|
||||
csv_rows = [] # (cleaned_insertion_offset, fields)
|
||||
header_fields = None
|
||||
for m in ROW_RE.finditer(stream):
|
||||
before = stream[last_end:m.start()]
|
||||
cleaned_parts.append(before)
|
||||
cleaned_offset += len(before)
|
||||
if m.group('header') is not None:
|
||||
header_fields = [x.strip() for x in m.group('header').split(',')]
|
||||
else:
|
||||
csv_rows.append((cleaned_offset, m.group('row').split(',')))
|
||||
last_end = m.end()
|
||||
cleaned_parts.append(stream[last_end:])
|
||||
cleaned_stream = ''.join(cleaned_parts)
|
||||
|
||||
if header_fields is None:
|
||||
print("FATAL: never found the DOE CSV header row", file=sys.stderr)
|
||||
sys.exit(1)
|
||||
|
||||
markers = [(m.start(), int(m.group(1))) for m in RUN_ID_RE.finditer(cleaned_stream)]
|
||||
# Sanity: run_ids should appear in increasing offset order with values
|
||||
# 0..26 each exactly once. Warn, don't crash, on anything unexpected --
|
||||
# a genuinely dropped/garbled run_id digit is possible in principle.
|
||||
seen = [rid for _, rid in markers]
|
||||
if sorted(set(seen)) != list(range(27)) or len(seen) != 27:
|
||||
print(f"WARNING: expected exactly run_ids 0..26 once each, got {sorted(seen)}", file=sys.stderr)
|
||||
|
||||
marker_offsets = [off for off, _ in markers]
|
||||
|
||||
out_rows = []
|
||||
unlabeled = 0
|
||||
for offset, fields in csv_rows:
|
||||
i = bisect.bisect_right(marker_offsets, offset) - 1
|
||||
if i >= 0:
|
||||
run_id = markers[i][1]
|
||||
id_idx, id_label, rep = RUN_ID_MAP.get(run_id, (None, None, None))
|
||||
elif 0 not in seen:
|
||||
# No marker precedes this row because run_id 0's own marker
|
||||
# (always the very first trial, loop index 0) got garbled
|
||||
# beyond recovery in this particular log -- safe to assume
|
||||
# every row before the first RECOVERED marker still belongs
|
||||
# to trial 0, not truly unlabeled.
|
||||
run_id = 0
|
||||
id_idx, id_label, rep = RUN_ID_MAP[0]
|
||||
else:
|
||||
run_id, id_idx, id_label, rep = None, None, None, None
|
||||
unlabeled += 1
|
||||
out_rows.append(((run_id, id_idx, id_label, rep), fields))
|
||||
|
||||
with open(out_path, "w", newline="") as f:
|
||||
w = csv.writer(f)
|
||||
w.writerow(["run_id", "id_idx", "id_label", "rep"] + header_fields)
|
||||
for (run_id, id_idx, id_label, rep), fields in out_rows:
|
||||
w.writerow([run_id, id_idx, id_label, rep] + fields)
|
||||
|
||||
print(f"trial markers found: {len(markers)}")
|
||||
print(f"data rows: {len(out_rows)}, unlabeled (before first marker): {unlabeled}")
|
||||
labeled_run_ids = sorted(set(t[0] for (t, _) in out_rows if t[0] is not None))
|
||||
print(f"distinct run_ids covered: {len(labeled_run_ids)} -> {labeled_run_ids}")
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
@@ -0,0 +1,313 @@
|
||||
<?xml version='1.0' encoding='UTF-8' ?>
|
||||
<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='504.00pt' height='576.00pt' viewBox='0 0 504.00 576.00'>
|
||||
<g class='svglite'>
|
||||
<defs>
|
||||
<style type='text/css'><![CDATA[
|
||||
.svglite line, .svglite polyline, .svglite polygon, .svglite path, .svglite rect, .svglite circle {
|
||||
fill: none;
|
||||
stroke: #000000;
|
||||
stroke-linecap: round;
|
||||
stroke-linejoin: round;
|
||||
stroke-miterlimit: 10.00;
|
||||
}
|
||||
.svglite text {
|
||||
white-space: pre;
|
||||
}
|
||||
.svglite g.glyphgroup path {
|
||||
fill: inherit;
|
||||
stroke: none;
|
||||
}
|
||||
]]></style>
|
||||
</defs>
|
||||
<rect width='100%' height='100%' style='stroke: none; fill: #FFFFFF;'/>
|
||||
<defs>
|
||||
<clipPath id='cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA='>
|
||||
<rect x='0.00' y='0.00' width='504.00' height='576.00' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
<rect x='0.00' y='0.00' width='504.00' height='576.00' style='stroke-width: 1.07; stroke: #FFFFFF; fill: #FFFFFF;' />
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDIuNTZ8NDk4LjUyfDM5LjQyfDE4Ni42Mw=='>
|
||||
<rect x='42.56' y='39.42' width='455.96' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDIuNTZ8NDk4LjUyfDM5LjQyfDE4Ni42Mw==)'>
|
||||
<rect x='42.56' y='39.42' width='455.96' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='42.56,172.27 498.52,172.27 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,137.42 498.52,137.42 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,102.57 498.52,102.57 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,67.72 498.52,67.72 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,154.84 498.52,154.84 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,119.99 498.52,119.99 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,85.14 498.52,85.14 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,50.29 498.52,50.29 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='72.30,186.63 72.30,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='121.86,186.63 121.86,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='171.42,186.63 171.42,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='220.98,186.63 220.98,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='270.54,186.63 270.54,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='320.10,186.63 320.10,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='369.66,186.63 369.66,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='419.22,186.63 419.22,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='468.78,186.63 468.78,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<line x1='72.30' y1='179.94' x2='72.30' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='72.30' y1='179.94' x2='72.30' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='53.71,179.94 53.71,179.94 90.88,179.94 90.88,179.94 53.71,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='53.71' y1='179.94' x2='90.88' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='121.86' y1='179.94' x2='121.86' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='121.86' y1='179.94' x2='121.86' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='103.27,179.94 103.27,179.94 140.45,179.94 140.45,179.94 103.27,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='103.27' y1='179.94' x2='140.45' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='171.42' y1='179.94' x2='171.42' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='171.42' y1='179.94' x2='171.42' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='152.84,179.94 152.84,179.94 190.01,179.94 190.01,179.94 152.84,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='152.84' y1='179.94' x2='190.01' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='220.98' y1='179.94' x2='220.98' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='220.98' y1='179.94' x2='220.98' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='202.40,179.94 202.40,179.94 239.57,179.94 239.57,179.94 202.40,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='202.40' y1='179.94' x2='239.57' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='270.54' y1='179.94' x2='270.54' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='270.54' y1='179.94' x2='270.54' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='251.96,179.94 251.96,179.94 289.13,179.94 289.13,179.94 251.96,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='251.96' y1='179.94' x2='289.13' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='320.10' y1='179.94' x2='320.10' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='320.10' y1='179.94' x2='320.10' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='301.52,179.94 301.52,179.94 338.69,179.94 338.69,179.94 301.52,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='301.52' y1='179.94' x2='338.69' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='369.66' cy='46.11' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='369.66' cy='46.11' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='369.66' cy='135.33' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='369.66' cy='135.33' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='369.66' y1='179.94' x2='369.66' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='369.66' y1='179.94' x2='369.66' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='351.08,179.94 351.08,179.94 388.25,179.94 388.25,179.94 351.08,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='351.08' y1='179.94' x2='388.25' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='419.22' y1='179.94' x2='419.22' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='419.22' y1='179.94' x2='419.22' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='400.64,179.94 400.64,179.94 437.81,179.94 437.81,179.94 400.64,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='400.64' y1='179.94' x2='437.81' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='468.78' y1='179.94' x2='468.78' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='468.78' y1='179.94' x2='468.78' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='450.20,179.94 450.20,179.94 487.37,179.94 487.37,179.94 450.20,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='450.20' y1='179.94' x2='487.37' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='42.56' y='39.42' width='455.96' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDIuNTZ8NDk4LjUyfDIwOC43NnwzNTUuOTc='>
|
||||
<rect x='42.56' y='208.76' width='455.96' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDIuNTZ8NDk4LjUyfDIwOC43NnwzNTUuOTc=)'>
|
||||
<rect x='42.56' y='208.76' width='455.96' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='42.56,341.61 498.52,341.61 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,306.76 498.52,306.76 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,271.91 498.52,271.91 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,237.06 498.52,237.06 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,324.18 498.52,324.18 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,289.33 498.52,289.33 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,254.48 498.52,254.48 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,219.63 498.52,219.63 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='72.30,355.97 72.30,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='121.86,355.97 121.86,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='171.42,355.97 171.42,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='220.98,355.97 220.98,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='270.54,355.97 270.54,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='320.10,355.97 320.10,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='369.66,355.97 369.66,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='419.22,355.97 419.22,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='468.78,355.97 468.78,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<line x1='72.30' y1='349.27' x2='72.30' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='72.30' y1='349.27' x2='72.30' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='53.71,349.27 53.71,349.27 90.88,349.27 90.88,349.27 53.71,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='53.71' y1='349.27' x2='90.88' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='121.86' y1='349.27' x2='121.86' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='121.86' y1='349.27' x2='121.86' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='103.27,349.27 103.27,349.27 140.45,349.27 140.45,349.27 103.27,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='103.27' y1='349.27' x2='140.45' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='171.42' y1='349.27' x2='171.42' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='171.42' y1='349.27' x2='171.42' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='152.84,349.27 152.84,349.27 190.01,349.27 190.01,349.27 152.84,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='152.84' y1='349.27' x2='190.01' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='220.98' y1='349.27' x2='220.98' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='220.98' y1='349.27' x2='220.98' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='202.40,349.27 202.40,349.27 239.57,349.27 239.57,349.27 202.40,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='202.40' y1='349.27' x2='239.57' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='270.54' y1='349.27' x2='270.54' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='270.54' y1='349.27' x2='270.54' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='251.96,349.27 251.96,349.27 289.13,349.27 289.13,349.27 251.96,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='251.96' y1='349.27' x2='289.13' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='320.10' y1='349.27' x2='320.10' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='320.10' y1='349.27' x2='320.10' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='301.52,349.27 301.52,349.27 338.69,349.27 338.69,349.27 301.52,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='301.52' y1='349.27' x2='338.69' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='369.66' cy='215.45' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='369.66' cy='215.45' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='369.66' cy='304.67' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='369.66' cy='304.67' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='369.66' y1='349.27' x2='369.66' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='369.66' y1='349.27' x2='369.66' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='351.08,349.27 351.08,349.27 388.25,349.27 388.25,349.27 351.08,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='351.08' y1='349.27' x2='388.25' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='419.22' y1='349.27' x2='419.22' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='419.22' y1='349.27' x2='419.22' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='400.64,349.27 400.64,349.27 437.81,349.27 437.81,349.27 400.64,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='400.64' y1='349.27' x2='437.81' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='468.78' y1='349.27' x2='468.78' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='468.78' y1='349.27' x2='468.78' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='450.20,349.27 450.20,349.27 487.37,349.27 487.37,349.27 450.20,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='450.20' y1='349.27' x2='487.37' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='42.56' y='208.76' width='455.96' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDIuNTZ8NDk4LjUyfDM3OC4xMHw1MjUuMzE='>
|
||||
<rect x='42.56' y='378.10' width='455.96' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDIuNTZ8NDk4LjUyfDM3OC4xMHw1MjUuMzE=)'>
|
||||
<rect x='42.56' y='378.10' width='455.96' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='42.56,510.95 498.52,510.95 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,476.10 498.52,476.10 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,441.25 498.52,441.25 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,406.40 498.52,406.40 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,493.52 498.52,493.52 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,458.67 498.52,458.67 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,423.82 498.52,423.82 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,388.97 498.52,388.97 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='72.30,525.31 72.30,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='121.86,525.31 121.86,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='171.42,525.31 171.42,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='220.98,525.31 220.98,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='270.54,525.31 270.54,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='320.10,525.31 320.10,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='369.66,525.31 369.66,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='419.22,525.31 419.22,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='468.78,525.31 468.78,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<line x1='72.30' y1='518.61' x2='72.30' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='72.30' y1='518.61' x2='72.30' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='53.71,518.61 53.71,518.61 90.88,518.61 90.88,518.61 53.71,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='53.71' y1='518.61' x2='90.88' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='121.86' y1='518.61' x2='121.86' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='121.86' y1='518.61' x2='121.86' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='103.27,518.61 103.27,518.61 140.45,518.61 140.45,518.61 103.27,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='103.27' y1='518.61' x2='140.45' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='171.42' y1='518.61' x2='171.42' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='171.42' y1='518.61' x2='171.42' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='152.84,518.61 152.84,518.61 190.01,518.61 190.01,518.61 152.84,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='152.84' y1='518.61' x2='190.01' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='220.98' y1='518.61' x2='220.98' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='220.98' y1='518.61' x2='220.98' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='202.40,518.61 202.40,518.61 239.57,518.61 239.57,518.61 202.40,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='202.40' y1='518.61' x2='239.57' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='270.54' y1='518.61' x2='270.54' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='270.54' y1='518.61' x2='270.54' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='251.96,518.61 251.96,518.61 289.13,518.61 289.13,518.61 251.96,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='251.96' y1='518.61' x2='289.13' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='320.10' y1='518.61' x2='320.10' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='320.10' y1='518.61' x2='320.10' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='301.52,518.61 301.52,518.61 338.69,518.61 338.69,518.61 301.52,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='301.52' y1='518.61' x2='338.69' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='369.66' cy='384.79' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='369.66' cy='474.01' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='369.66' cy='474.01' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='369.66' y1='518.61' x2='369.66' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='369.66' y1='518.61' x2='369.66' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='351.08,518.61 351.08,518.61 388.25,518.61 388.25,518.61 351.08,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='351.08' y1='518.61' x2='388.25' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='419.22' y1='518.61' x2='419.22' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='419.22' y1='518.61' x2='419.22' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='400.64,518.61 400.64,518.61 437.81,518.61 437.81,518.61 400.64,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='400.64' y1='518.61' x2='437.81' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='468.78' y1='518.61' x2='468.78' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='468.78' y1='518.61' x2='468.78' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='450.20,518.61 450.20,518.61 487.37,518.61 487.37,518.61 450.20,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='450.20' y1='518.61' x2='487.37' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='42.56' y='378.10' width='455.96' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDIuNTZ8NDk4LjUyfDM2MS40NXwzNzguMTA='>
|
||||
<rect x='42.56' y='361.45' width='455.96' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDIuNTZ8NDk4LjUyfDM2MS40NXwzNzguMTA=)'>
|
||||
<rect x='42.56' y='361.45' width='455.96' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='270.54' y='372.80' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='27.88px' lengthAdjust='spacingAndGlyphs'>riscv64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDIuNTZ8NDk4LjUyfDE5Mi4xMXwyMDguNzY='>
|
||||
<rect x='42.56' y='192.11' width='455.96' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDIuNTZ8NDk4LjUyfDE5Mi4xMXwyMDguNzY=)'>
|
||||
<rect x='42.56' y='192.11' width='455.96' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='270.54' y='203.46' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='31.78px' lengthAdjust='spacingAndGlyphs'>aarch64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDIuNTZ8NDk4LjUyfDIyLjc3fDM5LjQy'>
|
||||
<rect x='42.56' y='22.77' width='455.96' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDIuNTZ8NDk4LjUyfDIyLjc3fDM5LjQy)'>
|
||||
<rect x='42.56' y='22.77' width='455.96' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='270.54' y='34.12' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='26.89px' lengthAdjust='spacingAndGlyphs'>amd64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
<polyline points='72.30,528.05 72.30,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='121.86,528.05 121.86,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='171.42,528.05 171.42,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='220.98,528.05 220.98,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='270.54,528.05 270.54,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='320.10,528.05 320.10,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='369.66,528.05 369.66,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='419.22,528.05 419.22,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='468.78,528.05 468.78,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text transform='translate(76.58,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='18.59px' lengthAdjust='spacingAndGlyphs'>zuse</text>
|
||||
<text transform='translate(126.14,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='31.28px' lengthAdjust='spacingAndGlyphs'>rajames</text>
|
||||
<text transform='translate(175.70,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>00</text>
|
||||
<text transform='translate(225.26,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>01</text>
|
||||
<text transform='translate(274.82,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>02</text>
|
||||
<text transform='translate(324.38,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>03</text>
|
||||
<text transform='translate(373.94,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>04</text>
|
||||
<text transform='translate(423.51,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>05</text>
|
||||
<text transform='translate(473.07,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>06</text>
|
||||
<text x='37.63' y='157.87' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='14.67px' lengthAdjust='spacingAndGlyphs'>400</text>
|
||||
<text x='37.63' y='123.02' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='14.67px' lengthAdjust='spacingAndGlyphs'>600</text>
|
||||
<text x='37.63' y='88.17' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='14.67px' lengthAdjust='spacingAndGlyphs'>800</text>
|
||||
<text x='37.63' y='53.32' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='19.56px' lengthAdjust='spacingAndGlyphs'>1000</text>
|
||||
<polyline points='39.82,154.84 42.56,154.84 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='39.82,119.99 42.56,119.99 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='39.82,85.14 42.56,85.14 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='39.82,50.29 42.56,50.29 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='37.63' y='327.21' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='14.67px' lengthAdjust='spacingAndGlyphs'>400</text>
|
||||
<text x='37.63' y='292.36' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='14.67px' lengthAdjust='spacingAndGlyphs'>600</text>
|
||||
<text x='37.63' y='257.51' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='14.67px' lengthAdjust='spacingAndGlyphs'>800</text>
|
||||
<text x='37.63' y='222.66' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='19.56px' lengthAdjust='spacingAndGlyphs'>1000</text>
|
||||
<polyline points='39.82,324.18 42.56,324.18 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='39.82,289.33 42.56,289.33 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='39.82,254.48 42.56,254.48 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='39.82,219.63 42.56,219.63 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='37.63' y='496.55' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='14.67px' lengthAdjust='spacingAndGlyphs'>400</text>
|
||||
<text x='37.63' y='461.70' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='14.67px' lengthAdjust='spacingAndGlyphs'>600</text>
|
||||
<text x='37.63' y='426.85' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='14.67px' lengthAdjust='spacingAndGlyphs'>800</text>
|
||||
<text x='37.63' y='392.00' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='19.56px' lengthAdjust='spacingAndGlyphs'>1000</text>
|
||||
<polyline points='39.82,493.52 42.56,493.52 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='39.82,458.67 42.56,458.67 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='39.82,423.82 42.56,423.82 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='39.82,388.97 42.56,388.97 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='270.54' y='568.24' text-anchor='middle' style='font-size: 11.00px; font-family: "Liberation Sans";' textLength='35.50px' lengthAdjust='spacingAndGlyphs'>Identity</text>
|
||||
<text transform='translate(13.05,282.36) rotate(-90)' text-anchor='middle' style='font-size: 11.00px; font-family: "Liberation Sans";' textLength='135.78px' lengthAdjust='spacingAndGlyphs'>Actual analysis window size</text>
|
||||
<text x='42.56' y='14.55' style='font-size: 13.20px; font-family: "Liberation Sans";' textLength='162.69px' lengthAdjust='spacingAndGlyphs'>Actual analysis window size</text>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 35 KiB |
@@ -0,0 +1,371 @@
|
||||
<?xml version='1.0' encoding='UTF-8' ?>
|
||||
<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='504.00pt' height='576.00pt' viewBox='0 0 504.00 576.00'>
|
||||
<g class='svglite'>
|
||||
<defs>
|
||||
<style type='text/css'><![CDATA[
|
||||
.svglite line, .svglite polyline, .svglite polygon, .svglite path, .svglite rect, .svglite circle {
|
||||
fill: none;
|
||||
stroke: #000000;
|
||||
stroke-linecap: round;
|
||||
stroke-linejoin: round;
|
||||
stroke-miterlimit: 10.00;
|
||||
}
|
||||
.svglite text {
|
||||
white-space: pre;
|
||||
}
|
||||
.svglite g.glyphgroup path {
|
||||
fill: inherit;
|
||||
stroke: none;
|
||||
}
|
||||
]]></style>
|
||||
</defs>
|
||||
<rect width='100%' height='100%' style='stroke: none; fill: #FFFFFF;'/>
|
||||
<defs>
|
||||
<clipPath id='cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA='>
|
||||
<rect x='0.00' y='0.00' width='504.00' height='576.00' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
<rect x='0.00' y='0.00' width='504.00' height='576.00' style='stroke-width: 1.07; stroke: #FFFFFF; fill: #FFFFFF;' />
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpMzUuNzB8NDk4LjUyfDM5LjQyfDE4Ni42Mw=='>
|
||||
<rect x='35.70' y='39.42' width='462.82' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMzUuNzB8NDk4LjUyfDM5LjQyfDE4Ni42Mw==)'>
|
||||
<rect x='35.70' y='39.42' width='462.82' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='35.70,159.14 498.52,159.14 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.70,113.93 498.52,113.93 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.70,68.72 498.52,68.72 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.70,181.74 498.52,181.74 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.70,136.53 498.52,136.53 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.70,91.32 498.52,91.32 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.70,46.11 498.52,46.11 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='65.89,186.63 65.89,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='116.19,186.63 116.19,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='166.50,186.63 166.50,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='216.81,186.63 216.81,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='267.11,186.63 267.11,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='317.42,186.63 317.42,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='367.72,186.63 367.72,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='418.03,186.63 418.03,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='468.34,186.63 468.34,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<circle cx='65.89' cy='78.66' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='65.89' y1='85.90' x2='65.89' y2='84.09' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='65.89' y1='87.70' x2='65.89' y2='87.70' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='47.02,85.90 47.02,87.70 84.75,87.70 84.75,85.90 47.02,85.90 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='47.02' y1='85.90' x2='84.75' y2='85.90' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='116.19' cy='80.47' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='116.19' cy='120.26' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='116.19' y1='85.90' x2='116.19' y2='84.09' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='116.19' y1='87.70' x2='116.19' y2='89.51' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='97.33,85.90 97.33,87.70 135.06,87.70 135.06,85.90 97.33,85.90 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='97.33' y1='85.90' x2='135.06' y2='85.90' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='166.50' cy='73.24' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='166.50' cy='111.21' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='166.50' y1='85.90' x2='166.50' y2='84.09' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='166.50' y1='87.70' x2='166.50' y2='89.51' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='147.63,85.90 147.63,87.70 185.36,87.70 185.36,85.90 147.63,85.90 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='147.63' y1='85.90' x2='185.36' y2='85.90' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='216.81' cy='78.66' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='216.81' y1='85.90' x2='216.81' y2='84.09' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='216.81' y1='87.70' x2='216.81' y2='89.51' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='197.94,85.90 197.94,87.70 235.67,87.70 235.67,85.90 197.94,85.90 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='197.94' y1='87.70' x2='235.67' y2='87.70' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='267.11' cy='76.85' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='267.11' cy='69.62' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='267.11' cy='96.75' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='267.11' y1='85.90' x2='267.11' y2='84.09' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='267.11' y1='87.70' x2='267.11' y2='87.70' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='248.25,85.90 248.25,87.70 285.98,87.70 285.98,85.90 248.25,85.90 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='248.25' y1='85.90' x2='285.98' y2='85.90' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='317.42' cy='78.66' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='317.42' cy='75.04' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='317.42' cy='75.04' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='317.42' cy='100.36' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='317.42' cy='75.04' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='317.42' y1='84.09' x2='317.42' y2='82.28' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='317.42' y1='86.80' x2='317.42' y2='87.70' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='298.55,84.09 298.55,86.80 336.28,86.80 336.28,84.09 298.55,84.09 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='298.55' y1='85.90' x2='336.28' y2='85.90' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='367.72' cy='75.04' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='367.72' cy='76.85' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='367.72' y1='85.90' x2='367.72' y2='84.09' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='367.72' y1='87.70' x2='367.72' y2='87.70' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='348.86,85.90 348.86,87.70 386.59,87.70 386.59,85.90 348.86,85.90 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='348.86' y1='85.90' x2='386.59' y2='85.90' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='418.03' cy='145.57' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='418.03' cy='75.04' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='418.03' cy='82.28' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='418.03' y1='85.90' x2='418.03' y2='84.09' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='418.03' y1='87.70' x2='418.03' y2='89.51' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='399.17,85.90 399.17,87.70 436.90,87.70 436.90,85.90 399.17,85.90 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='399.17' y1='85.90' x2='436.90' y2='85.90' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='468.34' cy='76.85' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='468.34' cy='136.53' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='468.34' cy='75.04' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='468.34' cy='73.24' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='468.34' cy='76.85' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='468.34' y1='85.90' x2='468.34' y2='84.09' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='468.34' y1='87.70' x2='468.34' y2='89.51' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='449.47,85.90 449.47,87.70 487.20,87.70 487.20,85.90 449.47,85.90 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='449.47' y1='85.90' x2='487.20' y2='85.90' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='35.70' y='39.42' width='462.82' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpMzUuNzB8NDk4LjUyfDIwOC43NnwzNTUuOTc='>
|
||||
<rect x='35.70' y='208.76' width='462.82' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMzUuNzB8NDk4LjUyfDIwOC43NnwzNTUuOTc=)'>
|
||||
<rect x='35.70' y='208.76' width='462.82' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='35.70,328.48 498.52,328.48 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.70,283.27 498.52,283.27 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.70,238.05 498.52,238.05 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.70,351.08 498.52,351.08 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.70,305.87 498.52,305.87 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.70,260.66 498.52,260.66 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.70,215.45 498.52,215.45 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='65.89,355.97 65.89,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='116.19,355.97 116.19,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='166.50,355.97 166.50,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='216.81,355.97 216.81,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='267.11,355.97 267.11,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='317.42,355.97 317.42,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='367.72,355.97 367.72,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='418.03,355.97 418.03,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='468.34,355.97 468.34,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<circle cx='65.89' cy='233.53' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='65.89' y1='252.97' x2='65.89' y2='251.62' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='65.89' y1='255.23' x2='65.89' y2='255.23' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='47.02,252.97 47.02,255.23 84.75,255.23 84.75,252.97 47.02,252.97 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='47.02' y1='253.43' x2='84.75' y2='253.43' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='116.19' cy='237.15' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='116.19' y1='251.62' x2='116.19' y2='249.81' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='116.19' y1='253.43' x2='116.19' y2='255.23' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='97.33,251.62 97.33,253.43 135.06,253.43 135.06,251.62 97.33,251.62 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='97.33' y1='253.43' x2='135.06' y2='253.43' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='166.50' cy='231.72' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='166.50' cy='307.68' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='166.50' cy='237.15' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='166.50' y1='253.43' x2='166.50' y2='251.62' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='166.50' y1='255.23' x2='166.50' y2='255.23' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='147.63,253.43 147.63,255.23 185.36,255.23 185.36,253.43 147.63,253.43 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='147.63' y1='253.43' x2='185.36' y2='253.43' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='216.81' cy='231.72' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='216.81' cy='249.81' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='216.81' cy='316.72' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='216.81' y1='253.43' x2='216.81' y2='251.62' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='216.81' y1='255.23' x2='216.81' y2='255.23' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='197.94,253.43 197.94,255.23 235.67,255.23 235.67,253.43 197.94,253.43 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='197.94' y1='253.43' x2='235.67' y2='253.43' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='267.11' cy='229.92' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='267.11' cy='249.81' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='267.11' cy='311.30' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='267.11' cy='215.45' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='267.11' cy='249.81' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='267.11' cy='323.96' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='267.11' y1='253.43' x2='267.11' y2='253.43' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='267.11' y1='255.23' x2='267.11' y2='255.23' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='248.25,253.43 248.25,255.23 285.98,255.23 285.98,253.43 248.25,253.43 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='248.25' y1='253.43' x2='285.98' y2='253.43' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='317.42' cy='233.53' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='317.42' cy='275.13' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='317.42' y1='253.43' x2='317.42' y2='251.62' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='317.42' y1='255.23' x2='317.42' y2='255.23' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='298.55,253.43 298.55,255.23 336.28,255.23 336.28,253.43 298.55,253.43 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='298.55' y1='254.33' x2='336.28' y2='254.33' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='367.72' cy='249.81' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='367.72' cy='238.96' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='367.72' cy='249.81' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='367.72' cy='237.15' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='367.72' y1='253.43' x2='367.72' y2='251.62' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='367.72' y1='255.23' x2='367.72' y2='255.23' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='348.86,253.43 348.86,255.23 386.59,255.23 386.59,253.43 348.86,253.43 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='348.86' y1='254.33' x2='386.59' y2='254.33' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='418.03' cy='282.36' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='418.03' cy='231.72' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='418.03' cy='280.55' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='418.03' cy='233.53' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='418.03' y1='253.43' x2='418.03' y2='251.62' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='418.03' y1='255.23' x2='418.03' y2='255.23' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='399.17,253.43 399.17,255.23 436.90,255.23 436.90,253.43 399.17,253.43 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='399.17' y1='253.43' x2='436.90' y2='253.43' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='468.34' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='468.34' cy='238.96' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='468.34' cy='233.53' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='468.34' y1='253.43' x2='468.34' y2='251.62' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='468.34' y1='255.23' x2='468.34' y2='257.04' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='449.47,253.43 449.47,255.23 487.20,255.23 487.20,253.43 449.47,253.43 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='449.47' y1='253.43' x2='487.20' y2='253.43' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='35.70' y='208.76' width='462.82' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpMzUuNzB8NDk4LjUyfDM3OC4xMHw1MjUuMzE='>
|
||||
<rect x='35.70' y='378.10' width='462.82' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMzUuNzB8NDk4LjUyfDM3OC4xMHw1MjUuMzE=)'>
|
||||
<rect x='35.70' y='378.10' width='462.82' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='35.70,497.82 498.52,497.82 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.70,452.61 498.52,452.61 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.70,407.39 498.52,407.39 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.70,520.42 498.52,520.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.70,475.21 498.52,475.21 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.70,430.00 498.52,430.00 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.70,384.79 498.52,384.79 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='65.89,525.31 65.89,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='116.19,525.31 116.19,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='166.50,525.31 166.50,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='216.81,525.31 216.81,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='267.11,525.31 267.11,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='317.42,525.31 317.42,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='367.72,525.31 367.72,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='418.03,525.31 418.03,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='468.34,525.31 468.34,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<line x1='65.89' y1='426.38' x2='65.89' y2='424.57' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='65.89' y1='428.19' x2='65.89' y2='430.00' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='47.02,426.38 47.02,428.19 84.75,428.19 84.75,426.38 47.02,426.38 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='47.02' y1='428.19' x2='84.75' y2='428.19' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='116.19' cy='417.34' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='116.19' cy='439.04' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='116.19' cy='413.72' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='116.19' cy='440.85' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='116.19' y1='426.38' x2='116.19' y2='424.57' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='116.19' y1='428.19' x2='116.19' y2='428.19' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='97.33,426.38 97.33,428.19 135.06,428.19 135.06,426.38 97.33,426.38 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='97.33' y1='428.19' x2='135.06' y2='428.19' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='166.50' cy='417.34' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='166.50' cy='431.81' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='166.50' cy='417.34' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='166.50' y1='426.38' x2='166.50' y2='426.38' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='166.50' y1='428.19' x2='166.50' y2='428.19' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='147.63,426.38 147.63,428.19 185.36,428.19 185.36,426.38 147.63,426.38 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='147.63' y1='428.19' x2='185.36' y2='428.19' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='216.81' cy='415.53' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='216.81' cy='442.66' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='216.81' y1='426.38' x2='216.81' y2='426.38' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='216.81' y1='428.19' x2='216.81' y2='428.19' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='197.94,426.38 197.94,428.19 235.67,428.19 235.67,426.38 197.94,426.38 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='197.94' y1='428.19' x2='235.67' y2='428.19' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='267.11' cy='415.53' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='267.11' cy='446.28' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='267.11' y1='426.38' x2='267.11' y2='426.38' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='267.11' y1='428.19' x2='267.11' y2='428.19' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='248.25,426.38 248.25,428.19 285.98,428.19 285.98,426.38 248.25,426.38 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='248.25' y1='428.19' x2='285.98' y2='428.19' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='317.42' cy='411.92' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='317.42' cy='448.08' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='317.42' y1='426.38' x2='317.42' y2='426.38' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='317.42' y1='428.19' x2='317.42' y2='428.19' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='298.55,426.38 298.55,428.19 336.28,428.19 336.28,426.38 298.55,426.38 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='298.55' y1='428.19' x2='336.28' y2='428.19' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='367.72' cy='415.53' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='367.72' cy='435.43' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='367.72' y1='426.38' x2='367.72' y2='426.38' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='367.72' y1='428.19' x2='367.72' y2='428.19' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='348.86,426.38 348.86,428.19 386.59,428.19 386.59,426.38 348.86,426.38 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='348.86' y1='428.19' x2='386.59' y2='428.19' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='418.03' cy='455.32' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='418.03' cy='404.68' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='418.03' y1='426.38' x2='418.03' y2='426.38' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='418.03' y1='428.19' x2='418.03' y2='428.19' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='399.17,426.38 399.17,428.19 436.90,428.19 436.90,426.38 399.17,426.38 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='399.17' y1='428.19' x2='436.90' y2='428.19' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='468.34' cy='415.53' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='468.34' cy='453.51' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='468.34' cy='413.72' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='468.34' cy='417.34' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='468.34' y1='426.38' x2='468.34' y2='426.38' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='468.34' y1='428.19' x2='468.34' y2='430.00' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='449.47,426.38 449.47,428.19 487.20,428.19 487.20,426.38 449.47,426.38 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='449.47' y1='428.19' x2='487.20' y2='428.19' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='35.70' y='378.10' width='462.82' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpMzUuNzB8NDk4LjUyfDM2MS40NXwzNzguMTA='>
|
||||
<rect x='35.70' y='361.45' width='462.82' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMzUuNzB8NDk4LjUyfDM2MS40NXwzNzguMTA=)'>
|
||||
<rect x='35.70' y='361.45' width='462.82' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='267.11' y='372.80' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='27.88px' lengthAdjust='spacingAndGlyphs'>riscv64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpMzUuNzB8NDk4LjUyfDE5Mi4xMXwyMDguNzY='>
|
||||
<rect x='35.70' y='192.11' width='462.82' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMzUuNzB8NDk4LjUyfDE5Mi4xMXwyMDguNzY=)'>
|
||||
<rect x='35.70' y='192.11' width='462.82' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='267.11' y='203.46' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='31.78px' lengthAdjust='spacingAndGlyphs'>aarch64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpMzUuNzB8NDk4LjUyfDIyLjc3fDM5LjQy'>
|
||||
<rect x='35.70' y='22.77' width='462.82' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMzUuNzB8NDk4LjUyfDIyLjc3fDM5LjQy)'>
|
||||
<rect x='35.70' y='22.77' width='462.82' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='267.11' y='34.12' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='26.89px' lengthAdjust='spacingAndGlyphs'>amd64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
<polyline points='65.89,528.05 65.89,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='116.19,528.05 116.19,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='166.50,528.05 166.50,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='216.81,528.05 216.81,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='267.11,528.05 267.11,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='317.42,528.05 317.42,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='367.72,528.05 367.72,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='418.03,528.05 418.03,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='468.34,528.05 468.34,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text transform='translate(70.17,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='18.59px' lengthAdjust='spacingAndGlyphs'>zuse</text>
|
||||
<text transform='translate(120.48,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='31.28px' lengthAdjust='spacingAndGlyphs'>rajames</text>
|
||||
<text transform='translate(170.78,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>00</text>
|
||||
<text transform='translate(221.09,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>01</text>
|
||||
<text transform='translate(271.39,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>02</text>
|
||||
<text transform='translate(321.70,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>03</text>
|
||||
<text transform='translate(372.01,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>04</text>
|
||||
<text transform='translate(422.31,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>05</text>
|
||||
<text transform='translate(472.62,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>06</text>
|
||||
<text x='30.77' y='184.77' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='12.70px' lengthAdjust='spacingAndGlyphs'>-50</text>
|
||||
<text x='30.77' y='139.56' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='12.70px' lengthAdjust='spacingAndGlyphs'>-25</text>
|
||||
<text x='30.77' y='94.35' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='4.89px' lengthAdjust='spacingAndGlyphs'>0</text>
|
||||
<text x='30.77' y='49.14' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>25</text>
|
||||
<polyline points='32.96,181.74 35.70,181.74 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='32.96,136.53 35.70,136.53 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='32.96,91.32 35.70,91.32 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='32.96,46.11 35.70,46.11 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='30.77' y='354.11' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='12.70px' lengthAdjust='spacingAndGlyphs'>-50</text>
|
||||
<text x='30.77' y='308.90' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='12.70px' lengthAdjust='spacingAndGlyphs'>-25</text>
|
||||
<text x='30.77' y='263.69' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='4.89px' lengthAdjust='spacingAndGlyphs'>0</text>
|
||||
<text x='30.77' y='218.48' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>25</text>
|
||||
<polyline points='32.96,351.08 35.70,351.08 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='32.96,305.87 35.70,305.87 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='32.96,260.66 35.70,260.66 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='32.96,215.45 35.70,215.45 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='30.77' y='523.45' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='12.70px' lengthAdjust='spacingAndGlyphs'>-50</text>
|
||||
<text x='30.77' y='478.24' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='12.70px' lengthAdjust='spacingAndGlyphs'>-25</text>
|
||||
<text x='30.77' y='433.03' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='4.89px' lengthAdjust='spacingAndGlyphs'>0</text>
|
||||
<text x='30.77' y='387.82' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>25</text>
|
||||
<polyline points='32.96,520.42 35.70,520.42 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='32.96,475.21 35.70,475.21 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='32.96,430.00 35.70,430.00 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='32.96,384.79 35.70,384.79 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='267.11' y='568.24' text-anchor='middle' style='font-size: 11.00px; font-family: "Liberation Sans";' textLength='35.50px' lengthAdjust='spacingAndGlyphs'>Identity</text>
|
||||
<text transform='translate(13.05,282.36) rotate(-90)' text-anchor='middle' style='font-size: 11.00px; font-family: "Liberation Sans";' textLength='138.88px' lengthAdjust='spacingAndGlyphs'>APIC ticks per heartbeat tick</text>
|
||||
<text x='35.70' y='14.55' style='font-size: 13.20px; font-family: "Liberation Sans";' textLength='166.28px' lengthAdjust='spacingAndGlyphs'>APIC ticks per heartbeat tick</text>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 43 KiB |
@@ -0,0 +1,465 @@
|
||||
<?xml version='1.0' encoding='UTF-8' ?>
|
||||
<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='504.00pt' height='576.00pt' viewBox='0 0 504.00 576.00'>
|
||||
<g class='svglite'>
|
||||
<defs>
|
||||
<style type='text/css'><![CDATA[
|
||||
.svglite line, .svglite polyline, .svglite polygon, .svglite path, .svglite rect, .svglite circle {
|
||||
fill: none;
|
||||
stroke: #000000;
|
||||
stroke-linecap: round;
|
||||
stroke-linejoin: round;
|
||||
stroke-miterlimit: 10.00;
|
||||
}
|
||||
.svglite text {
|
||||
white-space: pre;
|
||||
}
|
||||
.svglite g.glyphgroup path {
|
||||
fill: inherit;
|
||||
stroke: none;
|
||||
}
|
||||
]]></style>
|
||||
</defs>
|
||||
<rect width='100%' height='100%' style='stroke: none; fill: #FFFFFF;'/>
|
||||
<defs>
|
||||
<clipPath id='cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA='>
|
||||
<rect x='0.00' y='0.00' width='504.00' height='576.00' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
<rect x='0.00' y='0.00' width='504.00' height='576.00' style='stroke-width: 1.07; stroke: #FFFFFF; fill: #FFFFFF;' />
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNTUuMDN8NDk4LjUyfDM5LjQyfDE4Ni42Mw=='>
|
||||
<rect x='55.03' y='39.42' width='443.49' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNTUuMDN8NDk4LjUyfDM5LjQyfDE4Ni42Mw==)'>
|
||||
<rect x='55.03' y='39.42' width='443.49' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='55.03,161.89 498.52,161.89 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,125.81 498.52,125.81 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,89.72 498.52,89.72 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,53.63 498.52,53.63 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,179.94 498.52,179.94 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,143.85 498.52,143.85 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,107.76 498.52,107.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,71.68 498.52,71.68 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='83.95,186.63 83.95,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='132.16,186.63 132.16,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='180.37,186.63 180.37,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='228.57,186.63 228.57,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='276.78,186.63 276.78,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='324.98,186.63 324.98,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='373.19,186.63 373.19,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='421.39,186.63 421.39,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='469.60,186.63 469.60,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<circle cx='83.95' cy='51.71' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='83.95' cy='51.71' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='83.95' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='83.95' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='83.95' y1='179.94' x2='83.95' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='83.95' y1='179.94' x2='83.95' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='65.88,179.94 65.88,179.94 102.03,179.94 102.03,179.94 65.88,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='65.88' y1='179.94' x2='102.03' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='132.16' cy='51.71' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='132.16' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='132.16' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='132.16' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='132.16' cy='51.71' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='132.16' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='132.16' y1='179.94' x2='132.16' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='132.16' y1='179.94' x2='132.16' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='114.08,179.94 114.08,179.94 150.24,179.94 150.24,179.94 114.08,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='114.08' y1='179.94' x2='150.24' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='180.37' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='180.37' cy='51.72' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='180.37' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='180.37' cy='51.72' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='180.37' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='180.37' cy='51.71' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='180.37' y1='179.94' x2='180.37' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='180.37' y1='179.94' x2='180.37' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='162.29,179.94 162.29,179.94 198.44,179.94 198.44,179.94 162.29,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='162.29' y1='179.94' x2='198.44' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='228.57' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='228.57' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='228.57' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='228.57' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='228.57' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='228.57' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='228.57' y1='179.94' x2='228.57' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='228.57' y1='179.94' x2='228.57' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='210.49,179.94 210.49,179.94 246.65,179.94 246.65,179.94 210.49,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='210.49' y1='179.94' x2='246.65' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='276.78' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='276.78' cy='51.71' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='276.78' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='276.78' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='276.78' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='276.78' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='276.78' cy='51.71' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='276.78' y1='179.94' x2='276.78' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='276.78' y1='179.94' x2='276.78' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='258.70,179.94 258.70,179.94 294.85,179.94 294.85,179.94 258.70,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='258.70' y1='179.94' x2='294.85' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='324.98' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='324.98' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='324.98' cy='51.71' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='324.98' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='324.98' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='324.98' y1='179.94' x2='324.98' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='324.98' y1='179.94' x2='324.98' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='306.90,179.94 306.90,179.94 343.06,179.94 343.06,179.94 306.90,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='306.90' y1='179.94' x2='343.06' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='373.19' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='373.19' cy='51.72' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='373.19' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='373.19' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='373.19' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='373.19' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='373.19' cy='51.71' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='373.19' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='373.19' y1='179.94' x2='373.19' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='373.19' y1='179.94' x2='373.19' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='355.11,179.94 355.11,179.94 391.26,179.94 391.26,179.94 355.11,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='355.11' y1='179.94' x2='391.26' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='421.39' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='421.39' cy='51.71' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='421.39' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='421.39' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='421.39' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='421.39' cy='51.72' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='421.39' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='421.39' cy='51.72' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='421.39' y1='179.94' x2='421.39' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='421.39' y1='179.94' x2='421.39' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='403.32,179.94 403.32,179.94 439.47,179.94 439.47,179.94 403.32,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='403.32' y1='179.94' x2='439.47' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='469.60' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='469.60' cy='51.71' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='469.60' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='469.60' cy='51.72' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='469.60' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='469.60' cy='51.71' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='469.60' y1='179.94' x2='469.60' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='469.60' y1='179.94' x2='469.60' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='451.52,179.94 451.52,179.94 487.67,179.94 487.67,179.94 451.52,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='451.52' y1='179.94' x2='487.67' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='55.03' y='39.42' width='443.49' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNTUuMDN8NDk4LjUyfDIwOC43NnwzNTUuOTc='>
|
||||
<rect x='55.03' y='208.76' width='443.49' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNTUuMDN8NDk4LjUyfDIwOC43NnwzNTUuOTc=)'>
|
||||
<rect x='55.03' y='208.76' width='443.49' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='55.03,331.23 498.52,331.23 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,295.15 498.52,295.15 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,259.06 498.52,259.06 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,222.97 498.52,222.97 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,349.27 498.52,349.27 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,313.19 498.52,313.19 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,277.10 498.52,277.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,241.02 498.52,241.02 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='83.95,355.97 83.95,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='132.16,355.97 132.16,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='180.37,355.97 180.37,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='228.57,355.97 228.57,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='276.78,355.97 276.78,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='324.98,355.97 324.98,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='373.19,355.97 373.19,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='421.39,355.97 421.39,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='469.60,355.97 469.60,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<circle cx='83.95' cy='230.03' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='83.95' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='83.95' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='83.95' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='83.95' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='83.95' y1='349.27' x2='83.95' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='83.95' y1='349.27' x2='83.95' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='65.88,349.27 65.88,349.27 102.03,349.27 102.03,349.27 65.88,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='65.88' y1='349.27' x2='102.03' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='132.16' cy='230.03' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='132.16' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='132.16' cy='230.03' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='132.16' y1='349.27' x2='132.16' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='132.16' y1='349.27' x2='132.16' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='114.08,349.27 114.08,349.27 150.24,349.27 150.24,349.27 114.08,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='114.08' y1='349.27' x2='150.24' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='180.37' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='180.37' cy='230.03' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='180.37' cy='230.03' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='180.37' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='180.37' cy='230.03' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='180.37' y1='349.27' x2='180.37' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='180.37' y1='349.27' x2='180.37' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='162.29,349.27 162.29,349.27 198.44,349.27 198.44,349.27 162.29,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='162.29' y1='349.27' x2='198.44' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='228.57' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='228.57' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='228.57' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='228.57' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='228.57' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='228.57' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='228.57' y1='349.27' x2='228.57' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='228.57' y1='349.27' x2='228.57' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='210.49,349.27 210.49,349.27 246.65,349.27 246.65,349.27 210.49,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='210.49' y1='349.27' x2='246.65' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='276.78' cy='230.03' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='276.78' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='276.78' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='276.78' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='276.78' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='276.78' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='276.78' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='276.78' cy='230.03' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='276.78' y1='349.27' x2='276.78' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='276.78' y1='349.27' x2='276.78' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='258.70,349.27 258.70,349.27 294.85,349.27 294.85,349.27 258.70,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='258.70' y1='349.27' x2='294.85' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='324.98' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='324.98' cy='230.03' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='324.98' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='324.98' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='324.98' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='324.98' y1='349.27' x2='324.98' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='324.98' y1='349.27' x2='324.98' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='306.90,349.27 306.90,349.27 343.06,349.27 343.06,349.27 306.90,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='306.90' y1='349.27' x2='343.06' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='373.19' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='373.19' cy='230.03' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='373.19' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='373.19' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='373.19' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='373.19' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='373.19' cy='230.03' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='373.19' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='373.19' y1='349.27' x2='373.19' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='373.19' y1='349.27' x2='373.19' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='355.11,349.27 355.11,349.27 391.26,349.27 391.26,349.27 355.11,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='355.11' y1='349.27' x2='391.26' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='421.39' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='421.39' cy='230.03' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='421.39' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='421.39' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='421.39' cy='230.03' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='421.39' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='421.39' cy='230.03' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='421.39' y1='349.27' x2='421.39' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='421.39' y1='349.27' x2='421.39' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='403.32,349.27 403.32,349.27 439.47,349.27 439.47,349.27 403.32,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='403.32' y1='349.27' x2='439.47' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='469.60' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='469.60' cy='230.03' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='469.60' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='469.60' cy='230.03' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='469.60' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='469.60' cy='230.03' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='469.60' y1='349.27' x2='469.60' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='469.60' y1='349.27' x2='469.60' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='451.52,349.27 451.52,349.27 487.67,349.27 487.67,349.27 451.52,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='451.52' y1='349.27' x2='487.67' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='55.03' y='208.76' width='443.49' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNTUuMDN8NDk4LjUyfDM3OC4xMHw1MjUuMzE='>
|
||||
<rect x='55.03' y='378.10' width='443.49' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNTUuMDN8NDk4LjUyfDM3OC4xMHw1MjUuMzE=)'>
|
||||
<rect x='55.03' y='378.10' width='443.49' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='55.03,500.57 498.52,500.57 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,464.48 498.52,464.48 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,428.40 498.52,428.40 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,392.31 498.52,392.31 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,518.61 498.52,518.61 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,482.53 498.52,482.53 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,446.44 498.52,446.44 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,410.35 498.52,410.35 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='83.95,525.31 83.95,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='132.16,525.31 132.16,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='180.37,525.31 180.37,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='228.57,525.31 228.57,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='276.78,525.31 276.78,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='324.98,525.31 324.98,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='373.19,525.31 373.19,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='421.39,525.31 421.39,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='469.60,525.31 469.60,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<circle cx='83.95' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='83.95' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='83.95' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='83.95' cy='384.79' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='83.95' y1='518.61' x2='83.95' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='83.95' y1='518.61' x2='83.95' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='65.88,518.61 65.88,518.61 102.03,518.61 102.03,518.61 65.88,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='65.88' y1='518.61' x2='102.03' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='132.16' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='132.16' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='132.16' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='132.16' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='132.16' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='132.16' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='132.16' y1='518.61' x2='132.16' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='132.16' y1='518.61' x2='132.16' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='114.08,518.61 114.08,518.61 150.24,518.61 150.24,518.61 114.08,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='114.08' y1='518.61' x2='150.24' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='180.37' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='180.37' cy='384.79' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='180.37' cy='384.79' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='180.37' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='180.37' y1='518.61' x2='180.37' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='180.37' y1='518.61' x2='180.37' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='162.29,518.61 162.29,518.61 198.44,518.61 198.44,518.61 162.29,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='162.29' y1='518.61' x2='198.44' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='228.57' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='228.57' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='228.57' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='228.57' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='228.57' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='228.57' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='228.57' y1='518.61' x2='228.57' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='228.57' y1='518.61' x2='228.57' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='210.49,518.61 210.49,518.61 246.65,518.61 246.65,518.61 210.49,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='210.49' y1='518.61' x2='246.65' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='276.78' cy='384.79' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='276.78' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='276.78' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='276.78' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='276.78' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='276.78' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='276.78' y1='518.61' x2='276.78' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='276.78' y1='518.61' x2='276.78' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='258.70,518.61 258.70,518.61 294.85,518.61 294.85,518.61 258.70,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='258.70' y1='518.61' x2='294.85' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='324.98' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='324.98' cy='384.79' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='324.98' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='324.98' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='324.98' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='324.98' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='324.98' y1='518.61' x2='324.98' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='324.98' y1='518.61' x2='324.98' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='306.90,518.61 306.90,518.61 343.06,518.61 343.06,518.61 306.90,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='306.90' y1='518.61' x2='343.06' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='373.19' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='373.19' cy='384.79' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='373.19' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='373.19' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='373.19' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='373.19' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='373.19' y1='518.61' x2='373.19' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='373.19' y1='518.61' x2='373.19' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='355.11,518.61 355.11,518.61 391.26,518.61 391.26,518.61 355.11,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='355.11' y1='518.61' x2='391.26' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='421.39' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='421.39' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='421.39' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='421.39' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='421.39' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='421.39' cy='384.79' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='421.39' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='421.39' cy='384.79' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='421.39' y1='518.61' x2='421.39' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='421.39' y1='518.61' x2='421.39' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='403.32,518.61 403.32,518.61 439.47,518.61 439.47,518.61 403.32,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='403.32' y1='518.61' x2='439.47' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='469.60' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='469.60' cy='384.79' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='469.60' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='469.60' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='469.60' cy='384.79' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='469.60' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='469.60' cy='384.79' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='469.60' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='469.60' y1='518.61' x2='469.60' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='469.60' y1='518.61' x2='469.60' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='451.52,518.61 451.52,518.61 487.67,518.61 487.67,518.61 451.52,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='451.52' y1='518.61' x2='487.67' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='55.03' y='378.10' width='443.49' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNTUuMDN8NDk4LjUyfDM2MS40NXwzNzguMTA='>
|
||||
<rect x='55.03' y='361.45' width='443.49' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNTUuMDN8NDk4LjUyfDM2MS40NXwzNzguMTA=)'>
|
||||
<rect x='55.03' y='361.45' width='443.49' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='276.78' y='372.80' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='27.88px' lengthAdjust='spacingAndGlyphs'>riscv64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNTUuMDN8NDk4LjUyfDE5Mi4xMXwyMDguNzY='>
|
||||
<rect x='55.03' y='192.11' width='443.49' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNTUuMDN8NDk4LjUyfDE5Mi4xMXwyMDguNzY=)'>
|
||||
<rect x='55.03' y='192.11' width='443.49' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='276.78' y='203.46' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='31.78px' lengthAdjust='spacingAndGlyphs'>aarch64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNTUuMDN8NDk4LjUyfDIyLjc3fDM5LjQy'>
|
||||
<rect x='55.03' y='22.77' width='443.49' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNTUuMDN8NDk4LjUyfDIyLjc3fDM5LjQy)'>
|
||||
<rect x='55.03' y='22.77' width='443.49' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='276.78' y='34.12' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='26.89px' lengthAdjust='spacingAndGlyphs'>amd64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
<polyline points='83.95,528.05 83.95,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='132.16,528.05 132.16,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='180.37,528.05 180.37,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='228.57,528.05 228.57,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='276.78,528.05 276.78,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='324.98,528.05 324.98,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='373.19,528.05 373.19,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='421.39,528.05 421.39,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='469.60,528.05 469.60,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text transform='translate(88.24,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='18.59px' lengthAdjust='spacingAndGlyphs'>zuse</text>
|
||||
<text transform='translate(136.44,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='31.28px' lengthAdjust='spacingAndGlyphs'>rajames</text>
|
||||
<text transform='translate(184.65,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>00</text>
|
||||
<text transform='translate(232.85,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>01</text>
|
||||
<text transform='translate(281.06,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>02</text>
|
||||
<text transform='translate(329.26,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>03</text>
|
||||
<text transform='translate(377.47,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>04</text>
|
||||
<text transform='translate(425.67,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>05</text>
|
||||
<text transform='translate(473.88,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>06</text>
|
||||
<text x='50.10' y='182.96' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='32.03px' lengthAdjust='spacingAndGlyphs'>0.0e+00</text>
|
||||
<text x='50.10' y='146.88' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='32.03px' lengthAdjust='spacingAndGlyphs'>5.0e+17</text>
|
||||
<text x='50.10' y='110.79' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='32.03px' lengthAdjust='spacingAndGlyphs'>1.0e+18</text>
|
||||
<text x='50.10' y='74.70' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='32.03px' lengthAdjust='spacingAndGlyphs'>1.5e+18</text>
|
||||
<polyline points='52.29,179.94 55.03,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='52.29,143.85 55.03,143.85 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='52.29,107.76 55.03,107.76 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='52.29,71.68 55.03,71.68 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='50.10' y='352.30' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='32.03px' lengthAdjust='spacingAndGlyphs'>0.0e+00</text>
|
||||
<text x='50.10' y='316.22' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='32.03px' lengthAdjust='spacingAndGlyphs'>5.0e+17</text>
|
||||
<text x='50.10' y='280.13' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='32.03px' lengthAdjust='spacingAndGlyphs'>1.0e+18</text>
|
||||
<text x='50.10' y='244.04' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='32.03px' lengthAdjust='spacingAndGlyphs'>1.5e+18</text>
|
||||
<polyline points='52.29,349.27 55.03,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='52.29,313.19 55.03,313.19 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='52.29,277.10 55.03,277.10 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='52.29,241.02 55.03,241.02 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='50.10' y='521.64' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='32.03px' lengthAdjust='spacingAndGlyphs'>0.0e+00</text>
|
||||
<text x='50.10' y='485.56' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='32.03px' lengthAdjust='spacingAndGlyphs'>5.0e+17</text>
|
||||
<text x='50.10' y='449.47' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='32.03px' lengthAdjust='spacingAndGlyphs'>1.0e+18</text>
|
||||
<text x='50.10' y='413.38' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='32.03px' lengthAdjust='spacingAndGlyphs'>1.5e+18</text>
|
||||
<polyline points='52.29,518.61 55.03,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='52.29,482.53 55.03,482.53 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='52.29,446.44 55.03,446.44 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='52.29,410.35 55.03,410.35 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='276.78' y='568.24' text-anchor='middle' style='font-size: 11.00px; font-family: "Liberation Sans";' textLength='35.50px' lengthAdjust='spacingAndGlyphs'>Identity</text>
|
||||
<text transform='translate(13.05,282.36) rotate(-90)' text-anchor='middle' style='font-size: 11.00px; font-family: "Liberation Sans";' textLength='85.66px' lengthAdjust='spacingAndGlyphs'>Artemis fleet heat</text>
|
||||
<text x='55.03' y='14.55' style='font-size: 13.20px; font-family: "Liberation Sans";' textLength='102.55px' lengthAdjust='spacingAndGlyphs'>Artemis fleet heat</text>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 56 KiB |
@@ -0,0 +1,308 @@
|
||||
<?xml version='1.0' encoding='UTF-8' ?>
|
||||
<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='504.00pt' height='576.00pt' viewBox='0 0 504.00 576.00'>
|
||||
<g class='svglite'>
|
||||
<defs>
|
||||
<style type='text/css'><![CDATA[
|
||||
.svglite line, .svglite polyline, .svglite polygon, .svglite path, .svglite rect, .svglite circle {
|
||||
fill: none;
|
||||
stroke: #000000;
|
||||
stroke-linecap: round;
|
||||
stroke-linejoin: round;
|
||||
stroke-miterlimit: 10.00;
|
||||
}
|
||||
.svglite text {
|
||||
white-space: pre;
|
||||
}
|
||||
.svglite g.glyphgroup path {
|
||||
fill: inherit;
|
||||
stroke: none;
|
||||
}
|
||||
]]></style>
|
||||
</defs>
|
||||
<rect width='100%' height='100%' style='stroke: none; fill: #FFFFFF;'/>
|
||||
<defs>
|
||||
<clipPath id='cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA='>
|
||||
<rect x='0.00' y='0.00' width='504.00' height='576.00' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
<rect x='0.00' y='0.00' width='504.00' height='576.00' style='stroke-width: 1.07; stroke: #FFFFFF; fill: #FFFFFF;' />
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDAuMTF8NDk4LjUyfDM5LjQyfDE4Ni42Mw=='>
|
||||
<rect x='40.11' y='39.42' width='458.41' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDAuMTF8NDk4LjUyfDM5LjQyfDE4Ni42Mw==)'>
|
||||
<rect x='40.11' y='39.42' width='458.41' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='40.11,158.57 498.52,158.57 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,112.22 498.52,112.22 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,65.88 498.52,65.88 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,181.74 498.52,181.74 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,135.40 498.52,135.40 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,89.05 498.52,89.05 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,42.71 498.52,42.71 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='70.01,186.63 70.01,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='119.83,186.63 119.83,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='169.66,186.63 169.66,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='219.49,186.63 219.49,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='269.32,186.63 269.32,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='319.14,186.63 319.14,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='368.97,186.63 368.97,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='418.80,186.63 418.80,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='468.62,186.63 468.62,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<line x1='70.01' y1='171.63' x2='70.01' y2='171.17' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='70.01' y1='177.81' x2='70.01' y2='178.77' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='51.32,171.63 51.32,177.81 88.69,177.81 88.69,171.63 51.32,171.63 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='51.32' y1='174.10' x2='88.69' y2='174.10' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='119.83' cy='77.44' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='119.83' y1='152.53' x2='119.83' y2='151.93' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='119.83' y1='176.12' x2='119.83' y2='177.28' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='101.15,152.53 101.15,176.12 138.52,176.12 138.52,152.53 101.15,152.53 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='101.15' y1='165.26' x2='138.52' y2='165.26' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='169.66' cy='95.43' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='169.66' y1='156.41' x2='169.66' y2='155.50' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='169.66' y1='173.77' x2='169.66' y2='174.24' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='150.98,156.41 150.98,173.77 188.35,173.77 188.35,156.41 150.98,156.41 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='150.98' y1='159.82' x2='188.35' y2='159.82' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='219.49' y1='149.28' x2='219.49' y2='113.36' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='219.49' y1='179.22' x2='219.49' y2='179.48' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='200.80,149.28 200.80,179.22 238.17,179.22 238.17,149.28 200.80,149.28 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='200.80' y1='150.78' x2='238.17' y2='150.78' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='269.32' y1='148.55' x2='269.32' y2='125.31' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='269.32' y1='165.93' x2='269.32' y2='166.82' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='250.63,148.55 250.63,165.93 288.00,165.93 288.00,148.55 250.63,148.55 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='250.63' y1='160.74' x2='288.00' y2='160.74' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='319.14' y1='150.44' x2='319.14' y2='136.34' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='319.14' y1='173.81' x2='319.14' y2='175.90' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='300.46,150.44 300.46,173.81 337.83,173.81 337.83,150.44 300.46,150.44 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='300.46' y1='152.98' x2='337.83' y2='152.98' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='368.97' y1='167.45' x2='368.97' y2='150.16' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='368.97' y1='179.62' x2='368.97' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='350.28,167.45 350.28,179.62 387.65,179.62 387.65,167.45 350.28,167.45 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='350.28' y1='170.67' x2='387.65' y2='170.67' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='418.80' y1='157.80' x2='418.80' y2='156.71' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='418.80' y1='163.35' x2='418.80' y2='164.84' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='400.11,157.80 400.11,163.35 437.48,163.35 437.48,157.80 400.11,157.80 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='400.11' y1='162.40' x2='437.48' y2='162.40' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='468.62' y1='155.03' x2='468.62' y2='149.74' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='468.62' y1='172.97' x2='468.62' y2='173.54' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='449.94,155.03 449.94,172.97 487.31,172.97 487.31,155.03 449.94,155.03 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='449.94' y1='158.86' x2='487.31' y2='158.86' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='40.11' y='39.42' width='458.41' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDAuMTF8NDk4LjUyfDIwOC43NnwzNTUuOTc='>
|
||||
<rect x='40.11' y='208.76' width='458.41' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDAuMTF8NDk4LjUyfDIwOC43NnwzNTUuOTc=)'>
|
||||
<rect x='40.11' y='208.76' width='458.41' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='40.11,327.91 498.52,327.91 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,281.56 498.52,281.56 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,235.22 498.52,235.22 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,351.08 498.52,351.08 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,304.74 498.52,304.74 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,258.39 498.52,258.39 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,212.05 498.52,212.05 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='70.01,355.97 70.01,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='119.83,355.97 119.83,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='169.66,355.97 169.66,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='219.49,355.97 219.49,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='269.32,355.97 269.32,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='319.14,355.97 319.14,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='368.97,355.97 368.97,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='418.80,355.97 418.80,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='468.62,355.97 468.62,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<line x1='70.01' y1='340.88' x2='70.01' y2='340.29' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='70.01' y1='348.00' x2='70.01' y2='348.43' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='51.32,340.88 51.32,348.00 88.69,348.00 88.69,340.88 51.32,340.88 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='51.32' y1='343.26' x2='88.69' y2='343.26' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='119.83' y1='321.14' x2='119.83' y2='320.71' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='119.83' y1='347.01' x2='119.83' y2='347.58' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='101.15,321.14 101.15,347.01 138.52,347.01 138.52,321.14 101.15,321.14 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='101.15' y1='333.31' x2='138.52' y2='333.31' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='169.66' cy='261.84' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='169.66' y1='324.63' x2='169.66' y2='321.59' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='169.66' y1='342.29' x2='169.66' y2='343.33' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='150.98,324.63 150.98,342.29 188.35,342.29 188.35,324.63 150.98,324.63 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='150.98' y1='328.45' x2='188.35' y2='328.45' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='219.49' y1='315.99' x2='219.49' y2='275.87' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='219.49' y1='348.55' x2='219.49' y2='348.82' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='200.80,315.99 200.80,348.55 238.17,348.55 238.17,315.99 200.80,315.99 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='200.80' y1='318.80' x2='238.17' y2='318.80' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='269.32' cy='246.78' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='269.32' y1='315.44' x2='269.32' y2='289.88' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='269.32' y1='334.53' x2='269.32' y2='335.34' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='250.63,315.44 250.63,334.53 288.00,334.53 288.00,315.44 250.63,315.44 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='250.63' y1='330.57' x2='288.00' y2='330.57' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='319.14' y1='319.29' x2='319.14' y2='305.68' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='319.14' y1='343.37' x2='319.14' y2='344.68' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='300.46,319.29 300.46,343.37 337.83,343.37 337.83,319.29 300.46,319.29 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='300.46' y1='321.59' x2='337.83' y2='321.59' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='368.97' y1='336.62' x2='368.97' y2='319.50' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='368.97' y1='348.96' x2='368.97' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='350.28,336.62 350.28,348.96 387.65,348.96 387.65,336.62 350.28,336.62 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='350.28' y1='339.66' x2='387.65' y2='339.66' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='418.80' y1='325.90' x2='418.80' y2='324.21' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='418.80' y1='332.69' x2='418.80' y2='333.68' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='400.11,325.90 400.11,332.69 437.48,332.69 437.48,325.90 400.11,325.90 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='400.11' y1='331.53' x2='437.48' y2='331.53' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='468.62' y1='323.76' x2='468.62' y2='317.84' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='468.62' y1='341.20' x2='468.62' y2='343.55' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='449.94,323.76 449.94,341.20 487.31,341.20 487.31,323.76 449.94,323.76 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='449.94' y1='327.72' x2='487.31' y2='327.72' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='40.11' y='208.76' width='458.41' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDAuMTF8NDk4LjUyfDM3OC4xMHw1MjUuMzE='>
|
||||
<rect x='40.11' y='378.10' width='458.41' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDAuMTF8NDk4LjUyfDM3OC4xMHw1MjUuMzE=)'>
|
||||
<rect x='40.11' y='378.10' width='458.41' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='40.11,497.25 498.52,497.25 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,450.90 498.52,450.90 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,404.56 498.52,404.56 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,520.42 498.52,520.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,474.07 498.52,474.07 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,427.73 498.52,427.73 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,381.39 498.52,381.39 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='70.01,525.31 70.01,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='119.83,525.31 119.83,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='169.66,525.31 169.66,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='219.49,525.31 219.49,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='269.32,525.31 269.32,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='319.14,525.31 319.14,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='368.97,525.31 368.97,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='418.80,525.31 418.80,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='468.62,525.31 468.62,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<line x1='70.01' y1='509.17' x2='70.01' y2='508.01' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='70.01' y1='517.57' x2='70.01' y2='517.77' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='51.32,509.17 51.32,517.57 88.69,517.57 88.69,509.17 51.32,509.17 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='51.32' y1='513.31' x2='88.69' y2='513.31' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='119.83' cy='384.79' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='119.83' cy='412.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='119.83' y1='490.43' x2='119.83' y2='489.90' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='119.83' y1='516.83' x2='119.83' y2='517.41' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='101.15,490.43 101.15,516.83 138.52,516.83 138.52,490.43 101.15,490.43 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='101.15' y1='503.22' x2='138.52' y2='503.22' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='169.66' cy='429.51' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='169.66' cy='428.07' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='169.66' y1='493.55' x2='169.66' y2='492.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='169.66' y1='510.57' x2='169.66' y2='513.10' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='150.98,493.55 150.98,510.57 188.35,510.57 188.35,493.55 150.98,493.55 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='150.98' y1='498.46' x2='188.35' y2='498.46' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='219.49' y1='486.55' x2='219.49' y2='448.86' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='219.49' y1='517.88' x2='219.49' y2='518.15' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='200.80,486.55 200.80,517.88 238.17,517.88 238.17,486.55 200.80,486.55 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='200.80' y1='487.92' x2='238.17' y2='487.92' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='269.32' y1='485.10' x2='269.32' y2='459.21' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='269.32' y1='506.73' x2='269.32' y2='507.34' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='250.63,485.10 250.63,506.73 288.00,506.73 288.00,485.10 250.63,485.10 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='250.63' y1='499.59' x2='288.00' y2='499.59' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='319.14' y1='488.45' x2='319.14' y2='471.24' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='319.14' y1='515.31' x2='319.14' y2='516.53' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='300.46,488.45 300.46,515.31 337.83,515.31 337.83,488.45 300.46,488.45 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='300.46' y1='491.05' x2='337.83' y2='491.05' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='368.97' cy='486.02' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='368.97' y1='508.17' x2='368.97' y2='507.44' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='368.97' y1='518.27' x2='368.97' y2='518.58' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='350.28,508.17 350.28,518.27 387.65,518.27 387.65,508.17 350.28,508.17 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='350.28' y1='508.87' x2='387.65' y2='508.87' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='418.80' y1='495.42' x2='418.80' y2='493.76' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='418.80' y1='502.02' x2='418.80' y2='502.85' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='400.11,495.42 400.11,502.02 437.48,502.02 437.48,495.42 400.11,495.42 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='400.11' y1='501.20' x2='437.48' y2='501.20' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='468.62' y1='493.25' x2='468.62' y2='487.89' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='468.62' y1='508.23' x2='468.62' y2='510.98' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='449.94,493.25 449.94,508.23 487.31,508.23 487.31,493.25 449.94,493.25 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='449.94' y1='497.52' x2='487.31' y2='497.52' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='40.11' y='378.10' width='458.41' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDAuMTF8NDk4LjUyfDM2MS40NXwzNzguMTA='>
|
||||
<rect x='40.11' y='361.45' width='458.41' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDAuMTF8NDk4LjUyfDM2MS40NXwzNzguMTA=)'>
|
||||
<rect x='40.11' y='361.45' width='458.41' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='269.32' y='372.80' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='27.88px' lengthAdjust='spacingAndGlyphs'>riscv64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDAuMTF8NDk4LjUyfDE5Mi4xMXwyMDguNzY='>
|
||||
<rect x='40.11' y='192.11' width='458.41' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDAuMTF8NDk4LjUyfDE5Mi4xMXwyMDguNzY=)'>
|
||||
<rect x='40.11' y='192.11' width='458.41' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='269.32' y='203.46' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='31.78px' lengthAdjust='spacingAndGlyphs'>aarch64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDAuMTF8NDk4LjUyfDIyLjc3fDM5LjQy'>
|
||||
<rect x='40.11' y='22.77' width='458.41' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDAuMTF8NDk4LjUyfDIyLjc3fDM5LjQy)'>
|
||||
<rect x='40.11' y='22.77' width='458.41' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='269.32' y='34.12' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='26.89px' lengthAdjust='spacingAndGlyphs'>amd64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
<polyline points='70.01,528.05 70.01,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='119.83,528.05 119.83,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='169.66,528.05 169.66,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='219.49,528.05 219.49,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='269.32,528.05 269.32,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='319.14,528.05 319.14,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='368.97,528.05 368.97,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='418.80,528.05 418.80,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='468.62,528.05 468.62,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text transform='translate(74.29,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='18.59px' lengthAdjust='spacingAndGlyphs'>zuse</text>
|
||||
<text transform='translate(124.11,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='31.28px' lengthAdjust='spacingAndGlyphs'>rajames</text>
|
||||
<text transform='translate(173.94,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>00</text>
|
||||
<text transform='translate(223.77,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>01</text>
|
||||
<text transform='translate(273.60,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>02</text>
|
||||
<text transform='translate(323.42,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>03</text>
|
||||
<text transform='translate(373.25,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>04</text>
|
||||
<text transform='translate(423.08,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>05</text>
|
||||
<text transform='translate(472.91,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>06</text>
|
||||
<text x='35.18' y='184.77' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.00</text>
|
||||
<text x='35.18' y='138.42' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.02</text>
|
||||
<text x='35.18' y='92.08' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.04</text>
|
||||
<text x='35.18' y='45.74' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.06</text>
|
||||
<polyline points='37.37,181.74 40.11,181.74 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='37.37,135.40 40.11,135.40 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='37.37,89.05 40.11,89.05 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='37.37,42.71 40.11,42.71 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='35.18' y='354.11' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.00</text>
|
||||
<text x='35.18' y='307.76' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.02</text>
|
||||
<text x='35.18' y='261.42' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.04</text>
|
||||
<text x='35.18' y='215.08' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.06</text>
|
||||
<polyline points='37.37,351.08 40.11,351.08 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='37.37,304.74 40.11,304.74 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='37.37,258.39 40.11,258.39 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='37.37,212.05 40.11,212.05 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='35.18' y='523.45' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.00</text>
|
||||
<text x='35.18' y='477.10' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.02</text>
|
||||
<text x='35.18' y='430.76' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.04</text>
|
||||
<text x='35.18' y='384.42' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.06</text>
|
||||
<polyline points='37.37,520.42 40.11,520.42 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='37.37,474.07 40.11,474.07 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='37.37,427.73 40.11,427.73 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='37.37,381.39 40.11,381.39 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='269.32' y='568.24' text-anchor='middle' style='font-size: 11.00px; font-family: "Liberation Sans";' textLength='35.50px' lengthAdjust='spacingAndGlyphs'>Identity</text>
|
||||
<text transform='translate(13.05,282.36) rotate(-90)' text-anchor='middle' style='font-size: 11.00px; font-family: "Liberation Sans";' textLength='129.12px' lengthAdjust='spacingAndGlyphs'>Mean word execution heat</text>
|
||||
<text x='40.11' y='14.55' style='font-size: 13.20px; font-family: "Liberation Sans";' textLength='154.58px' lengthAdjust='spacingAndGlyphs'>Mean word execution heat</text>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 34 KiB |
@@ -0,0 +1,302 @@
|
||||
<?xml version='1.0' encoding='UTF-8' ?>
|
||||
<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='504.00pt' height='576.00pt' viewBox='0 0 504.00 576.00'>
|
||||
<g class='svglite'>
|
||||
<defs>
|
||||
<style type='text/css'><![CDATA[
|
||||
.svglite line, .svglite polyline, .svglite polygon, .svglite path, .svglite rect, .svglite circle {
|
||||
fill: none;
|
||||
stroke: #000000;
|
||||
stroke-linecap: round;
|
||||
stroke-linejoin: round;
|
||||
stroke-miterlimit: 10.00;
|
||||
}
|
||||
.svglite text {
|
||||
white-space: pre;
|
||||
}
|
||||
.svglite g.glyphgroup path {
|
||||
fill: inherit;
|
||||
stroke: none;
|
||||
}
|
||||
]]></style>
|
||||
</defs>
|
||||
<rect width='100%' height='100%' style='stroke: none; fill: #FFFFFF;'/>
|
||||
<defs>
|
||||
<clipPath id='cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA='>
|
||||
<rect x='0.00' y='0.00' width='504.00' height='576.00' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
<rect x='0.000000000000064' y='0.00' width='504.00' height='576.00' style='stroke-width: 1.07; stroke: #FFFFFF; fill: #FFFFFF;' />
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDAuMTF8NDk4LjUyfDM5LjQyfDE4Ni42Mw=='>
|
||||
<rect x='40.11' y='39.42' width='458.41' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDAuMTF8NDk4LjUyfDM5LjQyfDE4Ni42Mw==)'>
|
||||
<rect x='40.11' y='39.42' width='458.41' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='40.11,156.94 498.52,156.94 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,121.96 498.52,121.96 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,86.98 498.52,86.98 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,51.99 498.52,51.99 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,174.44 498.52,174.44 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,139.45 498.52,139.45 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,104.47 498.52,104.47 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,69.48 498.52,69.48 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='70.01,186.63 70.01,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='119.83,186.63 119.83,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='169.66,186.63 169.66,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='219.49,186.63 219.49,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='269.32,186.63 269.32,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='319.14,186.63 319.14,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='368.97,186.63 368.97,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='418.80,186.63 418.80,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='468.62,186.63 468.62,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<line x1='70.01' y1='128.42' x2='70.01' y2='128.42' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='70.01' y1='128.42' x2='70.01' y2='128.42' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='51.32,128.42 51.32,128.42 88.69,128.42 88.69,128.42 51.32,128.42 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='51.32' y1='128.42' x2='88.69' y2='128.42' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='119.83' y1='128.42' x2='119.83' y2='128.42' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='119.83' y1='128.42' x2='119.83' y2='128.42' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='101.15,128.42 101.15,128.42 138.52,128.42 138.52,128.42 101.15,128.42 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='101.15' y1='128.42' x2='138.52' y2='128.42' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='169.66' y1='128.42' x2='169.66' y2='128.42' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='169.66' y1='128.42' x2='169.66' y2='128.42' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='150.98,128.42 150.98,128.42 188.35,128.42 188.35,128.42 150.98,128.42 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='150.98' y1='128.42' x2='188.35' y2='128.42' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='219.49' y1='128.42' x2='219.49' y2='128.42' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='219.49' y1='128.42' x2='219.49' y2='128.42' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='200.80,128.42 200.80,128.42 238.17,128.42 238.17,128.42 200.80,128.42 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='200.80' y1='128.42' x2='238.17' y2='128.42' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='269.32' y1='128.42' x2='269.32' y2='128.42' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='269.32' y1='128.42' x2='269.32' y2='128.42' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='250.63,128.42 250.63,128.42 288.00,128.42 288.00,128.42 250.63,128.42 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='250.63' y1='128.42' x2='288.00' y2='128.42' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='319.14' y1='128.42' x2='319.14' y2='128.42' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='319.14' y1='128.42' x2='319.14' y2='128.42' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='300.46,128.42 300.46,128.42 337.83,128.42 337.83,128.42 300.46,128.42 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='300.46' y1='128.42' x2='337.83' y2='128.42' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='368.97' y1='128.42' x2='368.97' y2='128.42' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='368.97' y1='128.42' x2='368.97' y2='128.42' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='350.28,128.42 350.28,128.42 387.65,128.42 387.65,128.42 350.28,128.42 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='350.28' y1='128.42' x2='387.65' y2='128.42' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='418.80' y1='128.42' x2='418.80' y2='128.42' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='418.80' y1='128.42' x2='418.80' y2='128.42' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='400.11,128.42 400.11,128.42 437.48,128.42 437.48,128.42 400.11,128.42 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='400.11' y1='128.42' x2='437.48' y2='128.42' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='468.62' y1='128.42' x2='468.62' y2='128.42' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='468.62' y1='128.42' x2='468.62' y2='128.42' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='449.94,128.42 449.94,128.42 487.31,128.42 487.31,128.42 449.94,128.42 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='449.94' y1='128.42' x2='487.31' y2='128.42' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='40.11' y='39.42' width='458.41' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDAuMTF8NDk4LjUyfDIwOC43NnwzNTUuOTc='>
|
||||
<rect x='40.11' y='208.76' width='458.41' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDAuMTF8NDk4LjUyfDIwOC43NnwzNTUuOTc=)'>
|
||||
<rect x='40.11' y='208.76' width='458.41' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='40.11,326.28 498.52,326.28 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,291.30 498.52,291.30 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,256.32 498.52,256.32 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,221.33 498.52,221.33 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,343.77 498.52,343.77 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,308.79 498.52,308.79 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,273.81 498.52,273.81 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,238.82 498.52,238.82 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='70.01,355.97 70.01,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='119.83,355.97 119.83,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='169.66,355.97 169.66,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='219.49,355.97 219.49,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='269.32,355.97 269.32,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='319.14,355.97 319.14,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='368.97,355.97 368.97,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='418.80,355.97 418.80,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='468.62,355.97 468.62,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<line x1='70.01' y1='215.45' x2='70.01' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='70.01' y1='215.45' x2='70.01' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='51.32,215.45 51.32,215.45 88.69,215.45 88.69,215.45 51.32,215.45 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='51.32' y1='215.45' x2='88.69' y2='215.45' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='119.83' y1='215.45' x2='119.83' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='119.83' y1='215.45' x2='119.83' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='101.15,215.45 101.15,215.45 138.52,215.45 138.52,215.45 101.15,215.45 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='101.15' y1='215.45' x2='138.52' y2='215.45' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='169.66' y1='215.45' x2='169.66' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='169.66' y1='215.45' x2='169.66' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='150.98,215.45 150.98,215.45 188.35,215.45 188.35,215.45 150.98,215.45 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='150.98' y1='215.45' x2='188.35' y2='215.45' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='219.49' y1='215.45' x2='219.49' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='219.49' y1='215.45' x2='219.49' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='200.80,215.45 200.80,215.45 238.17,215.45 238.17,215.45 200.80,215.45 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='200.80' y1='215.45' x2='238.17' y2='215.45' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='269.32' y1='215.45' x2='269.32' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='269.32' y1='215.45' x2='269.32' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='250.63,215.45 250.63,215.45 288.00,215.45 288.00,215.45 250.63,215.45 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='250.63' y1='215.45' x2='288.00' y2='215.45' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='319.14' y1='215.45' x2='319.14' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='319.14' y1='215.45' x2='319.14' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='300.46,215.45 300.46,215.45 337.83,215.45 337.83,215.45 300.46,215.45 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='300.46' y1='215.45' x2='337.83' y2='215.45' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='368.97' y1='215.45' x2='368.97' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='368.97' y1='215.45' x2='368.97' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='350.28,215.45 350.28,215.45 387.65,215.45 387.65,215.45 350.28,215.45 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='350.28' y1='215.45' x2='387.65' y2='215.45' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='418.80' y1='215.45' x2='418.80' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='418.80' y1='215.45' x2='418.80' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='400.11,215.45 400.11,215.45 437.48,215.45 437.48,215.45 400.11,215.45 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='400.11' y1='215.45' x2='437.48' y2='215.45' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='468.62' y1='215.45' x2='468.62' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='468.62' y1='215.45' x2='468.62' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='449.94,215.45 449.94,215.45 487.31,215.45 487.31,215.45 449.94,215.45 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='449.94' y1='215.45' x2='487.31' y2='215.45' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='40.11' y='208.76' width='458.41' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDAuMTF8NDk4LjUyfDM3OC4xMHw1MjUuMzE='>
|
||||
<rect x='40.11' y='378.10' width='458.41' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDAuMTF8NDk4LjUyfDM3OC4xMHw1MjUuMzE=)'>
|
||||
<rect x='40.11' y='378.10' width='458.41' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='40.11,495.62 498.52,495.62 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,460.64 498.52,460.64 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,425.65 498.52,425.65 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,390.67 498.52,390.67 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,513.11 498.52,513.11 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,478.13 498.52,478.13 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,443.15 498.52,443.15 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,408.16 498.52,408.16 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='70.01,525.31 70.01,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='119.83,525.31 119.83,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='169.66,525.31 169.66,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='219.49,525.31 219.49,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='269.32,525.31 269.32,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='319.14,525.31 319.14,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='368.97,525.31 368.97,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='418.80,525.31 418.80,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='468.62,525.31 468.62,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<line x1='70.01' y1='518.61' x2='70.01' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='70.01' y1='518.61' x2='70.01' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='51.32,518.61 51.32,518.61 88.69,518.61 88.69,518.61 51.32,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='51.32' y1='518.61' x2='88.69' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='119.83' y1='518.61' x2='119.83' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='119.83' y1='518.61' x2='119.83' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='101.15,518.61 101.15,518.61 138.52,518.61 138.52,518.61 101.15,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='101.15' y1='518.61' x2='138.52' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='169.66' y1='518.61' x2='169.66' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='169.66' y1='518.61' x2='169.66' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='150.98,518.61 150.98,518.61 188.35,518.61 188.35,518.61 150.98,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='150.98' y1='518.61' x2='188.35' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='219.49' y1='518.61' x2='219.49' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='219.49' y1='518.61' x2='219.49' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='200.80,518.61 200.80,518.61 238.17,518.61 238.17,518.61 200.80,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='200.80' y1='518.61' x2='238.17' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='269.32' y1='518.61' x2='269.32' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='269.32' y1='518.61' x2='269.32' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='250.63,518.61 250.63,518.61 288.00,518.61 288.00,518.61 250.63,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='250.63' y1='518.61' x2='288.00' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='319.14' y1='518.61' x2='319.14' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='319.14' y1='518.61' x2='319.14' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='300.46,518.61 300.46,518.61 337.83,518.61 337.83,518.61 300.46,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='300.46' y1='518.61' x2='337.83' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='368.97' y1='518.61' x2='368.97' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='368.97' y1='518.61' x2='368.97' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='350.28,518.61 350.28,518.61 387.65,518.61 387.65,518.61 350.28,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='350.28' y1='518.61' x2='387.65' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='418.80' y1='518.61' x2='418.80' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='418.80' y1='518.61' x2='418.80' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='400.11,518.61 400.11,518.61 437.48,518.61 437.48,518.61 400.11,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='400.11' y1='518.61' x2='437.48' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='468.62' y1='518.61' x2='468.62' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='468.62' y1='518.61' x2='468.62' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='449.94,518.61 449.94,518.61 487.31,518.61 487.31,518.61 449.94,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='449.94' y1='518.61' x2='487.31' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='40.11' y='378.10' width='458.41' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDAuMTF8NDk4LjUyfDM2MS40NXwzNzguMTA='>
|
||||
<rect x='40.11' y='361.45' width='458.41' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDAuMTF8NDk4LjUyfDM2MS40NXwzNzguMTA=)'>
|
||||
<rect x='40.11' y='361.45' width='458.41' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='269.32' y='372.80' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='27.88px' lengthAdjust='spacingAndGlyphs'>riscv64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDAuMTF8NDk4LjUyfDE5Mi4xMXwyMDguNzY='>
|
||||
<rect x='40.11' y='192.11' width='458.41' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDAuMTF8NDk4LjUyfDE5Mi4xMXwyMDguNzY=)'>
|
||||
<rect x='40.11' y='192.11' width='458.41' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='269.32' y='203.46' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='31.78px' lengthAdjust='spacingAndGlyphs'>aarch64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDAuMTF8NDk4LjUyfDIyLjc3fDM5LjQy'>
|
||||
<rect x='40.11' y='22.77' width='458.41' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDAuMTF8NDk4LjUyfDIyLjc3fDM5LjQy)'>
|
||||
<rect x='40.11' y='22.77' width='458.41' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='269.32' y='34.12' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='26.89px' lengthAdjust='spacingAndGlyphs'>amd64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
<polyline points='70.01,528.05 70.01,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='119.83,528.05 119.83,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='169.66,528.05 169.66,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='219.49,528.05 219.49,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='269.32,528.05 269.32,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='319.14,528.05 319.14,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='368.97,528.05 368.97,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='418.80,528.05 418.80,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='468.62,528.05 468.62,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text transform='translate(74.29,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='18.59px' lengthAdjust='spacingAndGlyphs'>zuse</text>
|
||||
<text transform='translate(124.11,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='31.28px' lengthAdjust='spacingAndGlyphs'>rajames</text>
|
||||
<text transform='translate(173.94,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>00</text>
|
||||
<text transform='translate(223.77,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>01</text>
|
||||
<text transform='translate(273.60,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>02</text>
|
||||
<text transform='translate(323.42,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>03</text>
|
||||
<text transform='translate(373.25,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>04</text>
|
||||
<text transform='translate(423.08,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>05</text>
|
||||
<text transform='translate(472.91,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>06</text>
|
||||
<text x='35.18' y='177.46' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.64</text>
|
||||
<text x='35.18' y='142.48' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.65</text>
|
||||
<text x='35.18' y='107.50' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.66</text>
|
||||
<text x='35.18' y='72.51' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.67</text>
|
||||
<polyline points='37.37,174.44 40.11,174.44 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='37.37,139.45 40.11,139.45 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='37.37,104.47 40.11,104.47 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='37.37,69.48 40.11,69.48 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='35.18' y='346.80' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.64</text>
|
||||
<text x='35.18' y='311.82' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.65</text>
|
||||
<text x='35.18' y='276.83' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.66</text>
|
||||
<text x='35.18' y='241.85' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.67</text>
|
||||
<polyline points='37.37,343.77 40.11,343.77 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='37.37,308.79 40.11,308.79 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='37.37,273.81 40.11,273.81 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='37.37,238.82 40.11,238.82 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='35.18' y='516.14' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.64</text>
|
||||
<text x='35.18' y='481.16' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.65</text>
|
||||
<text x='35.18' y='446.17' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.66</text>
|
||||
<text x='35.18' y='411.19' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.67</text>
|
||||
<polyline points='37.37,513.11 40.11,513.11 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='37.37,478.13 40.11,478.13 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='37.37,443.15 40.11,443.15 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='37.37,408.16 40.11,408.16 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='269.32' y='568.24' text-anchor='middle' style='font-size: 11.00px; font-family: "Liberation Sans";' textLength='35.50px' lengthAdjust='spacingAndGlyphs'>Identity</text>
|
||||
<text transform='translate(13.05,282.36) rotate(-90)' text-anchor='middle' style='font-size: 11.00px; font-family: "Liberation Sans";' textLength='72.22px' lengthAdjust='spacingAndGlyphs'>Hera fleet heat</text>
|
||||
<text x='40.11' y='14.55' style='font-size: 13.20px; font-family: "Liberation Sans";' textLength='86.44px' lengthAdjust='spacingAndGlyphs'>Hera fleet heat</text>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 33 KiB |
@@ -0,0 +1,302 @@
|
||||
<?xml version='1.0' encoding='UTF-8' ?>
|
||||
<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='504.00pt' height='576.00pt' viewBox='0 0 504.00 576.00'>
|
||||
<g class='svglite'>
|
||||
<defs>
|
||||
<style type='text/css'><![CDATA[
|
||||
.svglite line, .svglite polyline, .svglite polygon, .svglite path, .svglite rect, .svglite circle {
|
||||
fill: none;
|
||||
stroke: #000000;
|
||||
stroke-linecap: round;
|
||||
stroke-linejoin: round;
|
||||
stroke-miterlimit: 10.00;
|
||||
}
|
||||
.svglite text {
|
||||
white-space: pre;
|
||||
}
|
||||
.svglite g.glyphgroup path {
|
||||
fill: inherit;
|
||||
stroke: none;
|
||||
}
|
||||
]]></style>
|
||||
</defs>
|
||||
<rect width='100%' height='100%' style='stroke: none; fill: #FFFFFF;'/>
|
||||
<defs>
|
||||
<clipPath id='cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA='>
|
||||
<rect x='0.00' y='0.00' width='504.00' height='576.00' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
<rect x='0.00' y='0.00' width='504.00' height='576.00' style='stroke-width: 1.07; stroke: #FFFFFF; fill: #FFFFFF;' />
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDUuMDB8NDk4LjUyfDM5LjQyfDE4Ni42Mw=='>
|
||||
<rect x='45.00' y='39.42' width='453.52' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDUuMDB8NDk4LjUyfDM5LjQyfDE4Ni42Mw==)'>
|
||||
<rect x='45.00' y='39.42' width='453.52' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='45.00,184.47 498.52,184.47 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='45.00,147.40 498.52,147.40 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='45.00,110.33 498.52,110.33 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='45.00,73.26 498.52,73.26 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='45.00,165.94 498.52,165.94 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='45.00,128.87 498.52,128.87 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='45.00,91.80 498.52,91.80 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='45.00,54.73 498.52,54.73 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='74.58,186.63 74.58,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='123.87,186.63 123.87,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='173.17,186.63 173.17,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='222.46,186.63 222.46,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='271.76,186.63 271.76,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='321.06,186.63 321.06,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='370.35,186.63 370.35,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='419.65,186.63 419.65,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='468.94,186.63 468.94,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<line x1='74.58' y1='97.69' x2='74.58' y2='97.69' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='74.58' y1='97.69' x2='74.58' y2='97.69' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='56.09,97.69 56.09,97.69 93.06,97.69 93.06,97.69 56.09,97.69 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='56.09' y1='97.69' x2='93.06' y2='97.69' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='123.87' y1='97.69' x2='123.87' y2='97.69' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='123.87' y1='97.69' x2='123.87' y2='97.69' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='105.39,97.69 105.39,97.69 142.36,97.69 142.36,97.69 105.39,97.69 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='105.39' y1='97.69' x2='142.36' y2='97.69' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='173.17' y1='97.69' x2='173.17' y2='97.69' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='173.17' y1='97.69' x2='173.17' y2='97.69' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='154.68,97.69 154.68,97.69 191.65,97.69 191.65,97.69 154.68,97.69 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='154.68' y1='97.69' x2='191.65' y2='97.69' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='222.46' y1='97.69' x2='222.46' y2='97.69' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='222.46' y1='97.69' x2='222.46' y2='97.69' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='203.98,97.69 203.98,97.69 240.95,97.69 240.95,97.69 203.98,97.69 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='203.98' y1='97.69' x2='240.95' y2='97.69' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='271.76' y1='97.69' x2='271.76' y2='97.69' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='271.76' y1='97.69' x2='271.76' y2='97.69' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='253.27,97.69 253.27,97.69 290.25,97.69 290.25,97.69 253.27,97.69 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='253.27' y1='97.69' x2='290.25' y2='97.69' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='321.06' y1='97.69' x2='321.06' y2='97.69' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='321.06' y1='97.69' x2='321.06' y2='97.69' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='302.57,97.69 302.57,97.69 339.54,97.69 339.54,97.69 302.57,97.69 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='302.57' y1='97.69' x2='339.54' y2='97.69' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='370.35' y1='97.69' x2='370.35' y2='97.69' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='370.35' y1='97.69' x2='370.35' y2='97.69' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='351.87,97.69 351.87,97.69 388.84,97.69 388.84,97.69 351.87,97.69 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='351.87' y1='97.69' x2='388.84' y2='97.69' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='419.65' y1='97.69' x2='419.65' y2='97.69' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='419.65' y1='97.69' x2='419.65' y2='97.69' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='401.16,97.69 401.16,97.69 438.13,97.69 438.13,97.69 401.16,97.69 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='401.16' y1='97.69' x2='438.13' y2='97.69' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='468.94' y1='97.69' x2='468.94' y2='97.69' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='468.94' y1='97.69' x2='468.94' y2='97.69' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='450.46,97.69 450.46,97.69 487.43,97.69 487.43,97.69 450.46,97.69 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='450.46' y1='97.69' x2='487.43' y2='97.69' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='45.00' y='39.42' width='453.52' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDUuMDB8NDk4LjUyfDIwOC43NnwzNTUuOTc='>
|
||||
<rect x='45.00' y='208.76' width='453.52' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDUuMDB8NDk4LjUyfDIwOC43NnwzNTUuOTc=)'>
|
||||
<rect x='45.00' y='208.76' width='453.52' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='45.00,353.81 498.52,353.81 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='45.00,316.74 498.52,316.74 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='45.00,279.67 498.52,279.67 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='45.00,242.60 498.52,242.60 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='45.00,335.27 498.52,335.27 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='45.00,298.21 498.52,298.21 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='45.00,261.14 498.52,261.14 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='45.00,224.07 498.52,224.07 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='74.58,355.97 74.58,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='123.87,355.97 123.87,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='173.17,355.97 173.17,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='222.46,355.97 222.46,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='271.76,355.97 271.76,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='321.06,355.97 321.06,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='370.35,355.97 370.35,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='419.65,355.97 419.65,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='468.94,355.97 468.94,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<line x1='74.58' y1='349.27' x2='74.58' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='74.58' y1='349.27' x2='74.58' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='56.09,349.27 56.09,349.27 93.06,349.27 93.06,349.27 56.09,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='56.09' y1='349.27' x2='93.06' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='123.87' y1='349.27' x2='123.87' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='123.87' y1='349.27' x2='123.87' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='105.39,349.27 105.39,349.27 142.36,349.27 142.36,349.27 105.39,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='105.39' y1='349.27' x2='142.36' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='173.17' y1='349.27' x2='173.17' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='173.17' y1='349.27' x2='173.17' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='154.68,349.27 154.68,349.27 191.65,349.27 191.65,349.27 154.68,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='154.68' y1='349.27' x2='191.65' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='222.46' y1='349.27' x2='222.46' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='222.46' y1='349.27' x2='222.46' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='203.98,349.27 203.98,349.27 240.95,349.27 240.95,349.27 203.98,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='203.98' y1='349.27' x2='240.95' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='271.76' y1='349.27' x2='271.76' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='271.76' y1='349.27' x2='271.76' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='253.27,349.27 253.27,349.27 290.25,349.27 290.25,349.27 253.27,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='253.27' y1='349.27' x2='290.25' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='321.06' y1='349.27' x2='321.06' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='321.06' y1='349.27' x2='321.06' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='302.57,349.27 302.57,349.27 339.54,349.27 339.54,349.27 302.57,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='302.57' y1='349.27' x2='339.54' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='370.35' y1='349.27' x2='370.35' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='370.35' y1='349.27' x2='370.35' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='351.87,349.27 351.87,349.27 388.84,349.27 388.84,349.27 351.87,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='351.87' y1='349.27' x2='388.84' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='419.65' y1='349.27' x2='419.65' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='419.65' y1='349.27' x2='419.65' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='401.16,349.27 401.16,349.27 438.13,349.27 438.13,349.27 401.16,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='401.16' y1='349.27' x2='438.13' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='468.94' y1='349.27' x2='468.94' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='468.94' y1='349.27' x2='468.94' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='450.46,349.27 450.46,349.27 487.43,349.27 487.43,349.27 450.46,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='450.46' y1='349.27' x2='487.43' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='45.00' y='208.76' width='453.52' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDUuMDB8NDk4LjUyfDM3OC4xMHw1MjUuMzE='>
|
||||
<rect x='45.00' y='378.10' width='453.52' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDUuMDB8NDk4LjUyfDM3OC4xMHw1MjUuMzE=)'>
|
||||
<rect x='45.00' y='378.10' width='453.52' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='45.00,523.15 498.52,523.15 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='45.00,486.08 498.52,486.08 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='45.00,449.01 498.52,449.01 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='45.00,411.94 498.52,411.94 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='45.00,504.61 498.52,504.61 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='45.00,467.55 498.52,467.55 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='45.00,430.48 498.52,430.48 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='45.00,393.41 498.52,393.41 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='74.58,525.31 74.58,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='123.87,525.31 123.87,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='173.17,525.31 173.17,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='222.46,525.31 222.46,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='271.76,525.31 271.76,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='321.06,525.31 321.06,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='370.35,525.31 370.35,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='419.65,525.31 419.65,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='468.94,525.31 468.94,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<line x1='74.58' y1='384.79' x2='74.58' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='74.58' y1='384.79' x2='74.58' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='56.09,384.79 56.09,384.79 93.06,384.79 93.06,384.79 56.09,384.79 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='56.09' y1='384.79' x2='93.06' y2='384.79' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='123.87' y1='384.79' x2='123.87' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='123.87' y1='384.79' x2='123.87' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='105.39,384.79 105.39,384.79 142.36,384.79 142.36,384.79 105.39,384.79 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='105.39' y1='384.79' x2='142.36' y2='384.79' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='173.17' y1='384.79' x2='173.17' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='173.17' y1='384.79' x2='173.17' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='154.68,384.79 154.68,384.79 191.65,384.79 191.65,384.79 154.68,384.79 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='154.68' y1='384.79' x2='191.65' y2='384.79' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='222.46' y1='384.79' x2='222.46' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='222.46' y1='384.79' x2='222.46' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='203.98,384.79 203.98,384.79 240.95,384.79 240.95,384.79 203.98,384.79 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='203.98' y1='384.79' x2='240.95' y2='384.79' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='271.76' y1='384.79' x2='271.76' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='271.76' y1='384.79' x2='271.76' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='253.27,384.79 253.27,384.79 290.25,384.79 290.25,384.79 253.27,384.79 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='253.27' y1='384.79' x2='290.25' y2='384.79' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='321.06' y1='384.79' x2='321.06' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='321.06' y1='384.79' x2='321.06' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='302.57,384.79 302.57,384.79 339.54,384.79 339.54,384.79 302.57,384.79 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='302.57' y1='384.79' x2='339.54' y2='384.79' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='370.35' y1='384.79' x2='370.35' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='370.35' y1='384.79' x2='370.35' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='351.87,384.79 351.87,384.79 388.84,384.79 388.84,384.79 351.87,384.79 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='351.87' y1='384.79' x2='388.84' y2='384.79' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='419.65' y1='384.79' x2='419.65' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='419.65' y1='384.79' x2='419.65' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='401.16,384.79 401.16,384.79 438.13,384.79 438.13,384.79 401.16,384.79 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='401.16' y1='384.79' x2='438.13' y2='384.79' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='468.94' y1='384.79' x2='468.94' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='468.94' y1='384.79' x2='468.94' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='450.46,384.79 450.46,384.79 487.43,384.79 487.43,384.79 450.46,384.79 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='450.46' y1='384.79' x2='487.43' y2='384.79' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='45.00' y='378.10' width='453.52' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDUuMDB8NDk4LjUyfDM2MS40NXwzNzguMTA='>
|
||||
<rect x='45.00' y='361.45' width='453.52' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDUuMDB8NDk4LjUyfDM2MS40NXwzNzguMTA=)'>
|
||||
<rect x='45.00' y='361.45' width='453.52' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='271.76' y='372.80' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='27.88px' lengthAdjust='spacingAndGlyphs'>riscv64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDUuMDB8NDk4LjUyfDE5Mi4xMXwyMDguNzY='>
|
||||
<rect x='45.00' y='192.11' width='453.52' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDUuMDB8NDk4LjUyfDE5Mi4xMXwyMDguNzY=)'>
|
||||
<rect x='45.00' y='192.11' width='453.52' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='271.76' y='203.46' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='31.78px' lengthAdjust='spacingAndGlyphs'>aarch64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDUuMDB8NDk4LjUyfDIyLjc3fDM5LjQy'>
|
||||
<rect x='45.00' y='22.77' width='453.52' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDUuMDB8NDk4LjUyfDIyLjc3fDM5LjQy)'>
|
||||
<rect x='45.00' y='22.77' width='453.52' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='271.76' y='34.12' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='26.89px' lengthAdjust='spacingAndGlyphs'>amd64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
<polyline points='74.58,528.05 74.58,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='123.87,528.05 123.87,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='173.17,528.05 173.17,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='222.46,528.05 222.46,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='271.76,528.05 271.76,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='321.06,528.05 321.06,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='370.35,528.05 370.35,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='419.65,528.05 419.65,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='468.94,528.05 468.94,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text transform='translate(78.86,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='18.59px' lengthAdjust='spacingAndGlyphs'>zuse</text>
|
||||
<text transform='translate(128.16,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='31.28px' lengthAdjust='spacingAndGlyphs'>rajames</text>
|
||||
<text transform='translate(177.45,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>00</text>
|
||||
<text transform='translate(226.75,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>01</text>
|
||||
<text transform='translate(276.04,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>02</text>
|
||||
<text transform='translate(325.34,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>03</text>
|
||||
<text transform='translate(374.63,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>04</text>
|
||||
<text transform='translate(423.93,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>05</text>
|
||||
<text transform='translate(473.22,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>06</text>
|
||||
<text x='40.07' y='168.96' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='22.00px' lengthAdjust='spacingAndGlyphs'>0.160</text>
|
||||
<text x='40.07' y='131.89' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='22.00px' lengthAdjust='spacingAndGlyphs'>0.165</text>
|
||||
<text x='40.07' y='94.83' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='22.00px' lengthAdjust='spacingAndGlyphs'>0.170</text>
|
||||
<text x='40.07' y='57.76' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='22.00px' lengthAdjust='spacingAndGlyphs'>0.175</text>
|
||||
<polyline points='42.26,165.94 45.00,165.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='42.26,128.87 45.00,128.87 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='42.26,91.80 45.00,91.80 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='42.26,54.73 45.00,54.73 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='40.07' y='338.30' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='22.00px' lengthAdjust='spacingAndGlyphs'>0.160</text>
|
||||
<text x='40.07' y='301.23' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='22.00px' lengthAdjust='spacingAndGlyphs'>0.165</text>
|
||||
<text x='40.07' y='264.17' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='22.00px' lengthAdjust='spacingAndGlyphs'>0.170</text>
|
||||
<text x='40.07' y='227.10' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='22.00px' lengthAdjust='spacingAndGlyphs'>0.175</text>
|
||||
<polyline points='42.26,335.27 45.00,335.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='42.26,298.21 45.00,298.21 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='42.26,261.14 45.00,261.14 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='42.26,224.07 45.00,224.07 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='40.07' y='507.64' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='22.00px' lengthAdjust='spacingAndGlyphs'>0.160</text>
|
||||
<text x='40.07' y='470.57' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='22.00px' lengthAdjust='spacingAndGlyphs'>0.165</text>
|
||||
<text x='40.07' y='433.50' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='22.00px' lengthAdjust='spacingAndGlyphs'>0.170</text>
|
||||
<text x='40.07' y='396.44' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='22.00px' lengthAdjust='spacingAndGlyphs'>0.175</text>
|
||||
<polyline points='42.26,504.61 45.00,504.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='42.26,467.55 45.00,467.55 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='42.26,430.48 45.00,430.48 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='42.26,393.41 45.00,393.41 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='271.76' y='568.24' text-anchor='middle' style='font-size: 11.00px; font-family: "Liberation Sans";' textLength='35.50px' lengthAdjust='spacingAndGlyphs'>Identity</text>
|
||||
<text transform='translate(13.05,282.36) rotate(-90)' text-anchor='middle' style='font-size: 11.00px; font-family: "Liberation Sans";' textLength='86.88px' lengthAdjust='spacingAndGlyphs'>Hermes fleet heat</text>
|
||||
<text x='45.00' y='14.55' style='font-size: 13.20px; font-family: "Liberation Sans";' textLength='104.02px' lengthAdjust='spacingAndGlyphs'>Hermes fleet heat</text>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 33 KiB |
@@ -0,0 +1,364 @@
|
||||
<?xml version='1.0' encoding='UTF-8' ?>
|
||||
<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='504.00pt' height='576.00pt' viewBox='0 0 504.00 576.00'>
|
||||
<g class='svglite'>
|
||||
<defs>
|
||||
<style type='text/css'><![CDATA[
|
||||
.svglite line, .svglite polyline, .svglite polygon, .svglite path, .svglite rect, .svglite circle {
|
||||
fill: none;
|
||||
stroke: #000000;
|
||||
stroke-linecap: round;
|
||||
stroke-linejoin: round;
|
||||
stroke-miterlimit: 10.00;
|
||||
}
|
||||
.svglite text {
|
||||
white-space: pre;
|
||||
}
|
||||
.svglite g.glyphgroup path {
|
||||
fill: inherit;
|
||||
stroke: none;
|
||||
}
|
||||
]]></style>
|
||||
</defs>
|
||||
<rect width='100%' height='100%' style='stroke: none; fill: #FFFFFF;'/>
|
||||
<defs>
|
||||
<clipPath id='cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA='>
|
||||
<rect x='0.00' y='0.00' width='504.00' height='576.00' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
<rect x='0.00' y='0.00' width='504.00' height='576.00' style='stroke-width: 1.07; stroke: #FFFFFF; fill: #FFFFFF;' />
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpMzIuNzh8NDk4LjUyfDM5LjQyfDE4Ni42Mw=='>
|
||||
<rect x='32.78' y='39.42' width='465.74' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMzIuNzh8NDk4LjUyfDM5LjQyfDE4Ni42Mw==)'>
|
||||
<rect x='32.78' y='39.42' width='465.74' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='32.78,162.48 498.52,162.48 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='32.78,133.39 498.52,133.39 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='32.78,104.29 498.52,104.29 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='32.78,75.20 498.52,75.20 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='32.78,46.11 498.52,46.11 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='32.78,177.03 498.52,177.03 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='32.78,147.93 498.52,147.93 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='32.78,118.84 498.52,118.84 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='32.78,89.75 498.52,89.75 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='32.78,60.66 498.52,60.66 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='63.16,186.63 63.16,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='113.78,186.63 113.78,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='164.40,186.63 164.40,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='215.03,186.63 215.03,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='265.65,186.63 265.65,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='316.27,186.63 316.27,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='366.90,186.63 366.90,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='417.52,186.63 417.52,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='468.15,186.63 468.15,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<line x1='63.16' y1='63.56' x2='63.16' y2='60.66' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='63.16' y1='72.29' x2='63.16' y2='72.29' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='44.17,63.56 44.17,72.29 82.14,72.29 82.14,63.56 44.17,63.56 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='44.17' y1='66.47' x2='82.14' y2='66.47' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='113.78' cy='174.12' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='113.78' y1='66.47' x2='113.78' y2='66.47' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='113.78' y1='83.93' x2='113.78' y2='83.93' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='94.80,66.47 94.80,83.93 132.76,83.93 132.76,66.47 94.80,66.47 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='94.80' y1='69.38' x2='132.76' y2='69.38' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='164.40' cy='174.12' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='164.40' y1='63.56' x2='164.40' y2='63.56' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='164.40' y1='78.11' x2='164.40' y2='78.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='145.42,63.56 145.42,78.11 183.39,78.11 183.39,63.56 145.42,63.56 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='145.42' y1='78.11' x2='183.39' y2='78.11' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='215.03' cy='162.48' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='215.03' y1='63.56' x2='215.03' y2='63.56' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='215.03' y1='89.75' x2='215.03' y2='89.75' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='196.04,63.56 196.04,89.75 234.01,89.75 234.01,63.56 196.04,63.56 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='196.04' y1='83.93' x2='234.01' y2='83.93' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='265.65' cy='162.48' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='265.65' y1='69.38' x2='265.65' y2='66.47' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='265.65' y1='89.75' x2='265.65' y2='92.66' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='246.67,69.38 246.67,89.75 284.63,89.75 284.63,69.38 246.67,69.38 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='246.67' y1='78.11' x2='284.63' y2='78.11' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='316.27' cy='156.66' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='316.27' y1='72.29' x2='316.27' y2='66.47' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='316.27' y1='89.75' x2='316.27' y2='89.75' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='297.29,72.29 297.29,89.75 335.26,89.75 335.26,72.29 297.29,72.29 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='297.29' y1='81.02' x2='335.26' y2='81.02' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='366.90' cy='86.84' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='366.90' cy='86.84' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='366.90' cy='83.93' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='366.90' cy='78.11' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='366.90' cy='69.38' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='366.90' cy='63.56' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='366.90' cy='63.56' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='366.90' cy='63.56' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='366.90' cy='63.56' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='366.90' cy='63.56' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='366.90' cy='63.56' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='366.90' cy='150.84' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='366.90' y1='66.47' x2='366.90' y2='66.47' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='366.90' y1='66.47' x2='366.90' y2='66.47' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='347.91,66.47 347.91,66.47 385.88,66.47 385.88,66.47 347.91,66.47 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='347.91' y1='66.47' x2='385.88' y2='66.47' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='417.52' cy='136.30' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='417.52' y1='72.29' x2='417.52' y2='69.38' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='417.52' y1='78.11' x2='417.52' y2='78.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='398.54,72.29 398.54,78.11 436.51,78.11 436.51,72.29 398.54,72.29 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='398.54' y1='75.20' x2='436.51' y2='75.20' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='468.15' cy='124.66' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='468.15' y1='63.56' x2='468.15' y2='63.56' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='468.15' y1='78.11' x2='468.15' y2='78.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='449.16,63.56 449.16,78.11 487.13,78.11 487.13,63.56 449.16,63.56 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='449.16' y1='78.11' x2='487.13' y2='78.11' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='32.78' y='39.42' width='465.74' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpMzIuNzh8NDk4LjUyfDIwOC43NnwzNTUuOTc='>
|
||||
<rect x='32.78' y='208.76' width='465.74' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMzIuNzh8NDk4LjUyfDIwOC43NnwzNTUuOTc=)'>
|
||||
<rect x='32.78' y='208.76' width='465.74' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='32.78,331.82 498.52,331.82 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='32.78,302.73 498.52,302.73 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='32.78,273.63 498.52,273.63 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='32.78,244.54 498.52,244.54 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='32.78,215.45 498.52,215.45 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='32.78,346.37 498.52,346.37 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='32.78,317.27 498.52,317.27 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='32.78,288.18 498.52,288.18 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='32.78,259.09 498.52,259.09 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='32.78,230.00 498.52,230.00 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='63.16,355.97 63.16,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='113.78,355.97 113.78,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='164.40,355.97 164.40,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='215.03,355.97 215.03,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='265.65,355.97 265.65,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='316.27,355.97 316.27,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='366.90,355.97 366.90,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='417.52,355.97 417.52,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='468.15,355.97 468.15,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<circle cx='63.16' cy='224.18' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='63.16' cy='224.18' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='63.16' cy='238.72' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='63.16' y1='230.00' x2='63.16' y2='230.00' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='63.16' y1='232.90' x2='63.16' y2='235.81' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='44.17,230.00 44.17,232.90 82.14,232.90 82.14,230.00 44.17,230.00 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='44.17' y1='232.90' x2='82.14' y2='232.90' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='113.78' y1='220.54' x2='113.78' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='113.78' y1='267.82' x2='113.78' y2='267.82' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='94.80,220.54 94.80,267.82 132.76,267.82 132.76,220.54 94.80,220.54 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='94.80' y1='246.00' x2='132.76' y2='246.00' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='164.40' cy='343.46' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='164.40' y1='232.90' x2='164.40' y2='232.90' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='164.40' y1='256.18' x2='164.40' y2='256.18' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='145.42,232.90 145.42,256.18 183.39,256.18 183.39,232.90 145.42,232.90 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='145.42' y1='253.27' x2='183.39' y2='253.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='215.03' cy='337.64' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='215.03' y1='232.90' x2='215.03' y2='232.90' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='215.03' y1='270.72' x2='215.03' y2='270.72' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='196.04,232.90 196.04,270.72 234.01,270.72 234.01,232.90 196.04,232.90 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='196.04' y1='267.82' x2='234.01' y2='267.82' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='265.65' cy='343.46' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='265.65' cy='337.64' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='265.65' y1='238.72' x2='265.65' y2='235.81' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='265.65' y1='270.72' x2='265.65' y2='270.72' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='246.67,238.72 246.67,270.72 284.63,270.72 284.63,238.72 246.67,238.72 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='246.67' y1='250.36' x2='284.63' y2='250.36' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='316.27' cy='326.00' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='316.27' y1='235.81' x2='316.27' y2='227.09' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='316.27' y1='267.82' x2='316.27' y2='270.72' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='297.29,235.81 297.29,267.82 335.26,267.82 335.26,235.81 297.29,235.81 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='297.29' y1='262.00' x2='335.26' y2='262.00' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='366.90' cy='256.18' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='366.90' cy='256.18' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='366.90' cy='253.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='366.90' cy='247.45' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='366.90' cy='320.18' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='366.90' y1='230.00' x2='366.90' y2='230.00' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='366.90' y1='235.81' x2='366.90' y2='238.72' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='347.91,230.00 347.91,235.81 385.88,235.81 385.88,230.00 347.91,230.00 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='347.91' y1='230.00' x2='385.88' y2='230.00' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='417.52' cy='308.55' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='417.52' cy='294.00' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='417.52' y1='244.54' x2='417.52' y2='244.54' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='417.52' y1='253.27' x2='417.52' y2='253.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='398.54,244.54 398.54,253.27 436.51,253.27 436.51,244.54 398.54,244.54 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='398.54' y1='244.54' x2='436.51' y2='244.54' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='468.15' y1='232.90' x2='468.15' y2='232.90' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='468.15' y1='259.09' x2='468.15' y2='279.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='449.16,232.90 449.16,259.09 487.13,259.09 487.13,232.90 449.16,232.90 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='449.16' y1='253.27' x2='487.13' y2='253.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='32.78' y='208.76' width='465.74' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpMzIuNzh8NDk4LjUyfDM3OC4xMHw1MjUuMzE='>
|
||||
<rect x='32.78' y='378.10' width='465.74' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMzIuNzh8NDk4LjUyfDM3OC4xMHw1MjUuMzE=)'>
|
||||
<rect x='32.78' y='378.10' width='465.74' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='32.78,501.16 498.52,501.16 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='32.78,472.07 498.52,472.07 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='32.78,442.97 498.52,442.97 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='32.78,413.88 498.52,413.88 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='32.78,384.79 498.52,384.79 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='32.78,515.71 498.52,515.71 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='32.78,486.61 498.52,486.61 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='32.78,457.52 498.52,457.52 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='32.78,428.43 498.52,428.43 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='32.78,399.33 498.52,399.33 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='63.16,525.31 63.16,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='113.78,525.31 113.78,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='164.40,525.31 164.40,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='215.03,525.31 215.03,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='265.65,525.31 265.65,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='316.27,525.31 316.27,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='366.90,525.31 366.90,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='417.52,525.31 417.52,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='468.15,525.31 468.15,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<circle cx='63.16' cy='393.52' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='63.16' cy='393.52' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='63.16' y1='399.33' x2='63.16' y2='399.33' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='63.16' y1='402.24' x2='63.16' y2='405.15' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='44.17,399.33 44.17,402.24 82.14,402.24 82.14,399.33 44.17,399.33 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='44.17' y1='402.24' x2='82.14' y2='402.24' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='113.78' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='113.78' cy='504.07' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='113.78' y1='390.61' x2='113.78' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='113.78' y1='425.52' x2='113.78' y2='425.52' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='94.80,390.61 94.80,425.52 132.76,425.52 132.76,390.61 94.80,390.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='94.80' y1='402.24' x2='132.76' y2='402.24' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='164.40' cy='512.80' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='164.40' cy='501.16' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='164.40' y1='405.15' x2='164.40' y2='402.24' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='164.40' y1='422.61' x2='164.40' y2='422.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='145.42,405.15 145.42,422.61 183.39,422.61 183.39,405.15 145.42,405.15 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='145.42' y1='419.70' x2='183.39' y2='419.70' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='215.03' cy='506.98' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='215.03' y1='402.24' x2='215.03' y2='402.24' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='215.03' y1='434.25' x2='215.03' y2='434.25' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='196.04,402.24 196.04,434.25 234.01,434.25 234.01,402.24 196.04,402.24 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='196.04' y1='425.52' x2='234.01' y2='425.52' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='265.65' cy='506.98' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='265.65' y1='397.88' x2='265.65' y2='396.43' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='265.65' y1='437.15' x2='265.65' y2='437.15' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='246.67,397.88 246.67,437.15 284.63,437.15 284.63,397.88 246.67,397.88 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='246.67' y1='419.70' x2='284.63' y2='419.70' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='316.27' cy='501.16' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='316.27' y1='402.24' x2='316.27' y2='396.43' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='316.27' y1='426.25' x2='316.27' y2='431.34' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='297.29,402.24 297.29,426.25 335.26,426.25 335.26,402.24 297.29,402.24 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='297.29' y1='424.06' x2='335.26' y2='424.06' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='366.90' cy='425.52' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='366.90' cy='422.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='366.90' cy='416.79' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='366.90' cy='416.79' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='366.90' cy='495.34' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='366.90' y1='399.33' x2='366.90' y2='399.33' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='366.90' y1='405.15' x2='366.90' y2='405.15' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='347.91,399.33 347.91,405.15 385.88,405.15 385.88,399.33 347.91,399.33 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='347.91' y1='399.33' x2='385.88' y2='399.33' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='417.52' cy='486.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='417.52' y1='401.52' x2='417.52' y2='399.33' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='417.52' y1='422.61' x2='417.52' y2='422.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='398.54,401.52 398.54,422.61 436.51,422.61 436.51,401.52 398.54,401.52 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='398.54' y1='405.15' x2='436.51' y2='405.15' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='468.15' cy='463.34' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='468.15' y1='405.15' x2='468.15' y2='405.15' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='468.15' y1='422.61' x2='468.15' y2='422.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='449.16,405.15 449.16,422.61 487.13,422.61 487.13,405.15 449.16,405.15 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='449.16' y1='419.70' x2='487.13' y2='419.70' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='32.78' y='378.10' width='465.74' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpMzIuNzh8NDk4LjUyfDM2MS40NXwzNzguMTA='>
|
||||
<rect x='32.78' y='361.45' width='465.74' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMzIuNzh8NDk4LjUyfDM2MS40NXwzNzguMTA=)'>
|
||||
<rect x='32.78' y='361.45' width='465.74' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='265.65' y='372.80' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='27.88px' lengthAdjust='spacingAndGlyphs'>riscv64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpMzIuNzh8NDk4LjUyfDE5Mi4xMXwyMDguNzY='>
|
||||
<rect x='32.78' y='192.11' width='465.74' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMzIuNzh8NDk4LjUyfDE5Mi4xMXwyMDguNzY=)'>
|
||||
<rect x='32.78' y='192.11' width='465.74' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='265.65' y='203.46' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='31.78px' lengthAdjust='spacingAndGlyphs'>aarch64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpMzIuNzh8NDk4LjUyfDIyLjc3fDM5LjQy'>
|
||||
<rect x='32.78' y='22.77' width='465.74' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMzIuNzh8NDk4LjUyfDIyLjc3fDM5LjQy)'>
|
||||
<rect x='32.78' y='22.77' width='465.74' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='265.65' y='34.12' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='26.89px' lengthAdjust='spacingAndGlyphs'>amd64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
<polyline points='63.16,528.05 63.16,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='113.78,528.05 113.78,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='164.40,528.05 164.40,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='215.03,528.05 215.03,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='265.65,528.05 265.65,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='316.27,528.05 316.27,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='366.90,528.05 366.90,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='417.52,528.05 417.52,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='468.15,528.05 468.15,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text transform='translate(67.44,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='18.59px' lengthAdjust='spacingAndGlyphs'>zuse</text>
|
||||
<text transform='translate(118.06,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='31.28px' lengthAdjust='spacingAndGlyphs'>rajames</text>
|
||||
<text transform='translate(168.69,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>00</text>
|
||||
<text transform='translate(219.31,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>01</text>
|
||||
<text transform='translate(269.93,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>02</text>
|
||||
<text transform='translate(320.56,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>03</text>
|
||||
<text transform='translate(371.18,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>04</text>
|
||||
<text transform='translate(421.80,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>05</text>
|
||||
<text transform='translate(472.43,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>06</text>
|
||||
<text x='27.85' y='180.05' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>30</text>
|
||||
<text x='27.85' y='150.96' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>40</text>
|
||||
<text x='27.85' y='121.87' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>50</text>
|
||||
<text x='27.85' y='92.78' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>60</text>
|
||||
<text x='27.85' y='63.68' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>70</text>
|
||||
<polyline points='30.04,177.03 32.78,177.03 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='30.04,147.93 32.78,147.93 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='30.04,118.84 32.78,118.84 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='30.04,89.75 32.78,89.75 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='30.04,60.66 32.78,60.66 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='27.85' y='349.39' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>30</text>
|
||||
<text x='27.85' y='320.30' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>40</text>
|
||||
<text x='27.85' y='291.21' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>50</text>
|
||||
<text x='27.85' y='262.12' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>60</text>
|
||||
<text x='27.85' y='233.02' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>70</text>
|
||||
<polyline points='30.04,346.37 32.78,346.37 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='30.04,317.27 32.78,317.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='30.04,288.18 32.78,288.18 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='30.04,259.09 32.78,259.09 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='30.04,230.00 32.78,230.00 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='27.85' y='518.73' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>30</text>
|
||||
<text x='27.85' y='489.64' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>40</text>
|
||||
<text x='27.85' y='460.55' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>50</text>
|
||||
<text x='27.85' y='431.45' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>60</text>
|
||||
<text x='27.85' y='402.36' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>70</text>
|
||||
<polyline points='30.04,515.71 32.78,515.71 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='30.04,486.61 32.78,486.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='30.04,457.52 32.78,457.52 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='30.04,428.43 32.78,428.43 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='30.04,399.33 32.78,399.33 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='265.65' y='568.24' text-anchor='middle' style='font-size: 11.00px; font-family: "Liberation Sans";' textLength='35.50px' lengthAdjust='spacingAndGlyphs'>Identity</text>
|
||||
<text transform='translate(13.05,282.36) rotate(-90)' text-anchor='middle' style='font-size: 11.00px; font-family: "Liberation Sans";' textLength='74.03px' lengthAdjust='spacingAndGlyphs'>Hot word count</text>
|
||||
<text x='32.78' y='14.55' style='font-size: 13.20px; font-family: "Liberation Sans";' textLength='88.64px' lengthAdjust='spacingAndGlyphs'>Hot word count</text>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 42 KiB |
@@ -0,0 +1,356 @@
|
||||
<?xml version='1.0' encoding='UTF-8' ?>
|
||||
<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='504.00pt' height='576.00pt' viewBox='0 0 504.00 576.00'>
|
||||
<g class='svglite'>
|
||||
<defs>
|
||||
<style type='text/css'><![CDATA[
|
||||
.svglite line, .svglite polyline, .svglite polygon, .svglite path, .svglite rect, .svglite circle {
|
||||
fill: none;
|
||||
stroke: #000000;
|
||||
stroke-linecap: round;
|
||||
stroke-linejoin: round;
|
||||
stroke-miterlimit: 10.00;
|
||||
}
|
||||
.svglite text {
|
||||
white-space: pre;
|
||||
}
|
||||
.svglite g.glyphgroup path {
|
||||
fill: inherit;
|
||||
stroke: none;
|
||||
}
|
||||
]]></style>
|
||||
</defs>
|
||||
<rect width='100%' height='100%' style='stroke: none; fill: #FFFFFF;'/>
|
||||
<defs>
|
||||
<clipPath id='cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA='>
|
||||
<rect x='0.00' y='0.00' width='504.00' height='576.00' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
<rect x='0.00' y='0.00' width='504.00' height='576.00' style='stroke-width: 1.07; stroke: #FFFFFF; fill: #FFFFFF;' />
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNTUuMDN8NDk4LjUyfDM5LjQyfDE4Ni42Mw=='>
|
||||
<rect x='55.03' y='39.42' width='443.49' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNTUuMDN8NDk4LjUyfDM5LjQyfDE4Ni42Mw==)'>
|
||||
<rect x='55.03' y='39.42' width='443.49' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='55.03,161.80 498.52,161.80 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,125.53 498.52,125.53 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,89.25 498.52,89.25 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,52.98 498.52,52.98 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,179.94 498.52,179.94 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,143.66 498.52,143.66 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,107.39 498.52,107.39 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,71.11 498.52,71.11 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='83.95,186.63 83.95,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='132.16,186.63 132.16,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='180.37,186.63 180.37,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='228.57,186.63 228.57,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='276.78,186.63 276.78,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='324.98,186.63 324.98,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='373.19,186.63 373.19,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='421.39,186.63 421.39,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='469.60,186.63 469.60,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<line x1='83.95' y1='179.94' x2='83.95' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='83.95' y1='179.94' x2='83.95' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='65.88,179.94 65.88,179.94 102.03,179.94 102.03,179.94 65.88,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='65.88' y1='179.94' x2='102.03' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='132.16' cy='46.11' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='132.16' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='132.16' y1='179.94' x2='132.16' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='132.16' y1='179.94' x2='132.16' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='114.08,179.94 114.08,179.94 150.24,179.94 150.24,179.94 114.08,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='114.08' y1='179.94' x2='150.24' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='180.37' cy='46.11' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='180.37' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='180.37' y1='179.94' x2='180.37' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='180.37' y1='179.94' x2='180.37' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='162.29,179.94 162.29,179.94 198.44,179.94 198.44,179.94 162.29,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='162.29' y1='179.94' x2='198.44' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='228.57' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='228.57' y1='179.94' x2='228.57' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='228.57' y1='179.94' x2='228.57' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='210.49,179.94 210.49,179.94 246.65,179.94 246.65,179.94 210.49,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='210.49' y1='179.94' x2='246.65' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='276.78' cy='46.11' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='276.78' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='276.78' y1='179.94' x2='276.78' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='276.78' y1='179.94' x2='276.78' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='258.70,179.94 258.70,179.94 294.85,179.94 294.85,179.94 258.70,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='258.70' y1='179.94' x2='294.85' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='324.98' cy='46.11' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='324.98' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='324.98' cy='46.11' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='324.98' y1='179.94' x2='324.98' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='324.98' y1='179.94' x2='324.98' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='306.90,179.94 306.90,179.94 343.06,179.94 343.06,179.94 306.90,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='306.90' y1='179.94' x2='343.06' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='373.19' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='373.19' cy='46.11' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='373.19' y1='179.94' x2='373.19' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='373.19' y1='179.94' x2='373.19' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='355.11,179.94 355.11,179.94 391.26,179.94 391.26,179.94 355.11,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='355.11' y1='179.94' x2='391.26' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='421.39' cy='46.11' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='421.39' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='421.39' y1='179.94' x2='421.39' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='421.39' y1='179.94' x2='421.39' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='403.32,179.94 403.32,179.94 439.47,179.94 439.47,179.94 403.32,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='403.32' y1='179.94' x2='439.47' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='469.60' cy='46.11' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='469.60' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='469.60' y1='179.94' x2='469.60' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='469.60' y1='179.94' x2='469.60' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='451.52,179.94 451.52,179.94 487.67,179.94 487.67,179.94 451.52,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='451.52' y1='179.94' x2='487.67' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='55.03' y='39.42' width='443.49' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNTUuMDN8NDk4LjUyfDIwOC43NnwzNTUuOTc='>
|
||||
<rect x='55.03' y='208.76' width='443.49' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNTUuMDN8NDk4LjUyfDIwOC43NnwzNTUuOTc=)'>
|
||||
<rect x='55.03' y='208.76' width='443.49' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='55.03,331.14 498.52,331.14 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,294.86 498.52,294.86 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,258.59 498.52,258.59 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,222.32 498.52,222.32 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,349.27 498.52,349.27 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,313.00 498.52,313.00 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,276.73 498.52,276.73 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,240.45 498.52,240.45 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='83.95,355.97 83.95,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='132.16,355.97 132.16,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='180.37,355.97 180.37,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='228.57,355.97 228.57,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='276.78,355.97 276.78,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='324.98,355.97 324.98,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='373.19,355.97 373.19,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='421.39,355.97 421.39,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='469.60,355.97 469.60,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<line x1='83.95' y1='349.27' x2='83.95' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='83.95' y1='349.27' x2='83.95' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='65.88,349.27 65.88,349.27 102.03,349.27 102.03,349.27 65.88,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='65.88' y1='349.27' x2='102.03' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='132.16' y1='349.27' x2='132.16' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='132.16' y1='349.27' x2='132.16' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='114.08,349.27 114.08,349.27 150.24,349.27 150.24,349.27 114.08,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='114.08' y1='349.27' x2='150.24' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='180.37' cy='215.45' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='180.37' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='180.37' y1='349.27' x2='180.37' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='180.37' y1='349.27' x2='180.37' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='162.29,349.27 162.29,349.27 198.44,349.27 198.44,349.27 162.29,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='162.29' y1='349.27' x2='198.44' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='228.57' cy='215.45' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='228.57' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='228.57' y1='349.27' x2='228.57' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='228.57' y1='349.27' x2='228.57' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='210.49,349.27 210.49,349.27 246.65,349.27 246.65,349.27 210.49,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='210.49' y1='349.27' x2='246.65' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='276.78' cy='215.45' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='276.78' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='276.78' cy='215.45' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='276.78' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='276.78' y1='349.27' x2='276.78' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='276.78' y1='349.27' x2='276.78' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='258.70,349.27 258.70,349.27 294.85,349.27 294.85,349.27 258.70,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='258.70' y1='349.27' x2='294.85' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='324.98' cy='215.45' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='324.98' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='324.98' y1='349.27' x2='324.98' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='324.98' y1='349.27' x2='324.98' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='306.90,349.27 306.90,349.27 343.06,349.27 343.06,349.27 306.90,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='306.90' y1='349.27' x2='343.06' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='373.19' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='373.19' cy='215.45' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='373.19' y1='349.27' x2='373.19' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='373.19' y1='349.27' x2='373.19' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='355.11,349.27 355.11,349.27 391.26,349.27 391.26,349.27 355.11,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='355.11' y1='349.27' x2='391.26' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='421.39' cy='215.45' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='421.39' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='421.39' cy='215.45' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='421.39' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='421.39' y1='349.27' x2='421.39' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='421.39' y1='349.27' x2='421.39' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='403.32,349.27 403.32,349.27 439.47,349.27 439.47,349.27 403.32,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='403.32' y1='349.27' x2='439.47' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='469.60' cy='215.45' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='469.60' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='469.60' y1='349.27' x2='469.60' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='469.60' y1='349.27' x2='469.60' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='451.52,349.27 451.52,349.27 487.67,349.27 487.67,349.27 451.52,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='451.52' y1='349.27' x2='487.67' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='55.03' y='208.76' width='443.49' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNTUuMDN8NDk4LjUyfDM3OC4xMHw1MjUuMzE='>
|
||||
<rect x='55.03' y='378.10' width='443.49' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNTUuMDN8NDk4LjUyfDM3OC4xMHw1MjUuMzE=)'>
|
||||
<rect x='55.03' y='378.10' width='443.49' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='55.03,500.48 498.52,500.48 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,464.20 498.52,464.20 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,427.93 498.52,427.93 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,391.66 498.52,391.66 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,518.61 498.52,518.61 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,482.34 498.52,482.34 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,446.07 498.52,446.07 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='55.03,409.79 498.52,409.79 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='83.95,525.31 83.95,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='132.16,525.31 132.16,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='180.37,525.31 180.37,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='228.57,525.31 228.57,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='276.78,525.31 276.78,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='324.98,525.31 324.98,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='373.19,525.31 373.19,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='421.39,525.31 421.39,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='469.60,525.31 469.60,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<line x1='83.95' y1='518.61' x2='83.95' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='83.95' y1='518.61' x2='83.95' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='65.88,518.61 65.88,518.61 102.03,518.61 102.03,518.61 65.88,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='65.88' y1='518.61' x2='102.03' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='132.16' cy='384.79' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='132.16' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='132.16' cy='384.79' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='132.16' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='132.16' y1='518.61' x2='132.16' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='132.16' y1='518.61' x2='132.16' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='114.08,518.61 114.08,518.61 150.24,518.61 150.24,518.61 114.08,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='114.08' y1='518.61' x2='150.24' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='180.37' cy='384.79' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='180.37' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='180.37' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='180.37' y1='518.61' x2='180.37' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='180.37' y1='518.61' x2='180.37' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='162.29,518.61 162.29,518.61 198.44,518.61 198.44,518.61 162.29,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='162.29' y1='518.61' x2='198.44' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='228.57' cy='384.79' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='228.57' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='228.57' y1='518.61' x2='228.57' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='228.57' y1='518.61' x2='228.57' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='210.49,518.61 210.49,518.61 246.65,518.61 246.65,518.61 210.49,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='210.49' y1='518.61' x2='246.65' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='276.78' cy='384.79' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='276.78' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='276.78' y1='518.61' x2='276.78' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='276.78' y1='518.61' x2='276.78' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='258.70,518.61 258.70,518.61 294.85,518.61 294.85,518.61 258.70,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='258.70' y1='518.61' x2='294.85' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='324.98' cy='384.79' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='324.98' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='324.98' y1='518.61' x2='324.98' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='324.98' y1='518.61' x2='324.98' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='306.90,518.61 306.90,518.61 343.06,518.61 343.06,518.61 306.90,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='306.90' y1='518.61' x2='343.06' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='373.19' cy='384.79' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='373.19' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='373.19' y1='518.61' x2='373.19' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='373.19' y1='518.61' x2='373.19' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='355.11,518.61 355.11,518.61 391.26,518.61 391.26,518.61 355.11,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='355.11' y1='518.61' x2='391.26' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='421.39' cy='384.79' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='421.39' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='421.39' y1='518.61' x2='421.39' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='421.39' y1='518.61' x2='421.39' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='403.32,518.61 403.32,518.61 439.47,518.61 439.47,518.61 403.32,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='403.32' y1='518.61' x2='439.47' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='469.60' cy='384.79' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='469.60' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='469.60' cy='384.79' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='469.60' y1='518.61' x2='469.60' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='469.60' y1='518.61' x2='469.60' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='451.52,518.61 451.52,518.61 487.67,518.61 487.67,518.61 451.52,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='451.52' y1='518.61' x2='487.67' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='55.03' y='378.10' width='443.49' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNTUuMDN8NDk4LjUyfDM2MS40NXwzNzguMTA='>
|
||||
<rect x='55.03' y='361.45' width='443.49' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNTUuMDN8NDk4LjUyfDM2MS40NXwzNzguMTA=)'>
|
||||
<rect x='55.03' y='361.45' width='443.49' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='276.78' y='372.80' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='27.88px' lengthAdjust='spacingAndGlyphs'>riscv64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNTUuMDN8NDk4LjUyfDE5Mi4xMXwyMDguNzY='>
|
||||
<rect x='55.03' y='192.11' width='443.49' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNTUuMDN8NDk4LjUyfDE5Mi4xMXwyMDguNzY=)'>
|
||||
<rect x='55.03' y='192.11' width='443.49' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='276.78' y='203.46' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='31.78px' lengthAdjust='spacingAndGlyphs'>aarch64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNTUuMDN8NDk4LjUyfDIyLjc3fDM5LjQy'>
|
||||
<rect x='55.03' y='22.77' width='443.49' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNTUuMDN8NDk4LjUyfDIyLjc3fDM5LjQy)'>
|
||||
<rect x='55.03' y='22.77' width='443.49' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='276.78' y='34.12' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='26.89px' lengthAdjust='spacingAndGlyphs'>amd64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
<polyline points='83.95,528.05 83.95,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='132.16,528.05 132.16,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='180.37,528.05 180.37,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='228.57,528.05 228.57,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='276.78,528.05 276.78,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='324.98,528.05 324.98,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='373.19,528.05 373.19,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='421.39,528.05 421.39,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='469.60,528.05 469.60,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text transform='translate(88.24,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='18.59px' lengthAdjust='spacingAndGlyphs'>zuse</text>
|
||||
<text transform='translate(136.44,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='31.28px' lengthAdjust='spacingAndGlyphs'>rajames</text>
|
||||
<text transform='translate(184.65,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>00</text>
|
||||
<text transform='translate(232.85,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>01</text>
|
||||
<text transform='translate(281.06,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>02</text>
|
||||
<text transform='translate(329.26,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>03</text>
|
||||
<text transform='translate(377.47,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>04</text>
|
||||
<text transform='translate(425.67,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>05</text>
|
||||
<text transform='translate(473.88,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>06</text>
|
||||
<text x='50.10' y='182.96' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='32.03px' lengthAdjust='spacingAndGlyphs'>0.0e+00</text>
|
||||
<text x='50.10' y='146.69' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='32.03px' lengthAdjust='spacingAndGlyphs'>5.0e+18</text>
|
||||
<text x='50.10' y='110.42' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='32.03px' lengthAdjust='spacingAndGlyphs'>1.0e+19</text>
|
||||
<text x='50.10' y='74.14' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='32.03px' lengthAdjust='spacingAndGlyphs'>1.5e+19</text>
|
||||
<polyline points='52.29,179.94 55.03,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='52.29,143.66 55.03,143.66 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='52.29,107.39 55.03,107.39 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='52.29,71.11 55.03,71.11 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='50.10' y='352.30' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='32.03px' lengthAdjust='spacingAndGlyphs'>0.0e+00</text>
|
||||
<text x='50.10' y='316.03' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='32.03px' lengthAdjust='spacingAndGlyphs'>5.0e+18</text>
|
||||
<text x='50.10' y='279.76' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='32.03px' lengthAdjust='spacingAndGlyphs'>1.0e+19</text>
|
||||
<text x='50.10' y='243.48' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='32.03px' lengthAdjust='spacingAndGlyphs'>1.5e+19</text>
|
||||
<polyline points='52.29,349.27 55.03,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='52.29,313.00 55.03,313.00 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='52.29,276.73 55.03,276.73 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='52.29,240.45 55.03,240.45 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='50.10' y='521.64' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='32.03px' lengthAdjust='spacingAndGlyphs'>0.0e+00</text>
|
||||
<text x='50.10' y='485.37' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='32.03px' lengthAdjust='spacingAndGlyphs'>5.0e+18</text>
|
||||
<text x='50.10' y='449.09' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='32.03px' lengthAdjust='spacingAndGlyphs'>1.0e+19</text>
|
||||
<text x='50.10' y='412.82' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='32.03px' lengthAdjust='spacingAndGlyphs'>1.5e+19</text>
|
||||
<polyline points='52.29,518.61 55.03,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='52.29,482.34 55.03,482.34 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='52.29,446.07 55.03,446.07 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='52.29,409.79 55.03,409.79 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='276.78' y='568.24' text-anchor='middle' style='font-size: 11.00px; font-family: "Liberation Sans";' textLength='35.50px' lengthAdjust='spacingAndGlyphs'>Identity</text>
|
||||
<text transform='translate(13.05,282.36) rotate(-90)' text-anchor='middle' style='font-size: 11.00px; font-family: "Liberation Sans";' textLength='122.28px' lengthAdjust='spacingAndGlyphs'>Estimated timer jitter (ns)</text>
|
||||
<text x='55.03' y='14.55' style='font-size: 13.20px; font-family: "Liberation Sans";' textLength='146.48px' lengthAdjust='spacingAndGlyphs'>Estimated timer jitter (ns)</text>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 41 KiB |
@@ -0,0 +1,311 @@
|
||||
<?xml version='1.0' encoding='UTF-8' ?>
|
||||
<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='504.00pt' height='576.00pt' viewBox='0 0 504.00 576.00'>
|
||||
<g class='svglite'>
|
||||
<defs>
|
||||
<style type='text/css'><![CDATA[
|
||||
.svglite line, .svglite polyline, .svglite polygon, .svglite path, .svglite rect, .svglite circle {
|
||||
fill: none;
|
||||
stroke: #000000;
|
||||
stroke-linecap: round;
|
||||
stroke-linejoin: round;
|
||||
stroke-miterlimit: 10.00;
|
||||
}
|
||||
.svglite text {
|
||||
white-space: pre;
|
||||
}
|
||||
.svglite g.glyphgroup path {
|
||||
fill: inherit;
|
||||
stroke: none;
|
||||
}
|
||||
]]></style>
|
||||
</defs>
|
||||
<rect width='100%' height='100%' style='stroke: none; fill: #FFFFFF;'/>
|
||||
<defs>
|
||||
<clipPath id='cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA='>
|
||||
<rect x='0.00' y='0.00' width='504.00' height='576.00' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
<rect x='0.00' y='0.00' width='504.00' height='576.00' style='stroke-width: 1.07; stroke: #FFFFFF; fill: #FFFFFF;' />
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpMzUuMjJ8NDk4LjUyfDM5LjQyfDE4Ni42Mw=='>
|
||||
<rect x='35.22' y='39.42' width='463.30' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMzUuMjJ8NDk4LjUyfDM5LjQyfDE4Ni42Mw==)'>
|
||||
<rect x='35.22' y='39.42' width='463.30' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='35.22,167.21 498.52,167.21 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,132.61 498.52,132.61 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,98.01 498.52,98.01 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,63.41 498.52,63.41 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,184.52 498.52,184.52 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,149.91 498.52,149.91 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,115.31 498.52,115.31 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,80.71 498.52,80.71 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,46.11 498.52,46.11 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='65.43,186.63 65.43,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='115.79,186.63 115.79,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='166.15,186.63 166.15,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='216.51,186.63 216.51,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='266.87,186.63 266.87,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='317.23,186.63 317.23,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='367.59,186.63 367.59,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='417.95,186.63 417.95,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='468.31,186.63 468.31,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<line x1='65.43' y1='179.94' x2='65.43' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='65.43' y1='179.94' x2='65.43' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='46.55,179.94 46.55,179.94 84.32,179.94 84.32,179.94 46.55,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='46.55' y1='179.94' x2='84.32' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='115.79' y1='179.94' x2='115.79' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='115.79' y1='179.94' x2='115.79' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='96.91,179.94 96.91,179.94 134.68,179.94 134.68,179.94 96.91,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='96.91' y1='179.94' x2='134.68' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='166.15' y1='179.94' x2='166.15' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='166.15' y1='179.94' x2='166.15' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='147.27,179.94 147.27,179.94 185.04,179.94 185.04,179.94 147.27,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='147.27' y1='179.94' x2='185.04' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='216.51' y1='179.94' x2='216.51' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='216.51' y1='179.94' x2='216.51' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='197.63,179.94 197.63,179.94 235.40,179.94 235.40,179.94 197.63,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='197.63' y1='179.94' x2='235.40' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='266.87' y1='179.94' x2='266.87' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='266.87' y1='179.94' x2='266.87' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='247.99,179.94 247.99,179.94 285.75,179.94 285.75,179.94 247.99,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='247.99' y1='179.94' x2='285.75' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='317.23' y1='179.94' x2='317.23' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='317.23' y1='179.94' x2='317.23' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='298.34,179.94 298.34,179.94 336.11,179.94 336.11,179.94 298.34,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='298.34' y1='179.94' x2='336.11' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='367.59' y1='179.94' x2='367.59' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='367.59' y1='179.94' x2='367.59' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='348.70,179.94 348.70,179.94 386.47,179.94 386.47,179.94 348.70,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='348.70' y1='179.94' x2='386.47' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='417.95' y1='179.94' x2='417.95' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='417.95' y1='179.94' x2='417.95' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='399.06,179.94 399.06,179.94 436.83,179.94 436.83,179.94 399.06,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='399.06' y1='179.94' x2='436.83' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='468.31' y1='179.94' x2='468.31' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='468.31' y1='179.94' x2='468.31' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='449.42,179.94 449.42,179.94 487.19,179.94 487.19,179.94 449.42,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='449.42' y1='179.94' x2='487.19' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='35.22' y='39.42' width='463.30' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpMzUuMjJ8NDk4LjUyfDIwOC43NnwzNTUuOTc='>
|
||||
<rect x='35.22' y='208.76' width='463.30' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMzUuMjJ8NDk4LjUyfDIwOC43NnwzNTUuOTc=)'>
|
||||
<rect x='35.22' y='208.76' width='463.30' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='35.22,336.55 498.52,336.55 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,301.95 498.52,301.95 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,267.35 498.52,267.35 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,232.75 498.52,232.75 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,353.85 498.52,353.85 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,319.25 498.52,319.25 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,284.65 498.52,284.65 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,250.05 498.52,250.05 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,215.45 498.52,215.45 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='65.43,355.97 65.43,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='115.79,355.97 115.79,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='166.15,355.97 166.15,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='216.51,355.97 216.51,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='266.87,355.97 266.87,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='317.23,355.97 317.23,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='367.59,355.97 367.59,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='417.95,355.97 417.95,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='468.31,355.97 468.31,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<line x1='65.43' y1='215.45' x2='65.43' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='65.43' y1='215.45' x2='65.43' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='46.55,215.45 46.55,215.45 84.32,215.45 84.32,215.45 46.55,215.45 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='46.55' y1='215.45' x2='84.32' y2='215.45' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='115.79' y1='215.45' x2='115.79' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='115.79' y1='215.45' x2='115.79' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='96.91,215.45 96.91,215.45 134.68,215.45 134.68,215.45 96.91,215.45 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='96.91' y1='215.45' x2='134.68' y2='215.45' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='166.15' y1='215.45' x2='166.15' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='166.15' y1='215.45' x2='166.15' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='147.27,215.45 147.27,215.45 185.04,215.45 185.04,215.45 147.27,215.45 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='147.27' y1='215.45' x2='185.04' y2='215.45' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='216.51' y1='215.45' x2='216.51' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='216.51' y1='215.45' x2='216.51' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='197.63,215.45 197.63,215.45 235.40,215.45 235.40,215.45 197.63,215.45 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='197.63' y1='215.45' x2='235.40' y2='215.45' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='266.87' y1='215.45' x2='266.87' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='266.87' y1='215.45' x2='266.87' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='247.99,215.45 247.99,215.45 285.75,215.45 285.75,215.45 247.99,215.45 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='247.99' y1='215.45' x2='285.75' y2='215.45' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='317.23' y1='215.45' x2='317.23' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='317.23' y1='215.45' x2='317.23' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='298.34,215.45 298.34,215.45 336.11,215.45 336.11,215.45 298.34,215.45 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='298.34' y1='215.45' x2='336.11' y2='215.45' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='367.59' y1='215.45' x2='367.59' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='367.59' y1='215.45' x2='367.59' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='348.70,215.45 348.70,215.45 386.47,215.45 386.47,215.45 348.70,215.45 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='348.70' y1='215.45' x2='386.47' y2='215.45' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='417.95' y1='215.45' x2='417.95' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='417.95' y1='215.45' x2='417.95' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='399.06,215.45 399.06,215.45 436.83,215.45 436.83,215.45 399.06,215.45 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='399.06' y1='215.45' x2='436.83' y2='215.45' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='468.31' y1='215.45' x2='468.31' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='468.31' y1='215.45' x2='468.31' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='449.42,215.45 449.42,215.45 487.19,215.45 487.19,215.45 449.42,215.45 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='449.42' y1='215.45' x2='487.19' y2='215.45' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='35.22' y='208.76' width='463.30' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpMzUuMjJ8NDk4LjUyfDM3OC4xMHw1MjUuMzE='>
|
||||
<rect x='35.22' y='378.10' width='463.30' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMzUuMjJ8NDk4LjUyfDM3OC4xMHw1MjUuMzE=)'>
|
||||
<rect x='35.22' y='378.10' width='463.30' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='35.22,505.89 498.52,505.89 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,471.29 498.52,471.29 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,436.69 498.52,436.69 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,402.09 498.52,402.09 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,523.19 498.52,523.19 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,488.59 498.52,488.59 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,453.99 498.52,453.99 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,419.39 498.52,419.39 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,384.79 498.52,384.79 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='65.43,525.31 65.43,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='115.79,525.31 115.79,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='166.15,525.31 166.15,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='216.51,525.31 216.51,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='266.87,525.31 266.87,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='317.23,525.31 317.23,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='367.59,525.31 367.59,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='417.95,525.31 417.95,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='468.31,525.31 468.31,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<line x1='65.43' y1='384.79' x2='65.43' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='65.43' y1='384.79' x2='65.43' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='46.55,384.79 46.55,384.79 84.32,384.79 84.32,384.79 46.55,384.79 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='46.55' y1='384.79' x2='84.32' y2='384.79' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='115.79' y1='384.79' x2='115.79' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='115.79' y1='384.79' x2='115.79' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='96.91,384.79 96.91,384.79 134.68,384.79 134.68,384.79 96.91,384.79 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='96.91' y1='384.79' x2='134.68' y2='384.79' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='166.15' y1='384.79' x2='166.15' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='166.15' y1='384.79' x2='166.15' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='147.27,384.79 147.27,384.79 185.04,384.79 185.04,384.79 147.27,384.79 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='147.27' y1='384.79' x2='185.04' y2='384.79' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='216.51' y1='384.79' x2='216.51' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='216.51' y1='384.79' x2='216.51' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='197.63,384.79 197.63,384.79 235.40,384.79 235.40,384.79 197.63,384.79 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='197.63' y1='384.79' x2='235.40' y2='384.79' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='266.87' y1='384.79' x2='266.87' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='266.87' y1='384.79' x2='266.87' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='247.99,384.79 247.99,384.79 285.75,384.79 285.75,384.79 247.99,384.79 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='247.99' y1='384.79' x2='285.75' y2='384.79' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='317.23' y1='384.79' x2='317.23' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='317.23' y1='384.79' x2='317.23' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='298.34,384.79 298.34,384.79 336.11,384.79 336.11,384.79 298.34,384.79 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='298.34' y1='384.79' x2='336.11' y2='384.79' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='367.59' y1='384.79' x2='367.59' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='367.59' y1='384.79' x2='367.59' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='348.70,384.79 348.70,384.79 386.47,384.79 386.47,384.79 348.70,384.79 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='348.70' y1='384.79' x2='386.47' y2='384.79' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='417.95' y1='384.79' x2='417.95' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='417.95' y1='384.79' x2='417.95' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='399.06,384.79 399.06,384.79 436.83,384.79 436.83,384.79 399.06,384.79 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='399.06' y1='384.79' x2='436.83' y2='384.79' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='468.31' y1='384.79' x2='468.31' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='468.31' y1='384.79' x2='468.31' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='449.42,384.79 449.42,384.79 487.19,384.79 487.19,384.79 449.42,384.79 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='449.42' y1='384.79' x2='487.19' y2='384.79' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='35.22' y='378.10' width='463.30' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpMzUuMjJ8NDk4LjUyfDM2MS40NXwzNzguMTA='>
|
||||
<rect x='35.22' y='361.45' width='463.30' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMzUuMjJ8NDk4LjUyfDM2MS40NXwzNzguMTA=)'>
|
||||
<rect x='35.22' y='361.45' width='463.30' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='266.87' y='372.80' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='27.88px' lengthAdjust='spacingAndGlyphs'>riscv64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpMzUuMjJ8NDk4LjUyfDE5Mi4xMXwyMDguNzY='>
|
||||
<rect x='35.22' y='192.11' width='463.30' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMzUuMjJ8NDk4LjUyfDE5Mi4xMXwyMDguNzY=)'>
|
||||
<rect x='35.22' y='192.11' width='463.30' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='266.87' y='203.46' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='31.78px' lengthAdjust='spacingAndGlyphs'>aarch64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpMzUuMjJ8NDk4LjUyfDIyLjc3fDM5LjQy'>
|
||||
<rect x='35.22' y='22.77' width='463.30' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMzUuMjJ8NDk4LjUyfDIyLjc3fDM5LjQy)'>
|
||||
<rect x='35.22' y='22.77' width='463.30' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='266.87' y='34.12' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='26.89px' lengthAdjust='spacingAndGlyphs'>amd64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
<polyline points='65.43,528.05 65.43,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='115.79,528.05 115.79,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='166.15,528.05 166.15,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='216.51,528.05 216.51,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='266.87,528.05 266.87,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='317.23,528.05 317.23,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='367.59,528.05 367.59,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='417.95,528.05 417.95,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='468.31,528.05 468.31,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text transform='translate(69.72,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='18.59px' lengthAdjust='spacingAndGlyphs'>zuse</text>
|
||||
<text transform='translate(120.07,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='31.28px' lengthAdjust='spacingAndGlyphs'>rajames</text>
|
||||
<text transform='translate(170.43,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>00</text>
|
||||
<text transform='translate(220.79,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>01</text>
|
||||
<text transform='translate(271.15,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>02</text>
|
||||
<text transform='translate(321.51,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>03</text>
|
||||
<text transform='translate(371.87,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>04</text>
|
||||
<text transform='translate(422.23,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>05</text>
|
||||
<text transform='translate(472.59,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>06</text>
|
||||
<text x='30.29' y='187.54' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='12.22px' lengthAdjust='spacingAndGlyphs'>0.6</text>
|
||||
<text x='30.29' y='152.94' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='12.22px' lengthAdjust='spacingAndGlyphs'>0.7</text>
|
||||
<text x='30.29' y='118.34' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='12.22px' lengthAdjust='spacingAndGlyphs'>0.8</text>
|
||||
<text x='30.29' y='83.74' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='12.22px' lengthAdjust='spacingAndGlyphs'>0.9</text>
|
||||
<text x='30.29' y='49.14' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='12.22px' lengthAdjust='spacingAndGlyphs'>1.0</text>
|
||||
<polyline points='32.48,184.52 35.22,184.52 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='32.48,149.91 35.22,149.91 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='32.48,115.31 35.22,115.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='32.48,80.71 35.22,80.71 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='32.48,46.11 35.22,46.11 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='30.29' y='356.88' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='12.22px' lengthAdjust='spacingAndGlyphs'>0.6</text>
|
||||
<text x='30.29' y='322.28' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='12.22px' lengthAdjust='spacingAndGlyphs'>0.7</text>
|
||||
<text x='30.29' y='287.68' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='12.22px' lengthAdjust='spacingAndGlyphs'>0.8</text>
|
||||
<text x='30.29' y='253.08' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='12.22px' lengthAdjust='spacingAndGlyphs'>0.9</text>
|
||||
<text x='30.29' y='218.48' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='12.22px' lengthAdjust='spacingAndGlyphs'>1.0</text>
|
||||
<polyline points='32.48,353.85 35.22,353.85 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='32.48,319.25 35.22,319.25 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='32.48,284.65 35.22,284.65 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='32.48,250.05 35.22,250.05 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='32.48,215.45 35.22,215.45 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='30.29' y='526.22' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='12.22px' lengthAdjust='spacingAndGlyphs'>0.6</text>
|
||||
<text x='30.29' y='491.62' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='12.22px' lengthAdjust='spacingAndGlyphs'>0.7</text>
|
||||
<text x='30.29' y='457.02' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='12.22px' lengthAdjust='spacingAndGlyphs'>0.8</text>
|
||||
<text x='30.29' y='422.42' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='12.22px' lengthAdjust='spacingAndGlyphs'>0.9</text>
|
||||
<text x='30.29' y='387.82' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='12.22px' lengthAdjust='spacingAndGlyphs'>1.0</text>
|
||||
<polyline points='32.48,523.19 35.22,523.19 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='32.48,488.59 35.22,488.59 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='32.48,453.99 35.22,453.99 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='32.48,419.39 35.22,419.39 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='32.48,384.79 35.22,384.79 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='266.87' y='568.24' text-anchor='middle' style='font-size: 11.00px; font-family: "Liberation Sans";' textLength='35.50px' lengthAdjust='spacingAndGlyphs'>Identity</text>
|
||||
<text transform='translate(13.05,282.36) rotate(-90)' text-anchor='middle' style='font-size: 11.00px; font-family: "Liberation Sans";' textLength='66.59px' lengthAdjust='spacingAndGlyphs'>TIME-TRUST</text>
|
||||
<text x='35.22' y='14.55' style='font-size: 13.20px; font-family: "Liberation Sans";' textLength='79.88px' lengthAdjust='spacingAndGlyphs'>TIME-TRUST</text>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 34 KiB |
@@ -0,0 +1,299 @@
|
||||
<?xml version='1.0' encoding='UTF-8' ?>
|
||||
<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='504.00pt' height='576.00pt' viewBox='0 0 504.00 576.00'>
|
||||
<g class='svglite'>
|
||||
<defs>
|
||||
<style type='text/css'><![CDATA[
|
||||
.svglite line, .svglite polyline, .svglite polygon, .svglite path, .svglite rect, .svglite circle {
|
||||
fill: none;
|
||||
stroke: #000000;
|
||||
stroke-linecap: round;
|
||||
stroke-linejoin: round;
|
||||
stroke-miterlimit: 10.00;
|
||||
}
|
||||
.svglite text {
|
||||
white-space: pre;
|
||||
}
|
||||
.svglite g.glyphgroup path {
|
||||
fill: inherit;
|
||||
stroke: none;
|
||||
}
|
||||
]]></style>
|
||||
</defs>
|
||||
<rect width='100%' height='100%' style='stroke: none; fill: #FFFFFF;'/>
|
||||
<defs>
|
||||
<clipPath id='cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA='>
|
||||
<rect x='0.00' y='0.00' width='504.00' height='576.00' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
<rect x='0.00' y='0.00' width='504.00' height='576.00' style='stroke-width: 1.07; stroke: #FFFFFF; fill: #FFFFFF;' />
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpMzUuMjJ8NDk4LjUyfDM5LjQyfDE4Ni42Mw=='>
|
||||
<rect x='35.22' y='39.42' width='463.30' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMzUuMjJ8NDk4LjUyfDM5LjQyfDE4Ni42Mw==)'>
|
||||
<rect x='35.22' y='39.42' width='463.30' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='35.22,158.72 498.52,158.72 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,116.28 498.52,116.28 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,73.84 498.52,73.84 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,179.94 498.52,179.94 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,137.50 498.52,137.50 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,95.06 498.52,95.06 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,52.62 498.52,52.62 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='65.43,186.63 65.43,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='115.79,186.63 115.79,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='166.15,186.63 166.15,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='216.51,186.63 216.51,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='266.87,186.63 266.87,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='317.23,186.63 317.23,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='367.59,186.63 367.59,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='417.95,186.63 417.95,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='468.31,186.63 468.31,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<line x1='65.43' y1='46.11' x2='65.43' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='65.43' y1='46.11' x2='65.43' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='46.55,46.11 46.55,46.11 84.32,46.11 84.32,46.11 46.55,46.11 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='46.55' y1='46.11' x2='84.32' y2='46.11' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='115.79' y1='46.11' x2='115.79' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='115.79' y1='46.11' x2='115.79' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='96.91,46.11 96.91,46.11 134.68,46.11 134.68,46.11 96.91,46.11 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='96.91' y1='46.11' x2='134.68' y2='46.11' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='166.15' y1='46.11' x2='166.15' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='166.15' y1='46.11' x2='166.15' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='147.27,46.11 147.27,46.11 185.04,46.11 185.04,46.11 147.27,46.11 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='147.27' y1='46.11' x2='185.04' y2='46.11' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='216.51' y1='46.11' x2='216.51' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='216.51' y1='46.11' x2='216.51' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='197.63,46.11 197.63,46.11 235.40,46.11 235.40,46.11 197.63,46.11 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='197.63' y1='46.11' x2='235.40' y2='46.11' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='266.87' y1='46.11' x2='266.87' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='266.87' y1='46.11' x2='266.87' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='247.99,46.11 247.99,46.11 285.75,46.11 285.75,46.11 247.99,46.11 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='247.99' y1='46.11' x2='285.75' y2='46.11' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='317.23' y1='46.11' x2='317.23' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='317.23' y1='46.11' x2='317.23' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='298.34,46.11 298.34,46.11 336.11,46.11 336.11,46.11 298.34,46.11 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='298.34' y1='46.11' x2='336.11' y2='46.11' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='367.59' y1='46.11' x2='367.59' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='367.59' y1='46.11' x2='367.59' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='348.70,46.11 348.70,46.11 386.47,46.11 386.47,46.11 348.70,46.11 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='348.70' y1='46.11' x2='386.47' y2='46.11' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='417.95' y1='46.11' x2='417.95' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='417.95' y1='46.11' x2='417.95' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='399.06,46.11 399.06,46.11 436.83,46.11 436.83,46.11 399.06,46.11 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='399.06' y1='46.11' x2='436.83' y2='46.11' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='468.31' y1='46.11' x2='468.31' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='468.31' y1='46.11' x2='468.31' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='449.42,46.11 449.42,46.11 487.19,46.11 487.19,46.11 449.42,46.11 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='449.42' y1='46.11' x2='487.19' y2='46.11' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='35.22' y='39.42' width='463.30' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpMzUuMjJ8NDk4LjUyfDIwOC43NnwzNTUuOTc='>
|
||||
<rect x='35.22' y='208.76' width='463.30' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMzUuMjJ8NDk4LjUyfDIwOC43NnwzNTUuOTc=)'>
|
||||
<rect x='35.22' y='208.76' width='463.30' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='35.22,328.06 498.52,328.06 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,285.62 498.52,285.62 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,243.18 498.52,243.18 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,349.27 498.52,349.27 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,306.84 498.52,306.84 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,264.40 498.52,264.40 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,221.96 498.52,221.96 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='65.43,355.97 65.43,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='115.79,355.97 115.79,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='166.15,355.97 166.15,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='216.51,355.97 216.51,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='266.87,355.97 266.87,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='317.23,355.97 317.23,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='367.59,355.97 367.59,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='417.95,355.97 417.95,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='468.31,355.97 468.31,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<line x1='65.43' y1='349.27' x2='65.43' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='65.43' y1='349.27' x2='65.43' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='46.55,349.27 46.55,349.27 84.32,349.27 84.32,349.27 46.55,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='46.55' y1='349.27' x2='84.32' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='115.79' y1='349.27' x2='115.79' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='115.79' y1='349.27' x2='115.79' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='96.91,349.27 96.91,349.27 134.68,349.27 134.68,349.27 96.91,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='96.91' y1='349.27' x2='134.68' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='166.15' y1='349.27' x2='166.15' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='166.15' y1='349.27' x2='166.15' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='147.27,349.27 147.27,349.27 185.04,349.27 185.04,349.27 147.27,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='147.27' y1='349.27' x2='185.04' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='216.51' y1='349.27' x2='216.51' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='216.51' y1='349.27' x2='216.51' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='197.63,349.27 197.63,349.27 235.40,349.27 235.40,349.27 197.63,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='197.63' y1='349.27' x2='235.40' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='266.87' y1='349.27' x2='266.87' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='266.87' y1='349.27' x2='266.87' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='247.99,349.27 247.99,349.27 285.75,349.27 285.75,349.27 247.99,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='247.99' y1='349.27' x2='285.75' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='317.23' y1='349.27' x2='317.23' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='317.23' y1='349.27' x2='317.23' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='298.34,349.27 298.34,349.27 336.11,349.27 336.11,349.27 298.34,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='298.34' y1='349.27' x2='336.11' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='367.59' y1='349.27' x2='367.59' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='367.59' y1='349.27' x2='367.59' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='348.70,349.27 348.70,349.27 386.47,349.27 386.47,349.27 348.70,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='348.70' y1='349.27' x2='386.47' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='417.95' y1='349.27' x2='417.95' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='417.95' y1='349.27' x2='417.95' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='399.06,349.27 399.06,349.27 436.83,349.27 436.83,349.27 399.06,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='399.06' y1='349.27' x2='436.83' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='468.31' y1='349.27' x2='468.31' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='468.31' y1='349.27' x2='468.31' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='449.42,349.27 449.42,349.27 487.19,349.27 487.19,349.27 449.42,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='449.42' y1='349.27' x2='487.19' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='35.22' y='208.76' width='463.30' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpMzUuMjJ8NDk4LjUyfDM3OC4xMHw1MjUuMzE='>
|
||||
<rect x='35.22' y='378.10' width='463.30' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMzUuMjJ8NDk4LjUyfDM3OC4xMHw1MjUuMzE=)'>
|
||||
<rect x='35.22' y='378.10' width='463.30' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='35.22,497.39 498.52,497.39 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,454.96 498.52,454.96 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,412.52 498.52,412.52 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,518.61 498.52,518.61 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,476.18 498.52,476.18 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,433.74 498.52,433.74 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='35.22,391.30 498.52,391.30 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='65.43,525.31 65.43,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='115.79,525.31 115.79,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='166.15,525.31 166.15,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='216.51,525.31 216.51,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='266.87,525.31 266.87,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='317.23,525.31 317.23,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='367.59,525.31 367.59,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='417.95,525.31 417.95,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='468.31,525.31 468.31,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<line x1='65.43' y1='518.61' x2='65.43' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='65.43' y1='518.61' x2='65.43' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='46.55,518.61 46.55,518.61 84.32,518.61 84.32,518.61 46.55,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='46.55' y1='518.61' x2='84.32' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='115.79' y1='518.61' x2='115.79' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='115.79' y1='518.61' x2='115.79' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='96.91,518.61 96.91,518.61 134.68,518.61 134.68,518.61 96.91,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='96.91' y1='518.61' x2='134.68' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='166.15' y1='518.61' x2='166.15' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='166.15' y1='518.61' x2='166.15' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='147.27,518.61 147.27,518.61 185.04,518.61 185.04,518.61 147.27,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='147.27' y1='518.61' x2='185.04' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='216.51' y1='518.61' x2='216.51' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='216.51' y1='518.61' x2='216.51' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='197.63,518.61 197.63,518.61 235.40,518.61 235.40,518.61 197.63,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='197.63' y1='518.61' x2='235.40' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='266.87' y1='518.61' x2='266.87' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='266.87' y1='518.61' x2='266.87' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='247.99,518.61 247.99,518.61 285.75,518.61 285.75,518.61 247.99,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='247.99' y1='518.61' x2='285.75' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='317.23' y1='518.61' x2='317.23' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='317.23' y1='518.61' x2='317.23' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='298.34,518.61 298.34,518.61 336.11,518.61 336.11,518.61 298.34,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='298.34' y1='518.61' x2='336.11' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='367.59' y1='518.61' x2='367.59' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='367.59' y1='518.61' x2='367.59' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='348.70,518.61 348.70,518.61 386.47,518.61 386.47,518.61 348.70,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='348.70' y1='518.61' x2='386.47' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='417.95' y1='518.61' x2='417.95' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='417.95' y1='518.61' x2='417.95' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='399.06,518.61 399.06,518.61 436.83,518.61 436.83,518.61 399.06,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='399.06' y1='518.61' x2='436.83' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='468.31' y1='518.61' x2='468.31' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='468.31' y1='518.61' x2='468.31' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='449.42,518.61 449.42,518.61 487.19,518.61 487.19,518.61 449.42,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='449.42' y1='518.61' x2='487.19' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='35.22' y='378.10' width='463.30' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpMzUuMjJ8NDk4LjUyfDM2MS40NXwzNzguMTA='>
|
||||
<rect x='35.22' y='361.45' width='463.30' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMzUuMjJ8NDk4LjUyfDM2MS40NXwzNzguMTA=)'>
|
||||
<rect x='35.22' y='361.45' width='463.30' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='266.87' y='372.80' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='27.88px' lengthAdjust='spacingAndGlyphs'>riscv64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpMzUuMjJ8NDk4LjUyfDE5Mi4xMXwyMDguNzY='>
|
||||
<rect x='35.22' y='192.11' width='463.30' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMzUuMjJ8NDk4LjUyfDE5Mi4xMXwyMDguNzY=)'>
|
||||
<rect x='35.22' y='192.11' width='463.30' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='266.87' y='203.46' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='31.78px' lengthAdjust='spacingAndGlyphs'>aarch64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpMzUuMjJ8NDk4LjUyfDIyLjc3fDM5LjQy'>
|
||||
<rect x='35.22' y='22.77' width='463.30' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMzUuMjJ8NDk4LjUyfDIyLjc3fDM5LjQy)'>
|
||||
<rect x='35.22' y='22.77' width='463.30' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='266.87' y='34.12' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='26.89px' lengthAdjust='spacingAndGlyphs'>amd64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
<polyline points='65.43,528.05 65.43,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='115.79,528.05 115.79,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='166.15,528.05 166.15,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='216.51,528.05 216.51,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='266.87,528.05 266.87,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='317.23,528.05 317.23,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='367.59,528.05 367.59,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='417.95,528.05 417.95,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='468.31,528.05 468.31,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text transform='translate(69.72,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='18.59px' lengthAdjust='spacingAndGlyphs'>zuse</text>
|
||||
<text transform='translate(120.07,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='31.28px' lengthAdjust='spacingAndGlyphs'>rajames</text>
|
||||
<text transform='translate(170.43,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>00</text>
|
||||
<text transform='translate(220.79,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>01</text>
|
||||
<text transform='translate(271.15,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>02</text>
|
||||
<text transform='translate(321.51,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>03</text>
|
||||
<text transform='translate(371.87,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>04</text>
|
||||
<text transform='translate(422.23,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>05</text>
|
||||
<text transform='translate(472.59,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>06</text>
|
||||
<text x='30.29' y='182.96' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='12.22px' lengthAdjust='spacingAndGlyphs'>0.0</text>
|
||||
<text x='30.29' y='140.52' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='12.22px' lengthAdjust='spacingAndGlyphs'>0.2</text>
|
||||
<text x='30.29' y='98.09' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='12.22px' lengthAdjust='spacingAndGlyphs'>0.4</text>
|
||||
<text x='30.29' y='55.65' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='12.22px' lengthAdjust='spacingAndGlyphs'>0.6</text>
|
||||
<polyline points='32.48,179.94 35.22,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='32.48,137.50 35.22,137.50 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='32.48,95.06 35.22,95.06 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='32.48,52.62 35.22,52.62 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='30.29' y='352.30' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='12.22px' lengthAdjust='spacingAndGlyphs'>0.0</text>
|
||||
<text x='30.29' y='309.86' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='12.22px' lengthAdjust='spacingAndGlyphs'>0.2</text>
|
||||
<text x='30.29' y='267.42' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='12.22px' lengthAdjust='spacingAndGlyphs'>0.4</text>
|
||||
<text x='30.29' y='224.99' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='12.22px' lengthAdjust='spacingAndGlyphs'>0.6</text>
|
||||
<polyline points='32.48,349.27 35.22,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='32.48,306.84 35.22,306.84 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='32.48,264.40 35.22,264.40 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='32.48,221.96 35.22,221.96 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='30.29' y='521.64' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='12.22px' lengthAdjust='spacingAndGlyphs'>0.0</text>
|
||||
<text x='30.29' y='479.20' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='12.22px' lengthAdjust='spacingAndGlyphs'>0.2</text>
|
||||
<text x='30.29' y='436.76' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='12.22px' lengthAdjust='spacingAndGlyphs'>0.4</text>
|
||||
<text x='30.29' y='394.33' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='12.22px' lengthAdjust='spacingAndGlyphs'>0.6</text>
|
||||
<polyline points='32.48,518.61 35.22,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='32.48,476.18 35.22,476.18 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='32.48,433.74 35.22,433.74 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='32.48,391.30 35.22,391.30 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='266.87' y='568.24' text-anchor='middle' style='font-size: 11.00px; font-family: "Liberation Sans";' textLength='35.50px' lengthAdjust='spacingAndGlyphs'>Identity</text>
|
||||
<text transform='translate(13.05,282.36) rotate(-90)' text-anchor='middle' style='font-size: 11.00px; font-family: "Liberation Sans";' textLength='77.25px' lengthAdjust='spacingAndGlyphs'>Timing variance</text>
|
||||
<text x='35.22' y='14.55' style='font-size: 13.20px; font-family: "Liberation Sans";' textLength='92.58px' lengthAdjust='spacingAndGlyphs'>Timing variance</text>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 33 KiB |
@@ -0,0 +1,338 @@
|
||||
<?xml version='1.0' encoding='UTF-8' ?>
|
||||
<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='504.00pt' height='576.00pt' viewBox='0 0 504.00 576.00'>
|
||||
<g class='svglite'>
|
||||
<defs>
|
||||
<style type='text/css'><![CDATA[
|
||||
.svglite line, .svglite polyline, .svglite polygon, .svglite path, .svglite rect, .svglite circle {
|
||||
fill: none;
|
||||
stroke: #000000;
|
||||
stroke-linecap: round;
|
||||
stroke-linejoin: round;
|
||||
stroke-miterlimit: 10.00;
|
||||
}
|
||||
.svglite text {
|
||||
white-space: pre;
|
||||
}
|
||||
.svglite g.glyphgroup path {
|
||||
fill: inherit;
|
||||
stroke: none;
|
||||
}
|
||||
]]></style>
|
||||
</defs>
|
||||
<rect width='100%' height='100%' style='stroke: none; fill: #FFFFFF;'/>
|
||||
<defs>
|
||||
<clipPath id='cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA='>
|
||||
<rect x='0.00' y='0.00' width='504.00' height='576.00' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
<rect x='0.000000000000064' y='0.00' width='504.00' height='576.00' style='stroke-width: 1.07; stroke: #FFFFFF; fill: #FFFFFF;' />
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDAuMTF8NDk4LjUyfDM5LjQyfDE4Ni42Mw=='>
|
||||
<rect x='40.11' y='39.42' width='458.41' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDAuMTF8NDk4LjUyfDM5LjQyfDE4Ni42Mw==)'>
|
||||
<rect x='40.11' y='39.42' width='458.41' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='40.11,163.21 498.52,163.21 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,129.75 498.52,129.75 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,96.29 498.52,96.29 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,62.84 498.52,62.84 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,179.94 498.52,179.94 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,146.48 498.52,146.48 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,113.02 498.52,113.02 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,79.57 498.52,79.57 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,46.11 498.52,46.11 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='70.01,186.63 70.01,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='119.83,186.63 119.83,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='169.66,186.63 169.66,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='219.49,186.63 219.49,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='269.32,186.63 269.32,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='319.14,186.63 319.14,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='368.97,186.63 368.97,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='418.80,186.63 418.80,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='468.62,186.63 468.62,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<line x1='70.01' y1='46.11' x2='70.01' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='70.01' y1='46.11' x2='70.01' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='51.32,46.11 51.32,46.11 88.69,46.11 88.69,46.11 51.32,46.11 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='51.32' y1='46.11' x2='88.69' y2='46.11' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='119.83' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='119.83' y1='46.11' x2='119.83' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='119.83' y1='46.11' x2='119.83' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='101.15,46.11 101.15,46.11 138.52,46.11 138.52,46.11 101.15,46.11 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='101.15' y1='46.11' x2='138.52' y2='46.11' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='169.66' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='169.66' y1='46.11' x2='169.66' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='169.66' y1='46.11' x2='169.66' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='150.98,46.11 150.98,46.11 188.35,46.11 188.35,46.11 150.98,46.11 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='150.98' y1='46.11' x2='188.35' y2='46.11' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='219.49' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='219.49' y1='46.11' x2='219.49' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='219.49' y1='46.11' x2='219.49' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='200.80,46.11 200.80,46.11 238.17,46.11 238.17,46.11 200.80,46.11 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='200.80' y1='46.11' x2='238.17' y2='46.11' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='269.32' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='269.32' y1='46.11' x2='269.32' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='269.32' y1='46.11' x2='269.32' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='250.63,46.11 250.63,46.11 288.00,46.11 288.00,46.11 250.63,46.11 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='250.63' y1='46.11' x2='288.00' y2='46.11' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='319.14' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='319.14' y1='46.11' x2='319.14' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='319.14' y1='46.11' x2='319.14' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='300.46,46.11 300.46,46.11 337.83,46.11 337.83,46.11 300.46,46.11 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='300.46' y1='46.11' x2='337.83' y2='46.11' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='368.97' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='368.97' y1='46.11' x2='368.97' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='368.97' y1='46.11' x2='368.97' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='350.28,46.11 350.28,46.11 387.65,46.11 387.65,46.11 350.28,46.11 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='350.28' y1='46.11' x2='387.65' y2='46.11' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='418.80' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='418.80' y1='46.11' x2='418.80' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='418.80' y1='46.11' x2='418.80' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='400.11,46.11 400.11,46.11 437.48,46.11 437.48,46.11 400.11,46.11 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='400.11' y1='46.11' x2='437.48' y2='46.11' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='468.62' cy='179.94' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='468.62' y1='46.11' x2='468.62' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='468.62' y1='46.11' x2='468.62' y2='46.11' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='449.94,46.11 449.94,46.11 487.31,46.11 487.31,46.11 449.94,46.11 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='449.94' y1='46.11' x2='487.31' y2='46.11' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='40.11' y='39.42' width='458.41' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDAuMTF8NDk4LjUyfDIwOC43NnwzNTUuOTc='>
|
||||
<rect x='40.11' y='208.76' width='458.41' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDAuMTF8NDk4LjUyfDIwOC43NnwzNTUuOTc=)'>
|
||||
<rect x='40.11' y='208.76' width='458.41' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='40.11,332.55 498.52,332.55 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,299.09 498.52,299.09 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,265.63 498.52,265.63 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,232.18 498.52,232.18 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,349.27 498.52,349.27 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,315.82 498.52,315.82 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,282.36 498.52,282.36 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,248.91 498.52,248.91 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,215.45 498.52,215.45 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='70.01,355.97 70.01,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='119.83,355.97 119.83,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='169.66,355.97 169.66,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='219.49,355.97 219.49,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='269.32,355.97 269.32,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='319.14,355.97 319.14,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='368.97,355.97 368.97,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='418.80,355.97 418.80,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='468.62,355.97 468.62,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<line x1='70.01' y1='215.45' x2='70.01' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='70.01' y1='215.45' x2='70.01' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='51.32,215.45 51.32,215.45 88.69,215.45 88.69,215.45 51.32,215.45 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='51.32' y1='215.45' x2='88.69' y2='215.45' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='119.83' y1='215.45' x2='119.83' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='119.83' y1='215.45' x2='119.83' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='101.15,215.45 101.15,215.45 138.52,215.45 138.52,215.45 101.15,215.45 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='101.15' y1='215.45' x2='138.52' y2='215.45' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='169.66' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='169.66' y1='215.45' x2='169.66' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='169.66' y1='215.45' x2='169.66' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='150.98,215.45 150.98,215.45 188.35,215.45 188.35,215.45 150.98,215.45 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='150.98' y1='215.45' x2='188.35' y2='215.45' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='219.49' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='219.49' y1='215.45' x2='219.49' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='219.49' y1='215.45' x2='219.49' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='200.80,215.45 200.80,215.45 238.17,215.45 238.17,215.45 200.80,215.45 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='200.80' y1='215.45' x2='238.17' y2='215.45' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='269.32' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='269.32' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='269.32' y1='215.45' x2='269.32' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='269.32' y1='215.45' x2='269.32' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='250.63,215.45 250.63,215.45 288.00,215.45 288.00,215.45 250.63,215.45 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='250.63' y1='215.45' x2='288.00' y2='215.45' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='319.14' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='319.14' y1='215.45' x2='319.14' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='319.14' y1='215.45' x2='319.14' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='300.46,215.45 300.46,215.45 337.83,215.45 337.83,215.45 300.46,215.45 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='300.46' y1='215.45' x2='337.83' y2='215.45' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='368.97' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='368.97' y1='215.45' x2='368.97' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='368.97' y1='215.45' x2='368.97' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='350.28,215.45 350.28,215.45 387.65,215.45 387.65,215.45 350.28,215.45 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='350.28' y1='215.45' x2='387.65' y2='215.45' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='418.80' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='418.80' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='418.80' y1='215.45' x2='418.80' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='418.80' y1='215.45' x2='418.80' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='400.11,215.45 400.11,215.45 437.48,215.45 437.48,215.45 400.11,215.45 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='400.11' y1='215.45' x2='437.48' y2='215.45' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='468.62' cy='349.27' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='468.62' y1='215.45' x2='468.62' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='468.62' y1='215.45' x2='468.62' y2='215.45' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='449.94,215.45 449.94,215.45 487.31,215.45 487.31,215.45 449.94,215.45 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='449.94' y1='215.45' x2='487.31' y2='215.45' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='40.11' y='208.76' width='458.41' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDAuMTF8NDk4LjUyfDM3OC4xMHw1MjUuMzE='>
|
||||
<rect x='40.11' y='378.10' width='458.41' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDAuMTF8NDk4LjUyfDM3OC4xMHw1MjUuMzE=)'>
|
||||
<rect x='40.11' y='378.10' width='458.41' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='40.11,501.89 498.52,501.89 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,468.43 498.52,468.43 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,434.97 498.52,434.97 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,401.52 498.52,401.52 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,518.61 498.52,518.61 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,485.16 498.52,485.16 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,451.70 498.52,451.70 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,418.24 498.52,418.24 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='40.11,384.79 498.52,384.79 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='70.01,525.31 70.01,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='119.83,525.31 119.83,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='169.66,525.31 169.66,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='219.49,525.31 219.49,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='269.32,525.31 269.32,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='319.14,525.31 319.14,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='368.97,525.31 368.97,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='418.80,525.31 418.80,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='468.62,525.31 468.62,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<line x1='70.01' y1='384.79' x2='70.01' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='70.01' y1='384.79' x2='70.01' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='51.32,384.79 51.32,384.79 88.69,384.79 88.69,384.79 51.32,384.79 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='51.32' y1='384.79' x2='88.69' y2='384.79' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='119.83' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='119.83' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='119.83' y1='384.79' x2='119.83' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='119.83' y1='384.79' x2='119.83' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='101.15,384.79 101.15,384.79 138.52,384.79 138.52,384.79 101.15,384.79 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='101.15' y1='384.79' x2='138.52' y2='384.79' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='169.66' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='169.66' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='169.66' y1='384.79' x2='169.66' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='169.66' y1='384.79' x2='169.66' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='150.98,384.79 150.98,384.79 188.35,384.79 188.35,384.79 150.98,384.79 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='150.98' y1='384.79' x2='188.35' y2='384.79' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='219.49' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='219.49' y1='384.79' x2='219.49' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='219.49' y1='384.79' x2='219.49' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='200.80,384.79 200.80,384.79 238.17,384.79 238.17,384.79 200.80,384.79 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='200.80' y1='384.79' x2='238.17' y2='384.79' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='269.32' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='269.32' y1='384.79' x2='269.32' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='269.32' y1='384.79' x2='269.32' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='250.63,384.79 250.63,384.79 288.00,384.79 288.00,384.79 250.63,384.79 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='250.63' y1='384.79' x2='288.00' y2='384.79' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='319.14' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='319.14' y1='384.79' x2='319.14' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='319.14' y1='384.79' x2='319.14' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='300.46,384.79 300.46,384.79 337.83,384.79 337.83,384.79 300.46,384.79 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='300.46' y1='384.79' x2='337.83' y2='384.79' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='368.97' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='368.97' y1='384.79' x2='368.97' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='368.97' y1='384.79' x2='368.97' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='350.28,384.79 350.28,384.79 387.65,384.79 387.65,384.79 350.28,384.79 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='350.28' y1='384.79' x2='387.65' y2='384.79' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='418.80' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='418.80' y1='384.79' x2='418.80' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='418.80' y1='384.79' x2='418.80' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='400.11,384.79 400.11,384.79 437.48,384.79 437.48,384.79 400.11,384.79 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='400.11' y1='384.79' x2='437.48' y2='384.79' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='468.62' cy='518.61' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='468.62' y1='384.79' x2='468.62' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='468.62' y1='384.79' x2='468.62' y2='384.79' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='449.94,384.79 449.94,384.79 487.31,384.79 487.31,384.79 449.94,384.79 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='449.94' y1='384.79' x2='487.31' y2='384.79' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='40.11' y='378.10' width='458.41' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDAuMTF8NDk4LjUyfDM2MS40NXwzNzguMTA='>
|
||||
<rect x='40.11' y='361.45' width='458.41' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDAuMTF8NDk4LjUyfDM2MS40NXwzNzguMTA=)'>
|
||||
<rect x='40.11' y='361.45' width='458.41' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='269.32' y='372.80' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='27.88px' lengthAdjust='spacingAndGlyphs'>riscv64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDAuMTF8NDk4LjUyfDE5Mi4xMXwyMDguNzY='>
|
||||
<rect x='40.11' y='192.11' width='458.41' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDAuMTF8NDk4LjUyfDE5Mi4xMXwyMDguNzY=)'>
|
||||
<rect x='40.11' y='192.11' width='458.41' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='269.32' y='203.46' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='31.78px' lengthAdjust='spacingAndGlyphs'>aarch64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDAuMTF8NDk4LjUyfDIyLjc3fDM5LjQy'>
|
||||
<rect x='40.11' y='22.77' width='458.41' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDAuMTF8NDk4LjUyfDIyLjc3fDM5LjQy)'>
|
||||
<rect x='40.11' y='22.77' width='458.41' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='269.32' y='34.12' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='26.89px' lengthAdjust='spacingAndGlyphs'>amd64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
<polyline points='70.01,528.05 70.01,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='119.83,528.05 119.83,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='169.66,528.05 169.66,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='219.49,528.05 219.49,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='269.32,528.05 269.32,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='319.14,528.05 319.14,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='368.97,528.05 368.97,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='418.80,528.05 418.80,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='468.62,528.05 468.62,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text transform='translate(74.29,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='18.59px' lengthAdjust='spacingAndGlyphs'>zuse</text>
|
||||
<text transform='translate(124.11,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='31.28px' lengthAdjust='spacingAndGlyphs'>rajames</text>
|
||||
<text transform='translate(173.94,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>00</text>
|
||||
<text transform='translate(223.77,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>01</text>
|
||||
<text transform='translate(273.60,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>02</text>
|
||||
<text transform='translate(323.42,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>03</text>
|
||||
<text transform='translate(373.25,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>04</text>
|
||||
<text transform='translate(423.08,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>05</text>
|
||||
<text transform='translate(472.91,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>06</text>
|
||||
<text x='35.18' y='182.96' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.00</text>
|
||||
<text x='35.18' y='149.51' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.25</text>
|
||||
<text x='35.18' y='116.05' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.50</text>
|
||||
<text x='35.18' y='82.59' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.75</text>
|
||||
<text x='35.18' y='49.14' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>1.00</text>
|
||||
<polyline points='37.37,179.94 40.11,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='37.37,146.48 40.11,146.48 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='37.37,113.02 40.11,113.02 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='37.37,79.57 40.11,79.57 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='37.37,46.11 40.11,46.11 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='35.18' y='352.30' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.00</text>
|
||||
<text x='35.18' y='318.85' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.25</text>
|
||||
<text x='35.18' y='285.39' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.50</text>
|
||||
<text x='35.18' y='251.93' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.75</text>
|
||||
<text x='35.18' y='218.48' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>1.00</text>
|
||||
<polyline points='37.37,349.27 40.11,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='37.37,315.82 40.11,315.82 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='37.37,282.36 40.11,282.36 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='37.37,248.91 40.11,248.91 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='37.37,215.45 40.11,215.45 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='35.18' y='521.64' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.00</text>
|
||||
<text x='35.18' y='488.19' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.25</text>
|
||||
<text x='35.18' y='454.73' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.50</text>
|
||||
<text x='35.18' y='421.27' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>0.75</text>
|
||||
<text x='35.18' y='387.82' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='17.11px' lengthAdjust='spacingAndGlyphs'>1.00</text>
|
||||
<polyline points='37.37,518.61 40.11,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='37.37,485.16 40.11,485.16 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='37.37,451.70 40.11,451.70 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='37.37,418.24 40.11,418.24 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='37.37,384.79 40.11,384.79 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='269.32' y='568.24' text-anchor='middle' style='font-size: 11.00px; font-family: "Liberation Sans";' textLength='35.50px' lengthAdjust='spacingAndGlyphs'>Identity</text>
|
||||
<text transform='translate(13.05,282.36) rotate(-90)' text-anchor='middle' style='font-size: 11.00px; font-family: "Liberation Sans";' textLength='90.53px' lengthAdjust='spacingAndGlyphs'>Max VM call depth</text>
|
||||
<text x='40.11' y='14.55' style='font-size: 13.20px; font-family: "Liberation Sans";' textLength='108.42px' lengthAdjust='spacingAndGlyphs'>Max VM call depth</text>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 38 KiB |
@@ -0,0 +1,313 @@
|
||||
<?xml version='1.0' encoding='UTF-8' ?>
|
||||
<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='504.00pt' height='576.00pt' viewBox='0 0 504.00 576.00'>
|
||||
<g class='svglite'>
|
||||
<defs>
|
||||
<style type='text/css'><![CDATA[
|
||||
.svglite line, .svglite polyline, .svglite polygon, .svglite path, .svglite rect, .svglite circle {
|
||||
fill: none;
|
||||
stroke: #000000;
|
||||
stroke-linecap: round;
|
||||
stroke-linejoin: round;
|
||||
stroke-miterlimit: 10.00;
|
||||
}
|
||||
.svglite text {
|
||||
white-space: pre;
|
||||
}
|
||||
.svglite g.glyphgroup path {
|
||||
fill: inherit;
|
||||
stroke: none;
|
||||
}
|
||||
]]></style>
|
||||
</defs>
|
||||
<rect width='100%' height='100%' style='stroke: none; fill: #FFFFFF;'/>
|
||||
<defs>
|
||||
<clipPath id='cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA='>
|
||||
<rect x='0.00' y='0.00' width='504.00' height='576.00' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
<rect x='0.00' y='0.00' width='504.00' height='576.00' style='stroke-width: 1.07; stroke: #FFFFFF; fill: #FFFFFF;' />
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDIuNTZ8NDk4LjUyfDM5LjQyfDE4Ni42Mw=='>
|
||||
<rect x='42.56' y='39.42' width='455.96' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDIuNTZ8NDk4LjUyfDM5LjQyfDE4Ni42Mw==)'>
|
||||
<rect x='42.56' y='39.42' width='455.96' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='42.56,172.27 498.52,172.27 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,137.42 498.52,137.42 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,102.57 498.52,102.57 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,67.72 498.52,67.72 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,154.84 498.52,154.84 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,119.99 498.52,119.99 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,85.14 498.52,85.14 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,50.29 498.52,50.29 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='72.30,186.63 72.30,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='121.86,186.63 121.86,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='171.42,186.63 171.42,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='220.98,186.63 220.98,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='270.54,186.63 270.54,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='320.10,186.63 320.10,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='369.66,186.63 369.66,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='419.22,186.63 419.22,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='468.78,186.63 468.78,39.42 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<line x1='72.30' y1='179.94' x2='72.30' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='72.30' y1='179.94' x2='72.30' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='53.71,179.94 53.71,179.94 90.88,179.94 90.88,179.94 53.71,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='53.71' y1='179.94' x2='90.88' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='121.86' y1='179.94' x2='121.86' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='121.86' y1='179.94' x2='121.86' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='103.27,179.94 103.27,179.94 140.45,179.94 140.45,179.94 103.27,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='103.27' y1='179.94' x2='140.45' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='171.42' y1='179.94' x2='171.42' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='171.42' y1='179.94' x2='171.42' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='152.84,179.94 152.84,179.94 190.01,179.94 190.01,179.94 152.84,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='152.84' y1='179.94' x2='190.01' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='220.98' y1='179.94' x2='220.98' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='220.98' y1='179.94' x2='220.98' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='202.40,179.94 202.40,179.94 239.57,179.94 239.57,179.94 202.40,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='202.40' y1='179.94' x2='239.57' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='270.54' y1='179.94' x2='270.54' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='270.54' y1='179.94' x2='270.54' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='251.96,179.94 251.96,179.94 289.13,179.94 289.13,179.94 251.96,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='251.96' y1='179.94' x2='289.13' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='320.10' y1='179.94' x2='320.10' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='320.10' y1='179.94' x2='320.10' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='301.52,179.94 301.52,179.94 338.69,179.94 338.69,179.94 301.52,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='301.52' y1='179.94' x2='338.69' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='369.66' cy='46.11' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='369.66' cy='46.11' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='369.66' cy='135.33' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='369.66' cy='135.33' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='369.66' y1='179.94' x2='369.66' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='369.66' y1='179.94' x2='369.66' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='351.08,179.94 351.08,179.94 388.25,179.94 388.25,179.94 351.08,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='351.08' y1='179.94' x2='388.25' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='419.22' y1='179.94' x2='419.22' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='419.22' y1='179.94' x2='419.22' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='400.64,179.94 400.64,179.94 437.81,179.94 437.81,179.94 400.64,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='400.64' y1='179.94' x2='437.81' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='468.78' y1='179.94' x2='468.78' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='468.78' y1='179.94' x2='468.78' y2='179.94' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='450.20,179.94 450.20,179.94 487.37,179.94 487.37,179.94 450.20,179.94 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='450.20' y1='179.94' x2='487.37' y2='179.94' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='42.56' y='39.42' width='455.96' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDIuNTZ8NDk4LjUyfDIwOC43NnwzNTUuOTc='>
|
||||
<rect x='42.56' y='208.76' width='455.96' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDIuNTZ8NDk4LjUyfDIwOC43NnwzNTUuOTc=)'>
|
||||
<rect x='42.56' y='208.76' width='455.96' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='42.56,341.61 498.52,341.61 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,306.76 498.52,306.76 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,271.91 498.52,271.91 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,237.06 498.52,237.06 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,324.18 498.52,324.18 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,289.33 498.52,289.33 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,254.48 498.52,254.48 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,219.63 498.52,219.63 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='72.30,355.97 72.30,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='121.86,355.97 121.86,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='171.42,355.97 171.42,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='220.98,355.97 220.98,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='270.54,355.97 270.54,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='320.10,355.97 320.10,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='369.66,355.97 369.66,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='419.22,355.97 419.22,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='468.78,355.97 468.78,208.76 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<line x1='72.30' y1='349.27' x2='72.30' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='72.30' y1='349.27' x2='72.30' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='53.71,349.27 53.71,349.27 90.88,349.27 90.88,349.27 53.71,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='53.71' y1='349.27' x2='90.88' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='121.86' y1='349.27' x2='121.86' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='121.86' y1='349.27' x2='121.86' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='103.27,349.27 103.27,349.27 140.45,349.27 140.45,349.27 103.27,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='103.27' y1='349.27' x2='140.45' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='171.42' y1='349.27' x2='171.42' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='171.42' y1='349.27' x2='171.42' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='152.84,349.27 152.84,349.27 190.01,349.27 190.01,349.27 152.84,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='152.84' y1='349.27' x2='190.01' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='220.98' y1='349.27' x2='220.98' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='220.98' y1='349.27' x2='220.98' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='202.40,349.27 202.40,349.27 239.57,349.27 239.57,349.27 202.40,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='202.40' y1='349.27' x2='239.57' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='270.54' y1='349.27' x2='270.54' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='270.54' y1='349.27' x2='270.54' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='251.96,349.27 251.96,349.27 289.13,349.27 289.13,349.27 251.96,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='251.96' y1='349.27' x2='289.13' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='320.10' y1='349.27' x2='320.10' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='320.10' y1='349.27' x2='320.10' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='301.52,349.27 301.52,349.27 338.69,349.27 338.69,349.27 301.52,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='301.52' y1='349.27' x2='338.69' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='369.66' cy='215.45' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='369.66' cy='215.45' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='369.66' cy='304.67' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='369.66' cy='304.67' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='369.66' y1='349.27' x2='369.66' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='369.66' y1='349.27' x2='369.66' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='351.08,349.27 351.08,349.27 388.25,349.27 388.25,349.27 351.08,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='351.08' y1='349.27' x2='388.25' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='419.22' y1='349.27' x2='419.22' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='419.22' y1='349.27' x2='419.22' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='400.64,349.27 400.64,349.27 437.81,349.27 437.81,349.27 400.64,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='400.64' y1='349.27' x2='437.81' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='468.78' y1='349.27' x2='468.78' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='468.78' y1='349.27' x2='468.78' y2='349.27' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='450.20,349.27 450.20,349.27 487.37,349.27 487.37,349.27 450.20,349.27 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='450.20' y1='349.27' x2='487.37' y2='349.27' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='42.56' y='208.76' width='455.96' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDIuNTZ8NDk4LjUyfDM3OC4xMHw1MjUuMzE='>
|
||||
<rect x='42.56' y='378.10' width='455.96' height='147.21' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDIuNTZ8NDk4LjUyfDM3OC4xMHw1MjUuMzE=)'>
|
||||
<rect x='42.56' y='378.10' width='455.96' height='147.21' style='stroke-width: 1.07; stroke: none; fill: #FFFFFF;' />
|
||||
<polyline points='42.56,510.95 498.52,510.95 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,476.10 498.52,476.10 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,441.25 498.52,441.25 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,406.40 498.52,406.40 ' style='stroke-width: 0.53; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,493.52 498.52,493.52 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,458.67 498.52,458.67 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,423.82 498.52,423.82 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='42.56,388.97 498.52,388.97 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='72.30,525.31 72.30,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='121.86,525.31 121.86,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='171.42,525.31 171.42,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='220.98,525.31 220.98,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='270.54,525.31 270.54,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='320.10,525.31 320.10,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='369.66,525.31 369.66,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='419.22,525.31 419.22,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<polyline points='468.78,525.31 468.78,378.10 ' style='stroke-width: 1.07; stroke: #EBEBEB; stroke-linecap: butt;' />
|
||||
<line x1='72.30' y1='518.61' x2='72.30' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='72.30' y1='518.61' x2='72.30' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='53.71,518.61 53.71,518.61 90.88,518.61 90.88,518.61 53.71,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #F8766D; fill-opacity: 0.85;' />
|
||||
<line x1='53.71' y1='518.61' x2='90.88' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='121.86' y1='518.61' x2='121.86' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='121.86' y1='518.61' x2='121.86' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='103.27,518.61 103.27,518.61 140.45,518.61 140.45,518.61 103.27,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #D39200; fill-opacity: 0.85;' />
|
||||
<line x1='103.27' y1='518.61' x2='140.45' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='171.42' y1='518.61' x2='171.42' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='171.42' y1='518.61' x2='171.42' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='152.84,518.61 152.84,518.61 190.01,518.61 190.01,518.61 152.84,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #93AA00; fill-opacity: 0.85;' />
|
||||
<line x1='152.84' y1='518.61' x2='190.01' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='220.98' y1='518.61' x2='220.98' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='220.98' y1='518.61' x2='220.98' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='202.40,518.61 202.40,518.61 239.57,518.61 239.57,518.61 202.40,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00BA38; fill-opacity: 0.85;' />
|
||||
<line x1='202.40' y1='518.61' x2='239.57' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='270.54' y1='518.61' x2='270.54' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='270.54' y1='518.61' x2='270.54' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='251.96,518.61 251.96,518.61 289.13,518.61 289.13,518.61 251.96,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00C19F; fill-opacity: 0.85;' />
|
||||
<line x1='251.96' y1='518.61' x2='289.13' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='320.10' y1='518.61' x2='320.10' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='320.10' y1='518.61' x2='320.10' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='301.52,518.61 301.52,518.61 338.69,518.61 338.69,518.61 301.52,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #00B9E3; fill-opacity: 0.85;' />
|
||||
<line x1='301.52' y1='518.61' x2='338.69' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<circle cx='369.66' cy='384.79' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='369.66' cy='474.01' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<circle cx='369.66' cy='474.01' r='0.99' style='stroke-width: 0.71; stroke: #333333; stroke-opacity: 0.85; fill: #333333; fill-opacity: 0.85;' />
|
||||
<line x1='369.66' y1='518.61' x2='369.66' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='369.66' y1='518.61' x2='369.66' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='351.08,518.61 351.08,518.61 388.25,518.61 388.25,518.61 351.08,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #619CFF; fill-opacity: 0.85;' />
|
||||
<line x1='351.08' y1='518.61' x2='388.25' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='419.22' y1='518.61' x2='419.22' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='419.22' y1='518.61' x2='419.22' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='400.64,518.61 400.64,518.61 437.81,518.61 437.81,518.61 400.64,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #DB72FB; fill-opacity: 0.85;' />
|
||||
<line x1='400.64' y1='518.61' x2='437.81' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<line x1='468.78' y1='518.61' x2='468.78' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<line x1='468.78' y1='518.61' x2='468.78' y2='518.61' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polygon points='450.20,518.61 450.20,518.61 487.37,518.61 487.37,518.61 450.20,518.61 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter; fill: #FF61C3; fill-opacity: 0.85;' />
|
||||
<line x1='450.20' y1='518.61' x2='487.37' y2='518.61' style='stroke-width: 2.13; stroke: #333333; stroke-linecap: butt; stroke-linejoin: miter;' />
|
||||
<rect x='42.56' y='378.10' width='455.96' height='147.21' style='stroke-width: 1.07; stroke: #333333;' />
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDIuNTZ8NDk4LjUyfDM2MS40NXwzNzguMTA='>
|
||||
<rect x='42.56' y='361.45' width='455.96' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDIuNTZ8NDk4LjUyfDM2MS40NXwzNzguMTA=)'>
|
||||
<rect x='42.56' y='361.45' width='455.96' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='270.54' y='372.80' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='27.88px' lengthAdjust='spacingAndGlyphs'>riscv64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDIuNTZ8NDk4LjUyfDE5Mi4xMXwyMDguNzY='>
|
||||
<rect x='42.56' y='192.11' width='455.96' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDIuNTZ8NDk4LjUyfDE5Mi4xMXwyMDguNzY=)'>
|
||||
<rect x='42.56' y='192.11' width='455.96' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='270.54' y='203.46' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='31.78px' lengthAdjust='spacingAndGlyphs'>aarch64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id='cpNDIuNTZ8NDk4LjUyfDIyLjc3fDM5LjQy'>
|
||||
<rect x='42.56' y='22.77' width='455.96' height='16.65' />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g clip-path='url(#cpNDIuNTZ8NDk4LjUyfDIyLjc3fDM5LjQy)'>
|
||||
<rect x='42.56' y='22.77' width='455.96' height='16.65' style='stroke-width: 1.07; stroke: #333333; fill: #D9D9D9;' />
|
||||
<text x='270.54' y='34.12' text-anchor='middle' style='font-size: 8.80px;fill: #1A1A1A; font-family: "Liberation Sans";' textLength='26.89px' lengthAdjust='spacingAndGlyphs'>amd64</text>
|
||||
</g>
|
||||
<g clip-path='url(#cpMC4wMHw1MDQuMDB8MC4wMHw1NzYuMDA=)'>
|
||||
<polyline points='72.30,528.05 72.30,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='121.86,528.05 121.86,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='171.42,528.05 171.42,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='220.98,528.05 220.98,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='270.54,528.05 270.54,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='320.10,528.05 320.10,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='369.66,528.05 369.66,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='419.22,528.05 419.22,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='468.78,528.05 468.78,525.31 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text transform='translate(76.58,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='18.59px' lengthAdjust='spacingAndGlyphs'>zuse</text>
|
||||
<text transform='translate(126.14,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='31.28px' lengthAdjust='spacingAndGlyphs'>rajames</text>
|
||||
<text transform='translate(175.70,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>00</text>
|
||||
<text transform='translate(225.26,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>01</text>
|
||||
<text transform='translate(274.82,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>02</text>
|
||||
<text transform='translate(324.38,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>03</text>
|
||||
<text transform='translate(373.94,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>04</text>
|
||||
<text transform='translate(423.51,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>05</text>
|
||||
<text transform='translate(473.07,534.52) rotate(-45)' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='9.78px' lengthAdjust='spacingAndGlyphs'>06</text>
|
||||
<text x='37.63' y='157.87' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='14.67px' lengthAdjust='spacingAndGlyphs'>400</text>
|
||||
<text x='37.63' y='123.02' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='14.67px' lengthAdjust='spacingAndGlyphs'>600</text>
|
||||
<text x='37.63' y='88.17' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='14.67px' lengthAdjust='spacingAndGlyphs'>800</text>
|
||||
<text x='37.63' y='53.32' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='19.56px' lengthAdjust='spacingAndGlyphs'>1000</text>
|
||||
<polyline points='39.82,154.84 42.56,154.84 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='39.82,119.99 42.56,119.99 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='39.82,85.14 42.56,85.14 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='39.82,50.29 42.56,50.29 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='37.63' y='327.21' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='14.67px' lengthAdjust='spacingAndGlyphs'>400</text>
|
||||
<text x='37.63' y='292.36' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='14.67px' lengthAdjust='spacingAndGlyphs'>600</text>
|
||||
<text x='37.63' y='257.51' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='14.67px' lengthAdjust='spacingAndGlyphs'>800</text>
|
||||
<text x='37.63' y='222.66' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='19.56px' lengthAdjust='spacingAndGlyphs'>1000</text>
|
||||
<polyline points='39.82,324.18 42.56,324.18 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='39.82,289.33 42.56,289.33 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='39.82,254.48 42.56,254.48 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='39.82,219.63 42.56,219.63 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='37.63' y='496.55' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='14.67px' lengthAdjust='spacingAndGlyphs'>400</text>
|
||||
<text x='37.63' y='461.70' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='14.67px' lengthAdjust='spacingAndGlyphs'>600</text>
|
||||
<text x='37.63' y='426.85' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='14.67px' lengthAdjust='spacingAndGlyphs'>800</text>
|
||||
<text x='37.63' y='392.00' text-anchor='end' style='font-size: 8.80px;fill: #4D4D4D; font-family: "Liberation Sans";' textLength='19.56px' lengthAdjust='spacingAndGlyphs'>1000</text>
|
||||
<polyline points='39.82,493.52 42.56,493.52 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='39.82,458.67 42.56,458.67 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='39.82,423.82 42.56,423.82 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<polyline points='39.82,388.97 42.56,388.97 ' style='stroke-width: 1.07; stroke: #333333; stroke-linecap: butt;' />
|
||||
<text x='270.54' y='568.24' text-anchor='middle' style='font-size: 11.00px; font-family: "Liberation Sans";' textLength='35.50px' lengthAdjust='spacingAndGlyphs'>Identity</text>
|
||||
<text transform='translate(13.05,282.36) rotate(-90)' text-anchor='middle' style='font-size: 11.00px; font-family: "Liberation Sans";' textLength='102.12px' lengthAdjust='spacingAndGlyphs'>Rolling window width</text>
|
||||
<text x='42.56' y='14.55' style='font-size: 13.20px; font-family: "Liberation Sans";' textLength='122.41px' lengthAdjust='spacingAndGlyphs'>Rolling window width</text>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 35 KiB |