node-red-contrib-home-assistant-websocket
Version:
Node-RED integration with Home Assistant through websocket and REST API
6,407 lines • 272 kB
JavaScript
/**!
@license
handlebars v4.7.8
Copyright (C) 2011-2019 by Yehuda Katz
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
!(function (a, b) {
'object' == typeof exports && 'object' == typeof module
? (module.exports = b())
: 'function' == typeof define && define.amd
? define([], b)
: 'object' == typeof exports
? (exports.Handlebars = b())
: (a.Handlebars = b());
})(this, function () {
return (function (a) {
function b(d) {
if (c[d]) return c[d].exports;
var e = (c[d] = { exports: {}, id: d, loaded: !1 });
return (
a[d].call(e.exports, e, e.exports, b),
(e.loaded = !0),
e.exports
);
}
var c = {};
return (b.m = a), (b.c = c), (b.p = ''), b(0);
})([
function (a, b, c) {
'use strict';
function d() {
var a = r();
return (
(a.compile = function (b, c) {
return k.compile(b, c, a);
}),
(a.precompile = function (b, c) {
return k.precompile(b, c, a);
}),
(a.AST = i['default']),
(a.Compiler = k.Compiler),
(a.JavaScriptCompiler = m['default']),
(a.Parser = j.parser),
(a.parse = j.parse),
(a.parseWithoutProcessing = j.parseWithoutProcessing),
a
);
}
var e = c(1)['default'];
b.__esModule = !0;
var f = c(2),
g = e(f),
h = c(84),
i = e(h),
j = c(85),
k = c(90),
l = c(91),
m = e(l),
n = c(88),
o = e(n),
p = c(83),
q = e(p),
r = g['default'].create,
s = d();
(s.create = d),
q['default'](s),
(s.Visitor = o['default']),
(s['default'] = s),
(b['default'] = s),
(a.exports = b['default']);
},
function (a, b) {
'use strict';
(b['default'] = function (a) {
return a && a.__esModule ? a : { default: a };
}),
(b.__esModule = !0);
},
function (a, b, c) {
'use strict';
function d() {
var a = new h.HandlebarsEnvironment();
return (
n.extend(a, h),
(a.SafeString = j['default']),
(a.Exception = l['default']),
(a.Utils = n),
(a.escapeExpression = n.escapeExpression),
(a.VM = p),
(a.template = function (b) {
return p.template(b, a);
}),
a
);
}
var e = c(3)['default'],
f = c(1)['default'];
b.__esModule = !0;
var g = c(4),
h = e(g),
i = c(77),
j = f(i),
k = c(6),
l = f(k),
m = c(5),
n = e(m),
o = c(78),
p = e(o),
q = c(83),
r = f(q),
s = d();
(s.create = d),
r['default'](s),
(s['default'] = s),
(b['default'] = s),
(a.exports = b['default']);
},
function (a, b) {
'use strict';
(b['default'] = function (a) {
if (a && a.__esModule) return a;
var b = {};
if (null != a)
for (var c in a)
Object.prototype.hasOwnProperty.call(a, c) &&
(b[c] = a[c]);
return (b['default'] = a), b;
}),
(b.__esModule = !0);
},
function (a, b, c) {
'use strict';
function d(a, b, c) {
(this.helpers = a || {}),
(this.partials = b || {}),
(this.decorators = c || {}),
i.registerDefaultHelpers(this),
j.registerDefaultDecorators(this);
}
var e = c(1)['default'];
(b.__esModule = !0), (b.HandlebarsEnvironment = d);
var f = c(5),
g = c(6),
h = e(g),
i = c(10),
j = c(70),
k = c(72),
l = e(k),
m = c(73),
n = '4.7.8';
b.VERSION = n;
var o = 8;
b.COMPILER_REVISION = o;
var p = 7;
b.LAST_COMPATIBLE_COMPILER_REVISION = p;
var q = {
1: '<= 1.0.rc.2',
2: '== 1.0.0-rc.3',
3: '== 1.0.0-rc.4',
4: '== 1.x.x',
5: '== 2.0.0-alpha.x',
6: '>= 2.0.0-beta.1',
7: '>= 4.0.0 <4.3.0',
8: '>= 4.3.0',
};
b.REVISION_CHANGES = q;
var r = '[object Object]';
d.prototype = {
constructor: d,
logger: l['default'],
log: l['default'].log,
registerHelper: function (a, b) {
if (f.toString.call(a) === r) {
if (b)
throw new h['default'](
'Arg not supported with multiple helpers'
);
f.extend(this.helpers, a);
} else this.helpers[a] = b;
},
unregisterHelper: function (a) {
delete this.helpers[a];
},
registerPartial: function (a, b) {
if (f.toString.call(a) === r) f.extend(this.partials, a);
else {
if ('undefined' == typeof b)
throw new h['default'](
'Attempting to register a partial called "' +
a +
'" as undefined'
);
this.partials[a] = b;
}
},
unregisterPartial: function (a) {
delete this.partials[a];
},
registerDecorator: function (a, b) {
if (f.toString.call(a) === r) {
if (b)
throw new h['default'](
'Arg not supported with multiple decorators'
);
f.extend(this.decorators, a);
} else this.decorators[a] = b;
},
unregisterDecorator: function (a) {
delete this.decorators[a];
},
resetLoggedPropertyAccesses: function () {
m.resetLoggedProperties();
},
};
var s = l['default'].log;
(b.log = s),
(b.createFrame = f.createFrame),
(b.logger = l['default']);
},
function (a, b) {
'use strict';
function c(a) {
return k[a];
}
function d(a) {
for (var b = 1; b < arguments.length; b++)
for (var c in arguments[b])
Object.prototype.hasOwnProperty.call(arguments[b], c) &&
(a[c] = arguments[b][c]);
return a;
}
function e(a, b) {
for (var c = 0, d = a.length; c < d; c++)
if (a[c] === b) return c;
return -1;
}
function f(a) {
if ('string' != typeof a) {
if (a && a.toHTML) return a.toHTML();
if (null == a) return '';
if (!a) return a + '';
a = '' + a;
}
return m.test(a) ? a.replace(l, c) : a;
}
function g(a) {
return (!a && 0 !== a) || !(!p(a) || 0 !== a.length);
}
function h(a) {
var b = d({}, a);
return (b._parent = a), b;
}
function i(a, b) {
return (a.path = b), a;
}
function j(a, b) {
return (a ? a + '.' : '') + b;
}
(b.__esModule = !0),
(b.extend = d),
(b.indexOf = e),
(b.escapeExpression = f),
(b.isEmpty = g),
(b.createFrame = h),
(b.blockParams = i),
(b.appendContextPath = j);
var k = {
'&': '&',
'<': '<',
'>': '>',
'"': '"',
"'": ''',
'`': '`',
'=': '=',
},
l = /[&<>"'`=]/g,
m = /[&<>"'`=]/,
n = Object.prototype.toString;
b.toString = n;
var o = function (a) {
return 'function' == typeof a;
};
o(/x/) &&
(b.isFunction = o =
function (a) {
return (
'function' == typeof a &&
'[object Function]' === n.call(a)
);
}),
(b.isFunction = o);
var p =
Array.isArray ||
function (a) {
return (
!(!a || 'object' != typeof a) &&
'[object Array]' === n.call(a)
);
};
b.isArray = p;
},
function (a, b, c) {
'use strict';
function d(a, b) {
var c = b && b.loc,
g = void 0,
h = void 0,
i = void 0,
j = void 0;
c &&
((g = c.start.line),
(h = c.end.line),
(i = c.start.column),
(j = c.end.column),
(a += ' - ' + g + ':' + i));
for (
var k = Error.prototype.constructor.call(this, a), l = 0;
l < f.length;
l++
)
this[f[l]] = k[f[l]];
Error.captureStackTrace && Error.captureStackTrace(this, d);
try {
c &&
((this.lineNumber = g),
(this.endLineNumber = h),
e
? (Object.defineProperty(this, 'column', {
value: i,
enumerable: !0,
}),
Object.defineProperty(this, 'endColumn', {
value: j,
enumerable: !0,
}))
: ((this.column = i), (this.endColumn = j)));
} catch (m) {}
}
var e = c(7)['default'];
b.__esModule = !0;
var f = [
'description',
'fileName',
'lineNumber',
'endLineNumber',
'message',
'name',
'number',
'stack',
];
(d.prototype = new Error()),
(b['default'] = d),
(a.exports = b['default']);
},
function (a, b, c) {
a.exports = { default: c(8), __esModule: !0 };
},
function (a, b, c) {
var d = c(9);
a.exports = function (a, b, c) {
return d.setDesc(a, b, c);
};
},
function (a, b) {
var c = Object;
a.exports = {
create: c.create,
getProto: c.getPrototypeOf,
isEnum: {}.propertyIsEnumerable,
getDesc: c.getOwnPropertyDescriptor,
setDesc: c.defineProperty,
setDescs: c.defineProperties,
getKeys: c.keys,
getNames: c.getOwnPropertyNames,
getSymbols: c.getOwnPropertySymbols,
each: [].forEach,
};
},
function (a, b, c) {
'use strict';
function d(a) {
h['default'](a),
j['default'](a),
l['default'](a),
n['default'](a),
p['default'](a),
r['default'](a),
t['default'](a);
}
function e(a, b, c) {
a.helpers[b] &&
((a.hooks[b] = a.helpers[b]), c || delete a.helpers[b]);
}
var f = c(1)['default'];
(b.__esModule = !0),
(b.registerDefaultHelpers = d),
(b.moveHelperToHooks = e);
var g = c(11),
h = f(g),
i = c(12),
j = f(i),
k = c(65),
l = f(k),
m = c(66),
n = f(m),
o = c(67),
p = f(o),
q = c(68),
r = f(q),
s = c(69),
t = f(s);
},
function (a, b, c) {
'use strict';
b.__esModule = !0;
var d = c(5);
(b['default'] = function (a) {
a.registerHelper('blockHelperMissing', function (b, c) {
var e = c.inverse,
f = c.fn;
if (b === !0) return f(this);
if (b === !1 || null == b) return e(this);
if (d.isArray(b))
return b.length > 0
? (c.ids && (c.ids = [c.name]),
a.helpers.each(b, c))
: e(this);
if (c.data && c.ids) {
var g = d.createFrame(c.data);
(g.contextPath = d.appendContextPath(
c.data.contextPath,
c.name
)),
(c = { data: g });
}
return f(b, c);
});
}),
(a.exports = b['default']);
},
function (a, b, c) {
'use strict';
var d = c(13)['default'],
e = c(43)['default'],
f = c(55)['default'],
g = c(60)['default'],
h = c(1)['default'];
b.__esModule = !0;
var i = c(5),
j = c(6),
k = h(j);
(b['default'] = function (a) {
a.registerHelper('each', function (a, b) {
function c(b, c, d) {
n &&
((n.key = b),
(n.index = c),
(n.first = 0 === c),
(n.last = !!d),
o && (n.contextPath = o + b)),
(m += h(a[b], {
data: n,
blockParams: i.blockParams(
[a[b], b],
[o + b, null]
),
}));
}
if (!b)
throw new k['default']('Must pass iterator to #each');
var h = b.fn,
j = b.inverse,
l = 0,
m = '',
n = void 0,
o = void 0;
if (
(b.data &&
b.ids &&
(o =
i.appendContextPath(
b.data.contextPath,
b.ids[0]
) + '.'),
i.isFunction(a) && (a = a.call(this)),
b.data && (n = i.createFrame(b.data)),
a && 'object' == typeof a)
)
if (i.isArray(a))
for (var p = a.length; l < p; l++)
l in a && c(l, l, l === a.length - 1);
else if ('function' == typeof d && a[e]) {
for (
var q = [], r = f(a), s = r.next();
!s.done;
s = r.next()
)
q.push(s.value);
a = q;
for (var p = a.length; l < p; l++)
c(l, l, l === a.length - 1);
} else
!(function () {
var b = void 0;
g(a).forEach(function (a) {
void 0 !== b && c(b, l - 1), (b = a), l++;
}),
void 0 !== b && c(b, l - 1, !0);
})();
return 0 === l && (m = j(this)), m;
});
}),
(a.exports = b['default']);
},
function (a, b, c) {
a.exports = { default: c(14), __esModule: !0 };
},
function (a, b, c) {
c(15), c(42), (a.exports = c(21).Symbol);
},
function (a, b, c) {
'use strict';
var d = c(9),
e = c(16),
f = c(17),
g = c(18),
h = c(20),
i = c(24),
j = c(19),
k = c(27),
l = c(28),
m = c(30),
n = c(29),
o = c(31),
p = c(36),
q = c(37),
r = c(38),
s = c(39),
t = c(32),
u = c(26),
v = d.getDesc,
w = d.setDesc,
x = d.create,
y = p.get,
z = e.Symbol,
A = e.JSON,
B = A && A.stringify,
C = !1,
D = n('_hidden'),
E = d.isEnum,
F = k('symbol-registry'),
G = k('symbols'),
H = 'function' == typeof z,
I = Object.prototype,
J =
g &&
j(function () {
return (
7 !=
x(
w({}, 'a', {
get: function () {
return w(this, 'a', { value: 7 }).a;
},
})
).a
);
})
? function (a, b, c) {
var d = v(I, b);
d && delete I[b],
w(a, b, c),
d && a !== I && w(I, b, d);
}
: w,
K = function (a) {
var b = (G[a] = x(z.prototype));
return (
(b._k = a),
g &&
C &&
J(I, a, {
configurable: !0,
set: function (b) {
f(this, D) &&
f(this[D], a) &&
(this[D][a] = !1),
J(this, a, u(1, b));
},
}),
b
);
},
L = function (a) {
return 'symbol' == typeof a;
},
M = function (a, b, c) {
return c && f(G, b)
? (c.enumerable
? (f(a, D) && a[D][b] && (a[D][b] = !1),
(c = x(c, { enumerable: u(0, !1) })))
: (f(a, D) || w(a, D, u(1, {})), (a[D][b] = !0)),
J(a, b, c))
: w(a, b, c);
},
N = function (a, b) {
s(a);
for (var c, d = q((b = t(b))), e = 0, f = d.length; f > e; )
M(a, (c = d[e++]), b[c]);
return a;
},
O = function (a, b) {
return void 0 === b ? x(a) : N(x(a), b);
},
P = function (a) {
var b = E.call(this, a);
return (
!(
b ||
!f(this, a) ||
!f(G, a) ||
(f(this, D) && this[D][a])
) || b
);
},
Q = function (a, b) {
var c = v((a = t(a)), b);
return (
!c ||
!f(G, b) ||
(f(a, D) && a[D][b]) ||
(c.enumerable = !0),
c
);
},
R = function (a) {
for (var b, c = y(t(a)), d = [], e = 0; c.length > e; )
f(G, (b = c[e++])) || b == D || d.push(b);
return d;
},
S = function (a) {
for (var b, c = y(t(a)), d = [], e = 0; c.length > e; )
f(G, (b = c[e++])) && d.push(G[b]);
return d;
},
T = function (a) {
if (void 0 !== a && !L(a)) {
for (
var b, c, d = [a], e = 1, f = arguments;
f.length > e;
)
d.push(f[e++]);
return (
(b = d[1]),
'function' == typeof b && (c = b),
(!c && r(b)) ||
(b = function (a, b) {
if ((c && (b = c.call(this, a, b)), !L(b)))
return b;
}),
(d[1] = b),
B.apply(A, d)
);
}
},
U = j(function () {
var a = z();
return (
'[null]' != B([a]) ||
'{}' != B({ a: a }) ||
'{}' != B(Object(a))
);
});
H ||
((z = function () {
if (L(this)) throw TypeError('Symbol is not a constructor');
return K(m(arguments.length > 0 ? arguments[0] : void 0));
}),
i(z.prototype, 'toString', function () {
return this._k;
}),
(L = function (a) {
return a instanceof z;
}),
(d.create = O),
(d.isEnum = P),
(d.getDesc = Q),
(d.setDesc = M),
(d.setDescs = N),
(d.getNames = p.get = R),
(d.getSymbols = S),
g && !c(41) && i(I, 'propertyIsEnumerable', P, !0));
var V = {
for: function (a) {
return f(F, (a += '')) ? F[a] : (F[a] = z(a));
},
keyFor: function (a) {
return o(F, a);
},
useSetter: function () {
C = !0;
},
useSimple: function () {
C = !1;
},
};
d.each.call(
'hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables'.split(
','
),
function (a) {
var b = n(a);
V[a] = H ? b : K(b);
}
),
(C = !0),
h(h.G + h.W, { Symbol: z }),
h(h.S, 'Symbol', V),
h(h.S + h.F * !H, 'Object', {
create: O,
defineProperty: M,
defineProperties: N,
getOwnPropertyDescriptor: Q,
getOwnPropertyNames: R,
getOwnPropertySymbols: S,
}),
A && h(h.S + h.F * (!H || U), 'JSON', { stringify: T }),
l(z, 'Symbol'),
l(Math, 'Math', !0),
l(e.JSON, 'JSON', !0);
},
function (a, b) {
var c = (a.exports =
'undefined' != typeof window && window.Math == Math
? window
: 'undefined' != typeof self && self.Math == Math
? self
: Function('return this')());
'number' == typeof __g && (__g = c);
},
function (a, b) {
var c = {}.hasOwnProperty;
a.exports = function (a, b) {
return c.call(a, b);
};
},
function (a, b, c) {
a.exports = !c(19)(function () {
return (
7 !=
Object.defineProperty({}, 'a', {
get: function () {
return 7;
},
}).a
);
});
},
function (a, b) {
a.exports = function (a) {
try {
return !!a();
} catch (b) {
return !0;
}
};
},
function (a, b, c) {
var d = c(16),
e = c(21),
f = c(22),
g = 'prototype',
h = function (a, b, c) {
var i,
j,
k,
l = a & h.F,
m = a & h.G,
n = a & h.S,
o = a & h.P,
p = a & h.B,
q = a & h.W,
r = m ? e : e[b] || (e[b] = {}),
s = m ? d : n ? d[b] : (d[b] || {})[g];
m && (c = b);
for (i in c)
(j = !l && s && i in s),
(j && i in r) ||
((k = j ? s[i] : c[i]),
(r[i] =
m && 'function' != typeof s[i]
? c[i]
: p && j
? f(k, d)
: q && s[i] == k
? (function (a) {
var b = function (b) {
return this instanceof a
? new a(b)
: a(b);
};
return (b[g] = a[g]), b;
})(k)
: o && 'function' == typeof k
? f(Function.call, k)
: k),
o && ((r[g] || (r[g] = {}))[i] = k));
};
(h.F = 1),
(h.G = 2),
(h.S = 4),
(h.P = 8),
(h.B = 16),
(h.W = 32),
(a.exports = h);
},
function (a, b) {
var c = (a.exports = { version: '1.2.6' });
'number' == typeof __e && (__e = c);
},
function (a, b, c) {
var d = c(23);
a.exports = function (a, b, c) {
if ((d(a), void 0 === b)) return a;
switch (c) {
case 1:
return function (c) {
return a.call(b, c);
};
case 2:
return function (c, d) {
return a.call(b, c, d);
};
case 3:
return function (c, d, e) {
return a.call(b, c, d, e);
};
}
return function () {
return a.apply(b, arguments);
};
};
},
function (a, b) {
a.exports = function (a) {
if ('function' != typeof a)
throw TypeError(a + ' is not a function!');
return a;
};
},
function (a, b, c) {
a.exports = c(25);
},
function (a, b, c) {
var d = c(9),
e = c(26);
a.exports = c(18)
? function (a, b, c) {
return d.setDesc(a, b, e(1, c));
}
: function (a, b, c) {
return (a[b] = c), a;
};
},
function (a, b) {
a.exports = function (a, b) {
return {
enumerable: !(1 & a),
configurable: !(2 & a),
writable: !(4 & a),
value: b,
};
};
},
function (a, b, c) {
var d = c(16),
e = '__core-js_shared__',
f = d[e] || (d[e] = {});
a.exports = function (a) {
return f[a] || (f[a] = {});
};
},
function (a, b, c) {
var d = c(9).setDesc,
e = c(17),
f = c(29)('toStringTag');
a.exports = function (a, b, c) {
a &&
!e((a = c ? a : a.prototype), f) &&
d(a, f, { configurable: !0, value: b });
};
},
function (a, b, c) {
var d = c(27)('wks'),
e = c(30),
f = c(16).Symbol;
a.exports = function (a) {
return d[a] || (d[a] = (f && f[a]) || (f || e)('Symbol.' + a));
};
},
function (a, b) {
var c = 0,
d = Math.random();
a.exports = function (a) {
return 'Symbol('.concat(
void 0 === a ? '' : a,
')_',
(++c + d).toString(36)
);
};
},
function (a, b, c) {
var d = c(9),
e = c(32);
a.exports = function (a, b) {
for (
var c, f = e(a), g = d.getKeys(f), h = g.length, i = 0;
h > i;
)
if (f[(c = g[i++])] === b) return c;
};
},
function (a, b, c) {
var d = c(33),
e = c(35);
a.exports = function (a) {
return d(e(a));
};
},
function (a, b, c) {
var d = c(34);
a.exports = Object('z').propertyIsEnumerable(0)
? Object
: function (a) {
return 'String' == d(a) ? a.split('') : Object(a);
};
},
function (a, b) {
var c = {}.toString;
a.exports = function (a) {
return c.call(a).slice(8, -1);
};
},
function (a, b) {
a.exports = function (a) {
if (void 0 == a) throw TypeError("Can't call method on " + a);
return a;
};
},
function (a, b, c) {
var d = c(32),
e = c(9).getNames,
f = {}.toString,
g =
'object' == typeof window && Object.getOwnPropertyNames
? Object.getOwnPropertyNames(window)
: [],
h = function (a) {
try {
return e(a);
} catch (b) {
return g.slice();
}
};
a.exports.get = function (a) {
return g && '[object Window]' == f.call(a) ? h(a) : e(d(a));
};
},
function (a, b, c) {
var d = c(9);
a.exports = function (a) {
var b = d.getKeys(a),
c = d.getSymbols;
if (c)
for (var e, f = c(a), g = d.isEnum, h = 0; f.length > h; )
g.call(a, (e = f[h++])) && b.push(e);
return b;
};
},
function (a, b, c) {
var d = c(34);
a.exports =
Array.isArray ||
function (a) {
return 'Array' == d(a);
};
},
function (a, b, c) {
var d = c(40);
a.exports = function (a) {
if (!d(a)) throw TypeError(a + ' is not an object!');
return a;
};
},
function (a, b) {
a.exports = function (a) {
return 'object' == typeof a
? null !== a
: 'function' == typeof a;
};
},
function (a, b) {
a.exports = !0;
},
function (a, b) {},
function (a, b, c) {
a.exports = { default: c(44), __esModule: !0 };
},
function (a, b, c) {
c(45), c(51), (a.exports = c(29)('iterator'));
},
function (a, b, c) {
'use strict';
var d = c(46)(!0);
c(48)(
String,
'String',
function (a) {
(this._t = String(a)), (this._i = 0);
},
function () {
var a,
b = this._t,
c = this._i;
return c >= b.length
? { value: void 0, done: !0 }
: ((a = d(b, c)),
(this._i += a.length),
{ value: a, done: !1 });
}
);
},
function (a, b, c) {
var d = c(47),
e = c(35);
a.exports = function (a) {
return function (b, c) {
var f,
g,
h = String(e(b)),
i = d(c),
j = h.length;
return i < 0 || i >= j
? a
? ''
: void 0
: ((f = h.charCodeAt(i)),
f < 55296 ||
f > 56319 ||
i + 1 === j ||
(g = h.charCodeAt(i + 1)) < 56320 ||
g > 57343
? a
? h.charAt(i)
: f
: a
? h.slice(i, i + 2)
: ((f - 55296) << 10) + (g - 56320) + 65536);
};
};
},
function (a, b) {
var c = Math.ceil,
d = Math.floor;
a.exports = function (a) {
return isNaN((a = +a)) ? 0 : (a > 0 ? d : c)(a);
};
},
function (a, b, c) {
'use strict';
var d = c(41),
e = c(20),
f = c(24),
g = c(25),
h = c(17),
i = c(49),
j = c(50),
k = c(28),
l = c(9).getProto,
m = c(29)('iterator'),
n = !([].keys && 'next' in [].keys()),
o = '@@iterator',
p = 'keys',
q = 'values',
r = function () {
return this;
};
a.exports = function (a, b, c, s, t, u, v) {
j(c, b, s);
var w,
x,
y = function (a) {
if (!n && a in C) return C[a];
switch (a) {
case p:
return function () {
return new c(this, a);
};
case q:
return function () {
return new c(this, a);
};
}
return function () {
return new c(this, a);
};
},
z = b + ' Iterator',
A = t == q,
B = !1,
C = a.prototype,
D = C[m] || C[o] || (t && C[t]),
E = D || y(t);
if (D) {
var F = l(E.call(new a()));
k(F, z, !0),
!d && h(C, o) && g(F, m, r),
A &&
D.name !== q &&
((B = !0),
(E = function () {
return D.call(this);
}));
}
if (
((d && !v) || (!n && !B && C[m]) || g(C, m, E),
(i[b] = E),
(i[z] = r),
t)
)
if (
((w = {
values: A ? E : y(q),
keys: u ? E : y(p),
entries: A ? y('entries') : E,
}),
v)
)
for (x in w) x in C || f(C, x, w[x]);
else e(e.P + e.F * (n || B), b, w);
return w;
};
},
function (a, b) {
a.exports = {};
},
function (a, b, c) {
'use strict';
var d = c(9),
e = c(26),
f = c(28),
g = {};
c(25)(g, c(29)('iterator'), function () {
return this;
}),
(a.exports = function (a, b, c) {
(a.prototype = d.create(g, { next: e(1, c) })),
f(a, b + ' Iterator');
});
},
function (a, b, c) {
c(52);
var d = c(49);
d.NodeList = d.HTMLCollection = d.Array;
},
function (a, b, c) {
'use strict';
var d = c(53),
e = c(54),
f = c(49),
g = c(32);
(a.exports = c(48)(
Array,
'Array',
function (a, b) {
(this._t = g(a)), (this._i = 0), (this._k = b);
},
function () {
var a = this._t,
b = this._k,
c = this._i++;
return !a || c >= a.length
? ((this._t = void 0), e(1))
: 'keys' == b
? e(0, c)
: 'values' == b
? e(0, a[c])
: e(0, [c, a[c]]);
},
'values'
)),
(f.Arguments = f.Array),
d('keys'),
d('values'),
d('entries');
},
function (a, b) {
a.exports = function () {};
},
function (a, b) {
a.exports = function (a, b) {
return { value: b, done: !!a };
};
},
function (a, b, c) {
a.exports = { default: c(56), __esModule: !0 };
},
function (a, b, c) {
c(51), c(45), (a.exports = c(57));
},
function (a, b, c) {
var d = c(39),
e = c(58);
a.exports = c(21).getIterator = function (a) {
var b = e(a);
if ('function' != typeof b)
throw TypeError(a + ' is not iterable!');
return d(b.call(a));
};
},
function (a, b, c) {
var d = c(59),
e = c(29)('iterator'),
f = c(49);
a.exports = c(21).getIteratorMethod = function (a) {
if (void 0 != a) return a[e] || a['@@iterator'] || f[d(a)];
};
},
function (a, b, c) {
var d = c(34),
e = c(29)('toStringTag'),
f =
'Arguments' ==
d(
(function () {
return arguments;
})()
);
a.exports = function (a) {
var b, c, g;
return void 0 === a
? 'Undefined'
: null === a
? 'Null'
: 'string' == typeof (c = (b = Object(a))[e])
? c
: f
? d(b)
: 'Object' == (g = d(b)) && 'function' == typeof b.callee
? 'Arguments'
: g;
};
},
function (a, b, c) {
a.exports = { default: c(61), __esModule: !0 };
},
function (a, b, c) {
c(62), (a.exports = c(21).Object.keys);
},
function (a, b, c) {
var d = c(63);
c(64)('keys', function (a) {
return function (b) {
return a(d(b));
};
});
},
function (a, b, c) {
var d = c(35);
a.exports = function (a) {
return Object(d(a));
};
},
function (a, b, c) {
var d = c(20),
e = c(21),
f = c(19);
a.exports = function (a, b) {
var c = (e.Object || {})[a] || Object[a],
g = {};
(g[a] = b(c)),
d(
d.S +
d.F *
f(function () {
c(1);
}),
'Object',
g
);
};
},
function (a, b, c) {
'use strict';
var d = c(1)['default'];
b.__esModule = !0;
var e = c(6),
f = d(e);
(b['default'] = function (a) {
a.registerHelper('helperMissing', function () {
if (1 !== arguments.length)
throw new f['default'](
'Missing helper: "' +
arguments[arguments.length - 1].name +
'"'
);
});
}),
(a.exports = b['default']);
},
function (a, b, c) {
'use strict';
var d = c(1)['default'];
b.__esModule = !0;
var e = c(5),
f = c(6),
g = d(f);
(b['default'] = function (a) {
a.registerHelper('if', function (a, b) {
if (2 != arguments.length)
throw new g['default'](
'#if requires exactly one argument'
);
return (
e.isFunction(a) && (a = a.call(this)),
(!b.hash.includeZero && !a) || e.isEmpty(a)
? b.inverse(this)
: b.fn(this)
);
}),
a.registerHelper('unless', function (b, c) {
if (2 != arguments.length)
throw new g['default'](
'#unless requires exactly one argument'
);
return a.helpers['if'].call(this, b, {
fn: c.inverse,
inverse: c.fn,
hash: c.hash,
});
});
}),
(a.exports = b['default']);
},
function (a, b) {
'use strict';
(b.__esModule = !0),
(b['default'] = function (a) {
a.registerHelper('log', function () {
for (
var b = [void 0],
c = arguments[arguments.length - 1],
d = 0;
d < arguments.length - 1;
d++
)
b.push(arguments[d]);
var e = 1;
null != c.hash.level
? (e = c.hash.level)
: c.data &&
null != c.data.level &&
(e = c.data.level),
(b[0] = e),
a.log.apply(a, b);
});
}),
(a.exports = b['default']);
},
function (a, b) {
'use strict';
(b.__esModule = !0),
(b['default'] = function (a) {
a.registerHelper('lookup', function (a, b, c) {
return a ? c.lookupProperty(a, b) : a;
});
}),
(a.exports = b['default']);
},
function (a, b, c) {
'use strict';
var d = c(1)['default'];
b.__esModule = !0;
var e = c(5),
f = c(6),
g = d(f);
(b['default'] = function (a) {
a.registerHelper('with', function (a, b) {
if (2 != arguments.length)
throw new g['default'](
'#with requires exactly one argument'
);
e.isFunction(a) && (a = a.call(this));
var c = b.fn;
if (e.isEmpty(a)) return b.inverse(this);
var d = b.data;
return (
b.data &&
b.ids &&
((d = e.createFrame(b.data)),
(d.contextPath = e.appendContextPath(
b.data.contextPath,
b.ids[0]
))),
c(a, {
data: d,
blockParams: e.blockParams(
[a],
[d && d.contextPath]
),
})
);
});
}),
(a.exports = b['default']);
},
function (a, b, c) {
'use strict';
function d(a) {
g['default'](a);
}
var e = c(1)['default'];
(b.__esModule = !0), (b.registerDefaultDecorators = d);
var f = c(71),
g = e(f);
},
function (a, b, c) {
'use strict';
b.__esModule = !0;
var d = c(5);
(b['default'] = function (a) {
a.registerDecorator('inline', function (a, b, c, e) {
var f = a;
return (
b.partials ||
((b.partials = {}),
(f = function (e, f) {
var g = c.partials;
c.partials = d.extend({}, g, b.partials);
var h = a(e, f);
return (c.partials = g), h;
})),
(b.partials[e.args[0]] = e.fn),
f
);
});
}),
(a.exports = b['default']);
},
function (a, b, c) {
'use strict';
b.__esModule = !0;
var d = c(5),
e = {
methodMap: ['debug', 'info', 'warn', 'error'],
level: 'info',
lookupLevel: function (a) {
if ('string' == typeof a) {
var b = d.indexOf(e.methodMap, a.toLowerCase());
a = b >= 0 ? b : parseInt(a, 10);
}
return a;
},
log: function (a) {
if (
((a = e.lookupLevel(a)),
'undefined' != typeof console &&
e.lookupLevel(e.level) <= a)
) {
var b = e.methodMap[a];
console[b] || (b = 'log');
for (
var c = arguments.length,
d = Array(c > 1 ? c - 1 : 0),
f = 1;
f < c;
f++
)
d[f - 1] = arguments[f];
console[b].apply(console, d);
}
},
};
(b['default'] = e), (a.exports = b['default']);
},
function (a, b, c) {
'use strict';
function d(a) {
var b = i(null);
(b.constructor = !1),
(b.__defineGetter__ = !1),
(b.__defineSetter__ = !1),
(b.__lookupGetter__ = !1);
var c = i(null);
return (
(c.__proto__ = !1),
{
properties: {
whitelist: l.createNewLookupObject(
c,
a.allowedProtoProperties
),
defaultValue: a.allowProtoPropertiesByDefault,
},
methods: {
whitelist: l.createNewLookupObject(
b,
a.allowedProtoMethods
),
defaultValue: a.allowProtoMethodsByDefault,
},
}
);
}
function e(a, b, c) {
return 'function' == typeof a
? f(b.methods, c)
: f(b.properties, c);
}
function f(a, b) {
return void 0 !== a.whitelist[b]
? a.whitelist[b] === !0
: void 0 !== a.defaultValue
? a.defaultValue
: (g(b), !1);
}
function g(a) {
o[a] !== !0 &&
((o[a] = !0),
n['default'].log(
'error',
'Handlebars: Access has been denied to resolve the property "' +
a +
'" because it is not an "own property" of its parent.\nYou can add a runtime option to disable the check or this warning:\nSee https://handlebarsjs.com/api-reference/runtime-options.html#options-to-control-prototype-access for details'
));
}
function h() {
j(o).forEach(function (a) {
delete o[a];
});
}
var i = c(74)['default'],
j = c(60)['default'],
k = c(1)['default'];
(b.__esModule = !0),
(b.createProtoAccessControl = d),
(b.resultIsAllowed = e),
(b.resetLoggedProperties = h);
var l = c(76),
m = c(72),
n = k(m),
o = i(null);
},
function (a, b, c) {
a.exports = { default: c(75), __esModule: !0 };
},
function (a, b, c) {
var d = c(9);
a.exports = function (a, b) {
return d.create(a, b);
};
},
function (a, b, c) {
'use strict';
function d() {
for (var a = arguments.length, b = Array(a), c = 0; c < a; c++)
b[c] = arguments[c];
return f.extend.apply(void 0, [e(null)].concat(b));
}
var e = c(74)['default'];
(b.__esModule = !0), (b.createNewLookupObject = d);
var f = c(5);
},
function (a, b) {
'use strict';
function c(a) {
this.string = a;
}
(b.__esModule = !0),
(c.prototype.toString = c.prototype.toHTML =
function () {
return '' + this.string;
}),
(b['default'] = c),
(a.exports = b['default']);
},
function (a, b, c) {
'use strict';
function d(a) {
var b = (a && a[0]) || 1,
c = v.COMPILER_REVISION;
if (
!(
b >= v.LAST_COMPATIBLE_COMPILER_REVISION &&
b <= v.COMPILER_REVISION
)
) {
if (b < v.LAST_COMPATIBLE_COMPILER_REVISION) {
var d = v.REVISION_CHANGES[c],
e = v.REVISION_CHANGES[b];
throw new u['default'](
'Template was precompiled with an older version of Handlebars than the current runtime. Please update your precompiler to a newer version (' +
d +
') or downgrade your runtime to an older version (' +
e +
').'
);
}
throw new u['default'](
'Template was precompiled with a newer version of Handlebars than the current runtime. Please update your runtime to a newer version (' +
a[1] +
').'
);
}
}
function e(a, b) {
function c(c, d, e) {
e.hash &&
((d = s.extend({}, d, e.hash)),
e.ids && (e.ids[0] = !0)),
(c = b.VM.resolvePartial.call(this, c, d, e));
var f = s.extend({}, e, {
hooks: this.hooks,
protoAccessControl: this.protoAccessControl,
}),
g = b.VM.invokePartial.call(this, c, d, f);
if (
(null == g &&
b.compile &&
((e.partials[e.name] = b.compile(
c,
a.compilerOptions,
b
)),
(g = e.partials[e.name](d, f))),
null != g)
) {
if (e.indent) {
for (
var h = g.split('\n'), i = 0, j = h.length;
i < j && (h[i] || i + 1 !== j);
i++
)
h[i] = e.indent + h[i];
g = h.join('\n');
}
return g;
}
throw new u['default'](
'The partial ' +
e.name +
' could not be compiled when running in runtime-only mode'
);
}
function d(b) {
function c(b) {
return (
'' + a.main(g, b, g.helpers, g.partials, f, i, h)
);
}
var e =
arguments.length <= 1 || void 0 === arguments[1]
? {}
: arguments[1],
f = e.data;
d._setup(e), !e.partial && a.useData && (f = j(b, f));
var h = void 0,
i = a.useBlockParams ? [] : void 0;
return (
a.useDepths &&
(h = e.depths
? b != e.depths[0]
? [b].concat(e.depths)
: e.depths
: [b]),
(c = k(a.main, c, g, e.depths || [], f, i))(b, e)
);
}
if (!b)
throw new u['default']('No environment passed to template');
if (!a || !a.main)
throw new u['default'](
'Unknown template object: ' + typeof a
);
(a.main.decorator = a.main_d), b.VM.checkRevision(a.compiler);
var e = a.compiler && 7 === a.compiler[0],
g = {
strict: function (a, b, c) {
if (!(a && b in a))
throw new u['default'](
'"' + b + '" not defined in ' + a,
{ loc: c }
);
return g.lookupProperty(a, b);
},
lookupProperty: function (a, b) {
var c = a[b];
return null == c
? c
: Object.prototype.hasOwnProperty.call(a, b)
? c
: y.resultIsAllowed(c, g.protoAccessControl, b)
? c
: void 0;
},
lookup: function (a, b) {
for (var c = a.length, d = 0; d < c; d++) {
var e = a[d] && g.lookupProperty(a[d], b);
if (null != e) return a[d][b];
}
},
lambda: function (a, b) {
return 'function' == typeof a ? a.call(b) : a;
},
escapeExpression: s.escapeExpression,
invokePartial: c,
fn: function (b) {
var c = a[b];
return (c.decorator = a[b + '_d']), c;
},
programs: [],
program: function (a, b, c, d, e) {
var g = this.programs[a],
h = this.fn(a);
return (
b || e || d || c
? (g = f(this, a, h, b, c, d, e))
: g ||
(g = this.programs[a] = f(this, a, h)),
g
);
},
data: function (a, b) {
for (; a && b--; ) a = a._parent;
return a;
},
mergeIfNeeded: function (a, b) {
var c = a || b;
return (
a && b && a !== b && (c = s.extend({}, b, a)), c
);
},
nullContext: n({}),
noop: b.VM.noop,
compilerInfo: a.compiler,
};
return (
(d.isTop = !0),
(d._setup = function (c) {
if (c.partial)
(g.protoAccessControl = c.protoAccessControl),
(g.helpers = c.helpers),
(g.partials = c.partials),
(g.decorators = c.decorators),
(g.hooks = c.hooks);
else {
var d = s.extend({}, b.helpers, c.helpers);
l(d, g),
(g.helpers = d),
a.usePartial &&
(g.partials = g.mergeIfNeeded(
c.partials,
b.partials
)),
(a.usePartial || a.useDecorators) &&
(g.decorators = s.extend(
{},
b.decorators,
c.decorators
)),
(g.hooks = {}),
(g.protoAccessControl =
y.createProtoAccessControl(c));
var f = c.allowCallsToHelperMissing || e;
w.moveHelperToHooks(g, 'helperMissing', f),
w.moveHelperToHooks(g, 'blockHelperMissing', f);
}
}),
(d._child = function (b, c, d, e) {
if (a.useBlockParams && !d)
throw new u['default']('must pass block params');
if (a.useDepths && !e)
throw new u['default']('must pass parent depths');
return f(g, b, a[b], c, 0, d, e);
}),
d
);
}
function f(a, b, c, d, e, f, g) {
function h(b) {
var e =
arguments.length <= 1 || void 0 === arguments[1]
? {}
: arguments[1],
h = g;
return (
!g ||
b == g[0] ||
(b === a.nullContext && null === g[0]) ||
(h = [b].concat(g)),
c(
a,
b,
a.helpers,
a.partials,
e.data || d,
f && [e.blockParams].concat(f),
h
)
);
}
return (
(h = k(c, h, a, g, d, f)),
(h.program = b),
(h.depth = g ? g.length : 0),
(h.blockParams = e || 0),
h
);
}
function g(a, b, c) {
return (
a
? a.call ||
c.name ||
((c.name = a), (a = c.partials[a]))
: (a =
'@partial-block' === c.name
? c.data['partial-block']
: c.partials[c.name]),
a
);
}
function h(a, b, c) {
var d = c.data && c.data['partial-block'];
(c.partial = !0),
c.ids &&
(c.data.contextPath = c.ids[0] || c.data.contextPath);
var e = void 0;
if (
(c.fn &&
c.fn !== i &&
!(function () {
c.data = v.createFrame(c.data);
var a = c.fn;
(e = c.data['partial-block'] =
function (b) {
var c =
arguments.length <= 1 ||
void 0 === arguments[1]
? {}
: arguments[1];
return (
(c.data = v.createFrame(c.data)),
(c.data['partial-block'] = d),
a(b, c)
);
}),
a.partials &&
(c.partials = s.extend(
{},
c.partials,
a.partials
));
})(),
void 0 === a && e && (a = e),
void 0 === a)
)
throw new u['default'](
'The partial ' + c.name + ' could not be found'
);
if (a instanceof Function) return a(b, c);
}
function i() {
return '';
}
function j(a, b) {
return (
(b && 'root' in b) ||
((b = b ? v.createFrame(b) : {}), (b.root = a)),
b
);
}
function k(a, b, c, d, e, f) {
if (a.decorator) {
var g = {};
(b = a.decorator(b, g, c, d && d[0], e, f, d)),
s.extend(b, g);
}
return b;
}
function l(a, b) {
o(a).forEach(function (c) {
var d = a[c];
a[c] = m(d, b);
});
}
function m(a, b) {
var c = b.lookupProperty;
return x.wrapHelper(a, function (a) {
return s.extend({ lookupProperty: c }, a);
});
}
var n = c(79)['default'],
o = c(60)['default'],
p = c(3)['default'],
q = c(1)['default'];
(b.__esModule = !0),
(b.checkRevision = d),
(b.template = e),
(b.wrapProgram = f),
(b.resolvePartial = g),
(b.invokePartial = h),
(b.noop = i);
var r = c(5),
s = p(r),
t = c(6),
u = q(t),
v = c(4),
w = c(10),
x = c(82),
y = c(73);
},
function (a, b, c) {
a.exports = { default: c(80), __esModule: !0 };
},
function (a, b, c) {
c(81), (a.exports = c(21).Object.seal);
},
function (a, b, c) {
var d = c(40);
c(64)('seal', function (a) {
return function (b) {
return a && d(b) ? a(b) : b;
};
});
},
function (a, b) {
'use strict';
function c(a, b) {
if ('function' != typeof a) return a;
var c = function () {
var c = arguments[arguments.length - 1];
return (
(arguments[arguments.length - 1] = b(c)),
a.apply(this, arguments)
);
};
return c;
}
(b.__esModule = !0), (b.wrapHelper = c);
},
function (a, b) {
'use strict';
(b.__esModule = !0),
(b['default'] = function (a) {
!(function () {
'object' != typeof globalThis &&
(Object.prototype.__defineGetter__(
'__magic__',
function () {
return this;
}
),
(__magic__.globalThis = __magic__),
delete Object.prototype.__magic__);
})();
var b = globalThis.Handlebars;
a.noConflict = function () {
return (
globalThis.Handlebars === a &&
(globalThis.Handlebars = b),
a
);
};
}),
(a.exports = b['default']);
},
function (a, b) {
'use strict';
b.__esModule = !0;
var c = {
helpers: {
helperExpression: function (a) {
return (
'SubExpression' === a.type ||
(('MustacheStatement' === a.type ||
'BlockStatement' === a.type) &&
!!((a.params && a.params.length) || a.hash))
);
},
scopedId: function (a) {
return /^\.|this\b/.test(a.original);
},
simpleId: function (a) {
return (
1 === a.parts.length &&
!c.helpers.scopedId(a) &&
!a.depth
);
},
},
};
(b['default'] = c), (a.exports = b['default']);
},
function (a, b, c) {
'use strict';
function d(a, b) {
if ('Program' === a.type) return a;
(i['default'].yy = o),
(o.locInfo = function (a) {
return new o.SourceLocation(b && b.srcName, a);
});
var c = i['default'].parse(a);
return c;
}
function e(a, b) {
var c = d(a, b),
e = new k['default'](b);
return e.accept(c);
}
var f = c(1)['default'],
g = c(3)['default'];
(b.__esModule = !0), (b.parseWithoutProcessing = d), (b.parse = e);
var h = c(86),
i = f(h),
j = c(87),
k = f(j),
l = c(89),
m = g(l),
n = c(5);
b.parser = i['default'];
var o = {};
n.extend(o, m);
},
function (a, b) {
'use strict';
b.__esModule = !0;
var c = (function () {
function a() {
this.yy = {};
}
var b = {
trace: function () {},
yy: {},
symbols_: {
error: 2,
root: 3,
program: 4,
EOF: 5,
program_repetition0: 6,
statement: 7,
mustache: 8,
block: 9,
rawBlock: 10,
partial: 11,
partialBlock: 12,
content: 13,
COMMENT: 14,
CONTENT: 15,
openRawBlock: 16,
rawBlock_repetition0: 17,
END_RAW_BLOCK: 18,
OPEN_RAW_BLOCK: 19,
helperName: 20,
openRawBlock_repetition0: 21,
openRawBlock_option0: 22,
CLOSE_RAW_BLOCK: 23,
openBlock: 24,
block_option0: 25,
closeBlock: 26,
openInverse: 27,
block_option1: 28,
OPEN_BLOCK: 29,
openBlock_repetition0: 30,
openBlock_option0: 31,
openBlock_option1: 32,
CLOSE: 33,
OPEN_INVERSE: 34,
openInverse_repetition0: 35,
openInverse_option0: 36,
openInverse_option1: 37,
openInverseChain: 38,
OPEN_INVERSE_CHAIN: 39,
openInverseChain_repetition0: 40,
openInverseChain_option0: 41,
openInverseChain_option1: 42,
inverseAndProgram: 43,
INVERSE: 44,
inverseChain: 45,
inverseChain_option0: 46,
OPEN_ENDBLOCK: 47,
OPEN: 48,
mustache_repetition0: 49,
mustache_option0: 50,
OPEN_UNESCAPED: 51,
mustache_repetition1: 52,
mustache_option1: 53,
CLOSE_UNESCAPED: 54,
OPEN_PARTIAL: 55,
partialName: 56,
partial_repetition0: 57,
partial_option0: 58,
openPartialBlock: 59,
OPEN_PARTIAL_BLOCK: 60,
openPartialBlock_repetition0: 61,
openPartialBlock_option0: 62,
param: 63,
sexpr: 64,
OPEN_SEXPR: 65,
sexpr_repetition0: 66,
sexpr_option0: 67,
CLOSE_SEXPR: 68,
hash: 69,
hash_repetition_plus0: 70,
hashSegment: 71,
ID: 72,
EQUALS: 73,
blockParams: 74,
OPEN_BLOCK_PARAMS: 75,
blockParams_repetition_plus0: 76,
CLOSE_BLOCK_PARAMS: 77,
path: 78,
dataName: 79,
STRING: 80,
NUMBER: 81,
BOOLEAN: 82,
UNDEFINED: 83,
NULL: 84,
DATA: 85,
pathSegments: 86,
SEP: 87,
$accept: 0,
$end: 1,
},
terminals_: {
2: 'error',
5: 'EOF',
14: 'COMMENT',
15: 'CONTENT',
18: 'END_RAW_BLOCK',
19: 'OPEN_RAW_BLOCK',
23: 'CLOSE_RAW_BLOCK',
29: 'OPEN_BLOCK',
33: 'CLOSE',
34: 'OPEN_INVERSE',
39: 'OPEN_INVERSE_CHAIN',
44: 'INVERSE',
47: 'OPEN_ENDBLOCK',
48: 'OPEN',
51: 'OPEN_UNESCAPED',
54: 'CLOSE_UNESCAPED',
55: 'OPEN_PARTIAL',
60: 'OPEN_PARTIAL_BLOCK',
65: 'OPEN_SEXPR',
68: 'CLOSE_SEXPR',
72: 'ID',
73: 'EQUALS',
75: 'OPEN_BLOCK_PARAMS',
77: 'CLOSE_BLOCK_PARAMS',
80: 'STRING',
81: 'NUMBER',
82: 'BOOLEAN',
83: 'UNDEFINED',
84: 'NULL',
85: 'DATA',
87: 'SEP',
},
productions_: [
0,
[3, 2],
[4, 1],
[7, 1],
[7, 1],
[7, 1],
[7, 1],
[7, 1],
[7, 1],
[7, 1],
[13, 1],
[10, 3],
[16, 5],
[9, 4],
[9, 4],
[24, 6],
[27, 6],
[38, 6],
[43, 2],
[45, 3],
[45, 1],
[26, 3],
[8, 5],
[8, 5],
[11, 5],
[12, 3],
[59, 5],
[63, 1],
[63, 1],
[64, 5],
[69, 1],
[71, 3],
[74, 3],
[20, 1],
[20, 1],
[20, 1],
[20, 1],
[20, 1],
[20, 1],
[20, 1],
[56, 1],
[56, 1],
[79, 2],
[78, 1],
[86, 3],
[86, 1],
[6, 0],
[6, 2],
[17, 0],
[17, 2],
[21, 0],
[21, 2],
[22, 0],
[22, 1],
[25, 0],
[25, 1],
[28, 0],
[28, 1],
[30, 0],
[30, 2],
[31, 0],
[31, 1],
[32, 0],
[32, 1],
[35, 0],
[35, 2],
[36, 0],
[36, 1],
[37, 0],
[37, 1],
[40, 0],
[40, 2],
[41, 0],
[41, 1],
[42, 0],
[42, 1],
[46, 0],
[46, 1],
[49, 0],
[49, 2],
[50, 0],
[50, 1],
[52, 0],
[52, 2],
[53, 0],
[53, 1],
[57, 0],
[57, 2],
[58, 0],
[58, 1],
[61, 0],
[61, 2],
[62, 0],
[62, 1],
[66, 0],
[66, 2],
[67, 0],
[67, 1],
[70, 1],
[70, 2],
[76, 1],
[76, 2],
],
performAction: function (a, b, c, d, e, f, g) {
var h = f.length - 1;
switch (e) {
case 1:
return f[h - 1];
case 2:
this.$ = d.prepareProgram(f[h]);
break;
case 3:
this.$ = f[h];
break;
case 4:
this.$ = f[h];
break;
case 5:
this.$ = f[h];
break;
case 6:
this.$ = f[h];
break;
case 7:
this.$ = f[h];
break;
case 8:
this.$ = f[h];
break;
case 9:
this.$ = {
type: 'CommentStatement',
value: d.stripComment(f[h]),
strip: d.stripFlags(f[h], f[h]),
loc: d.locInfo(this._$),
};
break;
case 10:
this.$ = {
type: 'ContentStatement',
original: f[h],
value: f[h],
loc: d.locInfo(this._$),
};
break;
case 11:
this.$ = d.prepareRawBlock(
f[h - 2],
f[h - 1],
f[h],
this._$
);
break;
case 12:
this.$ = {
path: f[h - 3],
params: f[h - 2],
hash: f[h - 1],
};
break;
case 13:
this.$ = d.prepareBlock(
f[h - 3],
f[h - 2],
f[h - 1],
f[h],
!1,
this._$
);
break;
case 14:
this.$ = d.prepareBlock(
f[h - 3],
f[h - 2],
f[h - 1],
f[h],
!0,
this._$
);
break;
case 15:
this.$ = {
open: f[h - 5],
path: f[h - 4],
params: f[h - 3],
hash: f[h - 2],
blockParams: f[h - 1],
strip: d.stripFlags(f[h - 5], f[h]),
};
break;
case 16:
this.$ = {
path: f[h - 4],
params: f[h - 3],
hash: f[h - 2],
blockParams: f[h - 1],
strip: d.stripFlags(f[h - 5], f[h]),
};
break;
case 17:
this.$ = {
path: f[h - 4],
params: f[h - 3],
hash: f[h - 2],
blockParams: f[h - 1],
strip: d.stripFlags(f[h - 5], f[h]),
};
break;
case 18:
this.$ = {
strip: d.stripFlags(f[h - 1], f[h - 1]),
program: f[h],
};
break;
case 19:
var i = d.prepareBlock(
f[h - 2],
f[h - 1],
f[h],
f[h],
!1,
this._$
),
j = d.prepareProgram([i], f[h - 1].loc);
(j.chained = !0),
(this.$ = {
strip: f[h - 2].strip,
program: j,
chain: !0,
});
break;
case 20:
this.$ = f[h];
break;
case 21:
this.$ = {
path: f[h - 1],
strip: d.stripFlags(f[h - 2], f[h]),
};
break;
case 22:
this.$ = d.prepareMustache(
f[h - 3],
f[h - 2],
f[h - 1],
f[h - 4],
d.stripFlags(f[h - 4], f[h]),
this._$
);
break;
case 23:
this.$ = d.prepareMustache(
f[h - 3],
f[h - 2],
f[h - 1],
f[h - 4],
d.stripFlags(f[h - 4], f[h]),
this._$
);
break;
case 24:
this.$ = {
type: 'PartialStatement',
name: f[h - 3],
params: f[h - 2],
hash: f[h - 1],
indent: '',
strip: d.stripFlags(f[h - 4], f[h]),
loc: d.locInfo(this._$),
};
break;
case 25:
this.$ = d.preparePartialBlock(
f[h - 2],
f[h - 1],
f[h],
this._$
);
break;
case 26:
this.$ = {
path: f[h - 3],
params: f[h - 2],
hash: f[h - 1],
strip: d.stripFlags(f[h - 4], f[h]),
};
break;
case 27:
this.$ = f[h];
break;
case 28:
this.$ = f[h];
break;
case 29:
this.$ = {
type: 'SubExpression',
path: f[h - 3],
params: f[h - 2],
hash: f[h - 1],
loc: d.locInfo(this._$),
};
break;
case 30:
this.$ = {
type: 'Hash',
pairs: f[h],
loc: d.locInfo(this._$),
};
break;
case 31:
this.$ = {
type: 'HashPair',
key: d.id(f[h - 2]),
value: f[h],
loc: d.locInfo(this._$),
};
break;
case 32:
this.$ = d.id(f[h - 1]);
break;
case 33:
this.$ = f[h];
break;
case 34:
this.$ = f[h];
break;
case 35:
this.$ = {
type: 'StringLiteral',
value: f[h],
original: f[h],
loc: d.locInfo(this._$),
};
break;
case 36:
this.$ = {
type: 'NumberLiteral',
value: Number(f[h]),
original: Number(f[h]),
loc: d.locInfo(this._$),
};
break;
case 37:
this.$ = {
type: 'BooleanLiteral',
value: 'true' === f[h],
original: 'true' === f[h],
loc: d.locInfo(this._$),
};
break;
case 38:
this.$ = {
type: 'UndefinedLiteral',
original: void 0,
value: void 0,
loc: d.locInfo(this._$),
};
break;
case 39:
this.$ = {
type: 'NullLiteral',
original: null,
value: null,
loc: d.locInfo(this._$),
};
break;
case 40:
this.$ = f[h];
break;
case 41:
this.$ = f[h];
break;
case 42:
this.$ = d.preparePath(!0, f[h], this._$);
break;
case 43:
this.$ = d.preparePath(!1, f[h], this._$);
break;
case 44:
f[h - 2].push({
part: d.id(f[h]),
original: f[h],
separator: f[h - 1],
}),
(this.$ = f[h - 2]);
break;
case 45:
this.$ = [
{ part: d.id(f[h]), original: f[h] },
];
break;
case 46:
this.$ = [];
break;
case 47:
f[h - 1].push(f[h]);
break;
case 48:
this.$ = [];
break;
case 49:
f[h - 1].push(f[h]);
break;
case 50:
this.$ = [];
break;
case 51:
f[h - 1].push(f[h]);
break;
case 58:
this.$ = [];
break;
case 59:
f[h - 1].push(f[h]);
break;
case 64:
this.$ = [];
break;
case 65:
f[h - 1].push(f[h]);
break;
case 70:
this.$ = [];
break;
case 71:
f[h - 1].push(f[h]);
break;
case 78:
this.$ = [];
break;
case 79:
f[h - 1].push(f[h]);
break;
case 82:
this.$ = [];
break;
case 83:
f[h - 1].push(f[h]);
break;
case 86:
this.$ = [];
break;
case 87:
f[h - 1].push(f[h]);
break;
case 90:
this.$ = [];
break;
case 91:
f[h - 1].push(f[h]);
break;
case 94:
this.$ = [];
break;
case 95:
f[h - 1].push(f[h]);
break;
case 98:
this.$ = [f[h]];
break;
case 99:
f[h - 1].push(f[h]);
break;
case 100:
this.$ = [f[h]];
break;
case 101:
f[h - 1].push(f[h]);
}
},
table: [
{
3: 1,
4: 2,
5: [2, 46],
6: 3,
14: [2, 46],
15: [2, 46],
19: [2, 46],
29: [2, 46],
34: [2, 46],
48: [2, 46],
51: [2, 46],
55: [2, 46],
60: [2, 46],
},
{ 1: [3] },
{ 5: [1, 4] },
{
5: [2, 2],
7: 5,
8: 6,
9: 7,
10: 8,
11: 9,
12: 10,
13: 11,
14: [1, 12],
15: [1, 20],
16: 17,
19: [1, 23],
24: 15,
27: 16,
29: [1, 21],
34: [1, 22],
39: [2, 2],
44: [2, 2],
47: [2, 2],
48: [1, 13],
51: [1, 14],
55: [1, 18],
59: 19,
60: [1, 24],
},
{ 1: [2, 1] },
{
5: [2, 47],
14: [2, 47],
15: [2, 47],
19: [2, 47],
29: [2, 47],
34: [2, 47],
39: [2, 47],
44: [2, 47],
47: [2, 47],
48: [2, 47],
51: [2, 47],
55: [2, 47],
60: [2, 47],
},
{
5: [2, 3],
14: [2, 3],
15: [2, 3],
19: [2, 3],
29: [2, 3],
34: [2, 3],
39: [2, 3],
44: [2, 3],
47: [2, 3],
48: [2, 3],
51: [2, 3],
55: [2, 3],
60: [2, 3],
},
{
5: [2, 4],
14: [2, 4],
15: [2, 4],
19: [2, 4],
29: [2, 4],
34: [2, 4],
39: [2, 4],
44: [2, 4],
47: [2, 4],
48: [2, 4],
51: [2, 4],
55: [2, 4],
60: [2, 4],
},
{
5: [2, 5],
14: [2, 5],
15: [2, 5],
19: [2, 5],
29: [2, 5],
34: [2, 5],
39: [2, 5],
44: [2, 5],
47: [2, 5],
48: [2, 5],
51: [2, 5],
55: [2, 5],
60: [2, 5],
},
{
5: [2, 6],
14: [2, 6],
15: [2, 6],
19: [2, 6],
29: [2, 6],
34: [2, 6],
39: [2, 6],
44: [2, 6],
47: [2, 6],
48: [2, 6],
51: [2, 6],
55: [2, 6],
60: [2, 6],
},
{
5: [2, 7],
14: [2, 7],
15: [2, 7],
19: [2, 7],
29: [2, 7],
34: [2, 7],
39: [2, 7],
44: [2, 7],
47: [2, 7],
48: [2, 7],
51: [2, 7],
55: [2, 7],
60: [2, 7],
},
{
5: [2, 8],
14: [2, 8],
15: [2, 8],
19: [2, 8],
29: [2, 8],
34: [2, 8],
39: [2, 8],
44: [2, 8],
47: [2, 8],
48: [2, 8],
51: [2, 8],
55: [2, 8],
60: [2, 8],
},
{
5: [2, 9],
14: [2, 9],
15: [2, 9],
19: [2, 9],
29: [2, 9],
34: [2, 9],
39: [2, 9],
44: [2, 9],
47: [2, 9],
48: [2, 9],
51: [2, 9],
55: [2, 9],
60: [2, 9],
},
{
20: 25,
72: [1, 35],
78: 26,
79: 27,
80: [1, 28],
81: [1, 29],
82: [1, 30],
83: [1, 31],
84: [1, 32],
85: [1, 34],
86: 33,
},
{
20: 36,
72: [1, 35],
78: 26,
79: 27,
80: [1, 28],
81: [1, 29],
82: [1, 30],
83: [1, 31],
84: [1, 32],
85: [1, 34],
86: 33,
},
{
4: 37,
6: 3,
14: [2, 46],
15: [2, 46],
19: [2, 46],
29: [2, 46],
34: [2, 46],
39: [2, 46],
44: [2, 46],
47: [2, 46],
48: [2, 46],
51: [2, 46],
55: [2, 46],
60: [2, 46],
},
{
4: 38,
6: 3,
14: [2, 46],
15: [2, 46],
19: [2, 46],
29: [2, 46],
34: [2, 46],
44: [2, 46],
47: [2, 46],
48: [2, 46],
51: [2, 46],
55: [2, 46],
60: [2, 46],
},
{ 15: [2, 48], 17: 39, 18: [2, 48] },
{
20: 41,
56: 40,
64: 42,
65: [1, 43],
72: [1, 35],
78: 26,
79: 27,
80: [1, 28],
81: [1, 29],
82: [1, 30],
83: [1, 31],
84: [1, 32],
85: [1, 34],
86: 33,
},
{
4: 44,
6: 3,
14: [2, 46],
15: [2, 46],
19: [2, 46],
29: [2, 46],
34: [2, 46],
47: [2, 46],
48: [2, 46],
51: [2, 46],
55: [2, 46],
60: [2, 46],
},
{
5: [2, 10],
14: [2, 10],
15: [2, 10],
18: [2, 10],
19: [2, 10],
29: [2, 10],
34: [2, 10],
39: [2, 10],
44: [2, 10],
47: [2, 10],
48: [2, 10],
51: [2, 10],
55: [2, 10],
60: [2, 10],
},
{
20: 45,
72: [1, 35],
78: 26,
79: 27,
80: [1, 28],
81: [1, 29],
82: [1, 30],
83: [1, 31],
84: [1, 32],
85: [1, 34],
86: 33,
},
{
20: 46,
72: [1, 35],
78: 26,
79: 27,
80: [1, 28],
81: [1, 29],
82: [1, 30],
83: [1, 31],
84: [1, 32],
85: [1, 34],
86: 33,
},
{
20: 47,
72: [1, 35],
78: 26,
79: 27,
80: [1, 28],
81: [1, 29],
82: [1, 30],
83: [1, 31],
84: [1, 32],
85: [1, 34],
86: 33,
},
{
20: 41,
56: 48,
64: 42,
65: [1, 43],
72: [1, 35],
78: 26,
79: 27,
80: [1, 28],
81: [1, 29],
82: [1, 30],
83: [1, 31],
84: [1, 32],
85: [1, 34],
86: 33,
},
{
33: [2, 78],
49: 49,
65: [2, 78],
72: [2, 78],
80: [2, 78],
81: [2, 78],
82: [2, 78],
83: [2, 78],
84: [2, 78],
85: [2, 78],
},
{
23: [2, 33],
33: [2, 33],
54: [2, 33],
65: [2, 33],
68: [2, 33],
72: [2, 33],
75: [2, 33],
80: [2, 33],
81: [2, 33],
82: [2, 33],
83: [2, 33],
84: [2, 33],
85: [2, 33],
},
{
23: [2, 34],
33: [2, 34],
54: [2, 34],
65: [2, 34],
68: [2, 34],
72: [2, 34],
75: [2, 34],
80: [2, 34],
81: [2, 34],
82: [2, 34],
83: [2, 34],
84: [2, 34],
85: [2, 34],
},
{
23: [2, 35],
33: [2, 35],
54: [2, 35],
65: [2, 35],
68: [2, 35],
72: [2, 35],
75: [2, 35],
80: [2, 35],
81: [2, 35],
82: [2, 35],
83: [2, 35],
84: [2, 35],
85: [2, 35],
},
{
23: [2, 36],
33: [2, 36],
54: [2, 36],
65: [2, 36],
68: [2, 36],
72: [2, 36],
75: [2, 36],
80: [2, 36],
81: [2, 36],
82: [2, 36],
83: [2, 36],
84: [2, 36],
85: [2, 36],
},
{
23: [2, 37],
33: [2, 37],
54: [2, 37],
65: [2, 37],
68: [2, 37],
72: [2, 37],
75: [2, 37],
80: [2, 37],
81: [2, 37],
82: [2, 37],
83: [2, 37],
84: [2, 37],
85: [2, 37],
},
{
23: [2, 38],
33: [2, 38],
54: [2, 38],
65: [2, 38],
68: [2, 38],
72: [2, 38],
75: [2, 38],
80: [2, 38],
81: [2, 38],
82: [2, 38],
83: [2, 38],
84: [2, 38],
85: [2, 38],
},
{
23: [2, 39],
33: [2, 39],
54: [2, 39],
65: [2, 39],
68: [2, 39],
72: [2, 39],
75: [2, 39],
80: [2, 39],
81: [2, 39],
82: [2, 39],
83: [2, 39],
84: [2, 39],
85: [2, 39],
},
{
23: [2, 43],
33: [2, 43],
54: [2, 43],
65: [2, 43],
68: [2, 43],
72: [2, 43],
75: [2, 43],
80: [2, 43],
81: [2, 43],
82: [2, 43],
83: [2, 43],
84: [2, 43],
85: [2, 43],
87: [1, 50],
},
{ 72: [1, 35], 86: 51 },
{
23: [2, 45],
33: [2, 45],
54: [2, 45],
65: [2, 45],
68: [2, 45],
72: [2, 45],
75: [2, 45],
80: [2, 45],
81: [2, 45],
82: [2, 45],
83: [2, 45],
84: [2, 45],
85: [2, 45],
87: [2, 45],
},
{
52: 52,
54: [2, 82],
65: [2, 82],
72: [2, 82],
80: [2, 82],
81: [2, 82],
82: [2, 82],
83: [2, 82],
84: [2, 82],
85: [2, 82],
},
{
25: 53,
38: 55,
39: [1, 57],
43: 56,
44: [1, 58],
45: 54,
47: [2, 54],
},
{ 28: 59, 43: 60, 44: [1, 58], 47: [2, 56] },
{ 13: 62, 15: [1, 20], 18: [1, 61] },
{
33: [2, 86],
57: 63,
65: [2, 86],
72: [2, 86],
80: [2, 86],
81: [2, 86],
82: [2, 86],
83: [2, 86],
84: [2, 86],
85: [2, 86],
},
{
33: [2, 40],
65: [2, 40],
72: [2, 40],
80: [2, 40],
81: [2, 40],
82: [2, 40],
83: [2, 40],
84: [2, 40],
85: [2, 40],
},
{
33: [2, 41],
65: [2, 41],
72: [2, 41],
80: [2, 41],
81: [2, 41],
82: [2, 41],
83: [2, 41],
84: [2, 41],
85: [2, 41],
},
{
20: 64,
72: [1, 35],
78: 26,
79: 27,
80: [1, 28],
81: [1, 29],
82: [1, 30],
83: [1, 31],
84: [1, 32],
85: [1, 34],
86: 33,
},
{ 26: 65, 47: [1, 66] },
{
30: 67,
33: [2, 58],
65: [2, 58],
72: [2, 58],
75: [2, 58],
80: [2, 58],
81: [2, 58],
82: [2, 58],
83: [2, 58],
84: [2, 58],
85: [2, 58],
},
{
33: [2, 64],
35: 68,
65: [2, 64],
72: [2, 64],
75: [2, 64],
80: [2, 64],
81: [2, 64],
82: [2, 64],
83: [2, 64],
84: [2, 64],
85: [2, 64],
},
{
21: 69,
23: [2, 50],
65: [2, 50],
72: [2, 50],
80: [2, 50],
81: [2, 50],
82: [2, 50],
83: [2, 50],
84: [2, 50],
85: [2, 50],
},
{
33: [2, 90],
61: 70,
65: [2, 90],
72: [2, 90],
80: [2, 90],
81: [2, 90],
82: [2, 90],
83: [2, 90],
84: [2, 90],
85: [2, 90],
},
{
20: 74,
33: [2, 80],
50: 71,
63: 72,
64: 75,
65: [1, 43],
69: 73,
70: 76,
71: 77,
72: [1, 78],
78: 26,
79: 27,
80: [1, 28],
81: [1, 29],
82: [1, 30],
83: [1, 31],
84: [1, 32],
85: [1, 34],
86: 33,
},
{ 72: [1, 79] },
{
23: [2, 42],
33: [2, 42],
54: [2, 42],
65: [2, 42],
68: [2, 42],
72: [2, 42],
75: [2, 42],
80: [2, 42],
81: [2, 42],
82: [2, 42],
83: [2, 42],
84: [2, 42],
85: [2, 42],
87: [1, 50],
},
{
20: 74,
53: 80,
54: [2, 84],
63: 81,
64: 75,
65: [1, 43],
69: 82,
70: 76,
71: 77,
72: [1, 78],
78: 26,
79: 27,
80: [1, 28],
81: [1, 29],
82: [1, 30],
83: [1, 31],
84: [1, 32],
85: [1, 34],
86: 33,
},
{ 26: 83, 47: [1, 66] },
{ 47: [2, 55] },
{
4: 84,
6: 3,
14: [2, 46],
15: [2, 46],
19: [2, 46],
29: [2, 46],
34: [2, 46],
39: [2, 46],
44: [2, 46],
47: [2, 46],
48: [2, 46],
51: [2, 46],
55: [2, 46],
60: [2, 46],
},
{ 47: [2, 20] },
{
20: 85,
72: [1, 35],
78: 26,
79: 27,
80: [1, 28],
81: [1, 29],
82: [1, 30],
83: [1, 31],
84: [1, 32],
85: [1, 34],
86: 33,
},
{
4: 86,
6: 3,
14: [2, 46],
15: [2, 46],
19: [2, 46],
29: [2, 46],
34: [2, 46],
47: [2, 46],
48: [2, 46],
51: [2, 46],
55: [2, 46],
60: [2, 46],
},
{ 26: 87, 47: [1, 66] },
{ 47: [2, 57] },
{
5: [2, 11],
14: [2, 11],
15: [2, 11],
19: [2, 11],
29: [2, 11],
34: [2, 11],
39: [2, 11],
44: [2, 11],
47: [2, 11],
48: [2, 11],
51: [2, 11],
55: [2, 11],
60: [2, 11],
},
{ 15: [2, 49], 18: [2, 49] },
{
20: 74,
33: [2, 88],
58: 88,
63: 89,
64: 75,
65: [1, 43],
69: 90,
70: 76,
71: 77,
72: [1, 78],
78: 26,
79: 27,
80: [1, 28],
81: [1, 29],
82: [1, 30],
83: [1, 31],
84: [1, 32],
85: [1, 34],
86: 33,
},
{
65: [2, 94],
66: 91,
68: [2, 94],
72: [2, 94],
80: [2, 94],
81: [2, 94],
82: [2, 94],
83: [2, 94],
84: [2, 94],
85: [2, 94],
},
{
5: [2, 25],
14: [2, 25],
15: [2, 25],
19: [2, 25],
29: [2, 25],
34: [2, 25],
39: [2, 25],
44: [2, 25],
47: [2, 25],
48: [2, 25],
51: [2, 25],
55: [2, 25],
60: [2, 25],
},
{
20: 92,
72: [1, 35],
78: 26,
79: 27,
80: [1, 28],
81: [1, 29],
82: [1, 30],
83: [1, 31],
84: [1, 32],
85: [1, 34],
86: 33,
},
{
20: 74,
31: 93,
33: [2, 60],
63: 94,
64: 75,
65: [1, 43],
69: 95,
70: 76,
71: 77,
72: [1, 78],
75: [2, 60],
78: 26,
79: 27,
80: [1, 28],
81: [1, 29],
82: [1, 30],
83: [1, 31],
84: [1, 32],
85: [1, 34],
86: 33,
},
{
20: 74,
33: [2, 66],
36: 96,
63: 97,
64: 75,
65: [1, 43],
69: 98,
70: 76,
71: 77,
72: [1, 78],
75: [2, 66],
78: 26,
79: 27,
80: [1, 28],
81: [1, 29],
82: [1, 30],
83: [1, 31],
84: [1, 32],
85: [1, 34],
86: 33,
},
{
20: 74,
22: 99,
23: [2, 52],
63: 100,
64: 75,
65: [1, 43],
69: 101,
70: 76,
71: 77,
72: [1, 78],
78: 26,
79: 27,
80: [1, 28],
81: [1, 29],
82: [1, 30],
83: [1, 31],
84: [1, 32],
85: [1, 34],
86: 33,
},
{
20: 74,
33: [2, 92],
62: 102,
63: 103,
64: 75,
65: [1, 43],
69: 104,
70: 76,
71: 77,
72: [1, 78],
78: 26,
79: 27,
80: [1, 28],
81: [1, 29],
82: [1, 30],
83: [1, 31],
84: [1, 32],
85: [1, 34],
86: 33,
},
{ 33: [1, 105] },
{
33: [2, 79],
65: [2, 79],
72: [2, 79],
80: [2, 79],
81: [2, 79],
82: [2, 79],
83: [2, 79],
84: [2, 79],
85: [2, 79],
},
{ 33: [2, 81] },
{
23: [2, 27],
33: [2, 27],
54: [2, 27],
65: [2, 27],
68: [2, 27],
72: [2, 27],
75: [2, 27],
80: [2, 27],
81: [2, 27],
82: [2, 27],
83: [2, 27],
84: [2, 27],
85: [2, 27],
},
{
23: [2, 28],
33: [2, 28],
54: [2, 28],
65: [2, 28],
68: [2, 28],
72: [2, 28],
75: [2, 28],
80: [2, 28],
81: [2, 28],
82: [2, 28],
83: [2, 28],
84: [2, 28],
85: [2, 28],
},
{
23: [2, 30],
33: [2, 30],
54: [2, 30],
68: [2, 30],
71: 106,
72: [1, 107],
75: [2, 30],
},
{
23: [2, 98],
33: [2, 98],
54: [2, 98],
68: [2, 98],
72: [2, 98],
75: [2, 98],
},
{
23: [2, 45],
33: [2, 45],
54: [2, 45],
65: [2, 45],
68: [2, 45],
72: [2, 45],
73: [1, 108],
75: [2, 45],
80: [2, 45],
81: [2, 45],
82: [2, 45],
83: [2, 45],
84: [2, 45],
85: [2, 45],
87: [2, 45],
},
{
23: [2, 44],
33: [2, 44],
54: [2, 44],
65: [2, 44],
68: [2, 44],
72: [2, 44],
75: [2, 44],
80: [2, 44],
81: [2, 44],
82: [2, 44],
83: [2, 44],
84: [2, 44],
85: [2, 44],
87: [2, 44],
},
{ 54: [1, 109] },
{
54: [2, 83],
65: [2, 83],
72: [2, 83],
80: [2, 83],
81: [2, 83],
82: [2, 83],
83: [2, 83],
84: [2, 83],
85: [2, 83],
},
{ 54: [2, 85] },
{
5: [2, 13],
14: [2, 13],
15: [2, 13],
19: [2, 13],
29: [2, 13],
34: [2, 13],
39: [2, 13],
44: [2, 13],
47: [2, 13],
48: [2, 13],
51: [2, 13],
55: [2, 13],
60: [2, 13],
},
{
38: 55,
39: [1, 57],
43: 56,
44: [1, 58],
45: 111,
46: 110,
47: [2, 76],
},
{
33: [2, 70],
40: 112,
65: [2, 70],
72: [2, 70],
75: [2, 70],
80: [2, 70],
81: [2, 70],
82: [2, 70],
83: [2, 70],
84: [2, 70],
85: [2, 70],
},
{ 47: [2, 18] },
{
5: [2, 14],
14: [2, 14],
15: [2, 14],
19: [2, 14],
29: [2, 14],
34: [2, 14],
39: [2, 14],
44: [2, 14],
47: [2, 14],
48: [2, 14],
51: [2, 14],
55: [2, 14],
60: [2, 14],
},
{ 33: [1, 113] },
{
33: [2, 87],
65: [2, 87],
72: [2, 87],
80: [2, 87],
81: [2, 87],
82: [2, 87],
83: [2, 87],
84: [2, 87],
85: [2, 87],
},
{ 33: [2, 89] },
{
20: 74,
63: 115,
64: 75,
65: [1, 43],
67: 114,
68: [2, 96],
69: 116,
70: 76,
71: 77,
72: [1, 78],
78: 26,
79: 27,
80: [1, 28],
81: [1, 29],
82: [1, 30],
83: [1, 31],
84: [1, 32],
85: [1, 34],
86: 33,
},
{ 33: [1, 117] },
{ 32: 118, 33: [2, 62], 74: 119, 75: [1, 120] },
{
33: [2, 59],
65: [2, 59],
72: [2, 59],
75: [2, 59],
80: [2, 59],
81: [2, 59],
82: [2, 59],
83: [2, 59],
84: [2, 59],
85: [2, 59],
},
{ 33: [2, 61], 75: [2, 61] },
{ 33: [2, 68], 37: 121, 74: 122, 75: [1, 120] },
{
33: [2, 65],
65: [2, 65],
72: [2, 65],
75: [2, 65],
80: [2, 65],
81: [2, 65],
82: [2, 65],
83: [2, 65],
84: [2, 65],
85: [2, 65],
},
{ 33: [2, 67], 75: [2, 67] },
{ 23: [1, 123] },
{
23: [2, 51],
65: [2, 51],
72: [2, 51],
80: [2, 51],
81: [2, 51],
82: [2, 51],
83: [2, 51],
84: [2, 51],
85: [2, 51],
},
{ 23: [2, 53] },
{ 33: [1, 124] },
{
33: [2, 91],
65: [2, 91],
72: [2, 91],
80: [2, 91],
81: [2, 91],
82: [2, 91],
83: [2, 91],
84: [2, 91],
85: [2, 91],
},
{ 33: [2, 93] },
{
5: [2, 22],
14: [2, 22],
15: [2, 22],
19: [2, 22],
29: [2, 22],
34: [2, 22],
39: [2, 22],
44: [2, 22],
47: [2, 22],
48: [2, 22],
51: [2, 22],
55: [2, 22],
60: [2, 22],
},
{
23: [2, 99],
33: [2, 99],
54: [2, 99],
68: [2, 99],
72: [2, 99],
75: [2, 99],
},
{ 73: [1, 108] },
{
20: 74,
63: 125,
64: 75,
65: [1, 43],
72: [1, 35],
78: 26,
79: 27,
80: [1, 28],
81: [1, 29],
82: [1, 30],
83: [1, 31],
84: [1, 32],
85: [1, 34],
86: 33,
},
{
5: [2, 23],
14: [2, 23],
15: [2, 23],
19: [2, 23],
29: [2, 23],
34: [2, 23],
39: [2, 23],
44: [2, 23],
47: [2, 23],
48: [2, 23],
51: [2, 23],
55: [2, 23],
60: [2, 23],
},
{ 47: [2, 19] },
{ 47: [2, 77] },
{
20: 74,
33: [2, 72],
41: 126,
63: 127,
64: 75,
65: [1, 43],
69: 128,
70: 76,
71: 77,
72: [1, 78],
75: [2, 72],
78: 26,
79: 27,
80: [1, 28],
81: [1, 29],
82: [1, 30],
83: [1, 31],
84: [1, 32],
85: [1, 34],
86: 33,
},
{
5: [2, 24],
14: [2, 24],
15: [2, 24],
19: [2, 24],
29: [2, 24],
34: [2, 24],
39: [2, 24],
44: [2, 24],
47: [2, 24],
48: [2, 24],
51: [2, 24],
55: [2, 24],
60: [2, 24],
},
{ 68: [1, 129] },
{
65: [2, 95],
68: [2, 95],
72: [2, 95],
80: [2, 95],
81: [2, 95],
82: [2, 95],
83: [2, 95],
84: [2, 95],
85: [2, 95],
},
{ 68: [2, 97] },
{
5: [2, 21],
14: [2, 21],
15: [2, 21],
19: [2, 21],
29: [2, 21],
34: [2, 21],
39: [2, 21],
44: [2, 21],
47: [2, 21],
48: [2, 21],
51: [2, 21],
55: [2, 21],
60: [2, 21],
},
{ 33: [1, 130] },
{ 33: [2, 63] },
{ 72: [1, 132], 76: 131 },
{ 33: [1, 133] },
{ 33: [2, 69] },
{ 15: [2, 12], 18: [2, 12] },
{
14: [2, 26],
15: [2, 26],
19: [2, 26],
29: [2, 26],
34: [2, 26],
47: [2, 26],
48: [2, 26],
51: [2, 26],
55: [2, 26],
60: [2, 26],
},
{
23: [2, 31],
33: [2, 31],
54: [2, 31],
68: [2, 31],
72: [2, 31],
75: [2, 31],
},
{ 33: [2, 74], 42: 134, 74: 135, 75: [1, 120] },
{
33: [2, 71],
65: [2, 71],
72: [2, 71],
75: [2, 71],
80: [2, 71],
81: [2, 71],
82: [2, 71],
83: [2, 71],
84: [2, 71],
85: [2, 71],
},
{ 33: [2, 73], 75: [2, 73] },
{
23: [2, 29],
33: [2, 29],
54: [2, 29],
65: [2, 29],
68: [2, 29],
72: [2, 29],
75: [2, 29],
80: [2, 29],
81: [2, 29],
82: [2, 29],
83: [2, 29],
84: [2, 29],
85: [2, 29],
},
{
14: [2, 15],
15: [2, 15],
19: [2, 15],
29: [2, 15],
34: [2, 15],
39: [2, 15],
44: [2, 15],
47: [2, 15],
48: [2, 15],
51: [2, 15],
55: [2, 15],
60: [2, 15],
},
{ 72: [1, 137], 77: [1, 136] },
{ 72: [2, 100], 77: [2, 100] },
{
14: [2, 16],
15: [2, 16],
19: [2, 16],
29: [2, 16],
34: [2, 16],
44: [2, 16],
47: [2, 16],
48: [2, 16],
51: [2, 16],
55: [2, 16],
60: [2, 16],
},
{ 33: [1, 138] },
{ 33: [2, 75] },
{ 33: [2, 32] },
{ 72: [2, 101], 77: [2, 101] },
{
14: [2, 17],
15: [2, 17],
19: [2, 17],
29: [2, 17],
34: [2, 17],
39: [2, 17],
44: [2, 17],
47: [2, 17],
48: [2, 17],
51: [2, 17],
55: [2, 17],
60: [2, 17],
},
],
defaultActions: {
4: [2, 1],
54: [2, 55],
56: [2, 20],
60: [2, 57],
73: [2, 81],
82: [2, 85],
86: [2, 18],
90: [2, 89],
101: [2, 53],
104: [2, 93],
110: [2, 19],
111: [2, 77],
116: [2, 97],
119: [2, 63],
122: [2, 69],
135: [2, 75],
136: [2, 32],
},
parseError: function (a, b) {
throw new Error(a);
},
parse: function (a) {
function b() {
var a;
return (
(a = c.lexer.lex() || 1),
'number' != typeof a &&
(a = c.symbols_[a] || a),
a
);
}
var c = this,
d = [0],
e = [null],
f = [],
g = this.table,
h = '',
i = 0,
j = 0,
k = 0;
this.lexer.setInput(a),
(this.lexer.yy = this.yy),
(this.yy.lexer = this.lexer),
(this.yy.parser = this),
'undefined' == typeof this.lexer.yylloc &&
(this.lexer.yylloc = {});
var l = this.lexer.yylloc;
f.push(l);
var m =
this.lexer.options && this.lexer.options.ranges;
'function' == typeof this.yy.parseError &&
(this.parseError = this.yy.parseError);
for (var n, o, p, q, r, s, t, u, v, w = {}; ; ) {
if (
((p = d[d.length - 1]),
this.defaultActions[p]
? (q = this.defaultActions[p])
: ((null !== n &&
'undefined' != typeof n) ||
(n = b()),
(q = g[p] && g[p][n])),
'undefined' == typeof q ||
!q.length ||
!q[0])
) {
var x = '';
if (!k) {
v = [];
for (s in g[p])
this.terminals_[s] &&
s > 2 &&
v.push(
"'" +
this.terminals_[s] +
"'"
);
(x = this.lexer.showPosition
? 'Parse error on line ' +
(i + 1) +
':\n' +
this.lexer.showPosition() +
'\nExpecting ' +
v.join(', ') +
", got '" +
(this.terminals_[n] || n) +
"'"
: 'Parse error on line ' +
(i + 1) +
': Unexpected ' +
(1 == n
? 'end of input'
: "'" +
(this.terminals_[n] || n) +
"'")),
this.parseError(x, {
text: this.lexer.match,
token: this.terminals_[n] || n,
line: this.lexer.yylineno,
loc: l,
expected: v,
});
}
}
if (q[0] instanceof Array && q.length > 1)
throw new Error(
'Parse Error: multiple actions possible at state: ' +
p +
', token: ' +
n
);
switch (q[0]) {
case 1:
d.push(n),
e.push(this.lexer.yytext),
f.push(this.lexer.yylloc),
d.push(q[1]),
(n = null),
o
? ((n = o), (o = null))
: ((j = this.lexer.yyleng),
(h = this.lexer.yytext),
(i = this.lexer.yylineno),
(l = this.lexer.yylloc),
k > 0 && k--);
break;
case 2:
if (
((t = this.productions_[q[1]][1]),
(w.$ = e[e.length - t]),
(w._$ = {
first_line:
f[f.length - (t || 1)]
.first_line,
last_line:
f[f.length - 1].last_line,
first_column:
f[f.length - (t || 1)]
.first_column,
last_column:
f[f.length - 1].last_column,
}),
m &&
(w._$.range = [
f[f.length - (t || 1)]
.range[0],
f[f.length - 1].range[1],
]),
(r = this.performAction.call(
w,
h,
j,
i,
this.yy,
q[1],
e,
f
)),
'undefined' != typeof r)
)
return r;
t &&
((d = d.slice(0, -1 * t * 2)),
(e = e.slice(0, -1 * t)),
(f = f.slice(0, -1 * t))),
d.push(this.productions_[q[1]][0]),
e.push(w.$),
f.push(w._$),
(u =
g[d[d.length - 2]][
d[d.length - 1]
]),
d.push(u);
break;
case 3:
return !0;
}
}
return !0;
},
},
c = (function () {
var a = {
EOF: 1,
parseError: function (a, b) {
if (!this.yy.parser) throw new Error(a);
this.yy.parser.parseError(a, b);
},
setInput: function (a) {
return (
(this._input = a),
(this._more = this._less = this.done = !1),
(this.yylineno = this.yyleng = 0),
(this.yytext =
this.matched =
this.match =
''),
(this.conditionStack = ['INITIAL']),
(this.yylloc = {
first_line: 1,
first_column: 0,
last_line: 1,
last_column: 0,
}),
this.options.ranges &&
(this.yylloc.range = [0, 0]),
(this.offset = 0),
this
);
},
input: function () {
var a = this._input[0];
(this.yytext += a),
this.yyleng++,
this.offset++,
(this.match += a),
(this.matched += a);
var b = a.match(/(?:\r\n?|\n).*/g);
return (
b
? (this.yylineno++,
this.yylloc.last_line++)
: this.yylloc.last_column++,
this.options.ranges &&
this.yylloc.range[1]++,
(this._input = this._input.slice(1)),
a
);
},
unput: function (a) {
var b = a.length,
c = a.split(/(?:\r\n?|\n)/g);
(this._input = a + this._input),
(this.yytext = this.yytext.substr(
0,
this.yytext.length - b - 1
)),
(this.offset -= b);
var d = this.match.split(/(?:\r\n?|\n)/g);
(this.match = this.match.substr(
0,
this.match.length - 1
)),
(this.matched = this.matched.substr(
0,
this.matched.length - 1
)),
c.length - 1 &&
(this.yylineno -= c.length - 1);
var e = this.yylloc.range;
return (
(this.yylloc = {
first_line: this.yylloc.first_line,
last_line: this.yylineno + 1,
first_column: this.yylloc.first_column,
last_column: c
? (c.length === d.length
? this.yylloc.first_column
: 0) +
d[d.length - c.length].length -
c[0].length
: this.yylloc.first_column - b,
}),
this.options.ranges &&
(this.yylloc.range = [
e[0],
e[0] + this.yyleng - b,
]),
this
);
},
more: function () {
return (this._more = !0), this;
},
less: function (a) {
this.unput(this.match.slice(a));
},
pastInput: function () {
var a = this.matched.substr(
0,
this.matched.length - this.match.length
);
return (
(a.length > 20 ? '...' : '') +
a.substr(-20).replace(/\n/g, '')
);
},
upcomingInput: function () {
var a = this.match;
return (
a.length < 20 &&
(a += this._input.substr(
0,
20 - a.length
)),
(
a.substr(0, 20) +
(a.length > 20 ? '...' : '')
).replace(/\n/g, '')
);
},
showPosition: function () {
var a = this.pastInput(),
b = new Array(a.length + 1).join('-');
return (
a + this.upcomingInput() + '\n' + b + '^'
);
},
next: function () {
if (this.done) return this.EOF;
this._input || (this.done = !0);
var a, b, c, d, e;
this._more ||
((this.yytext = ''), (this.match = ''));
for (
var f = this._currentRules(), g = 0;
g < f.length &&
((c = this._input.match(this.rules[f[g]])),
!c ||
(b && !(c[0].length > b[0].length)) ||
((b = c), (d = g), this.options.flex));
g++
);
return b
? ((e = b[0].match(/(?:\r\n?|\n).*/g)),
e && (this.yylineno += e.length),
(this.yylloc = {
first_line: this.yylloc.last_line,
last_line: this.yylineno + 1,
first_column: this.yylloc.last_column,
last_column: e
? e[e.length - 1].length -
e[e.length - 1].match(
/\r?\n?/
)[0].length
: this.yylloc.last_column +
b[0].length,
}),
(this.yytext += b[0]),
(this.match += b[0]),
(this.matches = b),
(this.yyleng = this.yytext.length),
this.options.ranges &&
(this.yylloc.range = [
this.offset,
(this.offset += this.yyleng),
]),
(this._more = !1),
(this._input = this._input.slice(
b[0].length
)),
(this.matched += b[0]),
(a = this.performAction.call(
this,
this.yy,
this,
f[d],
this.conditionStack[
this.conditionStack.length - 1
]
)),
this.done &&
this._input &&
(this.done = !1),
a ? a : void 0)
: '' === this._input
? this.EOF
: this.parseError(
'Lexical error on line ' +
(this.yylineno + 1) +
'. Unrecognized text.\n' +
this.showPosition(),
{
text: '',
token: null,
line: this.yylineno,
}
);
},
lex: function () {
var a = this.next();
return 'undefined' != typeof a ? a : this.lex();
},
begin: function (a) {
this.conditionStack.push(a);
},
popState: function () {
return this.conditionStack.pop();
},
_currentRules: function () {
return this.conditions[
this.conditionStack[
this.conditionStack.length - 1
]
].rules;
},
topState: function () {
return this.conditionStack[
this.conditionStack.length - 2
];
},
pushState: function (a) {
this.begin(a);
},
};
return (
(a.options = {}),
(a.performAction = function (a, b, c, d) {
function e(a, c) {
return (b.yytext = b.yytext.substring(
a,
b.yyleng - c + a
));
}
switch (c) {
case 0:
if (
('\\\\' === b.yytext.slice(-2)
? (e(0, 1), this.begin('mu'))
: '\\' === b.yytext.slice(-1)
? (e(0, 1), this.begin('emu'))
: this.begin('mu'),
b.yytext)
)
return 15;
break;
case 1:
return 15;
case 2:
return this.popState(), 15;
case 3:
return this.begin('raw'), 15;
case 4:
return (
this.popState(),
'raw' ===
this.conditionStack[
this.conditionStack.length - 1
]
? 15
: (e(5, 9), 'END_RAW_BLOCK')
);
case 5:
return 15;
case 6:
return this.popState(), 14;
case 7:
return 65;
case 8:
return 68;
case 9:
return 19;
case 10:
return (
this.popState(),
this.begin('raw'),
23
);
case 11:
return 55;
case 12:
return 60;
case 13:
return 29;
case 14:
return 47;
case 15:
return this.popState(), 44;
case 16:
return this.popState(), 44;
case 17:
return 34;
case 18:
return 39;
case 19:
return 51;
case 20:
return 48;
case 21:
this.unput(b.yytext),
this.popState(),
this.begin('com');
break;
case 22:
return this.popState(), 14;
case 23:
return 48;
case 24:
return 73;
case 25:
return 72;
case 26:
return 72;
case 27:
return 87;
case 28:
break;
case 29:
return this.popState(), 54;
case 30:
return this.popState(), 33;
case 31:
return (
(b.yytext = e(1, 2).replace(
/\\"/g,
'"'
)),
80
);
case 32:
return (
(b.yytext = e(1, 2).replace(
/\\'/g,
"'"
)),
80
);
case 33:
return 85;
case 34:
return 82;
case 35:
return 82;
case 36:
return 83;
case 37:
return 84;
case 38:
return 81;
case 39:
return 75;
case 40:
return 77;
case 41:
return 72;
case 42:
return (
(b.yytext = b.yytext.replace(
/\\([\\\]])/g,
'$1'
)),
72
);
case 43:
return 'INVALID';
case 44:
return 5;
}
}),
(a.rules = [
/^(?:[^\x00]*?(?=(\{\{)))/,
/^(?:[^\x00]+)/,
/^(?:[^\x00]{2,}?(?=(\{\{|\\\{\{|\\\\\{\{|$)))/,
/^(?:\{\{\{\{(?=[^/]))/,
/^(?:\{\{\{\{\/[^\s!"#%-,\.\/;->@\[-\^`\{-~]+(?=[=}\s\/.])\}\}\}\})/,
/^(?:[^\x00]+?(?=(\{\{\{\{)))/,
/^(?:[\s\S]*?--(~)?\}\})/,
/^(?:\()/,
/^(?:\))/,
/^(?:\{\{\{\{)/,
/^(?:\}\}\}\})/,
/^(?:\{\{(~)?>)/,
/^(?:\{\{(~)?#>)/,
/^(?:\{\{(~)?#\*?)/,
/^(?:\{\{(~)?\/)/,
/^(?:\{\{(~)?\^\s*(~)?\}\})/,
/^(?:\{\{(~)?\s*else\s*(~)?\}\})/,
/^(?:\{\{(~)?\^)/,
/^(?:\{\{(~)?\s*else\b)/,
/^(?:\{\{(~)?\{)/,
/^(?:\{\{(~)?&)/,
/^(?:\{\{(~)?!--)/,
/^(?:\{\{(~)?![\s\S]*?\}\})/,
/^(?:\{\{(~)?\*?)/,
/^(?:=)/,
/^(?:\.\.)/,
/^(?:\.(?=([=~}\s\/.)|])))/,
/^(?:[\/.])/,
/^(?:\s+)/,
/^(?:\}(~)?\}\})/,
/^(?:(~)?\}\})/,
/^(?:"(\\["]|[^"])*")/,
/^(?:'(\\[']|[^'])*')/,
/^(?:@)/,
/^(?:true(?=([~}\s)])))/,
/^(?:false(?=([~}\s)])))/,
/^(?:undefined(?=([~}\s)])))/,
/^(?:null(?=([~}\s)])))/,
/^(?:-?[0-9]+(?:\.[0-9]+)?(?=([~}\s)])))/,
/^(?:as\s+\|)/,
/^(?:\|)/,
/^(?:([^\s!"#%-,\.\/;->@\[-\^`\{-~]+(?=([=~}\s\/.)|]))))/,
/^(?:\[(\\\]|[^\]])*\])/,
/^(?:.)/,
/^(?:$)/,
]),
(a.conditions = {
mu: {
rules: [
7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17,
18, 19, 20, 21, 22, 23, 24, 25, 26, 27,
28, 29, 30, 31, 32, 33, 34, 35, 36, 37,
38, 39, 40, 41, 42, 43, 44,
],
inclusive: !1,
},
emu: { rules: [2], inclusive: !1 },
com: { rules: [6], inclusive: !1 },
raw: { rules: [3, 4, 5], inclusive: !1 },
INITIAL: { rules: [0, 1, 44], inclusive: !0 },
}),
a
);
})();
return (
(b.lexer = c), (a.prototype = b), (b.Parser = a), new a()
);
})();
(b['default'] = c), (a.exports = b['default']);
},
function (a, b, c) {
'use strict';
function d() {
var a =
arguments.length <= 0 || void 0 === arguments[0]
? {}
: arguments[0];
this.options = a;
}
function e(a, b, c) {
void 0 === b && (b = a.length);
var d = a[b - 1],
e = a[b - 2];
return d
? 'ContentStatement' === d.type
? (e || !c ? /\r?\n\s*?$/ : /(^|\r?\n)\s*?$/).test(
d.original
)
: void 0
: c;
}
function f(a, b, c) {
void 0 === b && (b = -1);
var d = a[b + 1],
e = a[b + 2];
return d
? 'ContentStatement' === d.type
? (e || !c ? /^\s*?\r?\n/ : /^\s*?(\r?\n|$)/).test(
d.original
)
: void 0
: c;
}
function g(a, b, c) {
var d = a[null == b ? 0 : b + 1];
if (
d &&
'ContentStatement' === d.type &&
(c || !d.rightStripped)
) {
var e = d.value;
(d.value = d.value.replace(
c ? /^\s+/ : /^[ \t]*\r?\n?/,
''
)),
(d.rightStripped = d.value !== e);
}
}
function h(a, b, c) {
var d = a[null == b ? a.length - 1 : b - 1];
if (
d &&
'ContentStatement' === d.type &&
(c || !d.leftStripped)
) {
var e = d.value;
return (
(d.value = d.value.replace(c ? /\s+$/ : /[ \t]+$/, '')),
(d.leftStripped = d.value !== e),
d.leftStripped
);
}
}
var i = c(1)['default'];
b.__esModule = !0;
var j = c(88),
k = i(j);
(d.prototype = new k['default']()),
(d.prototype.Program = function (a) {
var b = !this.options.ignoreStandalone,
c = !this.isRootSeen;
this.isRootSeen = !0;
for (var d = a.body, i = 0, j = d.length; i < j; i++) {
var k = d[i],
l = this.accept(k);
if (l) {
var m = e(d, i, c),
n = f(d, i, c),
o = l.openStandalone && m,
p = l.closeStandalone && n,
q = l.inlineStandalone && m && n;
l.close && g(d, i, !0),
l.open && h(d, i, !0),
b &&
q &&
(g(d, i),
h(d, i) &&
'PartialStatement' === k.type &&
(k.indent = /([ \t]+$)/.exec(
d[i - 1].original
)[1])),
b &&
o &&
(g((k.program || k.inverse).body), h(d, i)),
b &&
p &&
(g(d, i), h((k.inverse || k.program).body));
}
}
return a;
}),
(d.prototype.BlockStatement =
d.prototype.DecoratorBlock =
d.prototype.PartialBlockStatement =
function (a) {
this.accept(a.program), this.accept(a.inverse);
var b = a.program || a.inverse,
c = a.program && a.inverse,
d = c,
i = c;
if (c && c.chained)
for (d = c.body[0].program; i.chained; )
i = i.body[i.body.length - 1].program;
var j = {
open: a.openStrip.open,
close: a.closeStrip.close,
openStandalone: f(b.body),
closeStandalone: e((d || b).body),
};
if ((a.openStrip.close && g(b.body, null, !0), c)) {
var k = a.inverseStrip;
k.open && h(b.body, null, !0),
k.close && g(d.body, null, !0),
a.closeStrip.open && h(i.body, null, !0),
!this.options.ignoreStandalone &&
e(b.body) &&
f(d.body) &&
(h(b.body), g(d.body));
} else a.closeStrip.open && h(b.body, null, !0);
return j;
}),
(d.prototype.Decorator = d.prototype.MustacheStatement =
function (a) {
return a.strip;
}),
(d.prototype.PartialStatement = d.prototype.CommentStatement =
function (a) {
var b = a.strip || {};
return {
inlineStandalone: !0,
open: b.open,
close: b.close,
};
}),
(b['default'] = d),
(a.exports = b['default']);
},
function (a, b, c) {
'use strict';
function d() {
this.parents = [];
}
function e(a) {
this.acceptRequired(a, 'path'),
this.acceptArray(a.params),
this.acceptKey(a, 'hash');
}
function f(a) {
e.call(this, a),
this.acceptKey(a, 'program'),
this.acceptKey(a, 'inverse');
}
function g(a) {
this.acceptRequired(a, 'name'),
this.acceptArray(a.params),
this.acceptKey(a, 'hash');
}
var h = c(1)['default'];
b.__esModule = !0;
var i = c(6),
j = h(i);
(d.prototype = {
constructor: d,
mutating: !1,
acceptKey: function (a, b) {
var c = this.accept(a[b]);
if (this.mutating) {
if (c && !d.prototype[c.type])
throw new j['default'](
'Unexpected node type "' +
c.type +
'" found when accepting ' +
b +
' on ' +
a.type
);
a[b] = c;
}
},
acceptRequired: function (a, b) {
if ((this.acceptKey(a, b), !a[b]))
throw new j['default'](a.type + ' requires ' + b);
},
acceptArray: function (a) {
for (var b = 0, c = a.length; b < c; b++)
this.acceptKey(a, b),
a[b] || (a.splice(b, 1), b--, c--);
},
accept: function (a) {
if (a) {
if (!this[a.type])
throw new j['default'](
'Unknown type: ' + a.type,
a
);
this.current && this.parents.unshift(this.current),
(this.current = a);
var b = this[a.type](a);
return (
(this.current = this.parents.shift()),
!this.mutating || b ? b : b !== !1 ? a : void 0
);
}
},
Program: function (a) {
this.acceptArray(a.body);
},
MustacheStatement: e,
Decorator: e,
BlockStatement: f,
DecoratorBlock: f,
PartialStatement: g,
PartialBlockStatement: function (a) {
g.call(this, a), this.acceptKey(a, 'program');
},
ContentStatement: function () {},
CommentStatement: function () {},
SubExpression: e,
PathExpression: function () {},
StringLiteral: function () {},
NumberLiteral: function () {},
BooleanLiteral: function () {},
UndefinedLiteral: function () {},
NullLiteral: function () {},
Hash: function (a) {
this.acceptArray(a.pairs);
},
HashPair: function (a) {
this.acceptRequired(a, 'value');
},
}),
(b['default'] = d),
(a.exports = b['default']);
},
function (a, b, c) {
'use strict';
function d(a, b) {
if (
((b = b.path ? b.path.original : b), a.path.original !== b)
) {
var c = { loc: a.path.loc };
throw new q['default'](
a.path.original + " doesn't match " + b,
c
);
}
}
function e(a, b) {
(this.source = a),
(this.start = {
line: b.first_line,
column: b.first_column,
}),
(this.end = { line: b.last_line, column: b.last_column });
}
function f(a) {
return /^\[.*\]$/.test(a) ? a.substring(1, a.length - 1) : a;
}
function g(a, b) {
return {
open: '~' === a.charAt(2),
close: '~' === b.charAt(b.length - 3),
};
}
function h(a) {
return a.replace(/^\{\{~?!-?-?/, '').replace(/-?-?~?\}\}$/, '');
}
function i(a, b, c) {
c = this.locInfo(c);
for (
var d = a ? '@' : '', e = [], f = 0, g = 0, h = b.length;
g < h;
g++
) {
var i = b[g].part,
j = b[g].original !== i;
if (
((d += (b[g].separator || '') + i),
j || ('..' !== i && '.' !== i && 'this' !== i))
)
e.push(i);
else {
if (e.length > 0)
throw new q['default']('Invalid path: ' + d, {
loc: c,
});
'..' === i && f++;
}
}
return {
type: 'PathExpression',
data: a,
depth: f,
parts: e,
original: d,
loc: c,
};
}
function j(a, b, c, d, e, f) {
var g = d.charAt(3) || d.charAt(2),
h = '{' !== g && '&' !== g,
i = /\*/.test(d);
return {
type: i ? 'Decorator' : 'MustacheStatement',
path: a,
params: b,
hash: c,
escaped: h,
strip: e,
loc: this.locInfo(f),
};
}
function k(a, b, c, e) {
d(a, c), (e = this.locInfo(e));
var f = { type: 'Program', body: b, strip: {}, loc: e };
return {
type: 'BlockStatement',
path: a.path,
params: a.params,
hash: a.hash,
program: f,
openStrip: {},
inverseStrip: {},
closeStrip: {},
loc: e,
};
}
function l(a, b, c, e, f, g) {
e && e.path && d(a, e);
var h = /\*/.test(a.open);
b.blockParams = a.blockParams;
var i = void 0,
j = void 0;
if (c) {
if (h)
throw new q['default'](
'Unexpected inverse block on decorator',
c
);
c.chain && (c.program.body[0].closeStrip = e.strip),
(j = c.strip),
(i = c.program);
}
return (
f && ((f = i), (i = b), (b = f)),
{
type: h ? 'DecoratorBlock' : 'BlockStatement',
path: a.path,
params: a.params,
hash: a.hash,
program: b,
inverse: i,
openStrip: a.strip,
inverseStrip: j,
closeStrip: e && e.strip,
loc: this.locInfo(g),
}
);
}
function m(a, b) {
if (!b && a.length) {
var c = a[0].loc,
d = a[a.length - 1].loc;
c &&
d &&
(b = {
source: c.source,
start: {
line: c.start.line,
column: c.start.column,
},
end: { line: d.end.line, column: d.end.column },
});
}
return { type: 'Program', body: a, strip: {}, loc: b };
}
function n(a, b, c, e) {
return (
d(a, c),
{
type: 'PartialBlockStatement',
name: a.path,
params: a.params,
hash: a.hash,
program: b,
openStrip: a.strip,
closeStrip: c && c.strip,
loc: this.locInfo(e),
}
);
}
var o = c(1)['default'];
(b.__esModule = !0),
(b.SourceLocation = e),
(b.id = f),
(b.stripFlags = g),
(b.stripComment = h),
(b.preparePath = i),
(b.prepareMustache = j),
(b.prepareRawBlock = k),
(b.prepareBlock = l),
(b.prepareProgram = m),
(b.preparePartialBlock = n);
var p = c(6),
q = o(p);
},
function (a, b, c) {
'use strict';
function d() {}
function e(a, b, c) {
if (null == a || ('string' != typeof a && 'Program' !== a.type))
throw new l['default'](
'You must pass a string or Handlebars AST to Handlebars.precompile. You passed ' +
a
);
(b = b || {}),
'data' in b || (b.data = !0),
b.compat && (b.useDepths = !0);
var d = c.parse(a, b),
e = new c.Compiler().compile(d, b);
return new c.JavaScriptCompiler().compile(e, b);
}
function f(a, b, c) {
function d() {
var d = c.parse(a, b),
e = new c.Compiler().compile(d, b),
f = new c.JavaScriptCompiler().compile(
e,
b,
void 0,
!0
);
return c.template(f);
}
function e(a, b) {
return f || (f = d()), f.call(this, a, b);
}
if (
(void 0 === b && (b = {}),
null == a || ('string' != typeof a && 'Program' !== a.type))
)
throw new l['default'](
'You must pass a string or Handlebars AST to Handlebars.compile. You passed ' +
a
);
(b = m.extend({}, b)),
'data' in b || (b.data = !0),
b.compat && (b.useDepths = !0);
var f = void 0;
return (
(e._setup = function (a) {
return f || (f = d()), f._setup(a);
}),
(e._child = function (a, b, c, e) {
return f || (f = d()), f._child(a, b, c, e);
}),
e
);
}
function g(a, b) {
if (a === b) return !0;
if (m.isArray(a) && m.isArray(b) && a.length === b.length) {
for (var c = 0; c < a.length; c++)
if (!g(a[c], b[c])) return !1;
return !0;
}
}
function h(a) {
if (!a.path.parts) {
var b = a.path;
a.path = {
type: 'PathExpression',
data: !1,
depth: 0,
parts: [b.original + ''],
original: b.original + '',
loc: b.loc,
};
}
}
var i = c(74)['default'],
j = c(1)['default'];
(b.__esModule = !0),
(b.Compiler = d),
(b.precompile = e),
(b.compile = f);
var k = c(6),
l = j(k),
m = c(5),
n = c(84),
o = j(n),
p = [].slice;
d.prototype = {
compiler: d,
equals: function (a) {
var b = this.opcodes.length;
if (a.opcodes.length !== b) return !1;
for (var c = 0; c < b; c++) {
var d = this.opcodes[c],
e = a.opcodes[c];
if (d.opcode !== e.opcode || !g(d.args, e.args))
return !1;
}
b = this.children.length;
for (var c = 0; c < b; c++)
if (!this.children[c].equals(a.children[c])) return !1;
return !0;
},
guid: 0,
compile: function (a, b) {
return (
(this.sourceNode = []),
(this.opcodes = []),
(this.children = []),
(this.options = b),
(this.stringParams = b.stringParams),
(this.trackIds = b.trackIds),
(b.blockParams = b.blockParams || []),
(b.knownHelpers = m.extend(
i(null),
{
helperMissing: !0,
blockHelperMissing: !0,
each: !0,
if: !0,
unless: !0,
with: !0,
log: !0,
lookup: !0,
},
b.knownHelpers
)),
this.accept(a)
);
},
compileProgram: function (a) {
var b = new this.compiler(),
c = b.compile(a, this.options),
d = this.guid++;
return (
(this.usePartial = this.usePartial || c.usePartial),
(this.children[d] = c),
(this.useDepths = this.useDepths || c.useDepths),
d
);
},
accept: function (a) {
if (!this[a.type])
throw new l['default']('Unknown type: ' + a.type, a);
this.sourceNode.unshift(a);
var b = this[a.type](a);
return this.sourceNode.shift(), b;
},
Program: function (a) {
this.options.blockParams.unshift(a.blockParams);
for (var b = a.body, c = b.length, d = 0; d < c; d++)
this.accept(b[d]);
return (
this.options.blockParams.shift(),
(this.isSimple = 1 === c),
(this.blockParams = a.blockParams
? a.blockParams.length
: 0),
this
);
},
BlockStatement: function (a) {
h(a);
var b = a.program,
c = a.inverse;
(b = b && this.compileProgram(b)),
(c = c && this.compileProgram(c));
var d = this.classifySexpr(a);
'helper' === d
? this.helperSexpr(a, b, c)
: 'simple' === d
? (this.simpleSexpr(a),
this.opcode('pushProgram', b),
this.opcode('pushProgram', c),
this.opcode('emptyHash'),
this.opcode('blockValue', a.path.original))
: (this.ambiguousSexpr(a, b, c),
this.opcode('pushProgram', b),
this.opcode('pushProgram', c),
this.opcode('emptyHash'),
this.opcode('ambiguousBlockValue')),
this.opcode('append');
},
DecoratorBlock: function (a) {
var b = a.program && this.compileProgram(a.program),
c = this.setupFullMustacheParams(a, b, void 0),
d = a.path;
(this.useDecorators = !0),
this.opcode('registerDecorator', c.length, d.original);
},
PartialStatement: function (a) {
this.usePartial = !0;
var b = a.program;
b && (b = this.compileProgram(a.program));
var c = a.params;
if (c.length > 1)
throw new l['default'](
'Unsupported number of partial arguments: ' +
c.length,
a
);
c.length ||
(this.options.explicitPartialContext
? this.opcode('pushLiteral', 'undefined')
: c.push({
type: 'PathExpression',
parts: [],
depth: 0,
}));
var d = a.name.original,
e = 'SubExpression' === a.name.type;
e && this.accept(a.name),
this.setupFullMustacheParams(a, b, void 0, !0);
var f = a.indent || '';
this.options.preventIndent &&
f &&
(this.opcode('appendContent', f), (f = '')),
this.opcode('invokePartial', e, d, f),
this.opcode('append');
},
PartialBlockStatement: function (a) {
this.PartialStatement(a);
},
MustacheStatement: function (a) {
this.SubExpression(a),
a.escaped && !this.options.noEscape
? this.opcode('appendEscaped')
: this.opcode('append');
},
Decorator: function (a) {
this.DecoratorBlock(a);
},
ContentStatement: function (a) {
a.value && this.opcode('appendContent', a.value);
},
CommentStatement: function () {},
SubExpression: function (a) {
h(a);
var b = this.classifySexpr(a);
'simple' === b
? this.simpleSexpr(a)
: 'helper' === b
? this.helperSexpr(a)
: this.ambiguousSexpr(a);
},
ambiguousSexpr: function (a, b, c) {
var d = a.path,
e = d.parts[0],
f = null != b || null != c;
this.opcode('getContext', d.depth),
this.opcode('pushProgram', b),
this.opcode('pushProgram', c),
(d.strict = !0),
this.accept(d),
this.opcode('invokeAmbiguous', e, f);
},
simpleSexpr: function (a) {
var b = a.path;
(b.strict = !0),
this.accept(b),
this.opcode('resolvePossibleLambda');
},
helperSexpr: function (a, b, c) {
var d = this.setupFullMustacheParams(a, b, c),
e = a.path,
f = e.parts[0];
if (this.options.knownHelpers[f])
this.opcode('invokeKnownHelper', d.length, f);
else {
if (this.options.knownHelpersOnly)
throw new l['default'](
'You specified knownHelpersOnly, but used the unknown helper ' +
f,
a
);
(e.strict = !0),
(e.falsy = !0),
this.accept(e),
this.opcode(
'invokeHelper',
d.length,
e.original,
o['default'].helpers.simpleId(e)
);
}
},
PathExpression: function (a) {
this.addDepth(a.depth), this.opcode('getContext', a.depth);
var b = a.parts[0],
c = o['default'].helpers.scopedId(a),
d = !a.depth && !c && this.blockParamIndex(b);
d
? this.opcode('lookupBlockParam', d, a.parts)
: b
? a.data
? ((this.options.data = !0),
this.opcode(
'lookupData',
a.depth,
a.parts,
a.strict
))
: this.opcode(
'lookupOnContext',
a.parts,
a.falsy,
a.strict,
c
)
: this.opcode('pushContext');
},
StringLiteral: function (a) {
this.opcode('pushString', a.value);
},
NumberLiteral: function (a) {
this.opcode('pushLiteral', a.value);
},
BooleanLiteral: function (a) {
this.opcode('pushLiteral', a.value);
},
UndefinedLiteral: function () {
this.opcode('pushLiteral', 'undefined');
},
NullLiteral: function () {
this.opcode('pushLiteral', 'null');
},
Hash: function (a) {
var b = a.pairs,
c = 0,
d = b.length;
for (this.opcode('pushHash'); c < d; c++)
this.pushParam(b[c].value);
for (; c--; ) this.opcode('assignToHash', b[c].key);
this.opcode('popHash');
},
opcode: function (a) {
this.opcodes.push({
opcode: a,
args: p.call(arguments, 1),
loc: this.sourceNode[0].loc,
});
},
addDepth: function (a) {
a && (this.useDepths = !0);
},
classifySexpr: function (a) {
var b = o['default'].helpers.simpleId(a.path),
c = b && !!this.blockParamIndex(a.path.parts[0]),
d = !c && o['default'].helpers.helperExpression(a),
e = !c && (d || b);
if (e && !d) {
var f = a.path.parts[0],
g = this.options;
g.knownHelpers[f]
? (d = !0)
: g.knownHelpersOnly && (e = !1);
}
return d ? 'helper' : e ? 'ambiguous' : 'simple';
},
pushParams: function (a) {
for (var b = 0, c = a.length; b < c; b++)
this.pushParam(a[b]);
},
pushParam: function (a) {
var b = null != a.value ? a.value : a.original || '';
if (this.stringParams)
b.replace &&
(b = b
.replace(/^(\.?\.\/)*/g, '')
.replace(/\//g, '.')),
a.depth && this.addDepth(a.depth),
this.opcode('getContext', a.depth || 0),
this.opcode('pushStringParam', b, a.type),
'SubExpression' === a.type && this.accept(a);
else {
if (this.trackIds) {
var c = void 0;
if (
(!a.parts ||
o['default'].helpers.scopedId(a) ||
a.depth ||
(c = this.blockParamIndex(a.parts[0])),
c)
) {
var d = a.parts.slice(1).join('.');
this.opcode('pushId', 'BlockParam', c, d);
} else
(b = a.original || b),
b.replace &&
(b = b
.replace(/^this(?:\.|$)/, '')
.replace(/^\.\//, '')
.replace(/^\.$/, '')),
this.opcode('pushId', a.type, b);
}
this.accept(a);
}
},
setupFullMustacheParams: function (a, b, c, d) {
var e = a.params;
return (
this.pushParams(e),
this.opcode('pushProgram', b),
this.opcode('pushProgram', c),
a.hash
? this.accept(a.hash)
: this.opcode('emptyHash', d),
e
);
},
blockParamIndex: function (a) {
for (
var b = 0, c = this.options.blockParams.length;
b < c;
b++
) {
var d = this.options.blockParams[b],
e = d && m.indexOf(d, a);
if (d && e >= 0) return [b, e];
}
},
};
},
function (a, b, c) {
'use strict';
function d(a) {
this.value = a;
}
function e() {}
function f(a, b, c, d, e) {
var f = b.popStack(),
g = c.length;
for (a && g--; d < g; d++) f = b.nameLookup(f, c[d], e);
return a
? [
b.aliasable('container.strict'),
'(',
f,
', ',
b.quotedString(c[d]),
', ',
JSON.stringify(b.source.currentLocation),
' )',
]
: f;
}
var g = c(60)['default'],
h = c(1)['default'];
b.__esModule = !0;
var i = c(4),
j = c(6),
k = h(j),
l = c(5),
m = c(92),
n = h(m);
(e.prototype = {
nameLookup: function (a, b) {
return this.internalNameLookup(a, b);
},
depthedLookup: function (a) {
return [
this.aliasable('container.lookup'),
'(depths, ',
JSON.stringify(a),
')',
];
},
compilerInfo: function () {
var a = i.COMPILER_REVISION,
b = i.REVISION_CHANGES[a];
return [a, b];
},
appendToBuffer: function (a, b, c) {
return (
l.isArray(a) || (a = [a]),
(a = this.source.wrap(a, b)),
this.environment.isSimple
? ['return ', a, ';']
: c
? ['buffer += ', a, ';']
: ((a.appendToBuffer = !0), a)
);
},
initializeBuffer: function () {
return this.quotedString('');
},
internalNameLookup: function (a, b) {
return (
(this.lookupPropertyFunctionIsUsed = !0),
['lookupProperty(', a, ',', JSON.stringify(b), ')']
);
},
lookupPropertyFunctionIsUsed: !1,
compile: function (a, b, c, d) {
(this.environment = a),
(this.options = b),
(this.stringParams = this.options.stringParams),
(this.trackIds = this.options.trackIds),
(this.precompile = !d),
(this.name = this.environment.name),
(this.isChild = !!c),
(this.context = c || {
decorators: [],
programs: [],
environments: [],
}),
this.preamble(),
(this.stackSlot = 0),
(this.stackVars = []),
(this.aliases = {}),
(this.registers = { list: [] }),
(this.hashes = []),
(this.compileStack = []),
(this.inlineStack = []),
(this.blockParams = []),
this.compileChildren(a, b),
(this.useDepths =
this.useDepths ||
a.useDepths ||
a.useDecorators ||
this.options.compat),
(this.useBlockParams =
this.useBlockParams || a.useBlockParams);
var e = a.opcodes,
f = void 0,
g = void 0,
h = void 0,
i = void 0;
for (h = 0, i = e.length; h < i; h++)
(f = e[h]),
(this.source.currentLocation = f.loc),
(g = g || f.loc),
this[f.opcode].apply(this, f.args);
if (
((this.source.currentLocation = g),
this.pushSource(''),
this.stackSlot ||
this.inlineStack.length ||
this.compileStack.length)
)
throw new k['default'](
'Compile completed with content left on stack'
);
this.decorators.isEmpty()
? (this.decorators = void 0)
: ((this.useDecorators = !0),
this.decorators.prepend([
'var decorators = container.decorators, ',
this.lookupPropertyFunctionVarDeclaration(),
';\n',
]),
this.decorators.push('return fn;'),
d
? (this.decorators = Function.apply(this, [
'fn',
'props',
'container',
'depth0',
'data',
'blockParams',
'depths',
this.decorators.merge(),
]))
: (this.decorators.prepend(
'function(fn, props, container, depth0, data, blockParams, depths) {\n'
),
this.decorators.push('}\n'),
(this.decorators = this.decorators.merge())));
var j = this.createFunctionContext(d);
if (this.isChild) return j;
var l = { compiler: this.compilerInfo(), main: j };
this.decorators &&
((l.main_d = this.decorators), (l.useDecorators = !0));
var m = this.context,
n = m.programs,
o = m.decorators;
for (h = 0, i = n.length; h < i; h++)
n[h] &&
((l[h] = n[h]),
o[h] &&
((l[h + '_d'] = o[h]), (l.useDecorators = !0)));
return (
this.environment.usePartial && (l.usePartial = !0),
this.options.data && (l.useData = !0),
this.useDepths && (l.useDepths = !0),
this.useBlockParams && (l.useBlockParams = !0),
this.options.compat && (l.compat = !0),
d
? (l.compilerOptions = this.options)
: ((l.compiler = JSON.stringify(l.compiler)),
(this.source.currentLocation = {
start: { line: 1, column: 0 },
}),
(l = this.objectLiteral(l)),
b.srcName
? ((l = l.toStringWithSourceMap({
file: b.destName,
})),
(l.map = l.map && l.map.toString()))
: (l = l.toString())),
l
);
},
preamble: function () {
(this.lastContext = 0),
(this.source = new n['default'](this.options.srcName)),
(this.decorators = new n['default'](
this.options.srcName
));
},
createFunctionContext: function (a) {
var b = this,
c = '',
d = this.stackVars.concat(this.registers.list);
d.length > 0 && (c += ', ' + d.join(', '));
var e = 0;
g(this.aliases).forEach(function (a) {
var d = b.aliases[a];
d.children &&
d.referenceCount > 1 &&
((c += ', alias' + ++e + '=' + a),
(d.children[0] = 'alias' + e));
}),
this.lookupPropertyFunctionIsUsed &&
(c +=
', ' +
this.lookupPropertyFunctionVarDeclaration());
var f = [
'container',
'depth0',
'helpers',
'partials',
'data',
];
(this.useBlockParams || this.useDepths) &&
f.push('blockParams'),
this.useDepths && f.push('depths');
var h = this.mergeSource(c);
return a
? (f.push(h), Function.apply(this, f))
: this.source.wrap([
'function(',
f.join(','),
') {\n ',
h,
'}',
]);
},
mergeSource: function (a) {
var b = this.environment.isSimple,
c = !this.forceBuffer,
d = void 0,
e = void 0,
f = void 0,
g = void 0;
return (
this.source.each(function (a) {
a.appendToBuffer
? (f ? a.prepend(' + ') : (f = a), (g = a))
: (f &&
(e ? f.prepend('buffer += ') : (d = !0),
g.add(';'),
(f = g = void 0)),
(e = !0),
b || (c = !1));
}),
c
? f
? (f.prepend('return '), g.add(';'))
: e || this.source.push('return "";')
: ((a +=
', buffer = ' +
(d ? '' : this.initializeBuffer())),
f
? (f.prepend('return buffer + '), g.add(';'))
: this.source.push('return buffer;')),
a &&
this.source.prepend(
'var ' + a.substring(2) + (d ? '' : ';\n')
),
this.source.merge()
);
},
lookupPropertyFunctionVarDeclaration: function () {
return '\n lookupProperty = container.lookupProperty || function(parent, propertyName) {\n if (Object.prototype.hasOwnProperty.call(parent, propertyName)) {\n return parent[propertyName];\n }\n return undefined\n }\n '.trim();
},
blockValue: function (a) {
var b = this.aliasable(
'container.hooks.blockHelperMissing'
),
c = [this.contextName(0)];
this.setupHelperArgs(a, 0, c);
var d = this.popStack();
c.splice(1, 0, d),
this.push(this.source.functionCall(b, 'call', c));
},
ambiguousBlockValue: function () {
var a = this.aliasable(
'container.hooks.blockHelperMissing'
),
b = [this.contextName(0)];
this.setupHelperArgs('', 0, b, !0), this.flushInline();
var c = this.topStack();
b.splice(1, 0, c),
this.pushSource([
'if (!',
this.lastHelper,
') { ',
c,
' = ',
this.source.functionCall(a, 'call', b),
'}',
]);
},
appendContent: function (a) {
this.pendingContent
? (a = this.pendingContent + a)
: (this.pendingLocation = this.source.currentLocation),
(this.pendingContent = a);
},
append: function () {
if (this.isInline())
this.replaceStack(function (a) {
return [' != null ? ', a, ' : ""'];
}),
this.pushSource(
this.appendToBuffer(this.popStack())
);
else {
var a = this.popStack();
this.pushSource([
'if (',
a,
' != null) { ',
this.appendToBuffer(a, void 0, !0),
' }',
]),
this.environment.isSimple &&
this.pushSource([
'else { ',
this.appendToBuffer("''", void 0, !0),
' }',
]);
}
},
appendEscaped: function () {
this.pushSource(
this.appendToBuffer([
this.aliasable('container.escapeExpression'),
'(',
this.popStack(),
')',
])
);
},
getContext: function (a) {
this.lastContext = a;
},
pushContext: function () {
this.pushStackLiteral(this.contextName(this.lastContext));
},
lookupOnContext: function (a, b, c, d) {
var e = 0;
d || !this.options.compat || this.lastContext
? this.pushContext()
: this.push(this.depthedLookup(a[e++])),
this.resolvePath('context', a, e, b, c);
},
lookupBlockParam: function (a, b) {
(this.useBlockParams = !0),
this.push(['blockParams[', a[0], '][', a[1], ']']),
this.resolvePath('context', b, 1);
},
lookupData: function (a, b, c) {
a
? this.pushStackLiteral(
'container.data(data, ' + a + ')'
)
: this.pushStackLiteral('data'),
this.resolvePath('data', b, 0, !0, c);
},
resolvePath: function (a, b, c, d, e) {
var g = this;
if (this.options.strict || this.options.assumeObjects)
return void this.push(
f(this.options.strict && e, this, b, c, a)
);
for (var h = b.length; c < h; c++)
this.replaceStack(function (e) {
var f = g.nameLookup(e, b[c], a);
return d
? [' && ', f]
: [' != null ? ', f, ' : ', e];
});
},
resolvePossibleLambda: function () {
this.push([
this.aliasable('container.lambda'),
'(',
this.popStack(),
', ',
this.contextName(0),
')',
]);
},
pushStringParam: function (a, b) {
this.pushContext(),
this.pushString(b),
'SubExpression' !== b &&
('string' == typeof a
? this.pushString(a)
: this.pushStackLiteral(a));
},
emptyHash: function (a) {
this.trackIds && this.push('{}'),
this.stringParams && (this.push('{}'), this.push('{}')),
this.pushStackLiteral(a ? 'undefined' : '{}');
},
pushHash: function () {
this.hash && this.hashes.push(this.hash),
(this.hash = {
values: {},
types: [],
contexts: [],
ids: [],
});
},
popHash: function () {
var a = this.hash;
(this.hash = this.hashes.pop()),
this.trackIds && this.push(this.objectLiteral(a.ids)),
this.stringParams &&
(this.push(this.objectLiteral(a.contexts)),
this.push(this.objectLiteral(a.types))),
this.push(this.objectLiteral(a.values));
},
pushString: function (a) {
this.pushStackLiteral(this.quotedString(a));
},
pushLiteral: function (a) {
this.pushStackLiteral(a);
},
pushProgram: function (a) {
null != a
? this.pushStackLiteral(this.programExpression(a))
: this.pushStackLiteral(null);
},
registerDecorator: function (a, b) {
var c = this.nameLookup('decorators', b, 'decorator'),
d = this.setupHelperArgs(b, a);
this.decorators.push([
'fn = ',
this.decorators.functionCall(c, '', [
'fn',
'props',
'container',
d,
]),
' || fn;',
]);
},
invokeHelper: function (a, b, c) {
var d = this.popStack(),
e = this.setupHelper(a, b),
f = [];
c && f.push(e.name),
f.push(d),
this.options.strict ||
f.push(
this.aliasable('container.hooks.helperMissing')
);
var g = ['(', this.itemsSeparatedBy(f, '||'), ')'],
h = this.source.functionCall(g, 'call', e.callParams);
this.push(h);
},
itemsSeparatedBy: function (a, b) {
var c = [];
c.push(a[0]);
for (var d = 1; d < a.length; d++) c.push(b, a[d]);
return c;
},
invokeKnownHelper: function (a, b) {
var c = this.setupHelper(a, b);
this.push(
this.source.functionCall(c.name, 'call', c.callParams)
);
},
invokeAmbiguous: function (a, b) {
this.useRegister('helper');
var c = this.popStack();
this.emptyHash();
var d = this.setupHelper(0, a, b),
e = (this.lastHelper = this.nameLookup(
'helpers',
a,
'helper'
)),
f = ['(', '(helper = ', e, ' || ', c, ')'];
this.options.strict ||
((f[0] = '(helper = '),
f.push(
' != null ? helper : ',
this.aliasable('container.hooks.helperMissing')
)),
this.push([
'(',
f,
d.paramsInit ? ['),(', d.paramsInit] : [],
'),',
'(typeof helper === ',
this.aliasable('"function"'),
' ? ',
this.source.functionCall(
'helper',
'call',
d.callParams
),
' : helper))',
]);
},
invokePartial: function (a, b, c) {
var d = [],
e = this.setupParams(b, 1, d);
a && ((b = this.popStack()), delete e.name),
c && (e.indent = JSON.stringify(c)),
(e.helpers = 'helpers'),
(e.partials = 'partials'),
(e.decorators = 'container.decorators'),
a
? d.unshift(b)
: d.unshift(
this.nameLookup('partials', b, 'partial')
),
this.options.compat && (e.depths = 'depths'),
(e = this.objectLiteral(e)),
d.push(e),
this.push(
this.source.functionCall(
'container.invokePartial',
'',
d
)
);
},
assignToHash: function (a) {
var b = this.popStack(),
c = void 0,
d = void 0,
e = void 0;
this.trackIds && (e = this.popStack()),
this.stringParams &&
((d = this.popStack()), (c = this.popStack()));
var f = this.hash;
c && (f.contexts[a] = c),
d && (f.types[a] = d),
e && (f.ids[a] = e),
(f.values[a] = b);
},
pushId: function (a, b, c) {
'BlockParam' === a
? this.pushStackLiteral(
'blockParams[' +
b[0] +
'].path[' +
b[1] +
']' +
(c ? ' + ' + JSON.stringify('.' + c) : '')
)
: 'PathExpression' === a
? this.pushString(b)
: 'SubExpression' === a
? this.pushStackLiteral('true')
: this.pushStackLiteral('null');
},
compiler: e,
compileChildren: function (a, b) {
for (
var c = a.children,
d = void 0,
e = void 0,
f = 0,
g = c.length;
f < g;
f++
) {
(d = c[f]), (e = new this.compiler());
var h = this.matchExistingProgram(d);
if (null == h) {
this.context.programs.push('');
var i = this.context.programs.length;
(d.index = i),
(d.name = 'program' + i),
(this.context.programs[i] = e.compile(
d,
b,
this.context,
!this.precompile
)),
(this.context.decorators[i] = e.decorators),
(this.context.environments[i] = d),
(this.useDepths =
this.useDepths || e.useDepths),
(this.useBlockParams =
this.useBlockParams || e.useBlockParams),
(d.useDepths = this.useDepths),
(d.useBlockParams = this.useBlockParams);
} else
(d.index = h.index),
(d.name = 'program' + h.index),
(this.useDepths =
this.useDepths || h.useDepths),
(this.useBlockParams =
this.useBlockParams || h.useBlockParams);
}
},
matchExistingProgram: function (a) {
for (
var b = 0, c = this.context.environments.length;
b < c;
b++
) {
var d = this.context.environments[b];
if (d && d.equals(a)) return d;
}
},
programExpression: function (a) {
var b = this.environment.children[a],
c = [b.index, 'data', b.blockParams];
return (
(this.useBlockParams || this.useDepths) &&
c.push('blockParams'),
this.useDepths && c.push('depths'),
'container.program(' + c.join(', ') + ')'
);
},
useRegister: function (a) {
this.registers[a] ||
((this.registers[a] = !0), this.registers.list.push(a));
},
push: function (a) {
return (
a instanceof d || (a = this.source.wrap(a)),
this.inlineStack.push(a),
a
);
},
pushStackLiteral: function (a) {
this.push(new d(a));
},
pushSource: function (a) {
this.pendingContent &&
(this.source.push(
this.appendToBuffer(
this.source.quotedString(this.pendingContent),
this.pendingLocation
)
),
(this.pendingContent = void 0)),
a && this.source.push(a);
},
replaceStack: function (a) {
var b = ['('],
c = void 0,
e = void 0,
f = void 0;
if (!this.isInline())
throw new k['default']('replaceStack on non-inline');
var g = this.popStack(!0);
if (g instanceof d)
(c = [g.value]), (b = ['(', c]), (f = !0);
else {
e = !0;
var h = this.incrStack();
(b = ['((', this.push(h), ' = ', g, ')']),
(c = this.topStack());
}
var i = a.call(this, c);
f || this.popStack(),
e && this.stackSlot--,
this.push(b.concat(i, ')'));
},
incrStack: function () {
return (
this.stackSlot++,
this.stackSlot > this.stackVars.length &&
this.stackVars.push('stack' + this.stackSlot),
this.topStackName()
);
},
topStackName: function () {
return 'stack' + this.stackSlot;
},
flushInline: function () {
var a = this.inlineStack;
this.inlineStack = [];
for (var b = 0, c = a.length; b < c; b++) {
var e = a[b];
if (e instanceof d) this.compileStack.push(e);
else {
var f = this.incrStack();
this.pushSource([f, ' = ', e, ';']),
this.compileStack.push(f);
}
}
},
isInline: function () {
return this.inlineStack.length;
},
popStack: function (a) {
var b = this.isInline(),
c = (b ? this.inlineStack : this.compileStack).pop();
if (!a && c instanceof d) return c.value;
if (!b) {
if (!this.stackSlot)
throw new k['default']('Invalid stack pop');
this.stackSlot--;
}
return c;
},
topStack: function () {
var a = this.isInline()
? this.inlineStack
: this.compileStack,
b = a[a.length - 1];
return b instanceof d ? b.value : b;
},
contextName: function (a) {
return this.useDepths && a
? 'depths[' + a + ']'
: 'depth' + a;
},
quotedString: function (a) {
return this.source.quotedString(a);
},
objectLiteral: function (a) {
return this.source.objectLiteral(a);
},
aliasable: function (a) {
var b = this.aliases[a];
return b
? (b.referenceCount++, b)
: ((b = this.aliases[a] = this.source.wrap(a)),
(b.aliasable = !0),
(b.referenceCount = 1),
b);
},
setupHelper: function (a, b, c) {
var d = [],
e = this.setupHelperArgs(b, a, d, c),
f = this.nameLookup('helpers', b, 'helper'),
g = this.aliasable(
this.contextName(0) +
' != null ? ' +
this.contextName(0) +
' : (container.nullContext || {})'
);
return {
params: d,
paramsInit: e,
name: f,
callParams: [g].concat(d),
};
},
setupParams: function (a, b, c) {
var d = {},
e = [],
f = [],
g = [],
h = !c,
i = void 0;
h && (c = []),
(d.name = this.quotedString(a)),
(d.hash = this.popStack()),
this.trackIds && (d.hashIds = this.popStack()),
this.stringParams &&
((d.hashTypes = this.popStack()),
(d.hashContexts = this.popStack()));
var j = this.popStack(),
k = this.popStack();
(k || j) &&
((d.fn = k || 'container.noop'),
(d.inverse = j || 'container.noop'));
for (var l = b; l--; )
(i = this.popStack()),
(c[l] = i),
this.trackIds && (g[l] = this.popStack()),
this.stringParams &&
((f[l] = this.popStack()),
(e[l] = this.popStack()));
return (
h && (d.args = this.source.generateArray(c)),
this.trackIds && (d.ids = this.source.generateArray(g)),
this.stringParams &&
((d.types = this.source.generateArray(f)),
(d.contexts = this.source.generateArray(e))),
this.options.data && (d.data = 'data'),
this.useBlockParams && (d.blockParams = 'blockParams'),
d
);
},
setupHelperArgs: function (a, b, c, d) {
var e = this.setupParams(a, b, c);
return (
(e.loc = JSON.stringify(this.source.currentLocation)),
(e = this.objectLiteral(e)),
d
? (this.useRegister('options'),
c.push('options'),
['options=', e])
: c
? (c.push(e), '')
: e
);
},
}),
(function () {
for (
var a =
'break else new var case finally return void catch for switch while continue function this with default if throw delete in try do instanceof typeof abstract enum int short boolean export interface static byte extends long super char final native synchronized class float package throws const goto private transient debugger implements protected volatile double import public let yield await null true false'.split(
' '
),
b = (e.RESERVED_WORDS = {}),
c = 0,
d = a.length;
c < d;
c++
)
b[a[c]] = !0;
})(),
(e.isValidJavaScriptVariableName = function (a) {
return (
!e.RESERVED_WORDS[a] &&
/^[a-zA-Z_$][0-9a-zA-Z_$]*$/.test(a)
);
}),
(b['default'] = e),
(a.exports = b['default']);
},
function (a, b, c) {
'use strict';
function d(a, b, c) {
if (g.isArray(a)) {
for (var d = [], e = 0, f = a.length; e < f; e++)
d.push(b.wrap(a[e], c));
return d;
}
return 'boolean' == typeof a || 'number' == typeof a
? a + ''
: a;
}
function e(a) {
(this.srcFile = a), (this.source = []);
}
var f = c(60)['default'];
b.__esModule = !0;
var g = c(5),
h = void 0;
try {
} catch (i) {}
h ||
((h = function (a, b, c, d) {
(this.src = ''), d && this.add(d);
}),
(h.prototype = {
add: function (a) {
g.isArray(a) && (a = a.join('')), (this.src += a);
},
prepend: function (a) {
g.isArray(a) && (a = a.join('')),
(this.src = a + this.src);
},
toStringWithSourceMap: function () {
return { code: this.toString() };
},
toString: function () {
return this.src;
},
})),
(e.prototype = {
isEmpty: function () {
return !this.source.length;
},
prepend: function (a, b) {
this.source.unshift(this.wrap(a, b));
},
push: function (a, b) {
this.source.push(this.wrap(a, b));
},
merge: function () {
var a = this.empty();
return (
this.each(function (b) {
a.add([' ', b, '\n']);
}),
a
);
},
each: function (a) {
for (var b = 0, c = this.source.length; b < c; b++)
a(this.source[b]);
},
empty: function () {
var a = this.currentLocation || { start: {} };
return new h(
a.start.line,
a.start.column,
this.srcFile
);
},
wrap: function (a) {
var b =
arguments.length <= 1 || void 0 === arguments[1]
? this.currentLocation || { start: {} }
: arguments[1];
return a instanceof h
? a
: ((a = d(a, this, b)),
new h(
b.start.line,
b.start.column,
this.srcFile,
a
));
},
functionCall: function (a, b, c) {
return (
(c = this.generateList(c)),
this.wrap([a, b ? '.' + b + '(' : '(', c, ')'])
);
},
quotedString: function (a) {
return (
'"' +
(a + '')
.replace(/\\/g, '\\\\')
.replace(/"/g, '\\"')
.replace(/\n/g, '\\n')
.replace(/\r/g, '\\r')
.replace(/\u2028/g, '\\u2028')
.replace(/\u2029/g, '\\u2029') +
'"'
);
},
objectLiteral: function (a) {
var b = this,
c = [];
f(a).forEach(function (e) {
var f = d(a[e], b);
'undefined' !== f &&
c.push([b.quotedString(e), ':', f]);
});
var e = this.generateList(c);
return e.prepend('{'), e.add('}'), e;
},
generateList: function (a) {
for (
var b = this.empty(), c = 0, e = a.length;
c < e;
c++
)
c && b.add(','), b.add(d(a[c], this));
return b;
},
generateArray: function (a) {
var b = this.generateList(a);
return b.prepend('['), b.add(']'), b;
},
}),
(b['default'] = e),
(a.exports = b['default']);
},
]);
});