diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 7acc619d8..2f69b27b4 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -13,7 +13,7 @@ To get in touch with the contributors, either
 ## Ask a Question
 
 If you have any questions about strudel, make sure you've glanced through the
-[docs](https://strudel.tidalcycles.org/learn/) to find out if it answers your question.
+[docs](https://strudel.cc/learn/) to find out if it answers your question.
 If not, use one of the Communication Channels above!
 
 Don't be afraid to ask! Your question might be of great value for other people too.
@@ -31,7 +31,7 @@ Use one of the Communication Channels listed above.
 
 ## Improve the Docs
 
-If you find some weak spots in the [docs](https://strudel.tidalcycles.org/workshop/getting-started/),
+If you find some weak spots in the [docs](https://strudel.cc/workshop/getting-started/),
 you can edit each file directly on github via the "Edit this page" link located in the right sidebar.
 
 ## Propose a Feature
diff --git a/README.md b/README.md
index 0949b687c..037a91622 100644
--- a/README.md
+++ b/README.md
@@ -4,8 +4,8 @@
 
 An experiment in making a [Tidal](https://github.com/tidalcycles/tidal/) using web technologies. This software is slowly stabilising, but please continue to tread carefully.
 
-- Try it here: <https://strudel.tidalcycles.org/>
-- Docs: <https://strudel.tidalcycles.org/learn/>
+- Try it here: <https://strudel.cc>
+- Docs: <https://strudel.cc/learn>
 - Technical Blog Post: <https://loophole-letters.vercel.app/strudel>
 - 1 Year of Strudel Blog Post: <https://loophole-letters.vercel.app/strudel1year>
 
diff --git a/package.json b/package.json
index 292fc94d2..36229611a 100644
--- a/package.json
+++ b/package.json
@@ -43,7 +43,7 @@
   "bugs": {
     "url": "https://github.com/tidalcycles/strudel/issues"
   },
-  "homepage": "https://strudel.tidalcycles.org",
+  "homepage": "https://strudel.cc",
   "dependencies": {
     "@strudel.cycles/core": "workspace:*",
     "@strudel.cycles/mini": "workspace:*",
diff --git a/packages/core/examples/vite-vanilla-repl-cm6/tunes.mjs b/packages/core/examples/vite-vanilla-repl-cm6/tunes.mjs
index 242a0d4bb..736000194 100644
--- a/packages/core/examples/vite-vanilla-repl-cm6/tunes.mjs
+++ b/packages/core/examples/vite-vanilla-repl-cm6/tunes.mjs
@@ -1,6 +1,6 @@
 export const bumpStreet = `// froos - "22 bump street", licensed with CC BY-NC-SA 4.0
 await samples('github:felixroos/samples/main')
-await samples('https://strudel.tidalcycles.org/tidal-drum-machines.json', 'github:ritchse/tidal-drum-machines/main/machines/')
+await samples('https://strudel.cc/tidal-drum-machines.json', 'github:ritchse/tidal-drum-machines/main/machines/')
 
 "<[0,<6 7 9>,13,<17 20 22 26>]!2>/2"
   // make it 22 edo
@@ -34,7 +34,7 @@ await samples('https://strudel.tidalcycles.org/tidal-drum-machines.json', 'githu
 export const trafficFlam = `// froos - "traffic flam", licensed with CC BY-NC-SA 4.0
 
 await samples('github:felixroos/samples/main')
-await samples('https://strudel.tidalcycles.org/tidal-drum-machines.json', 'github:ritchse/tidal-drum-machines/main/machines/')
+await samples('https://strudel.cc/tidal-drum-machines.json', 'github:ritchse/tidal-drum-machines/main/machines/')
 
 addVoicings('hip', {
   m11: ['2M 3m 4P 7m'],
@@ -70,7 +70,7 @@ export const funk42 = `// froos - how to funk in 42 lines of code
 // thanks to peach for the transcription: https://www.youtube.com/watch?v=8eiPXvIgda4
 
 await samples('github:felixroos/samples/main')
-await samples('https://strudel.tidalcycles.org/tidal-drum-machines.json', 'github:ritchse/tidal-drum-machines/main/machines/')
+await samples('https://strudel.cc/tidal-drum-machines.json', 'github:ritchse/tidal-drum-machines/main/machines/')
 
 setcps(.5)
 
diff --git a/packages/core/package.json b/packages/core/package.json
index 8fd572425..5a626b0ca 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -29,7 +29,7 @@
   "bugs": {
     "url": "https://github.com/tidalcycles/strudel/issues"
   },
-  "homepage": "https://strudel.tidalcycles.org",
+  "homepage": "https://strudel.cc",
   "dependencies": {
     "fraction.js": "^4.2.0"
   },
diff --git a/packages/embed/embed.js b/packages/embed/embed.js
index dddcd73c0..ce2e3b2ad 100644
--- a/packages/embed/embed.js
+++ b/packages/embed/embed.js
@@ -6,7 +6,7 @@ class Strudel extends HTMLElement {
     setTimeout(() => {
       const code = (this.innerHTML + '').replace('<!--', '').replace('-->', '').trim();
       const iframe = document.createElement('iframe');
-      const src = `https://strudel.tidalcycles.org/#${encodeURIComponent(btoa(code))}`;
+      const src = `https://strudel.cc/#${encodeURIComponent(btoa(code))}`;
       // const src = `http://localhost:3000/#${encodeURIComponent(btoa(code))}`;
       iframe.setAttribute('src', src);
       iframe.setAttribute('width', '600');
diff --git a/packages/mini/README.md b/packages/mini/README.md
index 2527352f1..fce7a0451 100644
--- a/packages/mini/README.md
+++ b/packages/mini/README.md
@@ -32,7 +32,7 @@ yields:
 
 ## Mini Notation API
 
-See "Mini Notation" in the [Strudel Tutorial](https://strudel.tidalcycles.org/learn/mini-notation)
+See "Mini Notation" in the [Strudel Tutorial](https://strudel.cc/learn/mini-notation)
 
 ## Building the Parser
 
diff --git a/packages/osc/README.md b/packages/osc/README.md
index cab6d629d..824d79a42 100644
--- a/packages/osc/README.md
+++ b/packages/osc/README.md
@@ -34,6 +34,6 @@ Now open the REPL and type:
 s("<bd sd> hh").osc()
 ```
 
-or just [click here](https://strudel.tidalcycles.org/#cygiPGJkIHNkPiBoaCIpLm9zYygp)...
+or just [click here](https://strudel.cc/#cygiPGJkIHNkPiBoaCIpLm9zYygp)...
 
-You can read more about [how to use Superdirt with Strudel the Tutorial](https://strudel.tidalcycles.org/learn/input-output/#superdirt-api)
+You can read more about [how to use Superdirt with Strudel the Tutorial](https://strudel.cc/learn/input-output/#superdirt-api)
diff --git a/packages/osc/osc.mjs b/packages/osc/osc.mjs
index 586da8e32..f77f0ac55 100644
--- a/packages/osc/osc.mjs
+++ b/packages/osc/osc.mjs
@@ -37,7 +37,7 @@ function connect() {
 /**
  *
  * Sends each hap as an OSC message, which can be picked up by SuperCollider or any other OSC-enabled software.
- * For more info, read [MIDI & OSC in the docs](https://strudel.tidalcycles.org/learn/input-output)
+ * For more info, read [MIDI & OSC in the docs](https://strudel.cc/learn/input-output)
  *
  * @name osc
  * @memberof Pattern
diff --git a/packages/react/README.md b/packages/react/README.md
index f65f48b02..4b55adbb1 100644
--- a/packages/react/README.md
+++ b/packages/react/README.md
@@ -21,12 +21,12 @@ import { samples, initAudioOnFirstClick } from '@strudel.cycles/webaudio';
 
 async function prebake() {
   await samples(
-    'https://strudel.tidalcycles.org/tidal-drum-machines.json',
+    'https://strudel.cc/tidal-drum-machines.json',
     'github:ritchse/tidal-drum-machines/main/machines/'
   );
   await samples(
-    'https://strudel.tidalcycles.org/EmuSP12.json',
-    'https://strudel.tidalcycles.org/EmuSP12/'
+    'https://strudel.cc/EmuSP12.json',
+    'https://strudel.cc/EmuSP12/'
   );
 }
 
diff --git a/packages/superdough/README.md b/packages/superdough/README.md
index ac46f69e8..c5950dbfa 100644
--- a/packages/superdough/README.md
+++ b/packages/superdough/README.md
@@ -1,7 +1,7 @@
 # superdough
 
 superdough is a simple web audio sampler and synth, intended for live coding.
-It is the default output of [strudel](https://strudel.tidalcycles.org/).
+It is the default output of [strudel](https://strudel.cc/).
 This package has no ties to strudel and can be used to quickly bake your own music system on the web.
 
 ## Install
diff --git a/packages/tonal/README.md b/packages/tonal/README.md
index 1825346bd..0bb344fd4 100644
--- a/packages/tonal/README.md
+++ b/packages/tonal/README.md
@@ -31,4 +31,4 @@ yields:
 
 ## Tonal API
 
-See "Tonal API" in the [Strudel Tutorial](https://strudel.tidalcycles.org/learn/tonal)
+See "Tonal API" in the [Strudel Tutorial](https://strudel.cc/learn/tonal)
diff --git a/packages/web/README.md b/packages/web/README.md
index f1ed2bbc9..8189b34ec 100644
--- a/packages/web/README.md
+++ b/packages/web/README.md
@@ -51,7 +51,7 @@ document.getElementById('play').addEventListener('click',
 )
 ```
 
-You can learn [more about the `samples` function here](https://strudel.tidalcycles.org/learn/samples#loading-custom-samples).
+You can learn [more about the `samples` function here](https://strudel.cc/learn/samples#loading-custom-samples).
 
 ### Evaluating Code
 
@@ -72,7 +72,7 @@ document.getElementById('play').addEventListener('stop',
 
 ### Double vs Single Quotes
 
-There is a tiny difference between the [Strudel REPL](https://strudel.tidalcycles.org/) and `@strudel/web`.
+There is a tiny difference between the [Strudel REPL](https://strudel.cc/) and `@strudel/web`.
 In the REPL you can use 'single quotes' for regular JS strings and "double quotes" for mini notation patterns.
 In `@strudel/web`, it does not matter which types of quotes you're using.
 There will probably be an escapte hatch for that in the future.
diff --git a/packages/web/examples/repl-example/index.html b/packages/web/examples/repl-example/index.html
index 12003e4b5..ad404e7ef 100644
--- a/packages/web/examples/repl-example/index.html
+++ b/packages/web/examples/repl-example/index.html
@@ -2,7 +2,7 @@
 <html lang="en">
   <head>
     <meta charset="UTF-8" />
-    <link rel="icon" type="image/svg+xml" href="https://strudel.tidalcycles.org/favicon.ico" />
+    <link rel="icon" type="image/svg+xml" href="https://strudel.cc/favicon.ico" />
     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
     <title>@strudel/web REPL Example</title>
   </head>
diff --git a/packages/webaudio/README.md b/packages/webaudio/README.md
index 3eb64593f..8f974a25e 100644
--- a/packages/webaudio/README.md
+++ b/packages/webaudio/README.md
@@ -33,4 +33,4 @@ document.getElementById("stop").addEventListener("click", () => scheduler.stop()
 
 [Play with the example codesandbox](https://codesandbox.io/s/amazing-dawn-gclfwg?file=/src/index.js).
 
-Read more in the docs about [samples](https://strudel.tidalcycles.org/learn/samples/), [synths](https://strudel.tidalcycles.org/learn/synths/) and [effects](https://strudel.tidalcycles.org/learn/effects/).
+Read more in the docs about [samples](https://strudel.cc/learn/samples/), [synths](https://strudel.cc/learn/synths/) and [effects](https://strudel.cc/learn/effects/).
diff --git a/paper/demo-preprocessed.md b/paper/demo-preprocessed.md
index c7b316f6d..e22823d90 100644
--- a/paper/demo-preprocessed.md
+++ b/paper/demo-preprocessed.md
@@ -199,7 +199,7 @@ interfaces.
 
 # Links
 
-The Strudel REPL is available at <https://strudel.tidalcycles.org>,
+The Strudel REPL is available at <https://strudel.cc>,
 including an interactive tutorial. The repository is at
 <https://github.com/tidalcycles/strudel>, all the code is open source
 under the GPL-3.0 License.
diff --git a/paper/demo.md b/paper/demo.md
index 9e3e52373..23fe27754 100644
--- a/paper/demo.md
+++ b/paper/demo.md
@@ -127,7 +127,7 @@ For the future, it is planned to integrate alternative sound engines such as Gli
 
 # Links
 
-The Strudel REPL is available at <https://strudel.tidalcycles.org>, including an interactive tutorial.
+The Strudel REPL is available at <https://strudel.cc>, including an interactive tutorial.
 The repository is at <https://github.com/tidalcycles/strudel>, all the code is open source under the GPL-3.0 License.
 
 # Acknowledgments
diff --git a/paper/iclc2023.html b/paper/iclc2023.html
index d2f1fb778..a83e075a2 100644
--- a/paper/iclc2023.html
+++ b/paper/iclc2023.html
@@ -717,8 +717,8 @@ <h1 data-number="10" id="future-outlook"><span
 <h1 data-number="11" id="links"><span
 class="header-section-number">11</span> Links</h1>
 <p>The Strudel REPL is available at <a
-href="https://strudel.tidalcycles.org"
-class="uri">https://strudel.tidalcycles.org</a>, including an
+href="https://strudel.cc"
+class="uri">https://strudel.cc</a>, including an
 interactive tutorial. The repository is at <a
 href="https://github.com/tidalcycles/strudel"
 class="uri">https://github.com/tidalcycles/strudel</a>, all the code is
diff --git a/paper/iclc2023.md b/paper/iclc2023.md
index ac744bb5e..3afb27828 100644
--- a/paper/iclc2023.md
+++ b/paper/iclc2023.md
@@ -450,7 +450,7 @@ While Haskell's type system makes it a great language for the ongoing developmen
 
 # Links
 
-The Strudel REPL is available at <https://strudel.tidalcycles.org>, including an interactive tutorial.
+The Strudel REPL is available at <https://strudel.cc>, including an interactive tutorial.
 The repository is at <https://github.com/tidalcycles/strudel>, all the code is open source under the AGPL-3.0 License.
 
 # Acknowledgments
diff --git a/test/__snapshots__/shared.test.mjs.snap b/test/__snapshots__/shared.test.mjs.snap
index 8740aea63..383bcdedf 100644
--- a/test/__snapshots__/shared.test.mjs.snap
+++ b/test/__snapshots__/shared.test.mjs.snap
@@ -1,6 +1,6 @@
 // Vitest Snapshot v1
 
-exports[`renders shared tunes > shared tune 10 https://strudel.tidalcycles.org/?nLsPXvEPTcQF 1`] = `
+exports[`renders shared tunes > shared tune 10 https://strudel.cc/?nLsPXvEPTcQF 1`] = `
 [
   "0/1 -> 3/2: {\\"s\\":\\"bd\\",\\"speed\\":0.7519542165100574}",
   "3/4 -> 3/2: {\\"s\\":\\"sd\\",\\"speed\\":0.7931522866332671}",
@@ -57,7 +57,7 @@ exports[`renders shared tunes > shared tune 10 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 11 https://strudel.tidalcycles.org/?ac7iGrXwBA_D 1`] = `
+exports[`renders shared tunes > shared tune 11 https://strudel.cc/?ac7iGrXwBA_D 1`] = `
 [
   "0/1 -> 3/2: {\\"s\\":\\"bd\\",\\"speed\\":0.7519542165100574}",
   "3/4 -> 3/2: {\\"s\\":\\"sd\\",\\"speed\\":0.7931522866332671}",
@@ -114,7 +114,7 @@ exports[`renders shared tunes > shared tune 11 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 12 https://strudel.tidalcycles.org/?0l5OmIwd4Xhc 1`] = `
+exports[`renders shared tunes > shared tune 12 https://strudel.cc/?0l5OmIwd4Xhc 1`] = `
 [
   "0/1 -> 3/1: {\\"n\\":\\"B3\\",\\"s\\":\\"0040_FluidR3_GM_sf2_file\\",\\"attack\\":0.05,\\"decay\\":0.1,\\"sustain\\":0.7,\\"cutoff\\":1111.7252990603447,\\"gain\\":0.3}",
   "0/1 -> 3/1: {\\"n\\":\\"D4\\",\\"s\\":\\"0040_FluidR3_GM_sf2_file\\",\\"attack\\":0.05,\\"decay\\":0.1,\\"sustain\\":0.7,\\"cutoff\\":1111.7252990603447,\\"gain\\":0.3}",
@@ -129,13 +129,13 @@ exports[`renders shared tunes > shared tune 12 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 13 https://strudel.tidalcycles.org/?a5zB31-92Q7M 1`] = `
+exports[`renders shared tunes > shared tune 13 https://strudel.cc/?a5zB31-92Q7M 1`] = `
 [
   "0/1 -> 1/1: {\\"s\\":\\"bd\\"}",
 ]
 `;
 
-exports[`renders shared tunes > shared tune 14 https://strudel.tidalcycles.org/?ZNO6a_vBjz65 1`] = `
+exports[`renders shared tunes > shared tune 14 https://strudel.cc/?ZNO6a_vBjz65 1`] = `
 [
   "0/1 -> 2/3: F3",
   "2/3 -> 1/1: Ab3",
@@ -155,7 +155,7 @@ exports[`renders shared tunes > shared tune 14 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 15 https://strudel.tidalcycles.org/?8sxdCCcYKcvp 1`] = `
+exports[`renders shared tunes > shared tune 15 https://strudel.cc/?8sxdCCcYKcvp 1`] = `
 [
   "0/1 -> 1/8: {\\"note\\":\\"A2\\",\\"s\\":\\"flbass\\",\\"n\\":0,\\"gain\\":0.3,\\"cutoff\\":2206.5338497506646,\\"resonance\\":10,\\"clip\\":1}",
   "3/8 -> 1/2: {\\"note\\":\\"A2\\",\\"s\\":\\"flbass\\",\\"n\\":0,\\"gain\\":0.3,\\"cutoff\\":2827.098521493671,\\"resonance\\":10,\\"clip\\":1}",
@@ -193,7 +193,7 @@ exports[`renders shared tunes > shared tune 15 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 16 https://strudel.tidalcycles.org/?PIG8q54uhQ5h 1`] = `
+exports[`renders shared tunes > shared tune 16 https://strudel.cc/?PIG8q54uhQ5h 1`] = `
 [
   "0/1 -> 3/1: {\\"n\\":\\"B3\\",\\"s\\":\\"0040_FluidR3_GM_sf2_file\\",\\"attack\\":0.05,\\"decay\\":0.1,\\"sustain\\":0.7,\\"cutoff\\":1111.7252990603447,\\"gain\\":0.3}",
   "0/1 -> 3/1: {\\"n\\":\\"D4\\",\\"s\\":\\"0040_FluidR3_GM_sf2_file\\",\\"attack\\":0.05,\\"decay\\":0.1,\\"sustain\\":0.7,\\"cutoff\\":1111.7252990603447,\\"gain\\":0.3}",
@@ -208,7 +208,7 @@ exports[`renders shared tunes > shared tune 16 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 18 https://strudel.tidalcycles.org/?RyZi9bqqcQku 1`] = `
+exports[`renders shared tunes > shared tune 18 https://strudel.cc/?RyZi9bqqcQku 1`] = `
 [
   "0/1 -> 4/3: B4",
   "0/1 -> 1/3: C3",
@@ -217,7 +217,7 @@ exports[`renders shared tunes > shared tune 18 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 19 https://strudel.tidalcycles.org/?83h9X6BCipLc 1`] = `
+exports[`renders shared tunes > shared tune 19 https://strudel.cc/?83h9X6BCipLc 1`] = `
 [
   "0/1 -> 3/4: F4",
   "0/1 -> 3/4: Bb4",
@@ -230,7 +230,7 @@ exports[`renders shared tunes > shared tune 19 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 20 https://strudel.tidalcycles.org/?Ii6-cLJkxdw9 1`] = `
+exports[`renders shared tunes > shared tune 20 https://strudel.cc/?Ii6-cLJkxdw9 1`] = `
 [
   "0/1 -> 1/10: C3",
   "0/1 -> 1/10: E3",
@@ -249,7 +249,7 @@ exports[`renders shared tunes > shared tune 20 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 21 https://strudel.tidalcycles.org/?-QCLFGNo4Q3J 1`] = `
+exports[`renders shared tunes > shared tune 21 https://strudel.cc/?-QCLFGNo4Q3J 1`] = `
 [
   "0/1 -> 1/4: {\\"n\\":62,\\"s\\":\\"sawtooth\\",\\"cutoff\\":2000}",
   "1/2 -> 5/8: {\\"n\\":50,\\"s\\":\\"square\\",\\"cutoff\\":2000}",
@@ -263,7 +263,7 @@ exports[`renders shared tunes > shared tune 21 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 22 https://strudel.tidalcycles.org/?vwau_1P_anLs 1`] = `
+exports[`renders shared tunes > shared tune 22 https://strudel.cc/?vwau_1P_anLs 1`] = `
 [
   "1/8 -> 1/4: {\\"n\\":\\"D1\\",\\"s\\":\\"sawtooth\\",\\"gain\\":0.3,\\"attack\\":0.01,\\"decay\\":0.1,\\"sustain\\":0.5,\\"cutoff\\":1699.6897509708342}",
   "1/8 -> 1/4: {\\"n\\":\\"D1\\",\\"s\\":\\"square\\",\\"gain\\":0.3,\\"attack\\":0.01,\\"decay\\":0.1,\\"sustain\\":0.5,\\"cutoff\\":1699.6897509708342}",
@@ -333,7 +333,7 @@ exports[`renders shared tunes > shared tune 22 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 23 https://strudel.tidalcycles.org/?wVExAEFBUPQB 1`] = `
+exports[`renders shared tunes > shared tune 23 https://strudel.cc/?wVExAEFBUPQB 1`] = `
 [
   "0/1 -> 1/4: {\\"note\\":\\"F3\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.49537037037037035}",
   "0/1 -> 1/4: {\\"note\\":\\"A3\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.5138888888888888}",
@@ -347,7 +347,7 @@ exports[`renders shared tunes > shared tune 23 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 24 https://strudel.tidalcycles.org/?C8mMgTmvsnue 1`] = `
+exports[`renders shared tunes > shared tune 24 https://strudel.cc/?C8mMgTmvsnue 1`] = `
 [
   "0/1 -> 1/10: C3",
   "0/1 -> 1/10: E3",
@@ -366,7 +366,7 @@ exports[`renders shared tunes > shared tune 24 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 25 https://strudel.tidalcycles.org/?EeNsQ8hdNZwN 1`] = `
+exports[`renders shared tunes > shared tune 25 https://strudel.cc/?EeNsQ8hdNZwN 1`] = `
 [
   "0/1 -> 1/10: C3",
   "0/1 -> 1/10: E3",
@@ -385,7 +385,7 @@ exports[`renders shared tunes > shared tune 25 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 26 https://strudel.tidalcycles.org/?AoWRw1oZkytb 1`] = `
+exports[`renders shared tunes > shared tune 26 https://strudel.cc/?AoWRw1oZkytb 1`] = `
 [
   "0/1 -> 1/2: e5",
   "1/2 -> 3/4: b4",
@@ -397,7 +397,7 @@ exports[`renders shared tunes > shared tune 26 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 27 https://strudel.tidalcycles.org/?UaTcY5YrOahl 1`] = `
+exports[`renders shared tunes > shared tune 27 https://strudel.cc/?UaTcY5YrOahl 1`] = `
 [
   "-1666666666666667/7500000000000000 -> 2/9: G3",
   "0/1 -> 4/3: E3",
@@ -420,7 +420,7 @@ exports[`renders shared tunes > shared tune 27 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 28 https://strudel.tidalcycles.org/?YPLI4xhBDMpV 1`] = `
+exports[`renders shared tunes > shared tune 28 https://strudel.cc/?YPLI4xhBDMpV 1`] = `
 [
   "0/1 -> 1/1: bd",
   "0/1 -> 1/4: hh",
@@ -431,7 +431,7 @@ exports[`renders shared tunes > shared tune 28 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 29 https://strudel.tidalcycles.org/?amB31Tm55hnv 1`] = `
+exports[`renders shared tunes > shared tune 29 https://strudel.cc/?amB31Tm55hnv 1`] = `
 [
   "0/1 -> 1/4: B3",
   "0/1 -> 1/4: D4",
@@ -454,7 +454,7 @@ exports[`renders shared tunes > shared tune 29 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 30 https://strudel.tidalcycles.org/?8OyCVeBYuqru 1`] = `
+exports[`renders shared tunes > shared tune 30 https://strudel.cc/?8OyCVeBYuqru 1`] = `
 [
   "0/1 -> 4/3: B4",
   "0/1 -> 1/3: C3",
@@ -463,7 +463,7 @@ exports[`renders shared tunes > shared tune 30 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 31 https://strudel.tidalcycles.org/?lzjNrzv5qXL2 1`] = `
+exports[`renders shared tunes > shared tune 31 https://strudel.cc/?lzjNrzv5qXL2 1`] = `
 [
   "0/1 -> 1/3: bd",
   "1/3 -> 2/3: hh",
@@ -481,7 +481,7 @@ exports[`renders shared tunes > shared tune 31 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 32 https://strudel.tidalcycles.org/?b5ZZnwaI-UuT 1`] = `
+exports[`renders shared tunes > shared tune 32 https://strudel.cc/?b5ZZnwaI-UuT 1`] = `
 [
   "0/1 -> 7/5: {\\"s\\":\\"bd\\",\\"speed\\":0.7779313247650861}",
   "7/10 -> 7/5: {\\"s\\":\\"sd\\",\\"speed\\":0.8397284299499006}",
@@ -543,7 +543,7 @@ exports[`renders shared tunes > shared tune 32 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 33 https://strudel.tidalcycles.org/?YZksJ_k4TsrS 1`] = `
+exports[`renders shared tunes > shared tune 33 https://strudel.cc/?YZksJ_k4TsrS 1`] = `
 [
   "0/1 -> 5/8: F#5",
   "5/8 -> 5/4: D5",
@@ -560,7 +560,7 @@ exports[`renders shared tunes > shared tune 33 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 34 https://strudel.tidalcycles.org/?e9-pyQN6vY8E 1`] = `
+exports[`renders shared tunes > shared tune 34 https://strudel.cc/?e9-pyQN6vY8E 1`] = `
 [
   "0/1 -> 2/1: {\\"note\\":\\"D3\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.4814814814814815}",
   "0/1 -> 2/1: {\\"note\\":\\"D3\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.4814814814814815}",
@@ -578,7 +578,7 @@ exports[`renders shared tunes > shared tune 34 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 35 https://strudel.tidalcycles.org/?ar2sdYnjIBLm 1`] = `
+exports[`renders shared tunes > shared tune 35 https://strudel.cc/?ar2sdYnjIBLm 1`] = `
 [
   "0/1 -> 5/8: F#5",
   "5/8 -> 5/4: D5",
@@ -595,9 +595,9 @@ exports[`renders shared tunes > shared tune 35 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 38 https://strudel.tidalcycles.org/?RDyvc3SOo6kX 1`] = `[]`;
+exports[`renders shared tunes > shared tune 38 https://strudel.cc/?RDyvc3SOo6kX 1`] = `[]`;
 
-exports[`renders shared tunes > shared tune 39 https://strudel.tidalcycles.org/?E9HzjWmePz3x 1`] = `
+exports[`renders shared tunes > shared tune 39 https://strudel.cc/?E9HzjWmePz3x 1`] = `
 [
   "0/1 -> 1/2: c1",
   "1/2 -> 1/1: c1",
@@ -613,7 +613,7 @@ exports[`renders shared tunes > shared tune 39 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 40 https://strudel.tidalcycles.org/?qk6JW1Bmi26s 1`] = `
+exports[`renders shared tunes > shared tune 40 https://strudel.cc/?qk6JW1Bmi26s 1`] = `
 [
   "0/1 -> 1/1: {\\"n\\":\\"C2\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":500}",
   "1/2 -> 3/5: {\\"note\\":\\"Bb3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":2000,\\"gain\\":0.6}",
@@ -647,7 +647,7 @@ exports[`renders shared tunes > shared tune 40 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 41 https://strudel.tidalcycles.org/?c59geCmbANy8 1`] = `
+exports[`renders shared tunes > shared tune 41 https://strudel.cc/?c59geCmbANy8 1`] = `
 [
   "0/1 -> 1/3: C3",
   "1/3 -> 2/3: E3",
@@ -655,7 +655,7 @@ exports[`renders shared tunes > shared tune 41 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 42 https://strudel.tidalcycles.org/?WD53HbM4B3Xf 1`] = `
+exports[`renders shared tunes > shared tune 42 https://strudel.cc/?WD53HbM4B3Xf 1`] = `
 [
   "0/1 -> 1/3: C3",
   "1/3 -> 2/3: E3",
@@ -675,7 +675,7 @@ exports[`renders shared tunes > shared tune 42 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 43 https://strudel.tidalcycles.org/?g7c_nZZ1fVJS 1`] = `
+exports[`renders shared tunes > shared tune 43 https://strudel.cc/?g7c_nZZ1fVJS 1`] = `
 [
   "0/1 -> 1/3: C3",
   "1/3 -> 2/3: E3",
@@ -695,7 +695,7 @@ exports[`renders shared tunes > shared tune 43 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 44 https://strudel.tidalcycles.org/?Don6HOPD2Wwc 1`] = `
+exports[`renders shared tunes > shared tune 44 https://strudel.cc/?Don6HOPD2Wwc 1`] = `
 [
   "0/1 -> 1/3: C3",
   "1/3 -> 2/3: E3",
@@ -750,7 +750,7 @@ exports[`renders shared tunes > shared tune 44 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 45 https://strudel.tidalcycles.org/?T8n8F1Fvew9g 1`] = `
+exports[`renders shared tunes > shared tune 45 https://strudel.cc/?T8n8F1Fvew9g 1`] = `
 [
   "0/1 -> 1/3: C3",
   "1/3 -> 2/3: E3",
@@ -805,7 +805,7 @@ exports[`renders shared tunes > shared tune 45 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 46 https://strudel.tidalcycles.org/?wj1_oPJEGjUu 1`] = `
+exports[`renders shared tunes > shared tune 46 https://strudel.cc/?wj1_oPJEGjUu 1`] = `
 [
   "1/2 -> 1/1: a4",
   "3/4 -> 1/1: a1",
@@ -815,7 +815,7 @@ exports[`renders shared tunes > shared tune 46 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 47 https://strudel.tidalcycles.org/?0KNPD8AmV-ms 1`] = `
+exports[`renders shared tunes > shared tune 47 https://strudel.cc/?0KNPD8AmV-ms 1`] = `
 [
   "0/1 -> 1/3: {\\"note\\":\\"c2\\"}",
   "0/1 -> 1/3: {\\"note\\":\\"d2\\"}",
@@ -827,7 +827,7 @@ exports[`renders shared tunes > shared tune 47 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 48 https://strudel.tidalcycles.org/?Y5DZt5A66Jj- 1`] = `
+exports[`renders shared tunes > shared tune 48 https://strudel.cc/?Y5DZt5A66Jj- 1`] = `
 [
   "0/1 -> 1/1: F2",
   "0/1 -> 1/1: F3",
@@ -836,7 +836,7 @@ exports[`renders shared tunes > shared tune 48 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 49 https://strudel.tidalcycles.org/?RnD3yO0e31p- 1`] = `
+exports[`renders shared tunes > shared tune 49 https://strudel.cc/?RnD3yO0e31p- 1`] = `
 [
   "0/1 -> 1/1: F2",
   "0/1 -> 1/1: F3",
@@ -845,7 +845,7 @@ exports[`renders shared tunes > shared tune 49 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 50 https://strudel.tidalcycles.org/?PQfKr5ac-4x0 1`] = `
+exports[`renders shared tunes > shared tune 50 https://strudel.cc/?PQfKr5ac-4x0 1`] = `
 [
   "0/1 -> 1/2: c1",
   "1/2 -> 1/1: c1",
@@ -861,7 +861,7 @@ exports[`renders shared tunes > shared tune 50 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 51 https://strudel.tidalcycles.org/?qbyqK2VN_6if 1`] = `
+exports[`renders shared tunes > shared tune 51 https://strudel.cc/?qbyqK2VN_6if 1`] = `
 [
   "0/1 -> 2/1: {\\"note\\":\\"C3\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.4722222222222222}",
   "0/1 -> 2/1: {\\"note\\":\\"E3\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.4907407407407407}",
@@ -869,7 +869,7 @@ exports[`renders shared tunes > shared tune 51 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 52 https://strudel.tidalcycles.org/?0H0ym5HypMyj 1`] = `
+exports[`renders shared tunes > shared tune 52 https://strudel.cc/?0H0ym5HypMyj 1`] = `
 [
   "0/1 -> 1/2: {\\"note\\":\\"D3\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.4814814814814815}",
   "1/4 -> 3/4: {\\"note\\":\\"F3\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.49537037037037035}",
@@ -904,7 +904,7 @@ exports[`renders shared tunes > shared tune 52 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 53 https://strudel.tidalcycles.org/?YAB9YoUpJwaj 1`] = `
+exports[`renders shared tunes > shared tune 53 https://strudel.cc/?YAB9YoUpJwaj 1`] = `
 [
   "0/1 -> 1/2: c2",
   "1/2 -> 1/1: g2",
@@ -923,7 +923,7 @@ exports[`renders shared tunes > shared tune 53 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 54 https://strudel.tidalcycles.org/?-fdVyijf3Fk0 1`] = `
+exports[`renders shared tunes > shared tune 54 https://strudel.cc/?-fdVyijf3Fk0 1`] = `
 [
   "0/1 -> 1/2: {\\"note\\":\\"c2\\"}",
   "1/2 -> 1/1: {\\"note\\":\\"g2\\"}",
@@ -942,7 +942,7 @@ exports[`renders shared tunes > shared tune 54 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 55 https://strudel.tidalcycles.org/?ODAzfGV0ZcbI 1`] = `
+exports[`renders shared tunes > shared tune 55 https://strudel.cc/?ODAzfGV0ZcbI 1`] = `
 [
   "0/1 -> 1/2: Bb2",
   "0/1 -> 1/2: F3",
@@ -966,7 +966,7 @@ exports[`renders shared tunes > shared tune 55 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 56 https://strudel.tidalcycles.org/?86BPLjJUsUlY 1`] = `
+exports[`renders shared tunes > shared tune 56 https://strudel.cc/?86BPLjJUsUlY 1`] = `
 [
   "0/1 -> 1/2: Bb2",
   "0/1 -> 1/2: F3",
@@ -990,7 +990,7 @@ exports[`renders shared tunes > shared tune 56 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 57 https://strudel.tidalcycles.org/?a6p9WTalyHea 1`] = `
+exports[`renders shared tunes > shared tune 57 https://strudel.cc/?a6p9WTalyHea 1`] = `
 [
   "0/1 -> 1/2: c1",
   "1/2 -> 1/1: c1",
@@ -1000,7 +1000,7 @@ exports[`renders shared tunes > shared tune 57 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 58 https://strudel.tidalcycles.org/?ciNbEjRKpC5T 1`] = `
+exports[`renders shared tunes > shared tune 58 https://strudel.cc/?ciNbEjRKpC5T 1`] = `
 [
   "0/1 -> 1/2: c1",
   "1/2 -> 1/1: c1",
@@ -1010,7 +1010,7 @@ exports[`renders shared tunes > shared tune 58 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 59 https://strudel.tidalcycles.org/?pLhCIXogckDD 1`] = `
+exports[`renders shared tunes > shared tune 59 https://strudel.cc/?pLhCIXogckDD 1`] = `
 [
   "0/1 -> 1/4: B3",
   "0/1 -> 1/4: D4",
@@ -1033,7 +1033,7 @@ exports[`renders shared tunes > shared tune 59 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 60 https://strudel.tidalcycles.org/?hJFGyCmtF36W 1`] = `
+exports[`renders shared tunes > shared tune 60 https://strudel.cc/?hJFGyCmtF36W 1`] = `
 [
   "0/1 -> 1/4: B3",
   "0/1 -> 1/4: D4",
@@ -1056,7 +1056,7 @@ exports[`renders shared tunes > shared tune 60 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 61 https://strudel.tidalcycles.org/?4HtBUNn4xAAA 1`] = `
+exports[`renders shared tunes > shared tune 61 https://strudel.cc/?4HtBUNn4xAAA 1`] = `
 [
   "0/1 -> 3053185/4904046: {\\"n\\":62,\\"s\\":\\"sawtooth\\",\\"cutoff\\":3986.9405734726183}",
   "0/1 -> 3053185/4904046: {\\"n\\":62,\\"s\\":\\"square\\",\\"cutoff\\":3986.9405734726183}",
@@ -1088,7 +1088,7 @@ exports[`renders shared tunes > shared tune 61 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 62 https://strudel.tidalcycles.org/?o6VENTMBn_Fo 1`] = `
+exports[`renders shared tunes > shared tune 62 https://strudel.cc/?o6VENTMBn_Fo 1`] = `
 [
   "0/1 -> 1/5: F#1",
   "1/5 -> 2/5: F#1",
@@ -1099,7 +1099,7 @@ exports[`renders shared tunes > shared tune 62 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 63 https://strudel.tidalcycles.org/?2MtjoYELsyy6 1`] = `
+exports[`renders shared tunes > shared tune 63 https://strudel.cc/?2MtjoYELsyy6 1`] = `
 [
   "0/1 -> 2867650/6103323: {\\"note\\":\\"B1\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.41203703703703703}",
   "0/1 -> 2681020/6741463: {\\"note\\":\\"B1\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.41203703703703703}",
@@ -1284,7 +1284,7 @@ exports[`renders shared tunes > shared tune 63 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 64 https://strudel.tidalcycles.org/?vJ2KTtZo20cu 1`] = `
+exports[`renders shared tunes > shared tune 64 https://strudel.cc/?vJ2KTtZo20cu 1`] = `
 [
   "0/1 -> 1/2: Bb2",
   "0/1 -> 1/2: F3",
@@ -1308,7 +1308,7 @@ exports[`renders shared tunes > shared tune 64 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 65 https://strudel.tidalcycles.org/?DhWsebFhaaI9 1`] = `
+exports[`renders shared tunes > shared tune 65 https://strudel.cc/?DhWsebFhaaI9 1`] = `
 [
   "0/1 -> 1/2: Bb2",
   "0/1 -> 1/2: F3",
@@ -1332,7 +1332,7 @@ exports[`renders shared tunes > shared tune 65 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 66 https://strudel.tidalcycles.org/?TpZLuyJCkYlW 1`] = `
+exports[`renders shared tunes > shared tune 66 https://strudel.cc/?TpZLuyJCkYlW 1`] = `
 [
   "0/1 -> 1/4: c4",
   "1/4 -> 1/2: e3",
@@ -1341,7 +1341,7 @@ exports[`renders shared tunes > shared tune 66 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 67 https://strudel.tidalcycles.org/?pQKoHsxS2h84 1`] = `
+exports[`renders shared tunes > shared tune 67 https://strudel.cc/?pQKoHsxS2h84 1`] = `
 [
   "0/1 -> 1/4: {\\"n\\":62,\\"s\\":\\"sawtooth\\",\\"cutoff\\":2000}",
   "1/2 -> 5/8: {\\"n\\":50,\\"s\\":\\"square\\",\\"cutoff\\":2000}",
@@ -1355,7 +1355,7 @@ exports[`renders shared tunes > shared tune 67 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 68 https://strudel.tidalcycles.org/?gL4HMl9q43o6 1`] = `
+exports[`renders shared tunes > shared tune 68 https://strudel.cc/?gL4HMl9q43o6 1`] = `
 [
   "0/1 -> 1/4: c4",
   "1/4 -> 1/2: e3",
@@ -1364,7 +1364,7 @@ exports[`renders shared tunes > shared tune 68 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 69 https://strudel.tidalcycles.org/?QoKBBsdDBQro 1`] = `
+exports[`renders shared tunes > shared tune 69 https://strudel.cc/?QoKBBsdDBQro 1`] = `
 [
   "0/1 -> 1/4: c4",
   "1/4 -> 1/2: e3",
@@ -1373,7 +1373,7 @@ exports[`renders shared tunes > shared tune 69 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 70 https://strudel.tidalcycles.org/?TGp3R_6-qmvY 1`] = `
+exports[`renders shared tunes > shared tune 70 https://strudel.cc/?TGp3R_6-qmvY 1`] = `
 [
   "0/1 -> 1/8: c3",
   "1/8 -> 1/4: e3",
@@ -1383,7 +1383,7 @@ exports[`renders shared tunes > shared tune 70 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 71 https://strudel.tidalcycles.org/?Oais65XPBeAV 1`] = `
+exports[`renders shared tunes > shared tune 71 https://strudel.cc/?Oais65XPBeAV 1`] = `
 [
   "0/1 -> 1/3: {\\"note\\":\\"c9\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.75}",
   "1/3 -> 2/3: {\\"note\\":\\"c9\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.75}",
@@ -1393,7 +1393,7 @@ exports[`renders shared tunes > shared tune 71 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 72 https://strudel.tidalcycles.org/?ldZPCC8_189H 1`] = `
+exports[`renders shared tunes > shared tune 72 https://strudel.cc/?ldZPCC8_189H 1`] = `
 [
   "0/1 -> 1/3: {\\"note\\":\\"c9\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.75}",
   "1/3 -> 2/3: {\\"note\\":\\"c9\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.75}",
@@ -1403,19 +1403,19 @@ exports[`renders shared tunes > shared tune 72 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 73 https://strudel.tidalcycles.org/?D--IwyHBNn0a 1`] = `[]`;
+exports[`renders shared tunes > shared tune 73 https://strudel.cc/?D--IwyHBNn0a 1`] = `[]`;
 
-exports[`renders shared tunes > shared tune 74 https://strudel.tidalcycles.org/?gRGnC9U7CLgh 1`] = `[]`;
+exports[`renders shared tunes > shared tune 74 https://strudel.cc/?gRGnC9U7CLgh 1`] = `[]`;
 
-exports[`renders shared tunes > shared tune 75 https://strudel.tidalcycles.org/?rr1DhAIFVsNf 1`] = `[]`;
+exports[`renders shared tunes > shared tune 75 https://strudel.cc/?rr1DhAIFVsNf 1`] = `[]`;
 
-exports[`renders shared tunes > shared tune 76 https://strudel.tidalcycles.org/?AnRyPR-aJRnM 1`] = `[]`;
+exports[`renders shared tunes > shared tune 76 https://strudel.cc/?AnRyPR-aJRnM 1`] = `[]`;
 
-exports[`renders shared tunes > shared tune 77 https://strudel.tidalcycles.org/?CpHjU1-jPeGv 1`] = `[]`;
+exports[`renders shared tunes > shared tune 77 https://strudel.cc/?CpHjU1-jPeGv 1`] = `[]`;
 
-exports[`renders shared tunes > shared tune 78 https://strudel.tidalcycles.org/?LgsIpYacgnRK 1`] = `[]`;
+exports[`renders shared tunes > shared tune 78 https://strudel.cc/?LgsIpYacgnRK 1`] = `[]`;
 
-exports[`renders shared tunes > shared tune 79 https://strudel.tidalcycles.org/?faC6ykfIhu1j 1`] = `
+exports[`renders shared tunes > shared tune 79 https://strudel.cc/?faC6ykfIhu1j 1`] = `
 [
   "0/1 -> 1/1: F2",
   "0/1 -> 1/1: F3",
@@ -1424,13 +1424,13 @@ exports[`renders shared tunes > shared tune 79 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 80 https://strudel.tidalcycles.org/?5_NKdDWsFCk1 1`] = `[]`;
+exports[`renders shared tunes > shared tune 80 https://strudel.cc/?5_NKdDWsFCk1 1`] = `[]`;
 
-exports[`renders shared tunes > shared tune 81 https://strudel.tidalcycles.org/?kH7LV63mXASH 1`] = `[]`;
+exports[`renders shared tunes > shared tune 81 https://strudel.cc/?kH7LV63mXASH 1`] = `[]`;
 
-exports[`renders shared tunes > shared tune 82 https://strudel.tidalcycles.org/?l7FO1TzD3yBA 1`] = `[]`;
+exports[`renders shared tunes > shared tune 82 https://strudel.cc/?l7FO1TzD3yBA 1`] = `[]`;
 
-exports[`renders shared tunes > shared tune 83 https://strudel.tidalcycles.org/?3hSnOnJz8aPZ 1`] = `
+exports[`renders shared tunes > shared tune 83 https://strudel.cc/?3hSnOnJz8aPZ 1`] = `
 [
   "0/1 -> 1/10: C3",
   "0/1 -> 1/10: E3",
@@ -1449,7 +1449,7 @@ exports[`renders shared tunes > shared tune 83 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 84 https://strudel.tidalcycles.org/?J3ClL0wQCBr_ 1`] = `
+exports[`renders shared tunes > shared tune 84 https://strudel.cc/?J3ClL0wQCBr_ 1`] = `
 [
   "0/1 -> 1/8: {\\"note\\":\\"A2\\",\\"s\\":\\"flbass\\",\\"n\\":0,\\"gain\\":0.3,\\"cutoff\\":2206.5338497506646,\\"resonance\\":10,\\"clip\\":1}",
   "3/8 -> 1/2: {\\"note\\":\\"A2\\",\\"s\\":\\"flbass\\",\\"n\\":0,\\"gain\\":0.3,\\"cutoff\\":2827.098521493671,\\"resonance\\":10,\\"clip\\":1}",
@@ -1492,7 +1492,7 @@ exports[`renders shared tunes > shared tune 84 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 85 https://strudel.tidalcycles.org/?YC1KlrX1fOyP 1`] = `
+exports[`renders shared tunes > shared tune 85 https://strudel.cc/?YC1KlrX1fOyP 1`] = `
 [
   "0/1 -> 1/3: {\\"note\\":\\"D3\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.4814814814814815}",
   "1/3 -> 1/2: {\\"note\\":\\"Eb3\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.4861111111111111}",
@@ -1501,7 +1501,7 @@ exports[`renders shared tunes > shared tune 85 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 86 https://strudel.tidalcycles.org/?YD2MRLffOCRV 1`] = `
+exports[`renders shared tunes > shared tune 86 https://strudel.cc/?YD2MRLffOCRV 1`] = `
 [
   "1/2 -> 1/1: e4",
   "1/4 -> 1/2: c3",
@@ -1509,7 +1509,7 @@ exports[`renders shared tunes > shared tune 86 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 87 https://strudel.tidalcycles.org/?XxvYG4XK-I5G 1`] = `
+exports[`renders shared tunes > shared tune 87 https://strudel.cc/?XxvYG4XK-I5G 1`] = `
 [
   "0/1 -> 1/4: {\\"note\\":\\"G4\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.5601851851851851}",
   "0/1 -> 1/4: {\\"note\\":\\"B4\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.5787037037037037}",
@@ -1524,7 +1524,7 @@ exports[`renders shared tunes > shared tune 87 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 88 https://strudel.tidalcycles.org/?FHXCltSQwouU 1`] = `
+exports[`renders shared tunes > shared tune 88 https://strudel.cc/?FHXCltSQwouU 1`] = `
 [
   "0/1 -> 3/4: c3",
   "3/4 -> 1/1: eb3",
@@ -1536,7 +1536,7 @@ exports[`renders shared tunes > shared tune 88 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 89 https://strudel.tidalcycles.org/?Hg6JP2F6ufl1 1`] = `
+exports[`renders shared tunes > shared tune 89 https://strudel.cc/?Hg6JP2F6ufl1 1`] = `
 [
   "0/1 -> 1/3: c3",
   "1/3 -> 2/3: e3",
@@ -1546,7 +1546,7 @@ exports[`renders shared tunes > shared tune 89 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 90 https://strudel.tidalcycles.org/?lNxLnMcpieR3 1`] = `
+exports[`renders shared tunes > shared tune 90 https://strudel.cc/?lNxLnMcpieR3 1`] = `
 [
   "0/1 -> 1/3: c3",
   "1/3 -> 2/3: e3",
@@ -1556,7 +1556,7 @@ exports[`renders shared tunes > shared tune 90 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 91 https://strudel.tidalcycles.org/?78PHBhVZovgo 1`] = `
+exports[`renders shared tunes > shared tune 91 https://strudel.cc/?78PHBhVZovgo 1`] = `
 [
   "0/1 -> 1/4: c3",
   "1/5 -> 9/20: c3",
@@ -1568,7 +1568,7 @@ exports[`renders shared tunes > shared tune 91 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 92 https://strudel.tidalcycles.org/?rXBp8MOz1iNw 1`] = `
+exports[`renders shared tunes > shared tune 92 https://strudel.cc/?rXBp8MOz1iNw 1`] = `
 [
   "0/1 -> 19/80: e5",
   "1/2 -> 79/120: d5",
@@ -1581,7 +1581,7 @@ exports[`renders shared tunes > shared tune 92 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 93 https://strudel.tidalcycles.org/?bbPVlOzXxAxn 1`] = `
+exports[`renders shared tunes > shared tune 93 https://strudel.cc/?bbPVlOzXxAxn 1`] = `
 [
   "-3761101961531/150000000000000 -> 2912966012823/50000000000000: F4",
   "2912966012823/50000000000000 -> 141592653589793/1000000000000000: G4",
@@ -1599,7 +1599,7 @@ exports[`renders shared tunes > shared tune 93 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 94 https://strudel.tidalcycles.org/?dZSKPnJiPMAz 1`] = `
+exports[`renders shared tunes > shared tune 94 https://strudel.cc/?dZSKPnJiPMAz 1`] = `
 [
   "-3761101961531/150000000000000 -> 2912966012823/50000000000000: E3",
   "2912966012823/50000000000000 -> 141592653589793/1000000000000000: A3",
@@ -1617,7 +1617,7 @@ exports[`renders shared tunes > shared tune 94 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 95 https://strudel.tidalcycles.org/?l-zyGmnM6g_q 1`] = `
+exports[`renders shared tunes > shared tune 95 https://strudel.cc/?l-zyGmnM6g_q 1`] = `
 [
   "0/1 -> 1/8: {\\"note\\":\\"A2\\",\\"s\\":\\"flbass\\",\\"n\\":0,\\"gain\\":0.3,\\"cutoff\\":2206.5338497506646,\\"resonance\\":10,\\"clip\\":1}",
   "3/8 -> 1/2: {\\"note\\":\\"A2\\",\\"s\\":\\"flbass\\",\\"n\\":0,\\"gain\\":0.3,\\"cutoff\\":2827.098521493671,\\"resonance\\":10,\\"clip\\":1}",
@@ -1660,7 +1660,7 @@ exports[`renders shared tunes > shared tune 95 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 96 https://strudel.tidalcycles.org/?vEpJhDLHycD8 1`] = `
+exports[`renders shared tunes > shared tune 96 https://strudel.cc/?vEpJhDLHycD8 1`] = `
 [
   "0/1 -> 3/20: 0",
   "0/1 -> 3/20: 3",
@@ -1679,7 +1679,7 @@ exports[`renders shared tunes > shared tune 96 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 97 https://strudel.tidalcycles.org/?DHUbrEloJxMd 1`] = `
+exports[`renders shared tunes > shared tune 97 https://strudel.cc/?DHUbrEloJxMd 1`] = `
 [
   "0/1 -> 19/80: {\\"note\\":\\"E4\\"}",
   "1/2 -> 79/120: {\\"note\\":\\"D4\\"}",
@@ -1692,7 +1692,7 @@ exports[`renders shared tunes > shared tune 97 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 98 https://strudel.tidalcycles.org/?-YW3kIKIGR8j 1`] = `
+exports[`renders shared tunes > shared tune 98 https://strudel.cc/?-YW3kIKIGR8j 1`] = `
 [
   "1/8 -> 1/4: {\\"n\\":\\"D1\\",\\"s\\":\\"sawtooth\\",\\"gain\\":0.3,\\"attack\\":0.01,\\"decay\\":0.1,\\"sustain\\":0.5,\\"cutoff\\":1699.6897509708342}",
   "1/8 -> 1/4: {\\"n\\":\\"D1\\",\\"s\\":\\"square\\",\\"gain\\":0.3,\\"attack\\":0.01,\\"decay\\":0.1,\\"sustain\\":0.5,\\"cutoff\\":1699.6897509708342}",
@@ -1762,7 +1762,7 @@ exports[`renders shared tunes > shared tune 98 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 99 https://strudel.tidalcycles.org/?iw5ossp4Sti1 1`] = `
+exports[`renders shared tunes > shared tune 99 https://strudel.cc/?iw5ossp4Sti1 1`] = `
 [
   "0/1 -> 3/20: 0",
   "0/1 -> 3/20: 3",
@@ -1781,7 +1781,7 @@ exports[`renders shared tunes > shared tune 99 https://strudel.tidalcycles.org/?
 ]
 `;
 
-exports[`renders shared tunes > shared tune 101 https://strudel.tidalcycles.org/?ISMZvMGByNst 1`] = `
+exports[`renders shared tunes > shared tune 101 https://strudel.cc/?ISMZvMGByNst 1`] = `
 [
   "0/1 -> 1/3: bd",
   "1/3 -> 2/3: hh",
@@ -1799,7 +1799,7 @@ exports[`renders shared tunes > shared tune 101 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 102 https://strudel.tidalcycles.org/?PDjOPOnV3JR6 1`] = `
+exports[`renders shared tunes > shared tune 102 https://strudel.cc/?PDjOPOnV3JR6 1`] = `
 [
   "0/1 -> 1/2: {\\"note\\":\\"G1\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1500}",
   "1/2 -> 1/1: {\\"note\\":\\"G1\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":1500}",
@@ -1826,7 +1826,7 @@ exports[`renders shared tunes > shared tune 102 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 103 https://strudel.tidalcycles.org/?u7qAdlwp3Qig 1`] = `
+exports[`renders shared tunes > shared tune 103 https://strudel.cc/?u7qAdlwp3Qig 1`] = `
 [
   "1/2 -> 1/1: {\\"note\\":\\"F3\\"}",
   "1/2 -> 1/1: {\\"note\\":\\"C4\\"}",
@@ -1845,7 +1845,7 @@ exports[`renders shared tunes > shared tune 103 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 104 https://strudel.tidalcycles.org/?OhjceF8ZvYk8 1`] = `
+exports[`renders shared tunes > shared tune 104 https://strudel.cc/?OhjceF8ZvYk8 1`] = `
 [
   "1/8 -> 1/4: {\\"n\\":\\"D1\\",\\"s\\":\\"sawtooth\\",\\"gain\\":0.3,\\"attack\\":0.01,\\"decay\\":0.1,\\"sustain\\":0.5,\\"cutoff\\":1699.6897509708342}",
   "1/8 -> 1/4: {\\"n\\":\\"D1\\",\\"s\\":\\"square\\",\\"gain\\":0.3,\\"attack\\":0.01,\\"decay\\":0.1,\\"sustain\\":0.5,\\"cutoff\\":1699.6897509708342}",
@@ -1915,7 +1915,7 @@ exports[`renders shared tunes > shared tune 104 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 105 https://strudel.tidalcycles.org/?4yn-ch_d1hnA 1`] = `
+exports[`renders shared tunes > shared tune 105 https://strudel.cc/?4yn-ch_d1hnA 1`] = `
 [
   "0/1 -> 1/4: C3",
   "0/1 -> 1/4: G3",
@@ -1931,7 +1931,7 @@ exports[`renders shared tunes > shared tune 105 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 106 https://strudel.tidalcycles.org/?2M1kLwRf6d-Q 1`] = `
+exports[`renders shared tunes > shared tune 106 https://strudel.cc/?2M1kLwRf6d-Q 1`] = `
 [
   "0/1 -> 1/4: C3",
   "0/1 -> 1/4: G3",
@@ -1947,7 +1947,7 @@ exports[`renders shared tunes > shared tune 106 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 107 https://strudel.tidalcycles.org/?XggCKeAH5uLK 1`] = `
+exports[`renders shared tunes > shared tune 107 https://strudel.cc/?XggCKeAH5uLK 1`] = `
 [
   "0/1 -> 1/4: C3",
   "0/1 -> 1/4: G3",
@@ -1963,7 +1963,7 @@ exports[`renders shared tunes > shared tune 107 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 108 https://strudel.tidalcycles.org/?BH_o1f7vPxd3 1`] = `
+exports[`renders shared tunes > shared tune 108 https://strudel.cc/?BH_o1f7vPxd3 1`] = `
 [
   "0/1 -> 3/4: c3",
   "3/4 -> 1/1: eb3",
@@ -1975,7 +1975,7 @@ exports[`renders shared tunes > shared tune 108 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 109 https://strudel.tidalcycles.org/?OdgRkOYpGrgF 1`] = `
+exports[`renders shared tunes > shared tune 109 https://strudel.cc/?OdgRkOYpGrgF 1`] = `
 [
   "0/1 -> 3/20: 0",
   "0/1 -> 3/20: 3",
@@ -1994,9 +1994,9 @@ exports[`renders shared tunes > shared tune 109 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 110 https://strudel.tidalcycles.org/?Yizg74mNj_6L 1`] = `[]`;
+exports[`renders shared tunes > shared tune 110 https://strudel.cc/?Yizg74mNj_6L 1`] = `[]`;
 
-exports[`renders shared tunes > shared tune 113 https://strudel.tidalcycles.org/?X7Vln6QqABL2 1`] = `
+exports[`renders shared tunes > shared tune 113 https://strudel.cc/?X7Vln6QqABL2 1`] = `
 [
   "0/1 -> 1/3: {\\"value\\":0,\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":null}",
   "1/3 -> 2/3: {\\"value\\":5,\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":null}",
@@ -2004,7 +2004,7 @@ exports[`renders shared tunes > shared tune 113 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 114 https://strudel.tidalcycles.org/?ILwq_zKFMNN5 1`] = `
+exports[`renders shared tunes > shared tune 114 https://strudel.cc/?ILwq_zKFMNN5 1`] = `
 [
   "0/1 -> 1/3: bd",
   "1/3 -> 2/3: hh",
@@ -2022,7 +2022,7 @@ exports[`renders shared tunes > shared tune 114 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 115 https://strudel.tidalcycles.org/?CSzelQFTGerr 1`] = `
+exports[`renders shared tunes > shared tune 115 https://strudel.cc/?CSzelQFTGerr 1`] = `
 [
   "0/1 -> 63/220: f#6",
   "7/22 -> 133/220: f#6",
@@ -2040,7 +2040,7 @@ exports[`renders shared tunes > shared tune 115 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 116 https://strudel.tidalcycles.org/?j5oC-CSjk7Kq 1`] = `
+exports[`renders shared tunes > shared tune 116 https://strudel.cc/?j5oC-CSjk7Kq 1`] = `
 [
   "0/1 -> 1/4: {\\"note\\":\\"Bb3\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.5185185185185186}",
   "0/1 -> 1/4: {\\"note\\":\\"D4\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.537037037037037}",
@@ -2055,7 +2055,7 @@ exports[`renders shared tunes > shared tune 116 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 117 https://strudel.tidalcycles.org/?waoDkqtNx0Xe 1`] = `
+exports[`renders shared tunes > shared tune 117 https://strudel.cc/?waoDkqtNx0Xe 1`] = `
 [
   "0/1 -> 1/2: c1",
   "1/2 -> 1/1: c1",
@@ -2071,7 +2071,7 @@ exports[`renders shared tunes > shared tune 117 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 118 https://strudel.tidalcycles.org/?hHssvZuQ9eU- 1`] = `
+exports[`renders shared tunes > shared tune 118 https://strudel.cc/?hHssvZuQ9eU- 1`] = `
 [
   "0/1 -> 1/4: {\\"note\\":\\"C2\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.41666666666666663}",
   "0/1 -> 1/4: {\\"note\\":\\"C2\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.41666666666666663}",
@@ -2348,9 +2348,9 @@ exports[`renders shared tunes > shared tune 118 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 119 https://strudel.tidalcycles.org/?YjCJ3DhT9u4M 1`] = `[]`;
+exports[`renders shared tunes > shared tune 119 https://strudel.cc/?YjCJ3DhT9u4M 1`] = `[]`;
 
-exports[`renders shared tunes > shared tune 121 https://strudel.tidalcycles.org/?wrcmJLYiesgF 1`] = `
+exports[`renders shared tunes > shared tune 121 https://strudel.cc/?wrcmJLYiesgF 1`] = `
 [
   "0/1 -> 19/80: e5",
   "1/2 -> 79/120: d5",
@@ -2363,7 +2363,7 @@ exports[`renders shared tunes > shared tune 121 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 122 https://strudel.tidalcycles.org/?tiYDzBGIFjYV 1`] = `
+exports[`renders shared tunes > shared tune 122 https://strudel.cc/?tiYDzBGIFjYV 1`] = `
 [
   "0/1 -> 2/1: {\\"note\\":\\"C3\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.4722222222222222}",
   "0/1 -> 2/1: {\\"note\\":\\"E3\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.4907407407407407}",
@@ -2371,7 +2371,7 @@ exports[`renders shared tunes > shared tune 122 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 123 https://strudel.tidalcycles.org/?Y1nz8H0a10CF 1`] = `
+exports[`renders shared tunes > shared tune 123 https://strudel.cc/?Y1nz8H0a10CF 1`] = `
 [
   "-1666666666666667/7500000000000000 -> 2/9: G3",
   "0/1 -> 4/3: E3",
@@ -2394,7 +2394,7 @@ exports[`renders shared tunes > shared tune 123 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 124 https://strudel.tidalcycles.org/?SZDwdxhme28o 1`] = `
+exports[`renders shared tunes > shared tune 124 https://strudel.cc/?SZDwdxhme28o 1`] = `
 [
   "11/32 -> 1/2: {\\"n\\":\\"Bb3\\",\\"cutoff\\":1625,\\"s\\":\\"square\\",\\"decay\\":0.1,\\"sustain\\":0,\\"resonance\\":16,\\"gain\\":0.2,\\"pan\\":0.931367192988896}",
   "11/32 -> 1/2: {\\"n\\":\\"D4\\",\\"cutoff\\":1625,\\"s\\":\\"square\\",\\"decay\\":0.1,\\"sustain\\":0,\\"resonance\\":16,\\"gain\\":0.2,\\"pan\\":0.931367192988896}",
@@ -2448,7 +2448,7 @@ exports[`renders shared tunes > shared tune 124 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 125 https://strudel.tidalcycles.org/?m7Uyh34tQwqi 1`] = `
+exports[`renders shared tunes > shared tune 125 https://strudel.cc/?m7Uyh34tQwqi 1`] = `
 [
   "11/32 -> 1/2: {\\"n\\":\\"Bb3\\",\\"cutoff\\":1625,\\"s\\":\\"square\\",\\"decay\\":0.1,\\"sustain\\":0,\\"resonance\\":16,\\"gain\\":0.2,\\"pan\\":0.931367192988896}",
   "11/32 -> 1/2: {\\"n\\":\\"D4\\",\\"cutoff\\":1625,\\"s\\":\\"square\\",\\"decay\\":0.1,\\"sustain\\":0,\\"resonance\\":16,\\"gain\\":0.2,\\"pan\\":0.931367192988896}",
@@ -2502,7 +2502,7 @@ exports[`renders shared tunes > shared tune 125 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 126 https://strudel.tidalcycles.org/?P9d8_AXWM7ef 1`] = `
+exports[`renders shared tunes > shared tune 126 https://strudel.cc/?P9d8_AXWM7ef 1`] = `
 [
   "0/1 -> 3/4: c3",
   "3/4 -> 1/1: eb3",
@@ -2514,7 +2514,7 @@ exports[`renders shared tunes > shared tune 126 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 127 https://strudel.tidalcycles.org/?FM1koCTLh1IM 1`] = `
+exports[`renders shared tunes > shared tune 127 https://strudel.cc/?FM1koCTLh1IM 1`] = `
 [
   "0/1 -> 1/10: C3",
   "0/1 -> 1/10: E3",
@@ -2533,7 +2533,7 @@ exports[`renders shared tunes > shared tune 127 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 128 https://strudel.tidalcycles.org/?1SAqiKiVI8r- 1`] = `
+exports[`renders shared tunes > shared tune 128 https://strudel.cc/?1SAqiKiVI8r- 1`] = `
 [
   "0/1 -> 3/20: 0",
   "0/1 -> 3/20: 3",
@@ -2552,7 +2552,7 @@ exports[`renders shared tunes > shared tune 128 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 129 https://strudel.tidalcycles.org/?Pds79yD4qQKJ 1`] = `
+exports[`renders shared tunes > shared tune 129 https://strudel.cc/?Pds79yD4qQKJ 1`] = `
 [
   "0/1 -> 1/5: e4",
   "2/5 -> 3/5: e3",
@@ -2560,7 +2560,7 @@ exports[`renders shared tunes > shared tune 129 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 130 https://strudel.tidalcycles.org/?DYJx5C-3NrV7 1`] = `
+exports[`renders shared tunes > shared tune 130 https://strudel.cc/?DYJx5C-3NrV7 1`] = `
 [
   "0/1 -> 5/26: {\\"note\\":\\"B2\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.46759259259259256}",
   "5/13 -> 15/26: {\\"note\\":\\"B2\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.46759259259259256}",
@@ -2588,7 +2588,7 @@ exports[`renders shared tunes > shared tune 130 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 131 https://strudel.tidalcycles.org/?9_BPqHIO4rPv 1`] = `
+exports[`renders shared tunes > shared tune 131 https://strudel.cc/?9_BPqHIO4rPv 1`] = `
 [
   "0/1 -> 27/40: {\\"note\\":\\"Db4\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.5324074074074074}",
   "0/1 -> 27/40: {\\"note\\":\\"Ab4\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.5648148148148149}",
@@ -2629,7 +2629,7 @@ exports[`renders shared tunes > shared tune 131 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 132 https://strudel.tidalcycles.org/?FwkQ0EG3Kkwm 1`] = `
+exports[`renders shared tunes > shared tune 132 https://strudel.cc/?FwkQ0EG3Kkwm 1`] = `
 [
   "0/1 -> 1/2: Bb2",
   "0/1 -> 1/2: F3",
@@ -2653,7 +2653,7 @@ exports[`renders shared tunes > shared tune 132 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 133 https://strudel.tidalcycles.org/?Cb_YrHpHKkJN 1`] = `
+exports[`renders shared tunes > shared tune 133 https://strudel.cc/?Cb_YrHpHKkJN 1`] = `
 [
   "0/1 -> 1/8: {\\"note\\":\\"A2\\",\\"s\\":\\"flbass\\",\\"n\\":0,\\"gain\\":0.3,\\"cutoff\\":2206.5338497506646,\\"resonance\\":10,\\"clip\\":1}",
   "3/8 -> 1/2: {\\"note\\":\\"A2\\",\\"s\\":\\"flbass\\",\\"n\\":0,\\"gain\\":0.3,\\"cutoff\\":2827.098521493671,\\"resonance\\":10,\\"clip\\":1}",
@@ -2696,7 +2696,7 @@ exports[`renders shared tunes > shared tune 133 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 134 https://strudel.tidalcycles.org/?SkqbkK705Olu 1`] = `
+exports[`renders shared tunes > shared tune 134 https://strudel.cc/?SkqbkK705Olu 1`] = `
 [
   "7/8 -> 1/1: {\\"s\\":\\"hi\\"}",
   "5/8 -> 3/4: {\\"s\\":\\"lo\\"}",
@@ -2706,7 +2706,7 @@ exports[`renders shared tunes > shared tune 134 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 135 https://strudel.tidalcycles.org/?-hyad472v8by 1`] = `
+exports[`renders shared tunes > shared tune 135 https://strudel.cc/?-hyad472v8by 1`] = `
 [
   "0/1 -> 3/8: {\\"gain\\":1,\\"s\\":\\"lo\\",\\"speed\\":2}",
   "3/8 -> 3/4: {\\"gain\\":0.5,\\"s\\":\\"lo\\",\\"speed\\":2}",
@@ -2715,7 +2715,7 @@ exports[`renders shared tunes > shared tune 135 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 136 https://strudel.tidalcycles.org/?BApYR1gphKJ7 1`] = `
+exports[`renders shared tunes > shared tune 136 https://strudel.cc/?BApYR1gphKJ7 1`] = `
 [
   "0/1 -> 3/8: {\\"gain\\":1,\\"s\\":\\"lo\\",\\"speed\\":2,\\"release\\":0.2,\\"clip\\":1}",
   "3/8 -> 3/4: {\\"gain\\":0.5,\\"s\\":\\"lo\\",\\"speed\\":2,\\"release\\":0.2,\\"clip\\":1}",
@@ -2724,7 +2724,7 @@ exports[`renders shared tunes > shared tune 136 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 137 https://strudel.tidalcycles.org/?wK1UQcYoYpoD 1`] = `
+exports[`renders shared tunes > shared tune 137 https://strudel.cc/?wK1UQcYoYpoD 1`] = `
 [
   "0/1 -> 3/16: {\\"gain\\":1,\\"s\\":\\"lo\\",\\"speed\\":1,\\"hcutoff\\":1000,\\"resonance\\":0.2}",
   "3/16 -> 3/8: {\\"gain\\":0.5,\\"s\\":\\"lo\\",\\"speed\\":1,\\"hcutoff\\":1000,\\"resonance\\":0.2}",
@@ -2742,7 +2742,7 @@ exports[`renders shared tunes > shared tune 137 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 138 https://strudel.tidalcycles.org/?lB2HuXEXyTex 1`] = `
+exports[`renders shared tunes > shared tune 138 https://strudel.cc/?lB2HuXEXyTex 1`] = `
 [
   "0/1 -> 6275565/1452119: A3",
   "-9/8 -> 20400609/11616952: G4",
@@ -2753,13 +2753,13 @@ exports[`renders shared tunes > shared tune 138 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 139 https://strudel.tidalcycles.org/?WUxQVJIu27Nz 1`] = `
+exports[`renders shared tunes > shared tune 139 https://strudel.cc/?WUxQVJIu27Nz 1`] = `
 [
   "0/1 -> 1/1: {\\"gain\\":1,\\"s\\":\\"lo\\",\\"cps\\":1.1}",
 ]
 `;
 
-exports[`renders shared tunes > shared tune 140 https://strudel.tidalcycles.org/?ZQ-ce-Qj-nuP 1`] = `
+exports[`renders shared tunes > shared tune 140 https://strudel.cc/?ZQ-ce-Qj-nuP 1`] = `
 [
   "0/1 -> 1/2: {\\"note\\":\\"F3\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.49537037037037035}",
   "1/4 -> 3/4: {\\"note\\":\\"F2\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.4398148148148148}",
@@ -2770,7 +2770,7 @@ exports[`renders shared tunes > shared tune 140 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 141 https://strudel.tidalcycles.org/?tBPkuxuje0iY 1`] = `
+exports[`renders shared tunes > shared tune 141 https://strudel.cc/?tBPkuxuje0iY 1`] = `
 [
   "0/1 -> 1/3: bd",
   "1/3 -> 2/3: hh",
@@ -2788,7 +2788,7 @@ exports[`renders shared tunes > shared tune 141 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 142 https://strudel.tidalcycles.org/?ak6ZpErh0hl1 1`] = `
+exports[`renders shared tunes > shared tune 142 https://strudel.cc/?ak6ZpErh0hl1 1`] = `
 [
   "0/1 -> 1/8: {\\"note\\":\\"A2\\",\\"s\\":\\"flbass\\",\\"n\\":0,\\"gain\\":0.3,\\"cutoff\\":2206.5338497506646,\\"resonance\\":10,\\"clip\\":1}",
   "3/8 -> 1/2: {\\"note\\":\\"A2\\",\\"s\\":\\"flbass\\",\\"n\\":0,\\"gain\\":0.3,\\"cutoff\\":2827.098521493671,\\"resonance\\":10,\\"clip\\":1}",
@@ -2831,7 +2831,7 @@ exports[`renders shared tunes > shared tune 142 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 143 https://strudel.tidalcycles.org/?U9J_c-Insgbc 1`] = `
+exports[`renders shared tunes > shared tune 143 https://strudel.cc/?U9J_c-Insgbc 1`] = `
 [
   "0/1 -> 63/220: f#6",
   "7/22 -> 133/220: f#6",
@@ -2849,7 +2849,7 @@ exports[`renders shared tunes > shared tune 143 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 144 https://strudel.tidalcycles.org/?y2FS3Xvqv68d 1`] = `
+exports[`renders shared tunes > shared tune 144 https://strudel.cc/?y2FS3Xvqv68d 1`] = `
 [
   "0/1 -> 63/220: {\\"note\\":\\"f#6\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.6666666666666667}",
   "7/22 -> 133/220: {\\"note\\":\\"f#6\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.6666666666666667}",
@@ -2867,7 +2867,7 @@ exports[`renders shared tunes > shared tune 144 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 145 https://strudel.tidalcycles.org/?d7-gUjyRbKP9 1`] = `
+exports[`renders shared tunes > shared tune 145 https://strudel.cc/?d7-gUjyRbKP9 1`] = `
 [
   "0/1 -> 6/25: {\\"note\\":60,\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.5277777777777778}",
   "0/1 -> 6/25: {\\"note\\":63,\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.5416666666666667}",
@@ -2881,7 +2881,7 @@ exports[`renders shared tunes > shared tune 145 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 146 https://strudel.tidalcycles.org/?lqXKPxgm_j0a 1`] = `
+exports[`renders shared tunes > shared tune 146 https://strudel.cc/?lqXKPxgm_j0a 1`] = `
 [
   "-38/5 -> 2/5: db3",
   "-38/5 -> 2/5: eb3",
@@ -2905,7 +2905,7 @@ exports[`renders shared tunes > shared tune 146 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 147 https://strudel.tidalcycles.org/?5obY2LrCcbZI 1`] = `
+exports[`renders shared tunes > shared tune 147 https://strudel.cc/?5obY2LrCcbZI 1`] = `
 [
   "1/3 -> 59/120: {\\"n\\":\\"c5\\",\\"s\\":\\"Oboe: Reed\\"}",
   "1/2 -> 49/60: {\\"n\\":\\"d5\\",\\"s\\":\\"Oboe: Reed\\"}",
@@ -2919,7 +2919,7 @@ exports[`renders shared tunes > shared tune 147 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 148 https://strudel.tidalcycles.org/?8262D2qsUNtO 1`] = `
+exports[`renders shared tunes > shared tune 148 https://strudel.cc/?8262D2qsUNtO 1`] = `
 [
   "0/1 -> 1/4: {\\"n\\":\\"c3\\",\\"s\\":\\"Oboe: Reed\\",\\"gain\\":0.5,\\"cutoff\\":1275.5812898145155}",
   "1/4 -> 1/2: {\\"n\\":\\"eb3\\",\\"s\\":\\"Oboe: Reed\\",\\"gain\\":0.5,\\"cutoff\\":1600.013209717642}",
@@ -2943,7 +2943,7 @@ exports[`renders shared tunes > shared tune 148 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 149 https://strudel.tidalcycles.org/?9PUNz9fqWo2F 1`] = `
+exports[`renders shared tunes > shared tune 149 https://strudel.cc/?9PUNz9fqWo2F 1`] = `
 [
   "15/41 -> 177/328: {\\"n\\":\\"c5\\",\\"s\\":\\"Oboe: Reed\\",\\"gain\\":0.4}",
   "45/82 -> 147/164: {\\"n\\":\\"d5\\",\\"s\\":\\"Oboe: Reed\\",\\"gain\\":0.4}",
@@ -2963,7 +2963,7 @@ exports[`renders shared tunes > shared tune 149 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 150 https://strudel.tidalcycles.org/?wkDHhKIUtwY_ 1`] = `
+exports[`renders shared tunes > shared tune 150 https://strudel.cc/?wkDHhKIUtwY_ 1`] = `
 [
   "0/1 -> 65/12: {\\"n\\":\\"d#5\\",\\"s\\":\\"Piccolo: Pipe\\",\\"gain\\":0.35}",
   "0/1 -> 65/12: {\\"n\\":56,\\"s\\":\\"Choir Aahs: Ensemble\\",\\"gain\\":0.15}",
@@ -2983,7 +2983,7 @@ exports[`renders shared tunes > shared tune 150 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 151 https://strudel.tidalcycles.org/?Zj9qfA1PhcDS 1`] = `
+exports[`renders shared tunes > shared tune 151 https://strudel.cc/?Zj9qfA1PhcDS 1`] = `
 [
   "0/1 -> 65/12: {\\"n\\":\\"d#5\\",\\"s\\":\\"Piccolo: Pipe\\",\\"gain\\":0.35}",
   "0/1 -> 65/12: {\\"n\\":56,\\"s\\":\\"Choir Aahs: Ensemble\\",\\"gain\\":0.15}",
@@ -3003,7 +3003,7 @@ exports[`renders shared tunes > shared tune 151 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 152 https://strudel.tidalcycles.org/?p_G-4ZB295BP 1`] = `
+exports[`renders shared tunes > shared tune 152 https://strudel.cc/?p_G-4ZB295BP 1`] = `
 [
   "0/1 -> 1/8: {\\"note\\":\\"A2\\",\\"s\\":\\"flbass\\",\\"n\\":0,\\"gain\\":0.3,\\"cutoff\\":2206.5338497506646,\\"resonance\\":10,\\"clip\\":1}",
   "3/8 -> 1/2: {\\"note\\":\\"A2\\",\\"s\\":\\"flbass\\",\\"n\\":0,\\"gain\\":0.3,\\"cutoff\\":2827.098521493671,\\"resonance\\":10,\\"clip\\":1}",
@@ -3046,7 +3046,7 @@ exports[`renders shared tunes > shared tune 152 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 153 https://strudel.tidalcycles.org/?NWLKF4C7o4EX 1`] = `
+exports[`renders shared tunes > shared tune 153 https://strudel.cc/?NWLKF4C7o4EX 1`] = `
 [
   "0/1 -> 1/2: {\\"note\\":\\"G4\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.5601851851851851}",
   "0/1 -> 1/2: {\\"note\\":\\"B4\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.5787037037037037}",
@@ -3061,7 +3061,7 @@ exports[`renders shared tunes > shared tune 153 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 154 https://strudel.tidalcycles.org/?XhNBCyuzIVOD 1`] = `
+exports[`renders shared tunes > shared tune 154 https://strudel.cc/?XhNBCyuzIVOD 1`] = `
 [
   "0/1 -> 1457/3000: {\\"n\\":\\"c#6\\",\\"s\\":\\"Overdriven Guitar: Guitar\\",\\"gain\\":0.18}",
   "47/90 -> 13771/18000: {\\"n\\":\\"f5\\",\\"s\\":\\"Overdriven Guitar: Guitar\\",\\"gain\\":0.18}",
@@ -3084,7 +3084,7 @@ exports[`renders shared tunes > shared tune 154 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 155 https://strudel.tidalcycles.org/?AL73np8C7Fe7 1`] = `
+exports[`renders shared tunes > shared tune 155 https://strudel.cc/?AL73np8C7Fe7 1`] = `
 [
   "0/1 -> 589/1200: {\\"n\\":\\"C#5\\",\\"s\\":\\"Overdriven Guitar: Guitar\\",\\"gain\\":0.2}",
   "19/36 -> 5567/7200: {\\"n\\":\\"F4\\",\\"s\\":\\"Overdriven Guitar: Guitar\\",\\"gain\\":0.2}",
@@ -3110,7 +3110,7 @@ exports[`renders shared tunes > shared tune 155 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 156 https://strudel.tidalcycles.org/?89gJxIK34OPK 1`] = `
+exports[`renders shared tunes > shared tune 156 https://strudel.cc/?89gJxIK34OPK 1`] = `
 [
   "0/1 -> 3/2: {\\"s\\":\\"bd\\",\\"speed\\":0.7519542165100574}",
   "3/4 -> 3/2: {\\"s\\":\\"sd\\",\\"speed\\":0.7931522866332671}",
@@ -3167,7 +3167,7 @@ exports[`renders shared tunes > shared tune 156 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 157 https://strudel.tidalcycles.org/?8g4oMFkLYMXZ 1`] = `
+exports[`renders shared tunes > shared tune 157 https://strudel.cc/?8g4oMFkLYMXZ 1`] = `
 [
   "0/1 -> 1/10: C3",
   "0/1 -> 1/10: E3",
@@ -3186,7 +3186,7 @@ exports[`renders shared tunes > shared tune 157 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 158 https://strudel.tidalcycles.org/?NIQF-VGYdB83 1`] = `
+exports[`renders shared tunes > shared tune 158 https://strudel.cc/?NIQF-VGYdB83 1`] = `
 [
   "0/1 -> 1/2: c1",
   "1/2 -> 1/1: c1",
@@ -3202,7 +3202,7 @@ exports[`renders shared tunes > shared tune 158 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 159 https://strudel.tidalcycles.org/?KOAtvzaJcmmY 1`] = `
+exports[`renders shared tunes > shared tune 159 https://strudel.cc/?KOAtvzaJcmmY 1`] = `
 [
   "0/1 -> 1/4: {\\"note\\":\\"C2\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.41666666666666663}",
   "0/1 -> 1/4: {\\"note\\":\\"C2\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.41666666666666663}",
@@ -3479,7 +3479,7 @@ exports[`renders shared tunes > shared tune 159 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 160 https://strudel.tidalcycles.org/?pK517-FAktOc 1`] = `
+exports[`renders shared tunes > shared tune 160 https://strudel.cc/?pK517-FAktOc 1`] = `
 [
   "0/1 -> 4/3: B4",
   "0/1 -> 1/3: C3",
@@ -3488,7 +3488,7 @@ exports[`renders shared tunes > shared tune 160 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 161 https://strudel.tidalcycles.org/?H3BbA0AovtKs 1`] = `
+exports[`renders shared tunes > shared tune 161 https://strudel.cc/?H3BbA0AovtKs 1`] = `
 [
   "0/1 -> 5/26: {\\"note\\":\\"B2\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.46759259259259256}",
   "5/13 -> 15/26: {\\"note\\":\\"B2\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.46759259259259256}",
@@ -3516,7 +3516,7 @@ exports[`renders shared tunes > shared tune 161 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 162 https://strudel.tidalcycles.org/?Y9RZADkxt8UL 1`] = `
+exports[`renders shared tunes > shared tune 162 https://strudel.cc/?Y9RZADkxt8UL 1`] = `
 [
   "0/1 -> 65/12: {\\"n\\":\\"d#5\\",\\"s\\":\\"Piccolo: Pipe\\",\\"gain\\":0.35}",
   "0/1 -> 65/12: {\\"n\\":56,\\"s\\":\\"Choir Aahs: Ensemble\\",\\"gain\\":0.15}",
@@ -3536,7 +3536,7 @@ exports[`renders shared tunes > shared tune 162 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 163 https://strudel.tidalcycles.org/?bxwipc2kqreB 1`] = `
+exports[`renders shared tunes > shared tune 163 https://strudel.cc/?bxwipc2kqreB 1`] = `
 [
   "1/2 -> 1/1: a4",
   "3/4 -> 1/1: a1",
@@ -3546,7 +3546,7 @@ exports[`renders shared tunes > shared tune 163 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 164 https://strudel.tidalcycles.org/?qGimkQi_nszY 1`] = `
+exports[`renders shared tunes > shared tune 164 https://strudel.cc/?qGimkQi_nszY 1`] = `
 [
   "47/60 -> 6157/6000: {\\"n\\":\\"c#5\\",\\"s\\":\\"Overdriven Guitar: Guitar\\",\\"gain\\":0.18}",
   "47/90 -> 13771/18000: {\\"n\\":\\"d#5\\",\\"s\\":\\"Overdriven Guitar: Guitar\\",\\"gain\\":0.18}",
@@ -3570,7 +3570,7 @@ exports[`renders shared tunes > shared tune 164 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 165 https://strudel.tidalcycles.org/?DVESSaRggtn_ 1`] = `
+exports[`renders shared tunes > shared tune 165 https://strudel.cc/?DVESSaRggtn_ 1`] = `
 [
   "0/1 -> 6275565/1452119: A3",
   "-9/8 -> 20400609/11616952: G4",
@@ -3581,7 +3581,7 @@ exports[`renders shared tunes > shared tune 165 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 166 https://strudel.tidalcycles.org/?CHh9ZGJxiWnm 1`] = `
+exports[`renders shared tunes > shared tune 166 https://strudel.cc/?CHh9ZGJxiWnm 1`] = `
 [
   "1/8 -> 1/4: {\\"n\\":\\"D1\\",\\"s\\":\\"sawtooth\\",\\"gain\\":0.3,\\"attack\\":0.01,\\"decay\\":0.1,\\"sustain\\":0.5,\\"cutoff\\":1699.6897509708342}",
   "1/8 -> 1/4: {\\"n\\":\\"D1\\",\\"s\\":\\"square\\",\\"gain\\":0.3,\\"attack\\":0.01,\\"decay\\":0.1,\\"sustain\\":0.5,\\"cutoff\\":1699.6897509708342}",
@@ -3651,7 +3651,7 @@ exports[`renders shared tunes > shared tune 166 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 167 https://strudel.tidalcycles.org/?7C7fQJ7ENNd3 1`] = `
+exports[`renders shared tunes > shared tune 167 https://strudel.cc/?7C7fQJ7ENNd3 1`] = `
 [
   "0/1 -> 1/4: {\\"s\\":\\"hh\\"}",
   "1/4 -> 1/2: {\\"s\\":\\"hh\\"}",
@@ -3660,7 +3660,7 @@ exports[`renders shared tunes > shared tune 167 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 168 https://strudel.tidalcycles.org/?VGsjmHzmkMz0 1`] = `
+exports[`renders shared tunes > shared tune 168 https://strudel.cc/?VGsjmHzmkMz0 1`] = `
 [
   "1/4 -> 1/2: {\\"s\\":\\"bd\\"}",
   "0/1 -> 1/4: {\\"s\\":\\"hh\\"}",
@@ -3669,7 +3669,7 @@ exports[`renders shared tunes > shared tune 168 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 169 https://strudel.tidalcycles.org/?4QSBDxgdgAIr 1`] = `
+exports[`renders shared tunes > shared tune 169 https://strudel.cc/?4QSBDxgdgAIr 1`] = `
 [
   "1/4 -> 1/2: {\\"s\\":\\"bd\\"}",
   "0/1 -> 1/12: {\\"s\\":\\"hh\\"}",
@@ -3684,7 +3684,7 @@ exports[`renders shared tunes > shared tune 169 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 170 https://strudel.tidalcycles.org/?_1ClWbH9kSKC 1`] = `
+exports[`renders shared tunes > shared tune 170 https://strudel.cc/?_1ClWbH9kSKC 1`] = `
 [
   "0/1 -> 2/9: {\\"s\\":\\"hh\\"}",
   "2/9 -> 4/9: {\\"s\\":\\"hh\\"}",
@@ -3695,7 +3695,7 @@ exports[`renders shared tunes > shared tune 170 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 171 https://strudel.tidalcycles.org/?nmwsMPG16O1L 1`] = `
+exports[`renders shared tunes > shared tune 171 https://strudel.cc/?nmwsMPG16O1L 1`] = `
 [
   "0/1 -> 1/4: 83.8125",
   "3/4 -> 1/1: 82.6875",
@@ -3707,7 +3707,7 @@ exports[`renders shared tunes > shared tune 171 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 172 https://strudel.tidalcycles.org/?DBp75NUfSxIn 1`] = `
+exports[`renders shared tunes > shared tune 172 https://strudel.cc/?DBp75NUfSxIn 1`] = `
 [
   "0/1 -> 1/4: {\\"note\\":57}",
   "0/1 -> 1/4: {\\"note\\":61}",
@@ -3724,7 +3724,7 @@ exports[`renders shared tunes > shared tune 172 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 173 https://strudel.tidalcycles.org/?bdsxEcjr7fkg 1`] = `
+exports[`renders shared tunes > shared tune 173 https://strudel.cc/?bdsxEcjr7fkg 1`] = `
 [
   "0/1 -> 1/1: {\\"n\\":\\"a1\\",\\"decay\\":0.25,\\"sustain\\":0,\\"s\\":\\"sawtooth\\",\\"gain\\":0.4,\\"vowel\\":\\"a\\"}",
   "-3/8 -> 1/8: {\\"n\\":52,\\"decay\\":0.25,\\"sustain\\":0,\\"s\\":\\"sawtooth\\",\\"gain\\":0.4,\\"vowel\\":\\"a\\"}",
@@ -3733,7 +3733,7 @@ exports[`renders shared tunes > shared tune 173 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 174 https://strudel.tidalcycles.org/?IuUGlGkdiPX- 1`] = `
+exports[`renders shared tunes > shared tune 174 https://strudel.cc/?IuUGlGkdiPX- 1`] = `
 [
   "1/4 -> 1/2: {\\"s\\":\\"hh\\",\\"coarse\\":16,\\"speed\\":0.7285963821098448}",
   "3/4 -> 1/1: {\\"s\\":\\"hh\\",\\"coarse\\":16,\\"shape\\":0.8,\\"speed\\":0.80224046928206}",
@@ -3746,7 +3746,7 @@ exports[`renders shared tunes > shared tune 174 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 175 https://strudel.tidalcycles.org/?1QH3HPhZ1uad 1`] = `
+exports[`renders shared tunes > shared tune 175 https://strudel.cc/?1QH3HPhZ1uad 1`] = `
 [
   "0/1 -> 1/2: c1",
   "1/2 -> 1/1: c1",
@@ -3762,7 +3762,7 @@ exports[`renders shared tunes > shared tune 175 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 176 https://strudel.tidalcycles.org/?hxJZG7SS71HP 1`] = `
+exports[`renders shared tunes > shared tune 176 https://strudel.cc/?hxJZG7SS71HP 1`] = `
 [
   "0/1 -> 1/2: {\\"note\\":\\"F3\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.49537037037037035}",
   "1/4 -> 3/4: {\\"note\\":\\"F2\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.4398148148148148}",
@@ -3773,7 +3773,7 @@ exports[`renders shared tunes > shared tune 176 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 177 https://strudel.tidalcycles.org/?EoVX7HjwHB8r 1`] = `
+exports[`renders shared tunes > shared tune 177 https://strudel.cc/?EoVX7HjwHB8r 1`] = `
 [
   "0/1 -> 1/2: Bb2",
   "0/1 -> 1/2: F3",
@@ -3797,7 +3797,7 @@ exports[`renders shared tunes > shared tune 177 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 178 https://strudel.tidalcycles.org/?tVIePZOlbUFE 1`] = `
+exports[`renders shared tunes > shared tune 178 https://strudel.cc/?tVIePZOlbUFE 1`] = `
 [
   "0/1 -> 1/4: {\\"note\\":\\"C2\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.41666666666666663}",
   "0/1 -> 1/4: {\\"note\\":\\"C2\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.41666666666666663}",
@@ -4074,7 +4074,7 @@ exports[`renders shared tunes > shared tune 178 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 179 https://strudel.tidalcycles.org/?P_Fi2yRHrXHj 1`] = `
+exports[`renders shared tunes > shared tune 179 https://strudel.cc/?P_Fi2yRHrXHj 1`] = `
 [
   "0/1 -> 1/8: {\\"freq\\":55.33,\\"s\\":\\"sawtooth\\"}",
   "0/1 -> 1/8: {\\"freq\\":54.725,\\"s\\":\\"sawtooth\\"}",
@@ -4102,7 +4102,7 @@ exports[`renders shared tunes > shared tune 179 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 180 https://strudel.tidalcycles.org/?brh8FpBbbH-- 1`] = `
+exports[`renders shared tunes > shared tune 180 https://strudel.cc/?brh8FpBbbH-- 1`] = `
 [
   "0/1 -> 1/1: {\\"s\\":\\"bd\\"}",
   "1/2 -> 1/1: {\\"s\\":\\"sd\\"}",
@@ -4115,7 +4115,7 @@ exports[`renders shared tunes > shared tune 180 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 181 https://strudel.tidalcycles.org/?Uw7K4l1pIVUt 1`] = `
+exports[`renders shared tunes > shared tune 181 https://strudel.cc/?Uw7K4l1pIVUt 1`] = `
 [
   "0/1 -> 1/3: bd",
   "1/3 -> 2/3: hh",
@@ -4133,7 +4133,7 @@ exports[`renders shared tunes > shared tune 181 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 182 https://strudel.tidalcycles.org/?dhBbMccpPgg8 1`] = `
+exports[`renders shared tunes > shared tune 182 https://strudel.cc/?dhBbMccpPgg8 1`] = `
 [
   "0/1 -> 1/2: A3",
   "1/2 -> 3/4: D4",
@@ -4144,7 +4144,7 @@ exports[`renders shared tunes > shared tune 182 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 183 https://strudel.tidalcycles.org/?U5sIL_DhqTip 1`] = `
+exports[`renders shared tunes > shared tune 183 https://strudel.cc/?U5sIL_DhqTip 1`] = `
 [
   "-1666666666666667/7500000000000000 -> 2/9: G3",
   "0/1 -> 4/3: E3",
@@ -4167,7 +4167,7 @@ exports[`renders shared tunes > shared tune 183 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 184 https://strudel.tidalcycles.org/?irMD_KH0ICbf 1`] = `
+exports[`renders shared tunes > shared tune 184 https://strudel.cc/?irMD_KH0ICbf 1`] = `
 [
   "0/1 -> 27/40: {\\"note\\":\\"Db4\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.5324074074074074}",
   "0/1 -> 27/40: {\\"note\\":\\"Ab4\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.5648148148148149}",
@@ -4208,13 +4208,13 @@ exports[`renders shared tunes > shared tune 184 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 185 https://strudel.tidalcycles.org/?A6Mqjuhn1Wpr 1`] = `[]`;
+exports[`renders shared tunes > shared tune 185 https://strudel.cc/?A6Mqjuhn1Wpr 1`] = `[]`;
 
-exports[`renders shared tunes > shared tune 186 https://strudel.tidalcycles.org/?2-JbRPIoRj7X 1`] = `[]`;
+exports[`renders shared tunes > shared tune 186 https://strudel.cc/?2-JbRPIoRj7X 1`] = `[]`;
 
-exports[`renders shared tunes > shared tune 187 https://strudel.tidalcycles.org/?wVDgPVVgbrSK 1`] = `[]`;
+exports[`renders shared tunes > shared tune 187 https://strudel.cc/?wVDgPVVgbrSK 1`] = `[]`;
 
-exports[`renders shared tunes > shared tune 188 https://strudel.tidalcycles.org/?z0OoCML7DPQb 1`] = `
+exports[`renders shared tunes > shared tune 188 https://strudel.cc/?z0OoCML7DPQb 1`] = `
 [
   "0/1 -> 1/1: bd",
   "0/1 -> 1/4: hh",
@@ -4225,7 +4225,7 @@ exports[`renders shared tunes > shared tune 188 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 189 https://strudel.tidalcycles.org/?SWekIFXDlrLE 1`] = `
+exports[`renders shared tunes > shared tune 189 https://strudel.cc/?SWekIFXDlrLE 1`] = `
 [
   "0/1 -> 1/4: {\\"note\\":\\"e4\\"}",
   "1/4 -> 1/2: {\\"note\\":\\"c4\\"}",
@@ -4244,20 +4244,20 @@ exports[`renders shared tunes > shared tune 189 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 190 https://strudel.tidalcycles.org/?70M98P_ZVSJe 1`] = `
+exports[`renders shared tunes > shared tune 190 https://strudel.cc/?70M98P_ZVSJe 1`] = `
 [
   "0/1 -> 1/2: {\\"s\\":\\"hh\\",\\"begin\\":0,\\"end\\":0.25}",
   "1/2 -> 1/1: {\\"s\\":\\"hh\\",\\"begin\\":0.25,\\"end\\":0.5}",
 ]
 `;
 
-exports[`renders shared tunes > shared tune 191 https://strudel.tidalcycles.org/?SB-hFm0uROHV 1`] = `
+exports[`renders shared tunes > shared tune 191 https://strudel.cc/?SB-hFm0uROHV 1`] = `
 [
   "0/1 -> 1/1: {\\"s\\":\\"hh\\"}",
 ]
 `;
 
-exports[`renders shared tunes > shared tune 192 https://strudel.tidalcycles.org/?t2KXoS_qssjD 1`] = `
+exports[`renders shared tunes > shared tune 192 https://strudel.cc/?t2KXoS_qssjD 1`] = `
 [
   "0/1 -> 1/4: {\\"s\\":\\"p\\",\\"begin\\":0,\\"end\\":0.0078125,\\"speed\\":0.03125,\\"unit\\":\\"c\\",\\"pan\\":0,\\"shape\\":0.5}",
   "1/4 -> 1/2: {\\"s\\":\\"p\\",\\"begin\\":0.0078125,\\"end\\":0.015625,\\"speed\\":0.03125,\\"unit\\":\\"c\\",\\"pan\\":0,\\"shape\\":0.5}",
@@ -4270,7 +4270,7 @@ exports[`renders shared tunes > shared tune 192 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 193 https://strudel.tidalcycles.org/?k0435I3IQEH4 1`] = `
+exports[`renders shared tunes > shared tune 193 https://strudel.cc/?k0435I3IQEH4 1`] = `
 [
   "0/1 -> 3/4: F3",
   "3/4 -> 9/8: Ab3",
@@ -4290,7 +4290,7 @@ exports[`renders shared tunes > shared tune 193 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 194 https://strudel.tidalcycles.org/?vDsUyH8IUJn6 1`] = `
+exports[`renders shared tunes > shared tune 194 https://strudel.cc/?vDsUyH8IUJn6 1`] = `
 [
   "0/1 -> 6/1: F3",
   "0/1 -> 6/1: Ab3",
@@ -4299,7 +4299,7 @@ exports[`renders shared tunes > shared tune 194 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 195 https://strudel.tidalcycles.org/?YJ2iESN49BD6 1`] = `
+exports[`renders shared tunes > shared tune 195 https://strudel.cc/?YJ2iESN49BD6 1`] = `
 [
   "0/1 -> 3/16: {\\"s\\":\\"bd\\",\\"gain\\":0.7}",
   "3/16 -> 3/8: {\\"s\\":\\"bd\\",\\"gain\\":0.7}",
@@ -4331,7 +4331,7 @@ exports[`renders shared tunes > shared tune 195 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 196 https://strudel.tidalcycles.org/?Z6fHLg-51AUc 1`] = `
+exports[`renders shared tunes > shared tune 196 https://strudel.cc/?Z6fHLg-51AUc 1`] = `
 [
   "0/1 -> 1/4: C3",
   "0/1 -> 1/4: G3",
@@ -4347,7 +4347,7 @@ exports[`renders shared tunes > shared tune 196 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 197 https://strudel.tidalcycles.org/?GW0d4wRtDmED 1`] = `
+exports[`renders shared tunes > shared tune 197 https://strudel.cc/?GW0d4wRtDmED 1`] = `
 [
   "0/1 -> 1/2: c1",
   "1/2 -> 1/1: c1",
@@ -4359,7 +4359,7 @@ exports[`renders shared tunes > shared tune 197 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 198 https://strudel.tidalcycles.org/?iliL_rgeboIg 1`] = `
+exports[`renders shared tunes > shared tune 198 https://strudel.cc/?iliL_rgeboIg 1`] = `
 [
   "0/1 -> 1/3: bd",
   "1/3 -> 2/3: hh",
@@ -4377,7 +4377,7 @@ exports[`renders shared tunes > shared tune 198 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 199 https://strudel.tidalcycles.org/?IVv5q7W4BDiN 1`] = `
+exports[`renders shared tunes > shared tune 199 https://strudel.cc/?IVv5q7W4BDiN 1`] = `
 [
   "0/1 -> 1/32: {\\"note\\":48.07362922971432,\\"attack\\":0,\\"release\\":0,\\"s\\":\\"triangle\\"}",
   "1/32 -> 1/16: {\\"note\\":48.220843337648155,\\"attack\\":0,\\"release\\":0,\\"s\\":\\"triangle\\"}",
@@ -4414,7 +4414,7 @@ exports[`renders shared tunes > shared tune 199 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 200 https://strudel.tidalcycles.org/?N6kOKngern0Y 1`] = `
+exports[`renders shared tunes > shared tune 200 https://strudel.cc/?N6kOKngern0Y 1`] = `
 [
   "0/1 -> 1/32: {\\"note\\":56.147247371137475,\\"attack\\":0,\\"release\\":0,\\"s\\":\\"triangle\\"}",
   "1/32 -> 1/16: {\\"note\\":56.441387381598005,\\"attack\\":0,\\"release\\":0,\\"s\\":\\"triangle\\"}",
@@ -4451,7 +4451,7 @@ exports[`renders shared tunes > shared tune 200 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 201 https://strudel.tidalcycles.org/?wIjKrvTVPfgZ 1`] = `
+exports[`renders shared tunes > shared tune 201 https://strudel.cc/?wIjKrvTVPfgZ 1`] = `
 [
   "0/1 -> 1/16: {\\"note\\":47.370882377028465,\\"attack\\":0,\\"release\\":0,\\"s\\":\\"triangle\\"}",
   "1/16 -> 1/8: {\\"note\\":47.10302542895079,\\"attack\\":0,\\"release\\":0,\\"s\\":\\"triangle\\"}",
@@ -4472,7 +4472,7 @@ exports[`renders shared tunes > shared tune 201 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 202 https://strudel.tidalcycles.org/?iqZ-ex573FFd 1`] = `
+exports[`renders shared tunes > shared tune 202 https://strudel.cc/?iqZ-ex573FFd 1`] = `
 [
   "0/1 -> 4/25: 52",
   "4/25 -> 8/25: 57",
@@ -4484,7 +4484,7 @@ exports[`renders shared tunes > shared tune 202 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 203 https://strudel.tidalcycles.org/?0nlMXAIzgsdw 1`] = `
+exports[`renders shared tunes > shared tune 203 https://strudel.cc/?0nlMXAIzgsdw 1`] = `
 [
   "4/5 -> 16/15: {\\"note\\":\\"a6\\",\\"s\\":\\"piano\\"}",
   "0/1 -> 4/5: {\\"note\\":\\"ab5\\",\\"s\\":\\"piano\\"}",
@@ -4495,7 +4495,7 @@ exports[`renders shared tunes > shared tune 203 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 204 https://strudel.tidalcycles.org/?-4PvWekokc4W 1`] = `
+exports[`renders shared tunes > shared tune 204 https://strudel.cc/?-4PvWekokc4W 1`] = `
 [
   "0/1 -> 1/8: {\\"s\\":\\"p\\",\\"speed\\":0.03125,\\"unit\\":\\"c\\",\\"begin\\":0,\\"end\\":0.0078125,\\"pan\\":0,\\"shape\\":0.4,\\"decay\\":0.1,\\"sustain\\":0.4}",
   "1/8 -> 1/4: {\\"s\\":\\"p\\",\\"speed\\":0.03125,\\"unit\\":\\"c\\",\\"begin\\":0,\\"end\\":0.0078125,\\"pan\\":0,\\"shape\\":0.4,\\"decay\\":0.1,\\"sustain\\":0.4}",
@@ -4516,14 +4516,14 @@ exports[`renders shared tunes > shared tune 204 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 205 https://strudel.tidalcycles.org/?norqcTA-uOs0 1`] = `
+exports[`renders shared tunes > shared tune 205 https://strudel.cc/?norqcTA-uOs0 1`] = `
 [
   "0/1 -> 44/75: {\\"note\\":78,\\"s\\":\\"piano\\"}",
   "44/75 -> 88/75: {\\"note\\":71,\\"s\\":\\"piano\\"}",
 ]
 `;
 
-exports[`renders shared tunes > shared tune 206 https://strudel.tidalcycles.org/?WrN_Cv-hQMo0 1`] = `
+exports[`renders shared tunes > shared tune 206 https://strudel.cc/?WrN_Cv-hQMo0 1`] = `
 [
   "0/1 -> 1/4: {\\"n\\":\\"c3\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0,\\"decay\\":0.1,\\"sustain\\":0.2,\\"release\\":0.9}",
   "1/4 -> 1/2: {\\"n\\":\\"eb3\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0,\\"decay\\":0.1,\\"sustain\\":0.2,\\"release\\":0.9}",
@@ -4532,13 +4532,13 @@ exports[`renders shared tunes > shared tune 206 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 207 https://strudel.tidalcycles.org/?YFbUtVxvA82E 1`] = `
+exports[`renders shared tunes > shared tune 207 https://strudel.cc/?YFbUtVxvA82E 1`] = `
 [
   "0/1 -> 1/1: {\\"n\\":\\"[object Object][object Object]\\",\\"s\\":\\"sawtooth\\"}",
 ]
 `;
 
-exports[`renders shared tunes > shared tune 208 https://strudel.tidalcycles.org/?SHdla152eDum 1`] = `
+exports[`renders shared tunes > shared tune 208 https://strudel.cc/?SHdla152eDum 1`] = `
 [
   "0/1 -> 3/13: {\\"n\\":\\"c3\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.1,\\"decay\\":0.1,\\"sustain\\":0.4,\\"release\\":1}",
   "3/13 -> 6/13: {\\"n\\":\\"eb3\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.1,\\"decay\\":0.1,\\"sustain\\":0.4,\\"release\\":1}",
@@ -4548,7 +4548,7 @@ exports[`renders shared tunes > shared tune 208 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 209 https://strudel.tidalcycles.org/?Jk_4KtRME5zL 1`] = `
+exports[`renders shared tunes > shared tune 209 https://strudel.cc/?Jk_4KtRME5zL 1`] = `
 [
   "0/1 -> 1/10: {\\"n\\":\\"c3\\",\\"s\\":\\"sawtooth\\"}",
   "1/10 -> 1/5: {\\"n\\":\\"eb3\\",\\"s\\":\\"sawtooth\\"}",
@@ -4563,7 +4563,7 @@ exports[`renders shared tunes > shared tune 209 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 210 https://strudel.tidalcycles.org/?xHaKTd1kTpCn 1`] = `
+exports[`renders shared tunes > shared tune 210 https://strudel.cc/?xHaKTd1kTpCn 1`] = `
 [
   "-1/8 -> 1/1: {\\"s\\":\\"bd\\",\\"note\\":44,\\"n\\":0,\\"cut\\":1,\\"attack\\":0.01,\\"decay\\":0.1,\\"sustain\\":0.2,\\"release\\":2,\\"pan\\":0.5,\\"value\\":4}",
   "-1/8 -> 1/1: {\\"s\\":\\"bd\\",\\"note\\":44,\\"n\\":0,\\"cut\\":1,\\"attack\\":0.01,\\"decay\\":0.1,\\"sustain\\":0.2,\\"release\\":2,\\"pan\\":1,\\"value\\":4}",
@@ -4685,7 +4685,7 @@ exports[`renders shared tunes > shared tune 210 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 211 https://strudel.tidalcycles.org/?o5LLePbx8kiQ 1`] = `
+exports[`renders shared tunes > shared tune 211 https://strudel.cc/?o5LLePbx8kiQ 1`] = `
 [
   "-1/8 -> 1/1: {\\"s\\":\\"bd\\",\\"note\\":44,\\"n\\":0,\\"cut\\":1,\\"attack\\":0.01,\\"decay\\":0.1,\\"sustain\\":0.2,\\"release\\":2,\\"pan\\":0.5,\\"value\\":4}",
   "-1/8 -> 1/1: {\\"s\\":\\"bd\\",\\"note\\":44,\\"n\\":0,\\"cut\\":1,\\"attack\\":0.01,\\"decay\\":0.1,\\"sustain\\":0.2,\\"release\\":2,\\"pan\\":1,\\"value\\":4}",
@@ -4814,7 +4814,7 @@ exports[`renders shared tunes > shared tune 211 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 212 https://strudel.tidalcycles.org/?QJdSFHrNzFlO 1`] = `
+exports[`renders shared tunes > shared tune 212 https://strudel.cc/?QJdSFHrNzFlO 1`] = `
 [
   "0/1 -> 1/2: {\\"s\\":\\"bd\\",\\"delay\\":0.5,\\"delaytime\\":0.33,\\"delayfeedback\\":0.6}",
   "1/2 -> 1/1: {\\"s\\":\\"sd\\",\\"delay\\":0.5,\\"delaytime\\":0.33,\\"delayfeedback\\":0.6}",
@@ -4823,7 +4823,7 @@ exports[`renders shared tunes > shared tune 212 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 213 https://strudel.tidalcycles.org/?Nkv2L01eF62W 1`] = `
+exports[`renders shared tunes > shared tune 213 https://strudel.cc/?Nkv2L01eF62W 1`] = `
 [
   "0/1 -> 1/2: {\\"s\\":\\"bd\\",\\"delay\\":0.5,\\"delaytime\\":0.33,\\"delayfeedback\\":0.6,\\"speed\\":-1}",
   "1/2 -> 1/1: {\\"s\\":\\"sd\\",\\"delay\\":0.5,\\"delaytime\\":0.33,\\"delayfeedback\\":0.6,\\"speed\\":-1}",
@@ -4832,14 +4832,14 @@ exports[`renders shared tunes > shared tune 213 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 214 https://strudel.tidalcycles.org/?fWCYi76JTGuA 1`] = `
+exports[`renders shared tunes > shared tune 214 https://strudel.cc/?fWCYi76JTGuA 1`] = `
 [
   "0/1 -> 1/2: {\\"s\\":\\"bd\\",\\"delay\\":0,\\"delaytime\\":0.16,\\"delayfeedback\\":0.6,\\"speed\\":-1}",
   "1/2 -> 1/1: {\\"s\\":\\"sd\\",\\"delay\\":0,\\"delaytime\\":0.16,\\"delayfeedback\\":0.6,\\"speed\\":-1}",
 ]
 `;
 
-exports[`renders shared tunes > shared tune 215 https://strudel.tidalcycles.org/?yJ-qOjgrjkMk 1`] = `
+exports[`renders shared tunes > shared tune 215 https://strudel.cc/?yJ-qOjgrjkMk 1`] = `
 [
   "0/1 -> 1/2: c1",
   "1/2 -> 1/1: c1",
@@ -4851,7 +4851,7 @@ exports[`renders shared tunes > shared tune 215 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 216 https://strudel.tidalcycles.org/?UPVdAQhVNgbc 1`] = `
+exports[`renders shared tunes > shared tune 216 https://strudel.cc/?UPVdAQhVNgbc 1`] = `
 [
   "0/1 -> 1/6: {\\"note\\":\\"g3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":4000,\\"crush\\":16}",
   "1/6 -> 1/3: {\\"note\\":\\"g3\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":4000,\\"crush\\":16}",
@@ -4874,7 +4874,7 @@ exports[`renders shared tunes > shared tune 216 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 217 https://strudel.tidalcycles.org/?WDuiXaMhRRx5 1`] = `
+exports[`renders shared tunes > shared tune 217 https://strudel.cc/?WDuiXaMhRRx5 1`] = `
 [
   "0/1 -> 8/5: {\\"note\\":85,\\"s\\":\\"piano\\",\\"cutoff\\":\\"500\\"}",
   "0/1 -> 8/5: {\\"note\\":81,\\"s\\":\\"piano\\",\\"cutoff\\":\\"500\\"}",
@@ -4886,7 +4886,7 @@ exports[`renders shared tunes > shared tune 217 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 218 https://strudel.tidalcycles.org/?sOP6EO9TO4HO 1`] = `
+exports[`renders shared tunes > shared tune 218 https://strudel.cc/?sOP6EO9TO4HO 1`] = `
 [
   "0/1 -> 1/1: B3",
   "0/1 -> 1/1: D4",
@@ -4896,7 +4896,7 @@ exports[`renders shared tunes > shared tune 218 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 219 https://strudel.tidalcycles.org/?ddiSv-lz2_cp 1`] = `
+exports[`renders shared tunes > shared tune 219 https://strudel.cc/?ddiSv-lz2_cp 1`] = `
 [
   "0/1 -> 1/6: {\\"note\\":53,\\"s\\":\\"sawtooth\\",\\"attack\\":0.1,\\"decay\\":0.05,\\"sustain\\":0.2,\\"cutoff\\":507.8125,\\"gain\\":0.9166666666666666}",
   "0/1 -> 1/6: {\\"note\\":57,\\"s\\":\\"sawtooth\\",\\"attack\\":0.1,\\"decay\\":0.05,\\"sustain\\":0.2,\\"cutoff\\":507.8125,\\"gain\\":0.9166666666666666}",
@@ -4949,7 +4949,7 @@ exports[`renders shared tunes > shared tune 219 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 220 https://strudel.tidalcycles.org/?cpVS2-bO1LzP 1`] = `
+exports[`renders shared tunes > shared tune 220 https://strudel.cc/?cpVS2-bO1LzP 1`] = `
 [
   "0/1 -> 1/6: {\\"note\\":53,\\"s\\":\\"sawtooth\\",\\"attack\\":0.1,\\"decay\\":0.05,\\"sustain\\":0.2,\\"cutoff\\":507.8125,\\"gain\\":0.9166666666666666}",
   "0/1 -> 1/6: {\\"note\\":57,\\"s\\":\\"sawtooth\\",\\"attack\\":0.1,\\"decay\\":0.05,\\"sustain\\":0.2,\\"cutoff\\":507.8125,\\"gain\\":0.9166666666666666}",
@@ -5002,7 +5002,7 @@ exports[`renders shared tunes > shared tune 220 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 221 https://strudel.tidalcycles.org/?IPOyuRRkZaNr 1`] = `
+exports[`renders shared tunes > shared tune 221 https://strudel.cc/?IPOyuRRkZaNr 1`] = `
 [
   "0/1 -> 3/20: 0",
   "0/1 -> 3/20: 3",
@@ -5021,7 +5021,7 @@ exports[`renders shared tunes > shared tune 221 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 222 https://strudel.tidalcycles.org/?fGbP7VOtCWWU 1`] = `
+exports[`renders shared tunes > shared tune 222 https://strudel.cc/?fGbP7VOtCWWU 1`] = `
 [
   "0/1 -> 1/8: {\\"note\\":\\"G4\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.5601851851851851}",
   "0/1 -> 1/8: {\\"note\\":\\"B4\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.5787037037037037}",
@@ -5056,7 +5056,7 @@ exports[`renders shared tunes > shared tune 222 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 223 https://strudel.tidalcycles.org/?4YKibw76FrRb 1`] = `
+exports[`renders shared tunes > shared tune 223 https://strudel.cc/?4YKibw76FrRb 1`] = `
 [
   "0/1 -> 1/2: {\\"note\\":\\"G3\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.5046296296296297}",
   "0/1 -> 1/2: {\\"note\\":\\"B3\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.5231481481481481}",
@@ -5069,7 +5069,7 @@ exports[`renders shared tunes > shared tune 223 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 224 https://strudel.tidalcycles.org/?7UmR7rJMSvWq 1`] = `
+exports[`renders shared tunes > shared tune 224 https://strudel.cc/?7UmR7rJMSvWq 1`] = `
 [
   "0/1 -> 1/2: {\\"note\\":\\"Bb3\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.5185185185185186}",
   "0/1 -> 1/2: {\\"note\\":\\"D4\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.537037037037037}",
@@ -5079,7 +5079,7 @@ exports[`renders shared tunes > shared tune 224 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 225 https://strudel.tidalcycles.org/?N0a4wkk96WWE 1`] = `
+exports[`renders shared tunes > shared tune 225 https://strudel.cc/?N0a4wkk96WWE 1`] = `
 [
   "0/1 -> 8/19: {\\"note\\":\\"C5\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.5833333333333333}",
   "8/19 -> 16/19: {\\"note\\":\\"f5\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.6064814814814814}",
@@ -5088,7 +5088,7 @@ exports[`renders shared tunes > shared tune 225 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 226 https://strudel.tidalcycles.org/?s8HiRvW_Rngj 1`] = `
+exports[`renders shared tunes > shared tune 226 https://strudel.cc/?s8HiRvW_Rngj 1`] = `
 [
   "0/1 -> 3053185/4904046: {\\"n\\":62,\\"s\\":\\"sawtooth\\",\\"cutoff\\":3986.9405734726183}",
   "0/1 -> 3053185/4904046: {\\"n\\":62,\\"s\\":\\"square\\",\\"cutoff\\":3986.9405734726183}",
@@ -5120,7 +5120,7 @@ exports[`renders shared tunes > shared tune 226 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 227 https://strudel.tidalcycles.org/?Z1ywkDoR6Tca 1`] = `
+exports[`renders shared tunes > shared tune 227 https://strudel.cc/?Z1ywkDoR6Tca 1`] = `
 [
   "5833/7200 -> 19/18: {\\"n\\":\\"C#4\\",\\"s\\":\\"Overdriven Guitar: Guitar\\",\\"gain\\":0.2}",
   "437/800 -> 19/24: {\\"n\\":\\"D#4\\",\\"s\\":\\"Overdriven Guitar: Guitar\\",\\"gain\\":0.2}",
@@ -5149,7 +5149,7 @@ exports[`renders shared tunes > shared tune 227 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 228 https://strudel.tidalcycles.org/?eXyJ5cvdMxIl 1`] = `
+exports[`renders shared tunes > shared tune 228 https://strudel.cc/?eXyJ5cvdMxIl 1`] = `
 [
   "0/1 -> 1/1: {\\"n\\":69,\\"s\\":\\"Church Organ: Organ\\",\\"gain\\":0.2}",
   "0/1 -> 1/1: {\\"n\\":72,\\"s\\":\\"Church Organ: Organ\\",\\"gain\\":0.2}",
@@ -5165,7 +5165,7 @@ exports[`renders shared tunes > shared tune 228 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 229 https://strudel.tidalcycles.org/?YSgSSFCioxs0 1`] = `
+exports[`renders shared tunes > shared tune 229 https://strudel.cc/?YSgSSFCioxs0 1`] = `
 [
   "0/1 -> 1/1: {\\"n\\":69,\\"s\\":\\"Church Organ: Organ\\",\\"gain\\":0.2}",
   "0/1 -> 1/1: {\\"n\\":72,\\"s\\":\\"Church Organ: Organ\\",\\"gain\\":0.2}",
@@ -5181,7 +5181,7 @@ exports[`renders shared tunes > shared tune 229 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 230 https://strudel.tidalcycles.org/?lAIAC1TOD3zB 1`] = `
+exports[`renders shared tunes > shared tune 230 https://strudel.cc/?lAIAC1TOD3zB 1`] = `
 [
   "0/1 -> 1/2: c1",
   "1/2 -> 1/1: c1",
@@ -5193,7 +5193,7 @@ exports[`renders shared tunes > shared tune 230 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 231 https://strudel.tidalcycles.org/?LZ-aTB2xiaZ8 1`] = `
+exports[`renders shared tunes > shared tune 231 https://strudel.cc/?LZ-aTB2xiaZ8 1`] = `
 [
   "0/1 -> 3053185/4904046: {\\"n\\":62,\\"s\\":\\"sawtooth\\",\\"cutoff\\":3986.9405734726183}",
   "0/1 -> 3053185/4904046: {\\"n\\":62,\\"s\\":\\"square\\",\\"cutoff\\":3986.9405734726183}",
@@ -5225,7 +5225,7 @@ exports[`renders shared tunes > shared tune 231 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 232 https://strudel.tidalcycles.org/?_zhepg-kT6fD 1`] = `
+exports[`renders shared tunes > shared tune 232 https://strudel.cc/?_zhepg-kT6fD 1`] = `
 [
   "0/1 -> 3/8: {\\"s\\":\\"bd\\",\\"gain\\":0.14}",
   "3/8 -> 3/4: {\\"s\\":\\"bd\\",\\"gain\\":0.14}",
@@ -5256,7 +5256,7 @@ exports[`renders shared tunes > shared tune 232 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 234 https://strudel.tidalcycles.org/?1moEu58ZjMF4 1`] = `
+exports[`renders shared tunes > shared tune 234 https://strudel.cc/?1moEu58ZjMF4 1`] = `
 [
   "0/1 -> 1/2: {\\"note\\":\\"c2\\",\\"s\\":\\"square\\",\\"attack\\":0.1,\\"decay\\":0.1,\\"sustain\\":0.2,\\"release\\":0.1}",
   "1/2 -> 1/1: {\\"note\\":\\"eb2\\",\\"s\\":\\"square\\",\\"attack\\":0.1,\\"decay\\":0.1,\\"sustain\\":0.2,\\"release\\":0.1}",
@@ -5271,7 +5271,7 @@ exports[`renders shared tunes > shared tune 234 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 235 https://strudel.tidalcycles.org/?1W8nlZAFzi5T 1`] = `
+exports[`renders shared tunes > shared tune 235 https://strudel.cc/?1W8nlZAFzi5T 1`] = `
 [
   "0/1 -> 1/1: {\\"note\\":\\"c2\\",\\"s\\":\\"square\\",\\"attack\\":0.1,\\"decay\\":0.1,\\"sustain\\":0.2,\\"release\\":0.1}",
   "0/1 -> 1/2: {\\"s\\":\\"bd\\",\\"crush\\":16}",
@@ -5285,7 +5285,7 @@ exports[`renders shared tunes > shared tune 235 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 236 https://strudel.tidalcycles.org/?exwhYw9VYVQz 1`] = `
+exports[`renders shared tunes > shared tune 236 https://strudel.cc/?exwhYw9VYVQz 1`] = `
 [
   "0/1 -> 1/1: {\\"note\\":\\"c2\\",\\"s\\":\\"square\\",\\"attack\\":0.1,\\"decay\\":0.1,\\"sustain\\":0.2,\\"release\\":0.1}",
   "0/1 -> 1/2: {\\"s\\":\\"bd\\",\\"crush\\":16}",
@@ -5299,7 +5299,7 @@ exports[`renders shared tunes > shared tune 236 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 237 https://strudel.tidalcycles.org/?z4zPoaRLF6Vs 1`] = `
+exports[`renders shared tunes > shared tune 237 https://strudel.cc/?z4zPoaRLF6Vs 1`] = `
 [
   "0/1 -> 2/5: {\\"note\\":\\"c3\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.1,\\"decay\\":0.2,\\"sustain\\":0.3,\\"release\\":0.1,\\"bandf\\":500,\\"bandq\\":1}",
   "2/5 -> 4/5: {\\"note\\":\\"c3\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.1,\\"decay\\":0.2,\\"sustain\\":0.3,\\"release\\":0.1,\\"bandf\\":500,\\"bandq\\":1}",
@@ -5308,7 +5308,7 @@ exports[`renders shared tunes > shared tune 237 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 238 https://strudel.tidalcycles.org/?VzJokumWaip_ 1`] = `
+exports[`renders shared tunes > shared tune 238 https://strudel.cc/?VzJokumWaip_ 1`] = `
 [
   "3/4 -> 1/1: {\\"s\\":\\"bd\\"}",
   "1/2 -> 3/4: {\\"s\\":\\"bd\\"}",
@@ -5324,7 +5324,7 @@ exports[`renders shared tunes > shared tune 238 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 239 https://strudel.tidalcycles.org/?gb4pffOZyATk 1`] = `
+exports[`renders shared tunes > shared tune 239 https://strudel.cc/?gb4pffOZyATk 1`] = `
 [
   "4/5 -> 1/1: {\\"s\\":\\"bd\\",\\"cutoff\\":200,\\"resonance\\":30}",
   "4/5 -> 1/1: {\\"s\\":\\"bd\\",\\"cutoff\\":100,\\"resonance\\":30}",
@@ -5351,7 +5351,7 @@ exports[`renders shared tunes > shared tune 239 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 240 https://strudel.tidalcycles.org/?C6vcsMx8UtjJ 1`] = `
+exports[`renders shared tunes > shared tune 240 https://strudel.cc/?C6vcsMx8UtjJ 1`] = `
 [
   "0/1 -> 1/8: C2",
   "1/8 -> 1/4: D2",
@@ -5364,7 +5364,7 @@ exports[`renders shared tunes > shared tune 240 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 241 https://strudel.tidalcycles.org/?jyNjgy-bZ0X7 1`] = `
+exports[`renders shared tunes > shared tune 241 https://strudel.cc/?jyNjgy-bZ0X7 1`] = `
 [
   "0/1 -> 3/16: {\\"s\\":\\"bd\\",\\"gain\\":0.7}",
   "3/16 -> 3/8: {\\"s\\":\\"bd\\",\\"gain\\":0.7}",
@@ -5396,7 +5396,7 @@ exports[`renders shared tunes > shared tune 241 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 242 https://strudel.tidalcycles.org/?MPVT_kG6Yni7 1`] = `
+exports[`renders shared tunes > shared tune 242 https://strudel.cc/?MPVT_kG6Yni7 1`] = `
 [
   "0/1 -> 2/1: {\\"note\\":\\"c1\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.1,\\"decay\\":0.2,\\"sustain\\":0.3,\\"release\\":0.1,\\"bandf\\":500,\\"bandq\\":1,\\"gain\\":3}",
   "1/3 -> 1/1: {\\"s\\":\\"bd\\"}",
@@ -5404,7 +5404,7 @@ exports[`renders shared tunes > shared tune 242 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 243 https://strudel.tidalcycles.org/?Ul_u7MyAGKXb 1`] = `
+exports[`renders shared tunes > shared tune 243 https://strudel.cc/?Ul_u7MyAGKXb 1`] = `
 [
   "0/1 -> 1/40: {\\"n\\":62,\\"s\\":\\"sawtooth\\",\\"cutoff\\":2000}",
   "1/4 -> 21/80: {\\"n\\":51,\\"s\\":\\"sawtooth\\",\\"cutoff\\":2000}",
@@ -5429,7 +5429,7 @@ exports[`renders shared tunes > shared tune 243 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 244 https://strudel.tidalcycles.org/?6geTqvPlUvv4 1`] = `
+exports[`renders shared tunes > shared tune 244 https://strudel.cc/?6geTqvPlUvv4 1`] = `
 [
   "0/1 -> 3/80: {\\"n\\":62,\\"s\\":\\"sine\\",\\"cutoff\\":1500}",
   "1/4 -> 43/160: {\\"n\\":51,\\"s\\":\\"sine\\",\\"cutoff\\":1500}",
@@ -5454,7 +5454,7 @@ exports[`renders shared tunes > shared tune 244 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 245 https://strudel.tidalcycles.org/?5-NpsIAJqGJX 1`] = `
+exports[`renders shared tunes > shared tune 245 https://strudel.cc/?5-NpsIAJqGJX 1`] = `
 [
   "0/1 -> 3/20: 0",
   "0/1 -> 3/20: 3",
@@ -5473,7 +5473,7 @@ exports[`renders shared tunes > shared tune 245 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 248 https://strudel.tidalcycles.org/?FavmsfMCEJh9 1`] = `
+exports[`renders shared tunes > shared tune 248 https://strudel.cc/?FavmsfMCEJh9 1`] = `
 [
   "0/1 -> 1/4: {\\"note\\":\\"C3\\"}",
   "1/4 -> 1/2: {\\"note\\":\\"Eb3\\"}",
@@ -5486,7 +5486,7 @@ exports[`renders shared tunes > shared tune 248 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 249 https://strudel.tidalcycles.org/?KEJD5r4Q7zZo 1`] = `
+exports[`renders shared tunes > shared tune 249 https://strudel.cc/?KEJD5r4Q7zZo 1`] = `
 [
   "0/1 -> 3/4: F4",
   "0/1 -> 3/4: Bb4",
@@ -5499,7 +5499,7 @@ exports[`renders shared tunes > shared tune 249 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 250 https://strudel.tidalcycles.org/?JzQ_9QyLrKhy 1`] = `
+exports[`renders shared tunes > shared tune 250 https://strudel.cc/?JzQ_9QyLrKhy 1`] = `
 [
   "0/1 -> 1/3: bd",
   "1/3 -> 2/3: hh",
@@ -5517,7 +5517,7 @@ exports[`renders shared tunes > shared tune 250 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 251 https://strudel.tidalcycles.org/?H9-8RjyncjzI 1`] = `
+exports[`renders shared tunes > shared tune 251 https://strudel.cc/?H9-8RjyncjzI 1`] = `
 [
   "0/1 -> 1/1: B3",
   "0/1 -> 1/1: D4",
@@ -5527,7 +5527,7 @@ exports[`renders shared tunes > shared tune 251 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 252 https://strudel.tidalcycles.org/?CG9iByv5zHY- 1`] = `
+exports[`renders shared tunes > shared tune 252 https://strudel.cc/?CG9iByv5zHY- 1`] = `
 [
   "0/1 -> 1/3: 48",
   "1/3 -> 2/3: 51",
@@ -5535,7 +5535,7 @@ exports[`renders shared tunes > shared tune 252 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 253 https://strudel.tidalcycles.org/?FgUTcaG_XKGK 1`] = `
+exports[`renders shared tunes > shared tune 253 https://strudel.cc/?FgUTcaG_XKGK 1`] = `
 [
   "0/1 -> 1/4: 48",
   "1/4 -> 1/2: 51",
@@ -5544,7 +5544,7 @@ exports[`renders shared tunes > shared tune 253 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 254 https://strudel.tidalcycles.org/?CmY3ebvIfYEG 1`] = `
+exports[`renders shared tunes > shared tune 254 https://strudel.cc/?CmY3ebvIfYEG 1`] = `
 [
   "0/1 -> 1/10: C3",
   "0/1 -> 1/10: E3",
@@ -5563,7 +5563,7 @@ exports[`renders shared tunes > shared tune 254 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 255 https://strudel.tidalcycles.org/?yNx4koGpPrSH 1`] = `
+exports[`renders shared tunes > shared tune 255 https://strudel.cc/?yNx4koGpPrSH 1`] = `
 [
   "0/1 -> 6275565/1452119: A3",
   "-9/8 -> 20400609/11616952: G4",
@@ -5574,7 +5574,7 @@ exports[`renders shared tunes > shared tune 255 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 256 https://strudel.tidalcycles.org/?oBtcxYrbZlNG 1`] = `
+exports[`renders shared tunes > shared tune 256 https://strudel.cc/?oBtcxYrbZlNG 1`] = `
 [
   "0/1 -> 1/2: {\\"note\\":\\"D3\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.4814814814814815}",
   "1/4 -> 3/4: {\\"note\\":\\"F3\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.49537037037037035}",
@@ -5609,7 +5609,7 @@ exports[`renders shared tunes > shared tune 256 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 257 https://strudel.tidalcycles.org/?eCz4nyUk3TnN 1`] = `
+exports[`renders shared tunes > shared tune 257 https://strudel.cc/?eCz4nyUk3TnN 1`] = `
 [
   "0/1 -> 3/1: {\\"n\\":\\"B3\\",\\"s\\":\\"0040_FluidR3_GM_sf2_file\\",\\"attack\\":0.05,\\"decay\\":0.1,\\"sustain\\":0.7,\\"cutoff\\":1111.7252990603447,\\"gain\\":0.3}",
   "0/1 -> 3/1: {\\"n\\":\\"D4\\",\\"s\\":\\"0040_FluidR3_GM_sf2_file\\",\\"attack\\":0.05,\\"decay\\":0.1,\\"sustain\\":0.7,\\"cutoff\\":1111.7252990603447,\\"gain\\":0.3}",
@@ -5624,7 +5624,7 @@ exports[`renders shared tunes > shared tune 257 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 259 https://strudel.tidalcycles.org/?J3FcQgOeZ3cV 1`] = `
+exports[`renders shared tunes > shared tune 259 https://strudel.cc/?J3FcQgOeZ3cV 1`] = `
 [
   "0/1 -> 5/26: {\\"note\\":\\"B2\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.46759259259259256}",
   "5/13 -> 15/26: {\\"note\\":\\"B2\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.46759259259259256}",
@@ -5652,7 +5652,7 @@ exports[`renders shared tunes > shared tune 259 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 260 https://strudel.tidalcycles.org/?tTlyA1JzHklU 1`] = `
+exports[`renders shared tunes > shared tune 260 https://strudel.cc/?tTlyA1JzHklU 1`] = `
 [
   "0/1 -> 4/3: B4",
   "0/1 -> 1/3: C3",
@@ -5661,7 +5661,7 @@ exports[`renders shared tunes > shared tune 260 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 261 https://strudel.tidalcycles.org/?hIhmX2R9gtwL 1`] = `
+exports[`renders shared tunes > shared tune 261 https://strudel.cc/?hIhmX2R9gtwL 1`] = `
 [
   "0/1 -> 1/8: {\\"note\\":\\"c2\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.1,\\"release\\":0.3,\\"vowel\\":\\"a\\"}",
   "1/2 -> 5/8: {\\"note\\":\\"c2\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.1,\\"release\\":0.3,\\"vowel\\":\\"o\\"}",
@@ -5686,7 +5686,7 @@ exports[`renders shared tunes > shared tune 261 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 262 https://strudel.tidalcycles.org/?NIL21RJTmuAa 1`] = `
+exports[`renders shared tunes > shared tune 262 https://strudel.cc/?NIL21RJTmuAa 1`] = `
 [
   "0/1 -> 1/2: Bb2",
   "0/1 -> 1/2: F3",
@@ -5710,7 +5710,7 @@ exports[`renders shared tunes > shared tune 262 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 263 https://strudel.tidalcycles.org/?CGh4oLKu9tOp 1`] = `
+exports[`renders shared tunes > shared tune 263 https://strudel.cc/?CGh4oLKu9tOp 1`] = `
 [
   "0/1 -> 4/3: B4",
   "0/1 -> 1/3: C3",
@@ -5719,7 +5719,7 @@ exports[`renders shared tunes > shared tune 263 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 264 https://strudel.tidalcycles.org/?N486QfFJ2NvV 1`] = `
+exports[`renders shared tunes > shared tune 264 https://strudel.cc/?N486QfFJ2NvV 1`] = `
 [
   "0/1 -> 1/8: {\\"freq\\":55.33,\\"s\\":\\"sawtooth\\"}",
   "0/1 -> 1/8: {\\"freq\\":54.725,\\"s\\":\\"sawtooth\\"}",
@@ -5747,7 +5747,7 @@ exports[`renders shared tunes > shared tune 264 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 265 https://strudel.tidalcycles.org/?Njas64Vf03LO 1`] = `
+exports[`renders shared tunes > shared tune 265 https://strudel.cc/?Njas64Vf03LO 1`] = `
 [
   "0/1 -> 5/11: {\\"note\\":\\"c2\\",\\"s\\":\\"sawtooth\\",\\"vowel\\":\\"a\\",\\"gain\\":1.1882154262966047,\\"delay\\":0.1}",
   "5/11 -> 15/11: {\\"note\\":\\"eb2\\",\\"s\\":\\"sawtooth\\",\\"vowel\\":\\"a\\",\\"gain\\":1.361256209529016,\\"delay\\":0.1}",
@@ -5770,7 +5770,7 @@ exports[`renders shared tunes > shared tune 265 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 266 https://strudel.tidalcycles.org/?-qcqwVsJXv8J 1`] = `
+exports[`renders shared tunes > shared tune 266 https://strudel.cc/?-qcqwVsJXv8J 1`] = `
 [
   "0/1 -> 1/1: bd",
   "0/1 -> 1/4: hh",
@@ -5781,7 +5781,7 @@ exports[`renders shared tunes > shared tune 266 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 267 https://strudel.tidalcycles.org/?Q2WQMrJVFb46 1`] = `
+exports[`renders shared tunes > shared tune 267 https://strudel.cc/?Q2WQMrJVFb46 1`] = `
 [
   "0/1 -> 5/11: {\\"note\\":\\"c2\\",\\"s\\":\\"sawtooth\\",\\"vowel\\":\\"a\\",\\"gain\\":0.2000348432426738,\\"delay\\":0.1}",
   "5/11 -> 15/11: {\\"note\\":\\"eb2\\",\\"s\\":\\"sawtooth\\",\\"vowel\\":\\"a\\",\\"gain\\":0.20089674623394735,\\"delay\\":0.1}",
@@ -5805,7 +5805,7 @@ exports[`renders shared tunes > shared tune 267 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 268 https://strudel.tidalcycles.org/?IV4pDyaLUMB0 1`] = `
+exports[`renders shared tunes > shared tune 268 https://strudel.cc/?IV4pDyaLUMB0 1`] = `
 [
   "0/1 -> 1/2: c1",
   "1/2 -> 1/1: c1",
@@ -5817,7 +5817,7 @@ exports[`renders shared tunes > shared tune 268 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 269 https://strudel.tidalcycles.org/?XQ_uhshhjEYw 1`] = `
+exports[`renders shared tunes > shared tune 269 https://strudel.cc/?XQ_uhshhjEYw 1`] = `
 [
   "-18/5 -> 2/5: c3",
   "-18/5 -> 2/5: e3",
@@ -5829,7 +5829,7 @@ exports[`renders shared tunes > shared tune 269 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 270 https://strudel.tidalcycles.org/?XDCsI7uPtnav 1`] = `
+exports[`renders shared tunes > shared tune 270 https://strudel.cc/?XDCsI7uPtnav 1`] = `
 [
   "0/1 -> 2/1: {\\"note\\":\\"C3\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.4722222222222222}",
   "0/1 -> 2/1: {\\"note\\":\\"E3\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.4907407407407407}",
@@ -5837,7 +5837,7 @@ exports[`renders shared tunes > shared tune 270 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 271 https://strudel.tidalcycles.org/?2t_PSStoDUhV 1`] = `
+exports[`renders shared tunes > shared tune 271 https://strudel.cc/?2t_PSStoDUhV 1`] = `
 [
   "0/1 -> 5/11: {\\"note\\":\\"c2\\",\\"s\\":\\"sawtooth\\",\\"vowel\\":\\"a\\",\\"gain\\":0.2000348432426738,\\"delay\\":0.1}",
   "5/11 -> 15/11: {\\"note\\":\\"eb2\\",\\"s\\":\\"sawtooth\\",\\"vowel\\":\\"a\\",\\"gain\\":0.20089674623394735,\\"delay\\":0.1}",
@@ -5859,7 +5859,7 @@ exports[`renders shared tunes > shared tune 271 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 272 https://strudel.tidalcycles.org/?J4419vLymh08 1`] = `
+exports[`renders shared tunes > shared tune 272 https://strudel.cc/?J4419vLymh08 1`] = `
 [
   "5/6 -> 5/3: {\\"note\\":\\"eb4\\",\\"s\\":\\"piano\\",\\"cutoff\\":1275.348281040755,\\"resonance\\":0,\\"delay\\":0.1}",
   "0/1 -> 5/6: {\\"value\\":\\"\\",\\"s\\":\\"sawtooth\\",\\"vowel\\":\\"a\\",\\"gain\\":1.8000302424954437,\\"hcutoff\\":800,\\"cutoff\\":770.1250948828399,\\"resonance\\":0,\\"delay\\":0.1}",
@@ -5880,7 +5880,7 @@ exports[`renders shared tunes > shared tune 272 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 273 https://strudel.tidalcycles.org/?hGG0rEr1zC3A 1`] = `
+exports[`renders shared tunes > shared tune 273 https://strudel.cc/?hGG0rEr1zC3A 1`] = `
 [
   "0/1 -> 5/4: {\\"value\\":\\"\\",\\"s\\":\\"sawtooth\\",\\"vowel\\":\\"a\\",\\"gain\\":1.8000302424954437,\\"hcutoff\\":800,\\"cutoff\\":889.6566238254309,\\"resonance\\":0,\\"delay\\":0.1}",
   "0/1 -> 5/8: {\\"value\\":\\"\\",\\"s\\":\\"sine\\",\\"shape\\":0.31075614638684784,\\"gain\\":0.32689036596711957,\\"cutoff\\":640.2810816708566,\\"resonance\\":0,\\"delay\\":0.1}",
@@ -5896,7 +5896,7 @@ exports[`renders shared tunes > shared tune 273 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 274 https://strudel.tidalcycles.org/?ahkvgPdMeapI 1`] = `
+exports[`renders shared tunes > shared tune 274 https://strudel.cc/?ahkvgPdMeapI 1`] = `
 [
   "0/1 -> 1/2: {\\"note\\":\\"F3\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.49537037037037035}",
   "1/4 -> 3/4: {\\"note\\":\\"F2\\",\\"clip\\":1,\\"s\\":\\"piano\\",\\"release\\":0.1,\\"pan\\":0.4398148148148148}",
@@ -5907,7 +5907,7 @@ exports[`renders shared tunes > shared tune 274 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 275 https://strudel.tidalcycles.org/?um_AAxJMJr5U 1`] = `
+exports[`renders shared tunes > shared tune 275 https://strudel.cc/?um_AAxJMJr5U 1`] = `
 [
   "0/1 -> 1/1: {\\"note\\":\\"c4\\",\\"s\\":\\"piano\\",\\"gain\\":0.5}",
   "0/1 -> 1/1: {\\"note\\":\\"e4\\",\\"s\\":\\"piano\\",\\"gain\\":0.5}",
@@ -5925,7 +5925,7 @@ exports[`renders shared tunes > shared tune 275 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 276 https://strudel.tidalcycles.org/?UxSJbzL1d05O 1`] = `
+exports[`renders shared tunes > shared tune 276 https://strudel.cc/?UxSJbzL1d05O 1`] = `
 [
   "0/1 -> 5/4: {\\"note\\":\\"c4\\",\\"s\\":\\"piano\\",\\"gain\\":0.5}",
   "0/1 -> 5/4: {\\"note\\":\\"eb4\\",\\"s\\":\\"piano\\",\\"gain\\":0.5}",
@@ -5945,7 +5945,7 @@ exports[`renders shared tunes > shared tune 276 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 277 https://strudel.tidalcycles.org/?90drkbxdBr2- 1`] = `
+exports[`renders shared tunes > shared tune 277 https://strudel.cc/?90drkbxdBr2- 1`] = `
 [
   "0/1 -> 5/4: {\\"note\\":\\"c4\\",\\"s\\":\\"piano\\",\\"gain\\":0.5}",
   "0/1 -> 5/4: {\\"note\\":\\"eb4\\",\\"s\\":\\"piano\\",\\"gain\\":0.5}",
@@ -5967,7 +5967,7 @@ exports[`renders shared tunes > shared tune 277 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 278 https://strudel.tidalcycles.org/?aGtqNXDNRxdA 1`] = `
+exports[`renders shared tunes > shared tune 278 https://strudel.cc/?aGtqNXDNRxdA 1`] = `
 [
   "0/1 -> 3/2: {\\"s\\":\\"bd\\",\\"speed\\":0.7519542165100574}",
   "3/4 -> 3/2: {\\"s\\":\\"sd\\",\\"speed\\":0.7931522866332671}",
@@ -6024,7 +6024,7 @@ exports[`renders shared tunes > shared tune 278 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 279 https://strudel.tidalcycles.org/?N3UBBhj_uwxd 1`] = `
+exports[`renders shared tunes > shared tune 279 https://strudel.cc/?N3UBBhj_uwxd 1`] = `
 [
   "0/1 -> 1/10: C3",
   "0/1 -> 1/10: E3",
@@ -6043,7 +6043,7 @@ exports[`renders shared tunes > shared tune 279 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 280 https://strudel.tidalcycles.org/?wF7a24BViyqU 1`] = `
+exports[`renders shared tunes > shared tune 280 https://strudel.cc/?wF7a24BViyqU 1`] = `
 [
   "0/1 -> 3/4: F3",
   "3/4 -> 9/8: Ab3",
@@ -6063,7 +6063,7 @@ exports[`renders shared tunes > shared tune 280 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 281 https://strudel.tidalcycles.org/?h87w26zgMJ0L 1`] = `
+exports[`renders shared tunes > shared tune 281 https://strudel.cc/?h87w26zgMJ0L 1`] = `
 [
   "0/1 -> 5/6: {\\"note\\":\\"c4\\",\\"s\\":\\"piano\\",\\"gain\\":0.5}",
   "0/1 -> 5/6: {\\"note\\":\\"eb4\\",\\"s\\":\\"piano\\",\\"gain\\":0.5}",
@@ -6097,7 +6097,7 @@ exports[`renders shared tunes > shared tune 281 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 282 https://strudel.tidalcycles.org/?fwBxQjt9aVhx 1`] = `
+exports[`renders shared tunes > shared tune 282 https://strudel.cc/?fwBxQjt9aVhx 1`] = `
 [
   "5833/7200 -> 19/18: {\\"n\\":\\"C#4\\",\\"s\\":\\"Overdriven Guitar: Guitar\\",\\"gain\\":0.19}",
   "437/800 -> 19/24: {\\"n\\":\\"D#4\\",\\"s\\":\\"Overdriven Guitar: Guitar\\",\\"gain\\":0.19}",
@@ -6126,7 +6126,7 @@ exports[`renders shared tunes > shared tune 282 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 283 https://strudel.tidalcycles.org/?3rnmA7q0g2i- 1`] = `
+exports[`renders shared tunes > shared tune 283 https://strudel.cc/?3rnmA7q0g2i- 1`] = `
 [
   "0/1 -> 5/8: {\\"note\\":\\"G1\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":200,\\"resonance\\":20,\\"gain\\":0.15,\\"shape\\":0.6,\\"release\\":0.05}",
   "0/1 -> 5/8: {\\"note\\":31.02,\\"s\\":\\"sawtooth\\",\\"cutoff\\":200,\\"resonance\\":20,\\"gain\\":0.15,\\"shape\\":0.6,\\"release\\":0.05}",
@@ -6145,7 +6145,7 @@ exports[`renders shared tunes > shared tune 283 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 284 https://strudel.tidalcycles.org/?w1af5xWyhwNm 1`] = `
+exports[`renders shared tunes > shared tune 284 https://strudel.cc/?w1af5xWyhwNm 1`] = `
 [
   "0/1 -> 8/1: {\\"s\\":\\"bass\\",\\"speed\\":0.125,\\"unit\\":\\"c\\",\\"clip\\":1}",
   "0/1 -> 1/2: {\\"s\\":\\"bd\\"}",
@@ -6167,7 +6167,7 @@ exports[`renders shared tunes > shared tune 284 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 285 https://strudel.tidalcycles.org/?Ne_BJMKKDCO_ 1`] = `
+exports[`renders shared tunes > shared tune 285 https://strudel.cc/?Ne_BJMKKDCO_ 1`] = `
 [
   "0/1 -> 5/8: {\\"note\\":\\"G1\\",\\"s\\":\\"sawtooth\\",\\"cutoff\\":200,\\"resonance\\":20,\\"gain\\":0.15,\\"shape\\":0.6,\\"release\\":0.05}",
   "0/1 -> 5/8: {\\"note\\":31.02,\\"s\\":\\"sawtooth\\",\\"cutoff\\":200,\\"resonance\\":20,\\"gain\\":0.15,\\"shape\\":0.6,\\"release\\":0.05}",
@@ -6186,7 +6186,7 @@ exports[`renders shared tunes > shared tune 285 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 286 https://strudel.tidalcycles.org/?G2H5FM0Fc94a 1`] = `
+exports[`renders shared tunes > shared tune 286 https://strudel.cc/?G2H5FM0Fc94a 1`] = `
 [
   "0/1 -> 1/4: {\\"s\\":\\"woodblock:1\\"}",
   "1/4 -> 3/8: {\\"s\\":\\"woodblock:2\\"}",
@@ -6204,7 +6204,7 @@ exports[`renders shared tunes > shared tune 286 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 287 https://strudel.tidalcycles.org/?EPFzAz99hwZW 1`] = `
+exports[`renders shared tunes > shared tune 287 https://strudel.cc/?EPFzAz99hwZW 1`] = `
 [
   "0/1 -> 1/4: {\\"note\\":48,\\"s\\":\\"ocarina_vib\\",\\"clip\\":1,\\"release\\":0.1,\\"room\\":1,\\"gain\\":0.2}",
   "1/4 -> 9/32: {\\"note\\":51,\\"s\\":\\"ocarina_vib\\",\\"clip\\":1,\\"release\\":0.1,\\"room\\":1,\\"gain\\":0.2}",
@@ -6221,7 +6221,7 @@ exports[`renders shared tunes > shared tune 287 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 288 https://strudel.tidalcycles.org/?DSvgYUzEgx6n 1`] = `
+exports[`renders shared tunes > shared tune 288 https://strudel.cc/?DSvgYUzEgx6n 1`] = `
 [
   "0/1 -> 1/2: {\\"s\\":\\"bd\\",\\"bank\\":\\"RolandTR909\\"}",
   "1/2 -> 1/1: {\\"s\\":\\"bd\\",\\"bank\\":\\"RolandTR909\\"}",
@@ -6245,14 +6245,14 @@ exports[`renders shared tunes > shared tune 288 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 289 https://strudel.tidalcycles.org/?cRvfurHbl4jo 1`] = `
+exports[`renders shared tunes > shared tune 289 https://strudel.cc/?cRvfurHbl4jo 1`] = `
 [
   "0/1 -> 1/2: {\\"s\\":\\"bd\\",\\"delay\\":0,\\"delaytime\\":0.33,\\"delayfeedback\\":0.8,\\"speed\\":-1}",
   "1/2 -> 1/1: {\\"s\\":\\"sd\\",\\"delay\\":0,\\"delaytime\\":0.33,\\"delayfeedback\\":0.8,\\"speed\\":-1}",
 ]
 `;
 
-exports[`renders shared tunes > shared tune 290 https://strudel.tidalcycles.org/?DGHGUqRXr5pe 1`] = `
+exports[`renders shared tunes > shared tune 290 https://strudel.cc/?DGHGUqRXr5pe 1`] = `
 [
   "0/1 -> 1/4: {\\"s\\":\\"jvbass:7\\",\\"cutoff\\":1000,\\"gain\\":0.6740862280130386,\\"room\\":1}",
   "1/4 -> 1/2: {\\"s\\":\\"jvbass:2\\",\\"cutoff\\":1000,\\"gain\\":0.5605570062994958,\\"room\\":1}",
@@ -6274,7 +6274,7 @@ exports[`renders shared tunes > shared tune 290 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 291 https://strudel.tidalcycles.org/?RBaWr8-15Guk 1`] = `
+exports[`renders shared tunes > shared tune 291 https://strudel.cc/?RBaWr8-15Guk 1`] = `
 [
   "0/1 -> 1/6: {\\"s\\":\\"hh\\",\\"gain\\":0.6339596770703793,\\"room\\":0.6,\\"pan\\":0}",
   "8/9 -> 17/18: {\\"s\\":\\"jvbass:7\\",\\"cutoff\\":1000,\\"gain\\":0.7514234818518162,\\"room\\":0.6,\\"pan\\":0}",
@@ -6289,7 +6289,7 @@ exports[`renders shared tunes > shared tune 291 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 292 https://strudel.tidalcycles.org/?c41h3Z1fwqTB 1`] = `
+exports[`renders shared tunes > shared tune 292 https://strudel.cc/?c41h3Z1fwqTB 1`] = `
 [
   "0/1 -> 1/6: {\\"s\\":\\"hh\\",\\"gain\\":0.6339596770703793,\\"room\\":0.6,\\"pan\\":0}",
   "8/9 -> 17/18: {\\"s\\":\\"jvbass:7\\",\\"cutoff\\":1000,\\"gain\\":0.7514234818518162,\\"room\\":0.6,\\"pan\\":0}",
@@ -6304,7 +6304,7 @@ exports[`renders shared tunes > shared tune 292 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 293 https://strudel.tidalcycles.org/?lvF3fzHrDbyx 1`] = `
+exports[`renders shared tunes > shared tune 293 https://strudel.cc/?lvF3fzHrDbyx 1`] = `
 [
   "0/1 -> 1/2: {\\"s\\":\\"bev\\",\\"begin\\":0,\\"end\\":0.015625,\\"pan\\":0,\\"speed\\":0.5,\\"room\\":0.9}",
   "0/1 -> 1/2: {\\"s\\":\\"bev\\",\\"begin\\":0.046875,\\"end\\":0.0625,\\"pan\\":1,\\"speed\\":0.5,\\"room\\":0.9}",
@@ -6317,7 +6317,7 @@ exports[`renders shared tunes > shared tune 293 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 294 https://strudel.tidalcycles.org/?vqqfVtY-n1Z6 1`] = `
+exports[`renders shared tunes > shared tune 294 https://strudel.cc/?vqqfVtY-n1Z6 1`] = `
 [
   "0/1 -> 1/6: {\\"s\\":\\"hh\\",\\"gain\\":0.6339596770703793,\\"room\\":0.6,\\"pan\\":0}",
   "8/9 -> 17/18: {\\"s\\":\\"jvbass:7\\",\\"cutoff\\":1000,\\"gain\\":0.7514234818518162,\\"room\\":0.6,\\"pan\\":0}",
@@ -6332,7 +6332,7 @@ exports[`renders shared tunes > shared tune 294 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 295 https://strudel.tidalcycles.org/?C7PwKmsYAOJL 1`] = `
+exports[`renders shared tunes > shared tune 295 https://strudel.cc/?C7PwKmsYAOJL 1`] = `
 [
   "0/1 -> 1/64: {\\"s\\":\\"future:2\\",\\"begin\\":0,\\"end\\":0.0625,\\"speed\\":2,\\"pan\\":0,\\"room\\":0.6}",
   "1/64 -> 1/32: {\\"s\\":\\"future:2\\",\\"begin\\":0.0625,\\"end\\":0.125,\\"speed\\":2,\\"pan\\":0,\\"room\\":0.6}",
@@ -6433,7 +6433,7 @@ exports[`renders shared tunes > shared tune 295 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 296 https://strudel.tidalcycles.org/?Z1mqx-eU-KcX 1`] = `
+exports[`renders shared tunes > shared tune 296 https://strudel.cc/?Z1mqx-eU-KcX 1`] = `
 [
   "0/1 -> 831675/814544: {\\"note\\":\\"D0\\",\\"s\\":\\"bell\\",\\"gain\\":0.6,\\"delay\\":0.2,\\"delaytime\\":0.3333333333333333,\\"delayfeedback\\":0.8}",
   "3/4 -> 1442583/814544: {\\"note\\":\\"A-1\\",\\"s\\":\\"bell\\",\\"gain\\":0.6,\\"delay\\":0.2,\\"delaytime\\":0.3333333333333333,\\"delayfeedback\\":0.8}",
@@ -6448,7 +6448,7 @@ exports[`renders shared tunes > shared tune 296 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 297 https://strudel.tidalcycles.org/?Ypr_TlVFjVV5 1`] = `
+exports[`renders shared tunes > shared tune 297 https://strudel.cc/?Ypr_TlVFjVV5 1`] = `
 [
   "0/1 -> 1/4: {\\"s\\":\\"p\\",\\"speed\\":0.03125,\\"unit\\":\\"c\\",\\"begin\\":0,\\"end\\":0.0078125,\\"pan\\":0,\\"shape\\":0.4,\\"decay\\":0.1,\\"sustain\\":0.6}",
   "1/4 -> 1/2: {\\"s\\":\\"p\\",\\"speed\\":0.03125,\\"unit\\":\\"c\\",\\"begin\\":0.0078125,\\"end\\":0.015625,\\"pan\\":0,\\"shape\\":0.4,\\"decay\\":0.1,\\"sustain\\":0.6}",
@@ -6461,7 +6461,7 @@ exports[`renders shared tunes > shared tune 297 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 298 https://strudel.tidalcycles.org/?5pmvveRR-gKc 1`] = `
+exports[`renders shared tunes > shared tune 298 https://strudel.cc/?5pmvveRR-gKc 1`] = `
 [
   "0/1 -> 1/1: D3",
   "0/1 -> 2/1: E3",
@@ -6551,7 +6551,7 @@ exports[`renders shared tunes > shared tune 298 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 299 https://strudel.tidalcycles.org/?rGJ0heffHHl4 1`] = `
+exports[`renders shared tunes > shared tune 299 https://strudel.cc/?rGJ0heffHHl4 1`] = `
 [
   "0/1 -> 1/2: {\\"s\\":\\"bd\\",\\"gain\\":0.8}",
   "1/2 -> 1/1: {\\"s\\":\\"bd\\",\\"gain\\":0.8}",
@@ -6567,7 +6567,7 @@ exports[`renders shared tunes > shared tune 299 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 300 https://strudel.tidalcycles.org/?Z7Nxzf3lmgTN 1`] = `
+exports[`renders shared tunes > shared tune 300 https://strudel.cc/?Z7Nxzf3lmgTN 1`] = `
 [
   "0/1 -> 8/1: {\\"note\\":\\"e3\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.1,\\"decay\\":0.2,\\"sustain\\":0.3,\\"release\\":0.1,\\"bandf\\":100,\\"bandq\\":1,\\"gain\\":3}",
   "0/1 -> 8/1: {\\"note\\":\\"b4\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.1,\\"decay\\":0.2,\\"sustain\\":0.3,\\"release\\":0.1,\\"bandf\\":100,\\"bandq\\":1,\\"gain\\":3}",
@@ -6582,7 +6582,7 @@ exports[`renders shared tunes > shared tune 300 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 301 https://strudel.tidalcycles.org/?e63x61eOPPvl 1`] = `
+exports[`renders shared tunes > shared tune 301 https://strudel.cc/?e63x61eOPPvl 1`] = `
 [
   "0/1 -> 8/1: {\\"note\\":\\"e3\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.1,\\"decay\\":0.2,\\"sustain\\":0.3,\\"release\\":0.1,\\"bandf\\":100,\\"bandq\\":1,\\"gain\\":3}",
   "0/1 -> 8/1: {\\"note\\":\\"b4\\",\\"s\\":\\"sawtooth\\",\\"attack\\":0.1,\\"decay\\":0.2,\\"sustain\\":0.3,\\"release\\":0.1,\\"bandf\\":100,\\"bandq\\":1,\\"gain\\":3}",
@@ -6591,7 +6591,7 @@ exports[`renders shared tunes > shared tune 301 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 302 https://strudel.tidalcycles.org/?bUd8QxyN4kvJ 1`] = `
+exports[`renders shared tunes > shared tune 302 https://strudel.cc/?bUd8QxyN4kvJ 1`] = `
 [
   "0/1 -> 1/8: {\\"note\\":\\"g4\\",\\"s\\":\\"xx\\",\\"cutoff\\":2348.1232826650858,\\"room\\":0.8,\\"pan\\":0,\\"gain\\":0.5}",
   "3/8 -> 1/2: {\\"note\\":\\"g4\\",\\"s\\":\\"xx\\",\\"cutoff\\":2919.6960066389074,\\"room\\":0.8,\\"pan\\":0,\\"gain\\":0.5}",
@@ -6624,7 +6624,7 @@ exports[`renders shared tunes > shared tune 302 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 303 https://strudel.tidalcycles.org/?y5PdLktz5gnb 1`] = `
+exports[`renders shared tunes > shared tune 303 https://strudel.cc/?y5PdLktz5gnb 1`] = `
 [
   "0/1 -> 1/4: {\\"note\\":\\"e3\\",\\"s\\":\\"sawtooth\\",\\"decay\\":0.1,\\"sustain\\":0.1,\\"bandf\\":50,\\"bandq\\":0.5,\\"gain\\":3.8519497029047303}",
   "1/4 -> 1/2: {\\"note\\":\\"e3\\",\\"s\\":\\"sawtooth\\",\\"decay\\":0.1,\\"sustain\\":0.1,\\"bandf\\":50,\\"bandq\\":0.5,\\"gain\\":2.22836140246614}",
@@ -6650,7 +6650,7 @@ exports[`renders shared tunes > shared tune 303 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 304 https://strudel.tidalcycles.org/?BpChMc3nxrYv 1`] = `
+exports[`renders shared tunes > shared tune 304 https://strudel.cc/?BpChMc3nxrYv 1`] = `
 [
   "0/1 -> 3/2: {\\"s\\":\\"bd\\",\\"speed\\":0.7519542165100574}",
   "3/4 -> 3/2: {\\"s\\":\\"sd\\",\\"speed\\":0.7931522866332671}",
@@ -6707,7 +6707,7 @@ exports[`renders shared tunes > shared tune 304 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 305 https://strudel.tidalcycles.org/?Swuvt887AOe1 1`] = `
+exports[`renders shared tunes > shared tune 305 https://strudel.cc/?Swuvt887AOe1 1`] = `
 [
   "0/1 -> 3/2: {\\"s\\":\\"bd\\",\\"speed\\":0.7519542165100574}",
   "3/4 -> 3/2: {\\"s\\":\\"sd\\",\\"speed\\":0.7931522866332671}",
@@ -6764,7 +6764,7 @@ exports[`renders shared tunes > shared tune 305 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 306 https://strudel.tidalcycles.org/?UboMuFOnT0hy 1`] = `
+exports[`renders shared tunes > shared tune 306 https://strudel.cc/?UboMuFOnT0hy 1`] = `
 [
   "0/1 -> 1/3: {\\"s\\":\\"bd\\"}",
   "1/3 -> 2/3: {\\"s\\":\\"hh\\"}",
@@ -6784,7 +6784,7 @@ exports[`renders shared tunes > shared tune 306 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 307 https://strudel.tidalcycles.org/?vYFGpZ6XObVG 1`] = `
+exports[`renders shared tunes > shared tune 307 https://strudel.cc/?vYFGpZ6XObVG 1`] = `
 [
   "0/1 -> 1/3: {\\"s\\":\\"bd\\"}",
   "1/3 -> 2/3: {\\"s\\":\\"hh\\"}",
@@ -6804,7 +6804,7 @@ exports[`renders shared tunes > shared tune 307 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 308 https://strudel.tidalcycles.org/?TUw_9DfBSsiW 1`] = `
+exports[`renders shared tunes > shared tune 308 https://strudel.cc/?TUw_9DfBSsiW 1`] = `
 [
   "0/1 -> 2/3: {\\"s\\":\\"bd\\",\\"speed\\":0.7519542165100574}",
   "1/3 -> 2/3: {\\"s\\":\\"sd\\",\\"speed\\":0.7931522866332671}",
@@ -6918,7 +6918,7 @@ exports[`renders shared tunes > shared tune 308 https://strudel.tidalcycles.org/
 ]
 `;
 
-exports[`renders shared tunes > shared tune 309 https://strudel.tidalcycles.org/?ctHqwq-97t6X 1`] = `
+exports[`renders shared tunes > shared tune 309 https://strudel.cc/?ctHqwq-97t6X 1`] = `
 [
   "0/1 -> 1/2: {\\"s\\":\\"bd\\",\\"delay\\":0.5,\\"delaytime\\":0.33,\\"delayfeedback\\":0.6,\\"speed\\":-1}",
   "1/2 -> 1/1: {\\"s\\":\\"sd\\",\\"delay\\":0.5,\\"delaytime\\":0.33,\\"delayfeedback\\":0.6,\\"speed\\":-1}",
diff --git a/test/runtime.mjs b/test/runtime.mjs
index 618226bbd..fc8f4450a 100644
--- a/test/runtime.mjs
+++ b/test/runtime.mjs
@@ -228,5 +228,5 @@ export const testCycles = {
   festivalOfFingers3: 16,
 };
 
-// fixed: https://strudel.tidalcycles.org/?DBp75NUfSxIn (missing .note())
-// bug: https://strudel.tidalcycles.org/?xHaKTd1kTpCn + https://strudel.tidalcycles.org/?o5LLePbx8kiQ
+// fixed: https://strudel.cc/?DBp75NUfSxIn (missing .note())
+// bug: https://strudel.cc/?xHaKTd1kTpCn + https://strudel.cc/?o5LLePbx8kiQ
diff --git a/test/shared.test.mjs b/test/shared.test.mjs
index 229d89dfb..e32927515 100644
--- a/test/shared.test.mjs
+++ b/test/shared.test.mjs
@@ -4,7 +4,7 @@ import data from './dbdump.json';
 
 describe('renders shared tunes', async () => {
   data.forEach(({ id, code, hash }) => {
-    const url = `https://strudel.tidalcycles.org/?${hash}`;
+    const url = `https://strudel.cc/?${hash}`;
     it(`shared tune ${id} ${url}`, async ({ expect }) => {
       if (code.includes('import(')) {
         console.log('skip', url);
diff --git a/website/README.md b/website/README.md
index e80871994..26ad430d7 100644
--- a/website/README.md
+++ b/website/README.md
@@ -1,6 +1,6 @@
 # Strudel Website
 
-This is the website for Strudel, deployed at [strudel.tidalcycles.org](https://strudel.tidalcycles.org/).
+This is the website for Strudel, deployed at [strudel.cc](https://strudel.cc).
 It includes the REPL live coding editor and the documentation site.
 
 ## Run locally
diff --git a/website/agpl-header.txt b/website/agpl-header.txt
index 7256f033a..6fd0c0fc9 100644
--- a/website/agpl-header.txt
+++ b/website/agpl-header.txt
@@ -1,7 +1,7 @@
 /* 
 
 Strudel - javascript-based environment for live coding algorithmic (musical) patterns
-https://strudel.tidalcycles.org / https://github.com/tidalcycles/strudel/
+https://strudel.cc / https://github.com/tidalcycles/strudel/
 
 Copyright (C) Strudel contributors 
 https://github.com/tidalcycles/strudel/graphs/contributors
diff --git a/website/astro.config.mjs b/website/astro.config.mjs
index bd018dddd..83de5f265 100644
--- a/website/astro.config.mjs
+++ b/website/astro.config.mjs
@@ -11,7 +11,7 @@ import tailwind from '@astrojs/tailwind';
 import AstroPWA from '@vite-pwa/astro';
 // import { visualizer } from 'rollup-plugin-visualizer';
 
-const site = `https://strudel.tidalcycles.org/`; // root url without a path
+const site = `https://strudel.cc/`; // root url without a path
 const base = '/'; // base path of the strudel site
 
 // this rehype plugin converts relative anchor links to absolute ones
diff --git a/website/public/CNAME b/website/public/CNAME
index 63687b2b1..e7c96b4e3 100644
--- a/website/public/CNAME
+++ b/website/public/CNAME
@@ -1 +1 @@
-strudel.tidalcycles.org
+strudel.cc
\ No newline at end of file
diff --git a/website/src/config.ts b/website/src/config.ts
index ca7616d55..962bfdb03 100644
--- a/website/src/config.ts
+++ b/website/src/config.ts
@@ -6,7 +6,7 @@ export const SITE = {
 
 export const OPEN_GRAPH = {
   image: {
-    src: 'https://strudel.tidalcycles.org/icon.png',
+    src: 'https://strudel.cc/icon.png',
     alt: 'Strudel Logo',
   },
 };
diff --git a/website/src/pages/de/workshop/getting-started.mdx b/website/src/pages/de/workshop/getting-started.mdx
index c86fa6681..5ecc60f24 100644
--- a/website/src/pages/de/workshop/getting-started.mdx
+++ b/website/src/pages/de/workshop/getting-started.mdx
@@ -22,7 +22,7 @@ in der Muster eine Rolle spielen.
 
 Du brauchst keine Erfahrung in JavaScript oder Tidal Cycles um mit Strudel Musik zu machen.
 Dieser interaktive Workshop leitet dich spielerisch durch die Grundlagen von Strudel.
-Der beste Ort um mit Strudel Musik zu machen ist das [Strudel REPL](https://strudel.tidalcycles.org/).
+Der beste Ort um mit Strudel Musik zu machen ist das [Strudel REPL](https://strudel.cc/).
 
 ## Was kann man mit Strudel machen?
 
@@ -66,7 +66,7 @@ Hier ist ein Beispiel wie Strudel klingen kann:
 
 Mehr Beispiele gibt es [hier](/examples).
 
-Du kannst auch im [Strudel REPL](https://strudel.tidalcycles.org/) auf `shuffle` klicken um ein zufälliges Beispiel zu hören.
+Du kannst auch im [Strudel REPL](https://strudel.cc/) auf `shuffle` klicken um ein zufälliges Beispiel zu hören.
 
 ## Workshop
 
diff --git a/website/src/pages/learn/getting-started.mdx b/website/src/pages/learn/getting-started.mdx
index 3f41c8591..29cd6b7d4 100644
--- a/website/src/pages/learn/getting-started.mdx
+++ b/website/src/pages/learn/getting-started.mdx
@@ -10,11 +10,11 @@ import { JsDoc } from '../../docs/JsDoc';
 
 Welcome to the Strudel documentation pages!
 
-These pages will introduce you to [Strudel](https://strudel.tidalcycles.org/), a web-based [live coding](https://github.com/toplap/awesome-livecoding/) environment that implements the [Tidal Cycles](https://tidalcycles.org) algorithmic pattern language.
+These pages will introduce you to [Strudel](https://strudel.cc/), a web-based [live coding](https://github.com/toplap/awesome-livecoding/) environment that implements the [Tidal Cycles](https://tidalcycles.org) algorithmic pattern language.
 
 # What is Strudel?
 
-[Strudel](https://strudel.tidalcycles.org/) is a version of [Tidal Cycles](https://tidalcycles.org) written in [JavaScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript), initiated by [Alex McLean](https://slab.org) and [Felix Roos](https://github.com/felixroos) in 2022.
+[Strudel](https://strudel.cc/) is a version of [Tidal Cycles](https://tidalcycles.org) written in [JavaScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript), initiated by [Alex McLean](https://slab.org) and [Felix Roos](https://github.com/felixroos) in 2022.
 Tidal Cycles, also known as Tidal, is a language for [algorithmic pattern](https://algorithmicpattern.org), and though it is most commonly used for [making music](https://tidalcycles.org/docs/showcase), it can be used for any kind of pattern making activity, including [weaving](https://www.youtube.com/watch?v=TfEmEsusXjU).
 
 Tidal was first implemented as a library written in the [Haskell](https://www.haskell.org/) functional programming language, and by itself it does not make any sound.
@@ -24,7 +24,7 @@ Strudel however runs directly in your web browser, does not require any custom s
 
 # Strudel REPL and MiniREPL
 
-The main place to actually make music with Strudel is the [Strudel REPL](https://strudel.tidalcycles.org/) ([what is a REPL?](https://en.wikipedia.org/wiki/Read%E2%80%93eval%E2%80%93print_loop)), but in these pages you will also encounter interactive "MiniREPLs" where you can listen to and edit Strudel patterns.
+The main place to actually make music with Strudel is the [Strudel REPL](https://strudel.cc/) ([what is a REPL?](https://en.wikipedia.org/wiki/Read%E2%80%93eval%E2%80%93print_loop)), but in these pages you will also encounter interactive "MiniREPLs" where you can listen to and edit Strudel patterns.
 Try clicking the play icon below:
 
 <MiniRepl client:idle tune={`s("bd sd")`} punchcard />
@@ -38,7 +38,7 @@ This interactive tutorial will guide you through the basics of Strudel.
 
 # Show me some demos!
 
-To see and hear what Strudel can do, visit the [Strudel REPL](https://strudel.tidalcycles.org/) and click the Shuffle icon in the top menu bar.
+To see and hear what Strudel can do, visit the [Strudel REPL](https://strudel.cc/) and click the Shuffle icon in the top menu bar.
 You can get a feel for Strudel by browsing and editing these examples and clicking the Refresh icon to update.
 
 You can also browse through the examples [here](./examples).
diff --git a/website/src/pages/learn/input-output.mdx b/website/src/pages/learn/input-output.mdx
index e4c2a63fc..de44b4f99 100644
--- a/website/src/pages/learn/input-output.mdx
+++ b/website/src/pages/learn/input-output.mdx
@@ -71,7 +71,7 @@ Now you're all set!
 ## Usage
 
 1. Start SuperCollider, either using SuperCollider IDE or by running `sclang` in a terminal
-2. Open the [Strudel REPL](https://strudel.tidalcycles.org/#cygiYmQgc2QiKS5vc2MoKQ%3D%3D)
+2. Open the [Strudel REPL](https://strudel.cc/#cygiYmQgc2QiKS5vc2MoKQ%3D%3D)
 
 ...or test it here:
 
diff --git a/website/src/pages/learn/metadata.mdx b/website/src/pages/learn/metadata.mdx
index 27f46921d..9ade4447c 100644
--- a/website/src/pages/learn/metadata.mdx
+++ b/website/src/pages/learn/metadata.mdx
@@ -18,7 +18,7 @@ You can optionally add some music metadata in your Strudel code, by using tags i
 
 Like other comments, those are ignored by Strudel, but it can be used by other tools to retrieve some information about the music.
 
-It is for instance used by the [swatch tool](https://github.com/tidalcycles/strudel/tree/main/my-patterns) to display pattern titles in the [examples page](https://strudel.tidalcycles.org/examples/).
+It is for instance used by the [swatch tool](https://github.com/tidalcycles/strudel/tree/main/my-patterns) to display pattern titles in the [examples page](https://strudel.cc/examples/).
 
 ## Alternative syntax
 
diff --git a/website/src/pages/learn/pwa.mdx b/website/src/pages/learn/pwa.mdx
index b7514766c..a283112d6 100644
--- a/website/src/pages/learn/pwa.mdx
+++ b/website/src/pages/learn/pwa.mdx
@@ -5,7 +5,7 @@ layout: ../../layouts/MainLayout.astro
 
 # Using Strudel Offline
 
-You can use Strudel even without a network! When you first visit the [Strudel REPL](strudel.tidalcycles.org/),
+You can use Strudel even without a network! When you first visit the [Strudel REPL](https://strudel.cc/),
 your browser will download the whole web app including documentation.
 When the download is finished (&lt;1MB), you can visit the website even when offline,
 getting the downloaded website instead of the online one.
@@ -32,7 +32,7 @@ You can view all cached files in your browser.
 ### Firefox
 
 - Open the Developer Tools (`Tools > Web Developer > Web Developer Tools`)
-- go to `Storage` tab and expand `Cache Storage > https://strudel.tidalcycles.org`.
+- go to `Storage` tab and expand `Cache Storage > https://strudel.cc`.
 - or go to the `Application` tab and view the latest updates in `Service Workers`
 
 ### Chromium based Browsers
@@ -57,14 +57,14 @@ without the browser ui.
 
 With a chromium based browser:
 
-1. go to the [Strudel REPL](strudel.tidalcycles.org/).
+1. go to the [Strudel REPL](https://strudel.cc).
 2. on the right of the adress bar, click `install Strudel REPL`
 3. the REPL should now run as a standalone chromium app
 
 Without a chromium based browser, you can use [nativefier](https://github.com/nativefier/nativefier) to generate a desktop app:
 
 1. make sure you have NodeJS installed
-2. run `npx nativefier strudel.tidalcycles.org`
+2. run `npx nativefier strudel.cc`
 
 <figure>
   <img src="./pwa/strudel-linux.png" alt="Strudel on Linux" />
@@ -73,13 +73,13 @@ Without a chromium based browser, you can use [nativefier](https://github.com/na
 
 ### iOS
 
-1. open to the [Strudel REPL](strudel.tidalcycles.org/) in safari
+1. open to the [Strudel REPL](https://strudel.cc/) in safari
 2. press the share icon and tab `Add to homescreen`
 3. You should now have a strudel app icon that opens the repl in full screen
 
 ### Android
 
-1. open to the [Strudel REPL](strudel.tidalcycles.org/)
+1. open to the [Strudel REPL](https://strudel.cc/)
 2. Tab the install button at the bottom
 
 Ok, what are [Patterns](/technical-manual/patterns) all about?
diff --git a/website/src/pages/learn/samples.mdx b/website/src/pages/learn/samples.mdx
index 0496f3c65..dc0989c48 100644
--- a/website/src/pages/learn/samples.mdx
+++ b/website/src/pages/learn/samples.mdx
@@ -46,7 +46,7 @@ For drum sounds, strudel uses the comprehensive [tidal-drum-machines](https://gi
 
 Furthermore, strudel also loads instrument samples from [VCSL](https://github.com/sgossner/VCSL) by default.
 
-To see which sample names are available, open the `sounds` tab in the [REPL](https://strudel.tidalcycles.org/).
+To see which sample names are available, open the `sounds` tab in the [REPL](https://strudel.cc/).
 
 Note that only the sample maps (mapping names to URLs) are loaded initially, while the audio samples themselves are not loaded until they are actually played.
 This behaviour of loading things only when they are needed is also called `lazy loading`.
diff --git a/website/src/pages/recipes/microrhythms.mdx b/website/src/pages/recipes/microrhythms.mdx
index 7b2b2425e..107b56fdf 100644
--- a/website/src/pages/recipes/microrhythms.mdx
+++ b/website/src/pages/recipes/microrhythms.mdx
@@ -7,7 +7,7 @@ import { MiniRepl } from '../../docs/MiniRepl';
 import { JsDoc } from '../../docs/JsDoc';
 import { samples } from '@strudel.cycles/webaudio';
 
-see https://strudel.tidalcycles.org?zMEo5kowGrFc
+see https://strudel.cc/?zMEo5kowGrFc
 
 # Microrhythms
 
@@ -73,4 +73,4 @@ This is the second example of the video:
 s('hh').micro(0, 1/6, 2/5, 2/3, 3/4)`}
 />
 
-with bass: https://strudel.tidalcycles.org?sTglgJJCPIeY
+with bass: https://strudel.cc/?sTglgJJCPIeY
diff --git a/website/src/pages/technical-manual/docs.mdx b/website/src/pages/technical-manual/docs.mdx
index 9b4732c17..63e35ad53 100644
--- a/website/src/pages/technical-manual/docs.mdx
+++ b/website/src/pages/technical-manual/docs.mdx
@@ -9,7 +9,7 @@ The docs page is built ontop of astro's [docs site](https://github.com/withastro
 
 ## Adding a new Docs Page
 
-1. add a `.mdx` file in a path under `website/src/pages/`, e.g. [website/src/pages/learn/code.mdx](https://raw.githubusercontent.com/tidalcycles/strudel/main/website/src/pages/learn/code.mdx) will be available under https://strudel.tidalcycles.org/learn/code (or locally under `http://localhost:3000/learn/code`)
+1. add a `.mdx` file in a path under `website/src/pages/`, e.g. [website/src/pages/learn/code.mdx](https://raw.githubusercontent.com/tidalcycles/strudel/main/website/src/pages/learn/code.mdx) will be available under https://strudel.cc/learn/code (or locally under `http://localhost:3000/learn/code`)
 2. make sure to copy the top part of another existing docs page. Adjust the title accordingly
 3. To add a link to the sidebar, add a new entry to `SIDEBAR` to [`config.ts`](https://github.com/tidalcycles/strudel/blob/main/website/src/config.ts)
 
diff --git a/website/src/pages/technical-manual/repl.mdx b/website/src/pages/technical-manual/repl.mdx
index 7f4ed03d8..f336ce361 100644
--- a/website/src/pages/technical-manual/repl.mdx
+++ b/website/src/pages/technical-manual/repl.mdx
@@ -7,7 +7,7 @@ import { MiniRepl } from '../../docs/MiniRepl';
 
 # REPL
 
-{/* The [REPL](https://strudel.tidalcycles.org/) is the place where all packages come together to form a live coding system. It can also be seen as a reference implementation for users of the library. */}
+{/* The [REPL](https://strudel.cc/) is the place where all packages come together to form a live coding system. It can also be seen as a reference implementation for users of the library. */}
 
 While Strudel can be used as a library in any JavaScript codebase, its main, reference user interface is the Strudel REPL^[REPL stands for read, evaluate, print/play, loop. It is friendly jargon for an interactive programming interface from computing heritage, usually for a commandline interface but also applied to live coding editors.], which is a browser-based live coding environment. This live code editor is dedicated to manipulating Strudel patterns while they play. The REPL features built-in visual feedback, highlighting which elements in the patterned (mini-notation) sequences are influencing the event that is currently being played. This feedback is designed to support both learning and live use of Strudel.
 
diff --git a/website/src/pages/technical-manual/sounds.mdx b/website/src/pages/technical-manual/sounds.mdx
index ede7a4269..11078713f 100644
--- a/website/src/pages/technical-manual/sounds.mdx
+++ b/website/src/pages/technical-manual/sounds.mdx
@@ -64,7 +64,7 @@ registerSound(
 freq(220, 440, 330).s('mysaw');
 ```
 
-You can actually use this code in the [REPL](https://strudel.tidalcycles.org/) and it'll work.
+You can actually use this code in the [REPL](https://strudel.cc/) and it'll work.
 After evaluating the code, you should see `mysaw` in listed in the sounds tab.
 
 ## Playing sounds
diff --git a/website/src/pages/workshop/getting-started.mdx b/website/src/pages/workshop/getting-started.mdx
index 66eecdce5..410c6da5c 100644
--- a/website/src/pages/workshop/getting-started.mdx
+++ b/website/src/pages/workshop/getting-started.mdx
@@ -18,7 +18,7 @@ With Strudel, you can expressively write dynamic music pieces.<br/>
 It is an official port of the [Tidal Cycles](https://tidalcycles.org/) pattern language to JavaScript.<br/>
 You don't need to know JavaScript or Tidal Cycles to make music with Strudel.
 This interactive tutorial will guide you through the basics of Strudel.<br/>
-The best place to actually make music with Strudel is the [Strudel REPL](https://strudel.tidalcycles.org/)
+The best place to actually make music with Strudel is the [Strudel REPL](https://strudel.cc/)
 
 <div className="clear-both" />
 
@@ -62,7 +62,7 @@ Here is an example of how strudel can sound:
 .slow(3/2)`}
 />
 
-To hear more, go to the [Strudel REPL](https://strudel.tidalcycles.org/) and press shuffle to hear a random example pattern.
+To hear more, go to the [Strudel REPL](https://strudel.cc/) and press shuffle to hear a random example pattern.
 
 ## Getting Started
 
diff --git a/website/src/repl/Repl.jsx b/website/src/repl/Repl.jsx
index 275b01975..7f0f57ac2 100644
--- a/website/src/repl/Repl.jsx
+++ b/website/src/repl/Repl.jsx
@@ -78,9 +78,9 @@ async function initCode() {
     const initialUrl = window.location.href;
     const hash = initialUrl.split('?')[1]?.split('#')?.[0];
     const codeParam = window.location.href.split('#')[1] || '';
-    // looking like https://strudel.tidalcycles.org/?J01s5i1J0200 (fixed hash length)
+    // looking like https://strudel.cc/?J01s5i1J0200 (fixed hash length)
     if (codeParam) {
-      // looking like https://strudel.tidalcycles.org/#ImMzIGUzIg%3D%3D (hash length depends on code length)
+      // looking like https://strudel.cc/#ImMzIGUzIg%3D%3D (hash length depends on code length)
       return hash2code(codeParam);
     } else if (hash) {
       return supabase
diff --git a/website/src/repl/drawings.mjs b/website/src/repl/drawings.mjs
index 0aa09ef3b..30fef649e 100644
--- a/website/src/repl/drawings.mjs
+++ b/website/src/repl/drawings.mjs
@@ -23,7 +23,7 @@ angle(saw)
   .animate({smear:0})
 `;
 
-// https://strudel.tidalcycles.org/?C31_NrcMfZEO
+// https://strudel.cc/?C31_NrcMfZEO
 export const spiralflower = `const {innerWidth:ww,innerHeight:wh} = window;
 const ctx = getDrawContext()
 const piDiv180 = Math.PI / 180;