mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-24 12:08:28 +00:00
Merge branch 'tidalcycles:main' into pattern_selection
This commit is contained in:
commit
d03892bbcf
@ -41,7 +41,7 @@ export class Cyclist {
|
|||||||
this.lastEnd = end;
|
this.lastEnd = end;
|
||||||
|
|
||||||
// query the pattern for events
|
// query the pattern for events
|
||||||
const haps = this.pattern.queryArc(begin, end);
|
const haps = this.pattern.queryArc(begin, end, { _cps: this.cps });
|
||||||
|
|
||||||
const tickdeadline = phase - time; // time left until the phase is a whole number
|
const tickdeadline = phase - time; // time left until the phase is a whole number
|
||||||
this.lastTick = time + tickdeadline;
|
this.lastTick = time + tickdeadline;
|
||||||
|
|||||||
@ -340,9 +340,9 @@ export class Pattern {
|
|||||||
* silence
|
* silence
|
||||||
* @noAutocomplete
|
* @noAutocomplete
|
||||||
*/
|
*/
|
||||||
queryArc(begin, end) {
|
queryArc(begin, end, controls = {}) {
|
||||||
try {
|
try {
|
||||||
return this.query(new State(new TimeSpan(begin, end)));
|
return this.query(new State(new TimeSpan(begin, end), controls));
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
logger(`[query]: ${err.message}`, 'error');
|
logger(`[query]: ${err.message}`, 'error');
|
||||||
return [];
|
return [];
|
||||||
@ -427,7 +427,7 @@ export class Pattern {
|
|||||||
* @noAutocomplete
|
* @noAutocomplete
|
||||||
*/
|
*/
|
||||||
withHaps(func) {
|
withHaps(func) {
|
||||||
return new Pattern((state) => func(this.query(state)));
|
return new Pattern((state) => func(this.query(state), state));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -2341,28 +2341,28 @@ export const splice = register(
|
|||||||
'splice',
|
'splice',
|
||||||
function (npat, ipat, opat) {
|
function (npat, ipat, opat) {
|
||||||
const sliced = slice(npat, ipat, opat);
|
const sliced = slice(npat, ipat, opat);
|
||||||
return sliced.withHap(function (hap) {
|
return new Pattern((state) => {
|
||||||
return hap.withValue((v) => ({
|
// TODO - default cps to 0.5
|
||||||
...{
|
const cps = state.controls._cps || 1;
|
||||||
speed: (1 / v._slices / hap.whole.duration) * (v.speed || 1),
|
const haps = sliced.query(state);
|
||||||
unit: 'c',
|
return haps.map((hap) =>
|
||||||
},
|
hap.withValue((v) => ({
|
||||||
...v,
|
...{
|
||||||
}));
|
speed: (cps / v._slices / hap.whole.duration) * (v.speed || 1),
|
||||||
|
unit: 'c',
|
||||||
|
},
|
||||||
|
...v,
|
||||||
|
})),
|
||||||
|
);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
false, // turns off auto-patternification
|
false, // turns off auto-patternification
|
||||||
);
|
);
|
||||||
|
|
||||||
// this function will be redefined in repl.mjs to use the correct cps value.
|
|
||||||
// It is still here to work in cases where repl.mjs is not used
|
|
||||||
|
|
||||||
export const { loopAt, loopat } = register(['loopAt', 'loopat'], function (factor, pat) {
|
export const { loopAt, loopat } = register(['loopAt', 'loopat'], function (factor, pat) {
|
||||||
return _loopAt(factor, pat, 1);
|
return new Pattern((state) => _loopAt(factor, pat, state.controls._cps).query(state));
|
||||||
});
|
});
|
||||||
|
|
||||||
// the fit function will be redefined in repl.mjs to use the correct cps value.
|
|
||||||
// It is still here to work in cases where repl.mjs is not used
|
|
||||||
/**
|
/**
|
||||||
* Makes the sample fit its event duration. Good for rhythmical loops like drum breaks.
|
* Makes the sample fit its event duration. Good for rhythmical loops like drum breaks.
|
||||||
* Similar to `loopAt`.
|
* Similar to `loopAt`.
|
||||||
@ -2372,12 +2372,14 @@ export const { loopAt, loopat } = register(['loopAt', 'loopat'], function (facto
|
|||||||
* s("rhodes/4").fit()
|
* s("rhodes/4").fit()
|
||||||
*/
|
*/
|
||||||
export const fit = register('fit', (pat) =>
|
export const fit = register('fit', (pat) =>
|
||||||
pat.withHap((hap) =>
|
pat.withHaps((haps, state) =>
|
||||||
hap.withValue((v) => ({
|
haps.map((hap) =>
|
||||||
...v,
|
hap.withValue((v) => ({
|
||||||
speed: 1 / hap.whole.duration,
|
...v,
|
||||||
unit: 'c',
|
speed: (state.controls._cps || 1) / hap.whole.duration,
|
||||||
})),
|
unit: 'c',
|
||||||
|
})),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@ -61,12 +61,63 @@ export function repl({
|
|||||||
scheduler.setPattern(pattern, autostart);
|
scheduler.setPattern(pattern, autostart);
|
||||||
};
|
};
|
||||||
setTime(() => scheduler.now()); // TODO: refactor?
|
setTime(() => scheduler.now()); // TODO: refactor?
|
||||||
|
|
||||||
|
const stop = () => scheduler.stop();
|
||||||
|
const start = () => scheduler.start();
|
||||||
|
const pause = () => scheduler.pause();
|
||||||
|
const toggle = () => scheduler.toggle();
|
||||||
|
const setCps = (cps) => scheduler.setCps(cps);
|
||||||
|
const setCpm = (cpm) => scheduler.setCps(cpm / 60);
|
||||||
|
const all = function (transform) {
|
||||||
|
allTransform = transform;
|
||||||
|
return silence;
|
||||||
|
};
|
||||||
|
|
||||||
|
// set pattern methods that use this repl via closure
|
||||||
|
const injectPatternMethods = () => {
|
||||||
|
Pattern.prototype.p = function (id) {
|
||||||
|
pPatterns[id] = this;
|
||||||
|
return this;
|
||||||
|
};
|
||||||
|
Pattern.prototype.q = function (id) {
|
||||||
|
return silence;
|
||||||
|
};
|
||||||
|
try {
|
||||||
|
for (let i = 1; i < 10; ++i) {
|
||||||
|
Object.defineProperty(Pattern.prototype, `d${i}`, {
|
||||||
|
get() {
|
||||||
|
return this.p(i);
|
||||||
|
},
|
||||||
|
configurable: true,
|
||||||
|
});
|
||||||
|
Object.defineProperty(Pattern.prototype, `p${i}`, {
|
||||||
|
get() {
|
||||||
|
return this.p(i);
|
||||||
|
},
|
||||||
|
configurable: true,
|
||||||
|
});
|
||||||
|
Pattern.prototype[`q${i}`] = silence;
|
||||||
|
}
|
||||||
|
} catch (err) {
|
||||||
|
console.warn('injectPatternMethods: error:', err);
|
||||||
|
}
|
||||||
|
evalScope({
|
||||||
|
all,
|
||||||
|
hush,
|
||||||
|
setCps,
|
||||||
|
setcps: setCps,
|
||||||
|
setCpm,
|
||||||
|
setcpm: setCpm,
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
const evaluate = async (code, autostart = true, shouldHush = true) => {
|
const evaluate = async (code, autostart = true, shouldHush = true) => {
|
||||||
if (!code) {
|
if (!code) {
|
||||||
throw new Error('no code to evaluate');
|
throw new Error('no code to evaluate');
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
updateState({ code, pending: true });
|
updateState({ code, pending: true });
|
||||||
|
injectPatternMethods();
|
||||||
await beforeEval?.({ code });
|
await beforeEval?.({ code });
|
||||||
shouldHush && hush();
|
shouldHush && hush();
|
||||||
let { pattern, meta } = await _evaluate(code, transpiler);
|
let { pattern, meta } = await _evaluate(code, transpiler);
|
||||||
@ -99,68 +150,6 @@ export function repl({
|
|||||||
onEvalError?.(err);
|
onEvalError?.(err);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
const stop = () => scheduler.stop();
|
|
||||||
const start = () => scheduler.start();
|
|
||||||
const pause = () => scheduler.pause();
|
|
||||||
const toggle = () => scheduler.toggle();
|
|
||||||
const setCps = (cps) => scheduler.setCps(cps);
|
|
||||||
const setCpm = (cpm) => scheduler.setCps(cpm / 60);
|
|
||||||
|
|
||||||
// the following functions use the cps value, which is why they are defined here..
|
|
||||||
const loopAt = register('loopAt', (cycles, pat) => {
|
|
||||||
return pat.loopAtCps(cycles, scheduler.cps);
|
|
||||||
});
|
|
||||||
|
|
||||||
Pattern.prototype.p = function (id) {
|
|
||||||
pPatterns[id] = this;
|
|
||||||
return this;
|
|
||||||
};
|
|
||||||
Pattern.prototype.q = function (id) {
|
|
||||||
return silence;
|
|
||||||
};
|
|
||||||
|
|
||||||
const all = function (transform) {
|
|
||||||
allTransform = transform;
|
|
||||||
return silence;
|
|
||||||
};
|
|
||||||
try {
|
|
||||||
for (let i = 1; i < 10; ++i) {
|
|
||||||
Object.defineProperty(Pattern.prototype, `d${i}`, {
|
|
||||||
get() {
|
|
||||||
return this.p(i);
|
|
||||||
},
|
|
||||||
});
|
|
||||||
Object.defineProperty(Pattern.prototype, `p${i}`, {
|
|
||||||
get() {
|
|
||||||
return this.p(i);
|
|
||||||
},
|
|
||||||
});
|
|
||||||
Pattern.prototype[`q${i}`] = silence;
|
|
||||||
}
|
|
||||||
} catch (err) {
|
|
||||||
// already defined..
|
|
||||||
}
|
|
||||||
|
|
||||||
const fit = register('fit', (pat) =>
|
|
||||||
pat.withHap((hap) =>
|
|
||||||
hap.withValue((v) => ({
|
|
||||||
...v,
|
|
||||||
speed: scheduler.cps / hap.whole.duration, // overwrite speed completely?
|
|
||||||
unit: 'c',
|
|
||||||
})),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
|
|
||||||
evalScope({
|
|
||||||
loopAt,
|
|
||||||
fit,
|
|
||||||
all,
|
|
||||||
hush,
|
|
||||||
setCps,
|
|
||||||
setcps: setCps,
|
|
||||||
setCpm,
|
|
||||||
setcpm: setCpm,
|
|
||||||
});
|
|
||||||
const setCode = (code) => updateState({ code });
|
const setCode = (code) => updateState({ code });
|
||||||
return { scheduler, evaluate, start, stop, pause, setCps, setPattern, setCode, toggle, state };
|
return { scheduler, evaluate, start, stop, pause, setCps, setPattern, setCode, toggle, state };
|
||||||
}
|
}
|
||||||
|
|||||||
@ -214,6 +214,32 @@ export const pickmod = register('pickmod', function (lookup, pat) {
|
|||||||
return _pick(lookup, pat, true).innerJoin();
|
return _pick(lookup, pat, true).innerJoin();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
/** * pickF lets you use a pattern of numbers to pick which function to apply to another pattern.
|
||||||
|
* @param {Pattern} pat
|
||||||
|
* @param {Pattern} lookup a pattern of indices
|
||||||
|
* @param {function[]} funcs the array of functions from which to pull
|
||||||
|
* @returns {Pattern}
|
||||||
|
* @example
|
||||||
|
* s("bd [rim hh]").pickF("<0 1 2>", [rev,jux(rev),fast(2)])
|
||||||
|
* @example
|
||||||
|
* note("<c2 d2>(3,8)").s("square")
|
||||||
|
* .pickF("<0 2> 1", [jux(rev),fast(2),x=>x.lpf(800)])
|
||||||
|
*/
|
||||||
|
export const pickF = register('pickF', function (lookup, funcs, pat) {
|
||||||
|
return pat.apply(pick(lookup, funcs));
|
||||||
|
});
|
||||||
|
|
||||||
|
/** * The same as `pickF`, but if you pick a number greater than the size of the functions list,
|
||||||
|
* it wraps around, rather than sticking at the maximum value.
|
||||||
|
* @param {Pattern} pat
|
||||||
|
* @param {Pattern} lookup a pattern of indices
|
||||||
|
* @param {function[]} funcs the array of functions from which to pull
|
||||||
|
* @returns {Pattern}
|
||||||
|
*/
|
||||||
|
export const pickmodF = register('pickmodF', function (lookup, funcs, pat) {
|
||||||
|
return pat.apply(pickmod(lookup, funcs));
|
||||||
|
});
|
||||||
|
|
||||||
/**
|
/**
|
||||||
/** * Picks patterns (or plain values) either from a list (by index) or a lookup table (by name).
|
/** * Picks patterns (or plain values) either from a list (by index) or a lookup table (by name).
|
||||||
* Similar to `pick`, but cycles are squeezed into the target ('inhabited') pattern.
|
* Similar to `pick`, but cycles are squeezed into the target ('inhabited') pattern.
|
||||||
|
|||||||
@ -288,48 +288,50 @@ function peg$parse(input, options) {
|
|||||||
|
|
||||||
var peg$f0 = function() { return parseFloat(text()); };
|
var peg$f0 = function() { return parseFloat(text()); };
|
||||||
var peg$f1 = function() { return parseInt(text()); };
|
var peg$f1 = function() { return parseInt(text()); };
|
||||||
var peg$f2 = function(chars) { return new AtomStub(chars.join("")) };
|
var peg$f2 = function(chars) { const s = chars.join(""); return (s === ".") || (s === "_") };
|
||||||
var peg$f3 = function(s) { return s };
|
var peg$f3 = function(chars) { return new AtomStub(chars.join("")) };
|
||||||
var peg$f4 = function(s, stepsPerCycle) { s.arguments_.stepsPerCycle = stepsPerCycle ; return s; };
|
var peg$f4 = function(s) { return s };
|
||||||
var peg$f5 = function(a) { return a };
|
var peg$f5 = function(s, stepsPerCycle) { s.arguments_.stepsPerCycle = stepsPerCycle ; return s; };
|
||||||
var peg$f6 = function(s) { s.arguments_.alignment = 'polymeter_slowcat'; return s; };
|
var peg$f6 = function(a) { return a };
|
||||||
var peg$f7 = function(a) { return x => x.options_['weight'] = a };
|
var peg$f7 = function(s) { s.arguments_.alignment = 'polymeter_slowcat'; return s; };
|
||||||
var peg$f8 = function(a) { return x => x.options_['reps'] = a };
|
var peg$f8 = function(a) { return x => x.options_['weight'] = (x.options_['weight'] ?? 1) + (a ?? 2) - 1 };
|
||||||
var peg$f9 = function(p, s, r) { return x => x.options_['ops'].push({ type_: "bjorklund", arguments_ :{ pulse: p, step:s, rotation:r }}) };
|
var peg$f9 = function(a) { return x => x.options_['reps'] = (x.options_['reps'] ?? 1) + (a ?? 2) - 1 };
|
||||||
var peg$f10 = function(a) { return x => x.options_['ops'].push({ type_: "stretch", arguments_ :{ amount:a, type: 'slow' }}) };
|
var peg$f10 = function(p, s, r) { return x => x.options_['ops'].push({ type_: "bjorklund", arguments_ :{ pulse: p, step:s, rotation:r }}) };
|
||||||
var peg$f11 = function(a) { return x => x.options_['ops'].push({ type_: "stretch", arguments_ :{ amount:a, type: 'fast' }}) };
|
var peg$f11 = function(a) { return x => x.options_['ops'].push({ type_: "stretch", arguments_ :{ amount:a, type: 'slow' }}) };
|
||||||
var peg$f12 = function(a) { return x => x.options_['ops'].push({ type_: "degradeBy", arguments_ :{ amount:a, seed: seed++ } }) };
|
var peg$f12 = function(a) { return x => x.options_['ops'].push({ type_: "stretch", arguments_ :{ amount:a, type: 'fast' }}) };
|
||||||
var peg$f13 = function(s) { return x => x.options_['ops'].push({ type_: "tail", arguments_ :{ element:s } }) };
|
var peg$f13 = function(a) { return x => x.options_['ops'].push({ type_: "degradeBy", arguments_ :{ amount:a, seed: seed++ } }) };
|
||||||
var peg$f14 = function(s) { return x => x.options_['ops'].push({ type_: "range", arguments_ :{ element:s } }) };
|
var peg$f14 = function(s) { return x => x.options_['ops'].push({ type_: "tail", arguments_ :{ element:s } }) };
|
||||||
var peg$f15 = function(s, ops) { const result = new ElementStub(s, {ops: [], weight: 1, reps: 1});
|
var peg$f15 = function(s) { return x => x.options_['ops'].push({ type_: "range", arguments_ :{ element:s } }) };
|
||||||
|
var peg$f16 = function(s, ops) { const result = new ElementStub(s, {ops: [], weight: 1, reps: 1});
|
||||||
for (const op of ops) {
|
for (const op of ops) {
|
||||||
op(result);
|
op(result);
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
};
|
};
|
||||||
var peg$f16 = function(s) { return new PatternStub(s, 'fastcat'); };
|
var peg$f17 = function(s) { return new PatternStub(s, 'fastcat'); };
|
||||||
var peg$f17 = function(tail) { return { alignment: 'stack', list: tail }; };
|
var peg$f18 = function(tail) { return { alignment: 'stack', list: tail }; };
|
||||||
var peg$f18 = function(tail) { return { alignment: 'rand', list: tail, seed: seed++ }; };
|
var peg$f19 = function(tail) { return { alignment: 'rand', list: tail, seed: seed++ }; };
|
||||||
var peg$f19 = function(head, tail) { if (tail && tail.list.length > 0) { return new PatternStub([head, ...tail.list], tail.alignment, tail.seed); } else { return head; } };
|
var peg$f20 = function(tail) { return { alignment: 'feet', list: tail, seed: seed++ }; };
|
||||||
var peg$f20 = function(head, tail) { return new PatternStub(tail ? [head, ...tail.list] : [head], 'polymeter'); };
|
var peg$f21 = function(head, tail) { if (tail && tail.list.length > 0) { return new PatternStub([head, ...tail.list], tail.alignment, tail.seed); } else { return head; } };
|
||||||
var peg$f21 = function(sc) { return sc; };
|
var peg$f22 = function(head, tail) { return new PatternStub(tail ? [head, ...tail.list] : [head], 'polymeter'); };
|
||||||
var peg$f22 = function(s) { return { name: "struct", args: { mini:s }}};
|
var peg$f23 = function(sc) { return sc; };
|
||||||
var peg$f23 = function(s) { return { name: "target", args : { name:s}}};
|
var peg$f24 = function(s) { return { name: "struct", args: { mini:s }}};
|
||||||
var peg$f24 = function(p, s, r) { return { name: "bjorklund", args :{ pulse: p, step:parseInt(s) }}};
|
var peg$f25 = function(s) { return { name: "target", args : { name:s}}};
|
||||||
var peg$f25 = function(a) { return { name: "stretch", args :{ amount: a}}};
|
var peg$f26 = function(p, s, r) { return { name: "bjorklund", args :{ pulse: p, step:parseInt(s) }}};
|
||||||
var peg$f26 = function(a) { return { name: "shift", args :{ amount: "-"+a}}};
|
var peg$f27 = function(a) { return { name: "stretch", args :{ amount: a}}};
|
||||||
var peg$f27 = function(a) { return { name: "shift", args :{ amount: a}}};
|
var peg$f28 = function(a) { return { name: "shift", args :{ amount: "-"+a}}};
|
||||||
var peg$f28 = function(a) { return { name: "stretch", args :{ amount: "1/"+a}}};
|
var peg$f29 = function(a) { return { name: "shift", args :{ amount: a}}};
|
||||||
var peg$f29 = function(s) { return { name: "scale", args :{ scale: s.join("")}}};
|
var peg$f30 = function(a) { return { name: "stretch", args :{ amount: "1/"+a}}};
|
||||||
var peg$f30 = function(s, v) { return v};
|
var peg$f31 = function(s) { return { name: "scale", args :{ scale: s.join("")}}};
|
||||||
var peg$f31 = function(s, ss) { ss.unshift(s); return new PatternStub(ss, 'slowcat'); };
|
var peg$f32 = function(s, v) { return v};
|
||||||
var peg$f32 = function(sg) {return sg};
|
var peg$f33 = function(s, ss) { ss.unshift(s); return new PatternStub(ss, 'slowcat'); };
|
||||||
var peg$f33 = function(o, soc) { return new OperatorStub(o.name,o.args,soc)};
|
var peg$f34 = function(sg) {return sg};
|
||||||
var peg$f34 = function(sc) { return sc };
|
var peg$f35 = function(o, soc) { return new OperatorStub(o.name,o.args,soc)};
|
||||||
var peg$f35 = function(c) { return c };
|
var peg$f36 = function(sc) { return sc };
|
||||||
var peg$f36 = function(v) { return new CommandStub("setcps", { value: v})};
|
var peg$f37 = function(c) { return c };
|
||||||
var peg$f37 = function(v) { return new CommandStub("setcps", { value: (v/120/2)})};
|
var peg$f38 = function(v) { return new CommandStub("setcps", { value: v})};
|
||||||
var peg$f38 = function() { return new CommandStub("hush")};
|
var peg$f39 = function(v) { return new CommandStub("setcps", { value: (v/120/2)})};
|
||||||
|
var peg$f40 = function() { return new CommandStub("hush")};
|
||||||
var peg$currPos = 0;
|
var peg$currPos = 0;
|
||||||
var peg$savedPos = 0;
|
var peg$savedPos = 0;
|
||||||
var peg$posDetailsCache = [{ line: 1, column: 1 }];
|
var peg$posDetailsCache = [{ line: 1, column: 1 }];
|
||||||
@ -821,6 +823,30 @@ function peg$parse(input, options) {
|
|||||||
return s0;
|
return s0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function peg$parsedot() {
|
||||||
|
var s0, s1, s2, s3;
|
||||||
|
|
||||||
|
s0 = peg$currPos;
|
||||||
|
s1 = peg$parsews();
|
||||||
|
if (input.charCodeAt(peg$currPos) === 46) {
|
||||||
|
s2 = peg$c0;
|
||||||
|
peg$currPos++;
|
||||||
|
} else {
|
||||||
|
s2 = peg$FAILED;
|
||||||
|
if (peg$silentFails === 0) { peg$fail(peg$e1); }
|
||||||
|
}
|
||||||
|
if (s2 !== peg$FAILED) {
|
||||||
|
s3 = peg$parsews();
|
||||||
|
s1 = [s1, s2, s3];
|
||||||
|
s0 = s1;
|
||||||
|
} else {
|
||||||
|
peg$currPos = s0;
|
||||||
|
s0 = peg$FAILED;
|
||||||
|
}
|
||||||
|
|
||||||
|
return s0;
|
||||||
|
}
|
||||||
|
|
||||||
function peg$parsequote() {
|
function peg$parsequote() {
|
||||||
var s0;
|
var s0;
|
||||||
|
|
||||||
@ -913,7 +939,7 @@ function peg$parse(input, options) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function peg$parsestep() {
|
function peg$parsestep() {
|
||||||
var s0, s1, s2, s3;
|
var s0, s1, s2, s3, s4;
|
||||||
|
|
||||||
s0 = peg$currPos;
|
s0 = peg$currPos;
|
||||||
s1 = peg$parsews();
|
s1 = peg$parsews();
|
||||||
@ -929,8 +955,20 @@ function peg$parse(input, options) {
|
|||||||
}
|
}
|
||||||
if (s2 !== peg$FAILED) {
|
if (s2 !== peg$FAILED) {
|
||||||
s3 = peg$parsews();
|
s3 = peg$parsews();
|
||||||
peg$savedPos = s0;
|
peg$savedPos = peg$currPos;
|
||||||
s0 = peg$f2(s2);
|
s4 = peg$f2(s2);
|
||||||
|
if (s4) {
|
||||||
|
s4 = peg$FAILED;
|
||||||
|
} else {
|
||||||
|
s4 = undefined;
|
||||||
|
}
|
||||||
|
if (s4 !== peg$FAILED) {
|
||||||
|
peg$savedPos = s0;
|
||||||
|
s0 = peg$f3(s2);
|
||||||
|
} else {
|
||||||
|
peg$currPos = s0;
|
||||||
|
s0 = peg$FAILED;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
peg$currPos = s0;
|
peg$currPos = s0;
|
||||||
s0 = peg$FAILED;
|
s0 = peg$FAILED;
|
||||||
@ -966,7 +1004,7 @@ function peg$parse(input, options) {
|
|||||||
if (s6 !== peg$FAILED) {
|
if (s6 !== peg$FAILED) {
|
||||||
s7 = peg$parsews();
|
s7 = peg$parsews();
|
||||||
peg$savedPos = s0;
|
peg$savedPos = s0;
|
||||||
s0 = peg$f3(s4);
|
s0 = peg$f4(s4);
|
||||||
} else {
|
} else {
|
||||||
peg$currPos = s0;
|
peg$currPos = s0;
|
||||||
s0 = peg$FAILED;
|
s0 = peg$FAILED;
|
||||||
@ -1014,7 +1052,7 @@ function peg$parse(input, options) {
|
|||||||
}
|
}
|
||||||
s8 = peg$parsews();
|
s8 = peg$parsews();
|
||||||
peg$savedPos = s0;
|
peg$savedPos = s0;
|
||||||
s0 = peg$f4(s4, s7);
|
s0 = peg$f5(s4, s7);
|
||||||
} else {
|
} else {
|
||||||
peg$currPos = s0;
|
peg$currPos = s0;
|
||||||
s0 = peg$FAILED;
|
s0 = peg$FAILED;
|
||||||
@ -1046,7 +1084,7 @@ function peg$parse(input, options) {
|
|||||||
s2 = peg$parseslice();
|
s2 = peg$parseslice();
|
||||||
if (s2 !== peg$FAILED) {
|
if (s2 !== peg$FAILED) {
|
||||||
peg$savedPos = s0;
|
peg$savedPos = s0;
|
||||||
s0 = peg$f5(s2);
|
s0 = peg$f6(s2);
|
||||||
} else {
|
} else {
|
||||||
peg$currPos = s0;
|
peg$currPos = s0;
|
||||||
s0 = peg$FAILED;
|
s0 = peg$FAILED;
|
||||||
@ -1086,7 +1124,7 @@ function peg$parse(input, options) {
|
|||||||
if (s6 !== peg$FAILED) {
|
if (s6 !== peg$FAILED) {
|
||||||
s7 = peg$parsews();
|
s7 = peg$parsews();
|
||||||
peg$savedPos = s0;
|
peg$savedPos = s0;
|
||||||
s0 = peg$f6(s4);
|
s0 = peg$f7(s4);
|
||||||
} else {
|
} else {
|
||||||
peg$currPos = s0;
|
peg$currPos = s0;
|
||||||
s0 = peg$FAILED;
|
s0 = peg$FAILED;
|
||||||
@ -1150,25 +1188,33 @@ function peg$parse(input, options) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function peg$parseop_weight() {
|
function peg$parseop_weight() {
|
||||||
var s0, s1, s2;
|
var s0, s1, s2, s3;
|
||||||
|
|
||||||
s0 = peg$currPos;
|
s0 = peg$currPos;
|
||||||
|
s1 = peg$parsews();
|
||||||
if (input.charCodeAt(peg$currPos) === 64) {
|
if (input.charCodeAt(peg$currPos) === 64) {
|
||||||
s1 = peg$c18;
|
s2 = peg$c18;
|
||||||
peg$currPos++;
|
peg$currPos++;
|
||||||
} else {
|
} else {
|
||||||
s1 = peg$FAILED;
|
s2 = peg$FAILED;
|
||||||
if (peg$silentFails === 0) { peg$fail(peg$e26); }
|
if (peg$silentFails === 0) { peg$fail(peg$e26); }
|
||||||
}
|
}
|
||||||
if (s1 !== peg$FAILED) {
|
if (s2 === peg$FAILED) {
|
||||||
s2 = peg$parsenumber();
|
if (input.charCodeAt(peg$currPos) === 95) {
|
||||||
if (s2 !== peg$FAILED) {
|
s2 = peg$c10;
|
||||||
peg$savedPos = s0;
|
peg$currPos++;
|
||||||
s0 = peg$f7(s2);
|
|
||||||
} else {
|
} else {
|
||||||
peg$currPos = s0;
|
s2 = peg$FAILED;
|
||||||
s0 = peg$FAILED;
|
if (peg$silentFails === 0) { peg$fail(peg$e18); }
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
if (s2 !== peg$FAILED) {
|
||||||
|
s3 = peg$parsenumber();
|
||||||
|
if (s3 === peg$FAILED) {
|
||||||
|
s3 = null;
|
||||||
|
}
|
||||||
|
peg$savedPos = s0;
|
||||||
|
s0 = peg$f8(s3);
|
||||||
} else {
|
} else {
|
||||||
peg$currPos = s0;
|
peg$currPos = s0;
|
||||||
s0 = peg$FAILED;
|
s0 = peg$FAILED;
|
||||||
@ -1178,25 +1224,24 @@ function peg$parse(input, options) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function peg$parseop_replicate() {
|
function peg$parseop_replicate() {
|
||||||
var s0, s1, s2;
|
var s0, s1, s2, s3;
|
||||||
|
|
||||||
s0 = peg$currPos;
|
s0 = peg$currPos;
|
||||||
|
s1 = peg$parsews();
|
||||||
if (input.charCodeAt(peg$currPos) === 33) {
|
if (input.charCodeAt(peg$currPos) === 33) {
|
||||||
s1 = peg$c19;
|
s2 = peg$c19;
|
||||||
peg$currPos++;
|
peg$currPos++;
|
||||||
} else {
|
} else {
|
||||||
s1 = peg$FAILED;
|
s2 = peg$FAILED;
|
||||||
if (peg$silentFails === 0) { peg$fail(peg$e27); }
|
if (peg$silentFails === 0) { peg$fail(peg$e27); }
|
||||||
}
|
}
|
||||||
if (s1 !== peg$FAILED) {
|
if (s2 !== peg$FAILED) {
|
||||||
s2 = peg$parsenumber();
|
s3 = peg$parsenumber();
|
||||||
if (s2 !== peg$FAILED) {
|
if (s3 === peg$FAILED) {
|
||||||
peg$savedPos = s0;
|
s3 = null;
|
||||||
s0 = peg$f8(s2);
|
|
||||||
} else {
|
|
||||||
peg$currPos = s0;
|
|
||||||
s0 = peg$FAILED;
|
|
||||||
}
|
}
|
||||||
|
peg$savedPos = s0;
|
||||||
|
s0 = peg$f9(s3);
|
||||||
} else {
|
} else {
|
||||||
peg$currPos = s0;
|
peg$currPos = s0;
|
||||||
s0 = peg$FAILED;
|
s0 = peg$FAILED;
|
||||||
@ -1246,7 +1291,7 @@ function peg$parse(input, options) {
|
|||||||
}
|
}
|
||||||
if (s13 !== peg$FAILED) {
|
if (s13 !== peg$FAILED) {
|
||||||
peg$savedPos = s0;
|
peg$savedPos = s0;
|
||||||
s0 = peg$f9(s3, s7, s11);
|
s0 = peg$f10(s3, s7, s11);
|
||||||
} else {
|
} else {
|
||||||
peg$currPos = s0;
|
peg$currPos = s0;
|
||||||
s0 = peg$FAILED;
|
s0 = peg$FAILED;
|
||||||
@ -1286,7 +1331,7 @@ function peg$parse(input, options) {
|
|||||||
s2 = peg$parseslice();
|
s2 = peg$parseslice();
|
||||||
if (s2 !== peg$FAILED) {
|
if (s2 !== peg$FAILED) {
|
||||||
peg$savedPos = s0;
|
peg$savedPos = s0;
|
||||||
s0 = peg$f10(s2);
|
s0 = peg$f11(s2);
|
||||||
} else {
|
} else {
|
||||||
peg$currPos = s0;
|
peg$currPos = s0;
|
||||||
s0 = peg$FAILED;
|
s0 = peg$FAILED;
|
||||||
@ -1314,7 +1359,7 @@ function peg$parse(input, options) {
|
|||||||
s2 = peg$parseslice();
|
s2 = peg$parseslice();
|
||||||
if (s2 !== peg$FAILED) {
|
if (s2 !== peg$FAILED) {
|
||||||
peg$savedPos = s0;
|
peg$savedPos = s0;
|
||||||
s0 = peg$f11(s2);
|
s0 = peg$f12(s2);
|
||||||
} else {
|
} else {
|
||||||
peg$currPos = s0;
|
peg$currPos = s0;
|
||||||
s0 = peg$FAILED;
|
s0 = peg$FAILED;
|
||||||
@ -1344,7 +1389,7 @@ function peg$parse(input, options) {
|
|||||||
s2 = null;
|
s2 = null;
|
||||||
}
|
}
|
||||||
peg$savedPos = s0;
|
peg$savedPos = s0;
|
||||||
s0 = peg$f12(s2);
|
s0 = peg$f13(s2);
|
||||||
} else {
|
} else {
|
||||||
peg$currPos = s0;
|
peg$currPos = s0;
|
||||||
s0 = peg$FAILED;
|
s0 = peg$FAILED;
|
||||||
@ -1368,7 +1413,7 @@ function peg$parse(input, options) {
|
|||||||
s2 = peg$parseslice();
|
s2 = peg$parseslice();
|
||||||
if (s2 !== peg$FAILED) {
|
if (s2 !== peg$FAILED) {
|
||||||
peg$savedPos = s0;
|
peg$savedPos = s0;
|
||||||
s0 = peg$f13(s2);
|
s0 = peg$f14(s2);
|
||||||
} else {
|
} else {
|
||||||
peg$currPos = s0;
|
peg$currPos = s0;
|
||||||
s0 = peg$FAILED;
|
s0 = peg$FAILED;
|
||||||
@ -1396,7 +1441,7 @@ function peg$parse(input, options) {
|
|||||||
s2 = peg$parseslice();
|
s2 = peg$parseslice();
|
||||||
if (s2 !== peg$FAILED) {
|
if (s2 !== peg$FAILED) {
|
||||||
peg$savedPos = s0;
|
peg$savedPos = s0;
|
||||||
s0 = peg$f14(s2);
|
s0 = peg$f15(s2);
|
||||||
} else {
|
} else {
|
||||||
peg$currPos = s0;
|
peg$currPos = s0;
|
||||||
s0 = peg$FAILED;
|
s0 = peg$FAILED;
|
||||||
@ -1422,7 +1467,7 @@ function peg$parse(input, options) {
|
|||||||
s3 = peg$parseslice_op();
|
s3 = peg$parseslice_op();
|
||||||
}
|
}
|
||||||
peg$savedPos = s0;
|
peg$savedPos = s0;
|
||||||
s0 = peg$f15(s1, s2);
|
s0 = peg$f16(s1, s2);
|
||||||
} else {
|
} else {
|
||||||
peg$currPos = s0;
|
peg$currPos = s0;
|
||||||
s0 = peg$FAILED;
|
s0 = peg$FAILED;
|
||||||
@ -1447,7 +1492,7 @@ function peg$parse(input, options) {
|
|||||||
}
|
}
|
||||||
if (s1 !== peg$FAILED) {
|
if (s1 !== peg$FAILED) {
|
||||||
peg$savedPos = s0;
|
peg$savedPos = s0;
|
||||||
s1 = peg$f16(s1);
|
s1 = peg$f17(s1);
|
||||||
}
|
}
|
||||||
s0 = s1;
|
s0 = s1;
|
||||||
|
|
||||||
@ -1496,7 +1541,7 @@ function peg$parse(input, options) {
|
|||||||
}
|
}
|
||||||
if (s1 !== peg$FAILED) {
|
if (s1 !== peg$FAILED) {
|
||||||
peg$savedPos = s0;
|
peg$savedPos = s0;
|
||||||
s1 = peg$f17(s1);
|
s1 = peg$f18(s1);
|
||||||
}
|
}
|
||||||
s0 = s1;
|
s0 = s1;
|
||||||
|
|
||||||
@ -1545,7 +1590,56 @@ function peg$parse(input, options) {
|
|||||||
}
|
}
|
||||||
if (s1 !== peg$FAILED) {
|
if (s1 !== peg$FAILED) {
|
||||||
peg$savedPos = s0;
|
peg$savedPos = s0;
|
||||||
s1 = peg$f18(s1);
|
s1 = peg$f19(s1);
|
||||||
|
}
|
||||||
|
s0 = s1;
|
||||||
|
|
||||||
|
return s0;
|
||||||
|
}
|
||||||
|
|
||||||
|
function peg$parsedot_tail() {
|
||||||
|
var s0, s1, s2, s3, s4;
|
||||||
|
|
||||||
|
s0 = peg$currPos;
|
||||||
|
s1 = [];
|
||||||
|
s2 = peg$currPos;
|
||||||
|
s3 = peg$parsedot();
|
||||||
|
if (s3 !== peg$FAILED) {
|
||||||
|
s4 = peg$parsesequence();
|
||||||
|
if (s4 !== peg$FAILED) {
|
||||||
|
s2 = s4;
|
||||||
|
} else {
|
||||||
|
peg$currPos = s2;
|
||||||
|
s2 = peg$FAILED;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
peg$currPos = s2;
|
||||||
|
s2 = peg$FAILED;
|
||||||
|
}
|
||||||
|
if (s2 !== peg$FAILED) {
|
||||||
|
while (s2 !== peg$FAILED) {
|
||||||
|
s1.push(s2);
|
||||||
|
s2 = peg$currPos;
|
||||||
|
s3 = peg$parsedot();
|
||||||
|
if (s3 !== peg$FAILED) {
|
||||||
|
s4 = peg$parsesequence();
|
||||||
|
if (s4 !== peg$FAILED) {
|
||||||
|
s2 = s4;
|
||||||
|
} else {
|
||||||
|
peg$currPos = s2;
|
||||||
|
s2 = peg$FAILED;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
peg$currPos = s2;
|
||||||
|
s2 = peg$FAILED;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
s1 = peg$FAILED;
|
||||||
|
}
|
||||||
|
if (s1 !== peg$FAILED) {
|
||||||
|
peg$savedPos = s0;
|
||||||
|
s1 = peg$f20(s1);
|
||||||
}
|
}
|
||||||
s0 = s1;
|
s0 = s1;
|
||||||
|
|
||||||
@ -1561,12 +1655,15 @@ function peg$parse(input, options) {
|
|||||||
s2 = peg$parsestack_tail();
|
s2 = peg$parsestack_tail();
|
||||||
if (s2 === peg$FAILED) {
|
if (s2 === peg$FAILED) {
|
||||||
s2 = peg$parsechoose_tail();
|
s2 = peg$parsechoose_tail();
|
||||||
|
if (s2 === peg$FAILED) {
|
||||||
|
s2 = peg$parsedot_tail();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (s2 === peg$FAILED) {
|
if (s2 === peg$FAILED) {
|
||||||
s2 = null;
|
s2 = null;
|
||||||
}
|
}
|
||||||
peg$savedPos = s0;
|
peg$savedPos = s0;
|
||||||
s0 = peg$f19(s1, s2);
|
s0 = peg$f21(s1, s2);
|
||||||
} else {
|
} else {
|
||||||
peg$currPos = s0;
|
peg$currPos = s0;
|
||||||
s0 = peg$FAILED;
|
s0 = peg$FAILED;
|
||||||
@ -1586,7 +1683,7 @@ function peg$parse(input, options) {
|
|||||||
s2 = null;
|
s2 = null;
|
||||||
}
|
}
|
||||||
peg$savedPos = s0;
|
peg$savedPos = s0;
|
||||||
s0 = peg$f20(s1, s2);
|
s0 = peg$f22(s1, s2);
|
||||||
} else {
|
} else {
|
||||||
peg$currPos = s0;
|
peg$currPos = s0;
|
||||||
s0 = peg$FAILED;
|
s0 = peg$FAILED;
|
||||||
@ -1609,7 +1706,7 @@ function peg$parse(input, options) {
|
|||||||
s6 = peg$parsequote();
|
s6 = peg$parsequote();
|
||||||
if (s6 !== peg$FAILED) {
|
if (s6 !== peg$FAILED) {
|
||||||
peg$savedPos = s0;
|
peg$savedPos = s0;
|
||||||
s0 = peg$f21(s4);
|
s0 = peg$f23(s4);
|
||||||
} else {
|
} else {
|
||||||
peg$currPos = s0;
|
peg$currPos = s0;
|
||||||
s0 = peg$FAILED;
|
s0 = peg$FAILED;
|
||||||
@ -1671,7 +1768,7 @@ function peg$parse(input, options) {
|
|||||||
s3 = peg$parsemini_or_operator();
|
s3 = peg$parsemini_or_operator();
|
||||||
if (s3 !== peg$FAILED) {
|
if (s3 !== peg$FAILED) {
|
||||||
peg$savedPos = s0;
|
peg$savedPos = s0;
|
||||||
s0 = peg$f22(s3);
|
s0 = peg$f24(s3);
|
||||||
} else {
|
} else {
|
||||||
peg$currPos = s0;
|
peg$currPos = s0;
|
||||||
s0 = peg$FAILED;
|
s0 = peg$FAILED;
|
||||||
@ -1704,7 +1801,7 @@ function peg$parse(input, options) {
|
|||||||
s5 = peg$parsequote();
|
s5 = peg$parsequote();
|
||||||
if (s5 !== peg$FAILED) {
|
if (s5 !== peg$FAILED) {
|
||||||
peg$savedPos = s0;
|
peg$savedPos = s0;
|
||||||
s0 = peg$f23(s4);
|
s0 = peg$f25(s4);
|
||||||
} else {
|
} else {
|
||||||
peg$currPos = s0;
|
peg$currPos = s0;
|
||||||
s0 = peg$FAILED;
|
s0 = peg$FAILED;
|
||||||
@ -1749,7 +1846,7 @@ function peg$parse(input, options) {
|
|||||||
s7 = null;
|
s7 = null;
|
||||||
}
|
}
|
||||||
peg$savedPos = s0;
|
peg$savedPos = s0;
|
||||||
s0 = peg$f24(s3, s5, s7);
|
s0 = peg$f26(s3, s5, s7);
|
||||||
} else {
|
} else {
|
||||||
peg$currPos = s0;
|
peg$currPos = s0;
|
||||||
s0 = peg$FAILED;
|
s0 = peg$FAILED;
|
||||||
@ -1782,7 +1879,7 @@ function peg$parse(input, options) {
|
|||||||
s3 = peg$parsenumber();
|
s3 = peg$parsenumber();
|
||||||
if (s3 !== peg$FAILED) {
|
if (s3 !== peg$FAILED) {
|
||||||
peg$savedPos = s0;
|
peg$savedPos = s0;
|
||||||
s0 = peg$f25(s3);
|
s0 = peg$f27(s3);
|
||||||
} else {
|
} else {
|
||||||
peg$currPos = s0;
|
peg$currPos = s0;
|
||||||
s0 = peg$FAILED;
|
s0 = peg$FAILED;
|
||||||
@ -1811,7 +1908,7 @@ function peg$parse(input, options) {
|
|||||||
s3 = peg$parsenumber();
|
s3 = peg$parsenumber();
|
||||||
if (s3 !== peg$FAILED) {
|
if (s3 !== peg$FAILED) {
|
||||||
peg$savedPos = s0;
|
peg$savedPos = s0;
|
||||||
s0 = peg$f26(s3);
|
s0 = peg$f28(s3);
|
||||||
} else {
|
} else {
|
||||||
peg$currPos = s0;
|
peg$currPos = s0;
|
||||||
s0 = peg$FAILED;
|
s0 = peg$FAILED;
|
||||||
@ -1840,7 +1937,7 @@ function peg$parse(input, options) {
|
|||||||
s3 = peg$parsenumber();
|
s3 = peg$parsenumber();
|
||||||
if (s3 !== peg$FAILED) {
|
if (s3 !== peg$FAILED) {
|
||||||
peg$savedPos = s0;
|
peg$savedPos = s0;
|
||||||
s0 = peg$f27(s3);
|
s0 = peg$f29(s3);
|
||||||
} else {
|
} else {
|
||||||
peg$currPos = s0;
|
peg$currPos = s0;
|
||||||
s0 = peg$FAILED;
|
s0 = peg$FAILED;
|
||||||
@ -1869,7 +1966,7 @@ function peg$parse(input, options) {
|
|||||||
s3 = peg$parsenumber();
|
s3 = peg$parsenumber();
|
||||||
if (s3 !== peg$FAILED) {
|
if (s3 !== peg$FAILED) {
|
||||||
peg$savedPos = s0;
|
peg$savedPos = s0;
|
||||||
s0 = peg$f28(s3);
|
s0 = peg$f30(s3);
|
||||||
} else {
|
} else {
|
||||||
peg$currPos = s0;
|
peg$currPos = s0;
|
||||||
s0 = peg$FAILED;
|
s0 = peg$FAILED;
|
||||||
@ -1911,7 +2008,7 @@ function peg$parse(input, options) {
|
|||||||
s5 = peg$parsequote();
|
s5 = peg$parsequote();
|
||||||
if (s5 !== peg$FAILED) {
|
if (s5 !== peg$FAILED) {
|
||||||
peg$savedPos = s0;
|
peg$savedPos = s0;
|
||||||
s0 = peg$f29(s4);
|
s0 = peg$f31(s4);
|
||||||
} else {
|
} else {
|
||||||
peg$currPos = s0;
|
peg$currPos = s0;
|
||||||
s0 = peg$FAILED;
|
s0 = peg$FAILED;
|
||||||
@ -2003,7 +2100,7 @@ function peg$parse(input, options) {
|
|||||||
s9 = peg$parsemini_or_operator();
|
s9 = peg$parsemini_or_operator();
|
||||||
if (s9 !== peg$FAILED) {
|
if (s9 !== peg$FAILED) {
|
||||||
peg$savedPos = s7;
|
peg$savedPos = s7;
|
||||||
s7 = peg$f30(s5, s9);
|
s7 = peg$f32(s5, s9);
|
||||||
} else {
|
} else {
|
||||||
peg$currPos = s7;
|
peg$currPos = s7;
|
||||||
s7 = peg$FAILED;
|
s7 = peg$FAILED;
|
||||||
@ -2020,7 +2117,7 @@ function peg$parse(input, options) {
|
|||||||
s9 = peg$parsemini_or_operator();
|
s9 = peg$parsemini_or_operator();
|
||||||
if (s9 !== peg$FAILED) {
|
if (s9 !== peg$FAILED) {
|
||||||
peg$savedPos = s7;
|
peg$savedPos = s7;
|
||||||
s7 = peg$f30(s5, s9);
|
s7 = peg$f32(s5, s9);
|
||||||
} else {
|
} else {
|
||||||
peg$currPos = s7;
|
peg$currPos = s7;
|
||||||
s7 = peg$FAILED;
|
s7 = peg$FAILED;
|
||||||
@ -2040,7 +2137,7 @@ function peg$parse(input, options) {
|
|||||||
}
|
}
|
||||||
if (s8 !== peg$FAILED) {
|
if (s8 !== peg$FAILED) {
|
||||||
peg$savedPos = s0;
|
peg$savedPos = s0;
|
||||||
s0 = peg$f31(s5, s6);
|
s0 = peg$f33(s5, s6);
|
||||||
} else {
|
} else {
|
||||||
peg$currPos = s0;
|
peg$currPos = s0;
|
||||||
s0 = peg$FAILED;
|
s0 = peg$FAILED;
|
||||||
@ -2086,7 +2183,7 @@ function peg$parse(input, options) {
|
|||||||
s4 = peg$parsecomment();
|
s4 = peg$parsecomment();
|
||||||
}
|
}
|
||||||
peg$savedPos = s0;
|
peg$savedPos = s0;
|
||||||
s0 = peg$f32(s1);
|
s0 = peg$f34(s1);
|
||||||
} else {
|
} else {
|
||||||
peg$currPos = s0;
|
peg$currPos = s0;
|
||||||
s0 = peg$FAILED;
|
s0 = peg$FAILED;
|
||||||
@ -2108,7 +2205,7 @@ function peg$parse(input, options) {
|
|||||||
s5 = peg$parsemini_or_operator();
|
s5 = peg$parsemini_or_operator();
|
||||||
if (s5 !== peg$FAILED) {
|
if (s5 !== peg$FAILED) {
|
||||||
peg$savedPos = s0;
|
peg$savedPos = s0;
|
||||||
s0 = peg$f33(s1, s5);
|
s0 = peg$f35(s1, s5);
|
||||||
} else {
|
} else {
|
||||||
peg$currPos = s0;
|
peg$currPos = s0;
|
||||||
s0 = peg$FAILED;
|
s0 = peg$FAILED;
|
||||||
@ -2133,7 +2230,7 @@ function peg$parse(input, options) {
|
|||||||
s1 = peg$parsemini_or_operator();
|
s1 = peg$parsemini_or_operator();
|
||||||
if (s1 !== peg$FAILED) {
|
if (s1 !== peg$FAILED) {
|
||||||
peg$savedPos = s0;
|
peg$savedPos = s0;
|
||||||
s1 = peg$f34(s1);
|
s1 = peg$f36(s1);
|
||||||
}
|
}
|
||||||
s0 = s1;
|
s0 = s1;
|
||||||
if (s0 === peg$FAILED) {
|
if (s0 === peg$FAILED) {
|
||||||
@ -2166,7 +2263,7 @@ function peg$parse(input, options) {
|
|||||||
if (s2 !== peg$FAILED) {
|
if (s2 !== peg$FAILED) {
|
||||||
s3 = peg$parsews();
|
s3 = peg$parsews();
|
||||||
peg$savedPos = s0;
|
peg$savedPos = s0;
|
||||||
s0 = peg$f35(s2);
|
s0 = peg$f37(s2);
|
||||||
} else {
|
} else {
|
||||||
peg$currPos = s0;
|
peg$currPos = s0;
|
||||||
s0 = peg$FAILED;
|
s0 = peg$FAILED;
|
||||||
@ -2191,7 +2288,7 @@ function peg$parse(input, options) {
|
|||||||
s3 = peg$parsenumber();
|
s3 = peg$parsenumber();
|
||||||
if (s3 !== peg$FAILED) {
|
if (s3 !== peg$FAILED) {
|
||||||
peg$savedPos = s0;
|
peg$savedPos = s0;
|
||||||
s0 = peg$f36(s3);
|
s0 = peg$f38(s3);
|
||||||
} else {
|
} else {
|
||||||
peg$currPos = s0;
|
peg$currPos = s0;
|
||||||
s0 = peg$FAILED;
|
s0 = peg$FAILED;
|
||||||
@ -2220,7 +2317,7 @@ function peg$parse(input, options) {
|
|||||||
s3 = peg$parsenumber();
|
s3 = peg$parsenumber();
|
||||||
if (s3 !== peg$FAILED) {
|
if (s3 !== peg$FAILED) {
|
||||||
peg$savedPos = s0;
|
peg$savedPos = s0;
|
||||||
s0 = peg$f37(s3);
|
s0 = peg$f39(s3);
|
||||||
} else {
|
} else {
|
||||||
peg$currPos = s0;
|
peg$currPos = s0;
|
||||||
s0 = peg$FAILED;
|
s0 = peg$FAILED;
|
||||||
@ -2246,7 +2343,7 @@ function peg$parse(input, options) {
|
|||||||
}
|
}
|
||||||
if (s1 !== peg$FAILED) {
|
if (s1 !== peg$FAILED) {
|
||||||
peg$savedPos = s0;
|
peg$savedPos = s0;
|
||||||
s1 = peg$f38();
|
s1 = peg$f40();
|
||||||
}
|
}
|
||||||
s0 = s1;
|
s0 = s1;
|
||||||
|
|
||||||
|
|||||||
@ -98,6 +98,7 @@ DIGIT = [0-9]
|
|||||||
ws "whitespace" = [ \n\r\t\u00A0]*
|
ws "whitespace" = [ \n\r\t\u00A0]*
|
||||||
comma = ws "," ws
|
comma = ws "," ws
|
||||||
pipe = ws "|" ws
|
pipe = ws "|" ws
|
||||||
|
dot = ws "." ws
|
||||||
quote = '"' / "'"
|
quote = '"' / "'"
|
||||||
|
|
||||||
// ------------------ steps and cycles ---------------------------
|
// ------------------ steps and cycles ---------------------------
|
||||||
@ -105,7 +106,8 @@ quote = '"' / "'"
|
|||||||
// single step definition (e.g bd)
|
// single step definition (e.g bd)
|
||||||
step_char "a letter, a number, \"-\", \"#\", \".\", \"^\", \"_\"" =
|
step_char "a letter, a number, \"-\", \"#\", \".\", \"^\", \"_\"" =
|
||||||
unicode_letter / [0-9~] / "-" / "#" / "." / "^" / "_"
|
unicode_letter / [0-9~] / "-" / "#" / "." / "^" / "_"
|
||||||
step = ws chars:step_char+ ws { return new AtomStub(chars.join("")) }
|
|
||||||
|
step = ws chars:step_char+ ws !{ const s = chars.join(""); return (s === ".") || (s === "_") } { return new AtomStub(chars.join("")) }
|
||||||
|
|
||||||
// define a sub cycle e.g. [1 2, 3 [4]]
|
// define a sub cycle e.g. [1 2, 3 [4]]
|
||||||
sub_cycle = ws "[" ws s:stack_or_choose ws "]" ws { return s }
|
sub_cycle = ws "[" ws s:stack_or_choose ws "]" ws { return s }
|
||||||
@ -129,11 +131,11 @@ slice = step / sub_cycle / polymeter / slow_sequence
|
|||||||
// at this point, we assume we can represent them as regular sequence operators
|
// at this point, we assume we can represent them as regular sequence operators
|
||||||
slice_op = op_weight / op_bjorklund / op_slow / op_fast / op_replicate / op_degrade / op_tail / op_range
|
slice_op = op_weight / op_bjorklund / op_slow / op_fast / op_replicate / op_degrade / op_tail / op_range
|
||||||
|
|
||||||
op_weight = "@" a:number
|
op_weight = ws ("@" / "_") a:number?
|
||||||
{ return x => x.options_['weight'] = a }
|
{ return x => x.options_['weight'] = (x.options_['weight'] ?? 1) + (a ?? 2) - 1 }
|
||||||
|
|
||||||
op_replicate = "!"a:number
|
op_replicate = ws "!" a:number?
|
||||||
{ return x => x.options_['reps'] = a }
|
{ return x => x.options_['reps'] = (x.options_['reps'] ?? 1) + (a ?? 2) - 1 }
|
||||||
|
|
||||||
op_bjorklund = "(" ws p:slice_with_ops ws comma ws s:slice_with_ops ws comma? ws r:slice_with_ops? ws ")"
|
op_bjorklund = "(" ws p:slice_with_ops ws comma ws s:slice_with_ops ws comma? ws r:slice_with_ops? ws ")"
|
||||||
{ return x => x.options_['ops'].push({ type_: "bjorklund", arguments_ :{ pulse: p, step:s, rotation:r }}) }
|
{ return x => x.options_['ops'].push({ type_: "bjorklund", arguments_ :{ pulse: p, step:s, rotation:r }}) }
|
||||||
@ -175,9 +177,13 @@ stack_tail = tail:(comma @sequence)+
|
|||||||
choose_tail = tail:(pipe @sequence)+
|
choose_tail = tail:(pipe @sequence)+
|
||||||
{ return { alignment: 'rand', list: tail, seed: seed++ }; }
|
{ return { alignment: 'rand', list: tail, seed: seed++ }; }
|
||||||
|
|
||||||
|
// a foot separates subsequences, as an alternative to wrapping them in []
|
||||||
|
dot_tail = tail:(dot @sequence)+
|
||||||
|
{ return { alignment: 'feet', list: tail, seed: seed++ }; }
|
||||||
|
|
||||||
// if the stack contains only one element, we don't create a stack but return the
|
// if the stack contains only one element, we don't create a stack but return the
|
||||||
// underlying element
|
// underlying element
|
||||||
stack_or_choose = head:sequence tail:(stack_tail / choose_tail)?
|
stack_or_choose = head:sequence tail:(stack_tail / choose_tail / dot_tail)?
|
||||||
{ if (tail && tail.list.length > 0) { return new PatternStub([head, ...tail.list], tail.alignment, tail.seed); } else { return head; } }
|
{ if (tail && tail.list.length > 0) { return new PatternStub([head, ...tail.list], tail.alignment, tail.seed); } else { return head; } }
|
||||||
|
|
||||||
polymeter_stack = head:sequence tail:stack_tail?
|
polymeter_stack = head:sequence tail:stack_tail?
|
||||||
|
|||||||
@ -107,6 +107,9 @@ export function patternifyAST(ast, code, onEnter, offset = 0) {
|
|||||||
if (alignment === 'rand') {
|
if (alignment === 'rand') {
|
||||||
return strudel.chooseInWith(strudel.rand.early(randOffset * ast.arguments_.seed).segment(1), children);
|
return strudel.chooseInWith(strudel.rand.early(randOffset * ast.arguments_.seed).segment(1), children);
|
||||||
}
|
}
|
||||||
|
if (alignment === 'feet') {
|
||||||
|
return strudel.fastcat(...children);
|
||||||
|
}
|
||||||
const weightedChildren = ast.source_.some((child) => !!child.options_?.weight);
|
const weightedChildren = ast.source_.some((child) => !!child.options_?.weight);
|
||||||
if (weightedChildren) {
|
if (weightedChildren) {
|
||||||
const weightSum = ast.source_.reduce((sum, child) => sum + (child.options_?.weight || 1), 0);
|
const weightSum = ast.source_.reduce((sum, child) => sum + (child.options_?.weight || 1), 0);
|
||||||
|
|||||||
@ -73,6 +73,10 @@ describe('mini', () => {
|
|||||||
expect(minS('a!3 b')).toEqual(['a: 0 - 1/4', 'a: 1/4 - 1/2', 'a: 1/2 - 3/4', 'b: 3/4 - 1']);
|
expect(minS('a!3 b')).toEqual(['a: 0 - 1/4', 'a: 1/4 - 1/2', 'a: 1/2 - 3/4', 'b: 3/4 - 1']);
|
||||||
expect(minS('[<a b c>]!3 d')).toEqual(minS('<a b c> <a b c> <a b c> d'));
|
expect(minS('[<a b c>]!3 d')).toEqual(minS('<a b c> <a b c> <a b c> d'));
|
||||||
});
|
});
|
||||||
|
it('supports replication via repeated !', () => {
|
||||||
|
expect(minS('a ! ! b')).toEqual(['a: 0 - 1/4', 'a: 1/4 - 1/2', 'a: 1/2 - 3/4', 'b: 3/4 - 1']);
|
||||||
|
expect(minS('[<a b c>]!! d')).toEqual(minS('<a b c> <a b c> <a b c> d'));
|
||||||
|
});
|
||||||
it('supports euclidean rhythms', () => {
|
it('supports euclidean rhythms', () => {
|
||||||
expect(minS('a(3, 8)')).toEqual(['a: 0 - 1/8', 'a: 3/8 - 1/2', 'a: 3/4 - 7/8']);
|
expect(minS('a(3, 8)')).toEqual(['a: 0 - 1/8', 'a: 3/8 - 1/2', 'a: 3/4 - 7/8']);
|
||||||
});
|
});
|
||||||
@ -190,6 +194,16 @@ describe('mini', () => {
|
|||||||
it('supports patterned ranges', () => {
|
it('supports patterned ranges', () => {
|
||||||
expect(minS('[<0 1> .. <2 4>]*2')).toEqual(minS('[0 1 2] [1 2 3 4]'));
|
expect(minS('[<0 1> .. <2 4>]*2')).toEqual(minS('[0 1 2] [1 2 3 4]'));
|
||||||
});
|
});
|
||||||
|
it('supports the . operator', () => {
|
||||||
|
expect(minS('a . b c')).toEqual(minS('a [b c]'));
|
||||||
|
expect(minS('a . b c . [d e f . g h]')).toEqual(minS('a [b c] [[d e f] [g h]]'));
|
||||||
|
});
|
||||||
|
it('supports the _ operator', () => {
|
||||||
|
expect(minS('a _ b _ _')).toEqual(minS('a@2 b@3'));
|
||||||
|
});
|
||||||
|
it('_ and @ are almost interchangeable', () => {
|
||||||
|
expect(minS('a @ b @ @')).toEqual(minS('a _2 b _3'));
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('getLeafLocation', () => {
|
describe('getLeafLocation', () => {
|
||||||
|
|||||||
@ -3693,6 +3693,56 @@ exports[`runs examples > example "pick" example index 3 1`] = `
|
|||||||
]
|
]
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
exports[`runs examples > example "pickF" example index 0 1`] = `
|
||||||
|
[
|
||||||
|
"[ 0/1 → 1/4 | s:hh ]",
|
||||||
|
"[ 1/4 → 1/2 | s:rim ]",
|
||||||
|
"[ 1/2 → 1/1 | s:bd ]",
|
||||||
|
"[ 1/1 → 5/4 | s:hh pan:1 ]",
|
||||||
|
"[ 1/1 → 3/2 | s:bd pan:0 ]",
|
||||||
|
"[ 5/4 → 3/2 | s:rim pan:1 ]",
|
||||||
|
"[ 3/2 → 7/4 | s:rim pan:0 ]",
|
||||||
|
"[ 3/2 → 2/1 | s:bd pan:1 ]",
|
||||||
|
"[ 7/4 → 2/1 | s:hh pan:0 ]",
|
||||||
|
"[ 2/1 → 9/4 | s:bd ]",
|
||||||
|
"[ 9/4 → 19/8 | s:rim ]",
|
||||||
|
"[ 19/8 → 5/2 | s:hh ]",
|
||||||
|
"[ 5/2 → 11/4 | s:bd ]",
|
||||||
|
"[ 11/4 → 23/8 | s:rim ]",
|
||||||
|
"[ 23/8 → 3/1 | s:hh ]",
|
||||||
|
"[ 3/1 → 13/4 | s:hh ]",
|
||||||
|
"[ 13/4 → 7/2 | s:rim ]",
|
||||||
|
"[ 7/2 → 4/1 | s:bd ]",
|
||||||
|
]
|
||||||
|
`;
|
||||||
|
|
||||||
|
exports[`runs examples > example "pickF" example index 1 1`] = `
|
||||||
|
[
|
||||||
|
"[ 0/1 → 1/8 | note:c2 s:square pan:0 ]",
|
||||||
|
"[ 1/8 → 1/4 | note:c2 s:square pan:1 ]",
|
||||||
|
"[ 3/8 → 1/2 | note:c2 s:square pan:0 ]",
|
||||||
|
"[ 1/2 → 9/16 | note:d2 s:square ]",
|
||||||
|
"[ 11/16 → 3/4 | note:d2 s:square ]",
|
||||||
|
"[ 7/8 → 15/16 | note:d2 s:square ]",
|
||||||
|
"[ 1/1 → 9/8 | note:d2 s:square cutoff:800 ]",
|
||||||
|
"[ 11/8 → 3/2 | note:d2 s:square cutoff:800 ]",
|
||||||
|
"[ 3/2 → 25/16 | note:d2 s:square ]",
|
||||||
|
"[ 27/16 → 7/4 | note:d2 s:square ]",
|
||||||
|
"[ 15/8 → 31/16 | note:d2 s:square ]",
|
||||||
|
"[ 2/1 → 17/8 | note:c2 s:square pan:0 ]",
|
||||||
|
"[ 17/8 → 9/4 | note:c2 s:square pan:1 ]",
|
||||||
|
"[ 19/8 → 5/2 | note:c2 s:square pan:0 ]",
|
||||||
|
"[ 5/2 → 41/16 | note:d2 s:square ]",
|
||||||
|
"[ 43/16 → 11/4 | note:d2 s:square ]",
|
||||||
|
"[ 23/8 → 47/16 | note:d2 s:square ]",
|
||||||
|
"[ 3/1 → 25/8 | note:d2 s:square cutoff:800 ]",
|
||||||
|
"[ 27/8 → 7/2 | note:d2 s:square cutoff:800 ]",
|
||||||
|
"[ 7/2 → 57/16 | note:d2 s:square ]",
|
||||||
|
"[ 59/16 → 15/4 | note:d2 s:square ]",
|
||||||
|
"[ 31/8 → 63/16 | note:d2 s:square ]",
|
||||||
|
]
|
||||||
|
`;
|
||||||
|
|
||||||
exports[`runs examples > example "ply" example index 0 1`] = `
|
exports[`runs examples > example "ply" example index 0 1`] = `
|
||||||
[
|
[
|
||||||
"[ 0/1 → 1/4 | s:bd ]",
|
"[ 0/1 → 1/4 | s:bd ]",
|
||||||
|
|||||||
47
website/src/components/Oven/Oven.jsx
Normal file
47
website/src/components/Oven/Oven.jsx
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
import { useState, useEffect } from 'react';
|
||||||
|
import { loadFeaturedPatterns, loadPublicPatterns } from '@src/repl/util.mjs';
|
||||||
|
import { MiniRepl } from '@src/docs/MiniRepl';
|
||||||
|
import { PatternLabel } from '@src/repl/panel/PatternsTab';
|
||||||
|
|
||||||
|
function PatternList({ patterns }) {
|
||||||
|
return (
|
||||||
|
<div className="space-y-4">
|
||||||
|
{/* <MiniRepl tunes={patterns.map((pat) => pat.code.trim())} /> */}
|
||||||
|
{patterns.map((pat) => (
|
||||||
|
<div key={pat.id}>
|
||||||
|
<div className="flex justify-between not-prose pb-2">
|
||||||
|
<h2 className="text-lg">
|
||||||
|
<a href={`/?${pat.hash}`} target="_blank" className="underline">
|
||||||
|
<PatternLabel pattern={pat} />
|
||||||
|
</a>
|
||||||
|
</h2>
|
||||||
|
</div>
|
||||||
|
<MiniRepl tune={pat.code.trim()} maxHeight={300} />
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function Oven() {
|
||||||
|
const [featuredPatterns, setFeaturedPatterns] = useState([]);
|
||||||
|
const [publicPatterns, setPublicPatterns] = useState([]);
|
||||||
|
useEffect(() => {
|
||||||
|
loadPublicPatterns().then(({ data: pats }) => {
|
||||||
|
console.log('pats', pats);
|
||||||
|
setPublicPatterns(pats);
|
||||||
|
});
|
||||||
|
loadFeaturedPatterns().then(({ data: pats }) => {
|
||||||
|
console.log('pats', pats);
|
||||||
|
setFeaturedPatterns(pats);
|
||||||
|
});
|
||||||
|
}, []);
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<h2 id="featured">Featured Patterns</h2>
|
||||||
|
<PatternList patterns={featuredPatterns} />
|
||||||
|
<h2 id="latest">Last Creations</h2>
|
||||||
|
<PatternList patterns={publicPatterns} />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
@ -58,6 +58,7 @@ export const SIDEBAR: Sidebar = {
|
|||||||
{ text: 'What is Strudel?', link: 'workshop/getting-started' },
|
{ text: 'What is Strudel?', link: 'workshop/getting-started' },
|
||||||
{ text: 'Showcase', link: 'intro/showcase' },
|
{ text: 'Showcase', link: 'intro/showcase' },
|
||||||
{ text: 'Blog', link: 'blog' },
|
{ text: 'Blog', link: 'blog' },
|
||||||
|
{ text: 'Community Bakery', link: 'bakery' },
|
||||||
],
|
],
|
||||||
Workshop: [
|
Workshop: [
|
||||||
// { text: 'Getting Started', link: 'workshop/getting-started' },
|
// { text: 'Getting Started', link: 'workshop/getting-started' },
|
||||||
|
|||||||
@ -27,6 +27,7 @@ export function MiniRepl({
|
|||||||
punchcardLabels = true,
|
punchcardLabels = true,
|
||||||
claviature,
|
claviature,
|
||||||
claviatureLabels,
|
claviatureLabels,
|
||||||
|
maxHeight,
|
||||||
}) {
|
}) {
|
||||||
const code = tunes ? tunes[0] : tune;
|
const code = tunes ? tunes[0] : tune;
|
||||||
const id = useMemo(() => s4(), []);
|
const id = useMemo(() => s4(), []);
|
||||||
@ -154,7 +155,7 @@ export function MiniRepl({
|
|||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
<div className="overflow-auto relative p-1">
|
<div className="overflow-auto relative p-1" style={maxHeight ? { maxHeight: `${maxHeight}px` } : {}}>
|
||||||
<div
|
<div
|
||||||
ref={(el) => {
|
ref={(el) => {
|
||||||
if (!editorRef.current) {
|
if (!editorRef.current) {
|
||||||
|
|||||||
60
website/src/pages/bakery.astro
Normal file
60
website/src/pages/bakery.astro
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
---
|
||||||
|
import HeadCommon from '../components/HeadCommon.astro';
|
||||||
|
import Header from '../components/Header/Header.astro';
|
||||||
|
import LeftSidebar from '../components/LeftSidebar/LeftSidebar.astro';
|
||||||
|
import PageContent from '../components/PageContent/PageContent.astro';
|
||||||
|
import { getCollection } from 'astro:content';
|
||||||
|
import { compareDesc } from 'date-fns';
|
||||||
|
import { Oven as CommunityOven } from '../components/Oven/Oven.jsx';
|
||||||
|
import RightSidebar from '../components/RightSidebar/RightSidebar.astro';
|
||||||
|
|
||||||
|
const currentPage = Astro.url.pathname;
|
||||||
|
|
||||||
|
const posts = (await getCollection('blog')).sort((a, b) => compareDesc(a.data.date, b.data.date));
|
||||||
|
---
|
||||||
|
|
||||||
|
<html dir={'ltr'} lang={'en'} class="initial dark">
|
||||||
|
<head>
|
||||||
|
<HeadCommon />
|
||||||
|
<title>🌀 Strudel Community Bakery</title>
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body class="h-app-height text-gray-50 bg-background">
|
||||||
|
<div class="w-full h-full space-y-4 flex flex-col">
|
||||||
|
<header class="max-w-full fixed top-0 w-full z-[100]">
|
||||||
|
<Header currentPage={currentPage} />
|
||||||
|
</header>
|
||||||
|
<main class="relative pt-16">
|
||||||
|
<div class="h-full top-0 overflow-auto min-w-[300px] flex xl:justify-center pr-4 pl-4 md:pl-[300px] xl:pl-0">
|
||||||
|
<aside title="Site Navigation" class="w-[300px] px-6 left-0 hidden md:block fixed h-full">
|
||||||
|
<LeftSidebar currentPage={currentPage} />
|
||||||
|
</aside>
|
||||||
|
<PageContent>
|
||||||
|
<h1>Community Bakery</h1>
|
||||||
|
<p>
|
||||||
|
This page contains all the strudel patterns baked by the community. Add your own by clicking the "Share"
|
||||||
|
button in the REPL. Have fun, and please share some of what you create with the community.
|
||||||
|
</p>
|
||||||
|
<CommunityOven client:only />
|
||||||
|
</PageContent>
|
||||||
|
<aside class="fixed right-0 h-full overflow-auto pr-4 pl-0 pb-16 hidden xl:block" title="Table of Contents">
|
||||||
|
<RightSidebar
|
||||||
|
headings={[
|
||||||
|
{
|
||||||
|
depth: 1,
|
||||||
|
slug: 'featured',
|
||||||
|
text: 'Featured',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
depth: 1,
|
||||||
|
slug: 'latest',
|
||||||
|
text: 'Last Creations',
|
||||||
|
},
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</aside>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Loading…
x
Reference in New Issue
Block a user