Iosevka/buildglyphs.js
2015-07-21 01:20:47 +08:00

2416 lines
191 KiB
JavaScript

{
var r0_Glyph, r0_Stroke, _r0_t0;
r0_Glyph = require('./support/glyph')['Glyph'];
r0_Stroke = require('./support/stroke')['Stroke'];
exports['build'] = function _r0_t0(r1_para) {
var r1_para, r1_variantSelector, r1_font, r1_glyphList, r1_glyphs, r1_globalTransform, r1_ITALICCOR, r1_UPWARD, r1_DOWNWARD, r1_RIGHTWARD, r1_LEFTWARD, r1_DESCENDER, r1_WIDTH, r1_CAP, r1_XH, r1_O, r1_OXHOOK, r1_SB, r1_HOOK, r1_AHOOK, r1_SHOOK, r1_RHOOK, r1_SMOOTH, r1_SMALLSMOOTH, r1_STROKE, r1_DOTSIZE, r1_BARPOS, r1_GBARPOS, r1_LONGSERIF, r1_ACCENT, r1_XO, r1_CAPO, r1_HALFSTROKE, r1_RIGHTSB, r1_MIDDLE, r1_CAPMIDDLE, r1_CAP_SMOOTH, r1_DOTRADIUS, r1_SMOOTHA, r1_SMOOTHB, r1_SMALLSMOOTHA, r1_SMALLSMOOTHB, r1_ITALICCORS, r1_KAPPA, r1_COKAPPA, r1_BKAPPA, r1_COBKAPPA, r1_KAPPA_HOOK, r1_KAPPA_AHOOK, r1_TAILADJX, r1_TAILADJY, r1_TAILADJKAPPA, r1_TAILADJSX, r1_TAILADJSY, r1_TAILADJSKAPPA, r1_ILBALANCE, r1_JBALANCE, r1_TBALANCE, r1_TBALANCE2, r1_RBALANCE, r1_BASE, r1_MARK, r1_MARKBASE, r1_tm, r1_markAboveLower, r1_markAboveCap, r1_markBelowLower, r1_markBelowZero, r1_capitalMarks, r1_bMarks, r1_eMarks, r1_pMarks, r1_ifMarks, r1_Ring, r1_ORing, r1_leftwardTopSerif, r1_leftwardBottomSerif, r1_rightwardTopSerif, r1_rightwardBottomSerif, r1_xn$createglyph$7Hrq, _r1_t0, _r1_t1, _r1_t2, _r1_t3, _r1_t4, _r1_t5, _r1_t6, _r1_t7, _r1_t8, _r1_t9, _r1_t10, _r1_t11, _r1_t12, _r1_t13, _r1_t14, _r1_t15, _r1_t16, _r1_t17, _r1_t18, _r1_t19, _r1_t20, _r1_t21, _r1_t22, _r1_t23, _r1_t24, _r1_t25, _r1_t26, _r1_t27, _r1_t28, _r1_t29, _r1_t30, _r1_t31, _r1_t32, _r1_t33, _r1_t34, _r1_t35, _r1_t36, _r1_t37, _r1_t38, _r1_t39, _r1_t40, _r1_t41, _r1_t42, _r1_t43, _r1_t44, _r1_t45, _r1_t46, _r1_t47, _r1_t48, _r1_t49, _r1_t50, _r1_t51, _r1_t52, _r1_t53, _r1_t54, _r1_t55, _r1_t56, _r1_t57, _r1_t58, _r1_t59, _r1_t60, _r1_t61, _r1_t62, _r1_t63, _r1_t64, _r1_t65, _r1_t66, _r1_t67, _r1_t68, _r1_t69, _r1_t70, _r1_t71, _r1_t72, _r1_t73, _r1_t74, _r1_t75, _r1_t76, _r1_t77, _r1_t78, _r1_t79, _r1_t80, _r1_t81, _r1_t82, _r1_t83, _r1_t84, _r1_t85, _r1_t86, _r1_t87, _r1_t88, _r1_t89, _r1_t90, _r1_t91, _r1_t92, _r1_t93, _r1_t94;
r1_variantSelector = r1_para['variantSelector'];
r1_font = require('./empty.json');
r1_glyphList = r1_font['glyf'];
r1_glyphs = { '.notdef': r1_glyphList[0] };
r1_globalTransform = {
'xx': 1,
'yx': Math['tan'](r1_para['italicangle'] / 180 * Math['PI']),
'xy': 0,
'yy': 1,
'x': 0,
'y': 0
};
r1_ITALICCOR = 1 / Math['sqrt'](1 - r1_globalTransform['yx'] * r1_globalTransform['yx']);
r1_UPWARD = {
'x': -r1_ITALICCOR,
'y': 0
};
r1_DOWNWARD = {
'x': r1_ITALICCOR,
'y': 0
};
r1_RIGHTWARD = {
'x': r1_globalTransform['yx'],
'y': 1
};
r1_LEFTWARD = {
'x': -r1_globalTransform['yx'],
'y': -1
};
r1_DESCENDER = r1_para['descender'];
r1_WIDTH = r1_para['width'];
r1_CAP = r1_para['cap'];
r1_XH = r1_para['xheight'];
r1_O = r1_para['o'];
r1_OXHOOK = r1_para['oxhook'];
r1_SB = r1_para['sb'];
r1_HOOK = r1_para['hook'];
r1_AHOOK = r1_para['ahook'];
r1_SHOOK = r1_para['shook'];
r1_RHOOK = r1_para['rhook'];
r1_SMOOTH = r1_para['smooth'];
r1_SMALLSMOOTH = r1_para['smallsmooth'];
r1_STROKE = r1_para['stroke'];
r1_DOTSIZE = r1_para['dotsize'];
r1_BARPOS = r1_para['barpos'];
r1_GBARPOS = r1_para['gbarpos'];
r1_LONGSERIF = r1_para['longserif'];
r1_ACCENT = r1_para['accent'];
r1_XO = r1_XH - r1_O;
r1_CAPO = r1_CAP - r1_O;
r1_HALFSTROKE = r1_STROKE / 2;
r1_RIGHTSB = r1_WIDTH - r1_SB;
r1_MIDDLE = r1_WIDTH / 2;
r1_CAPMIDDLE = r1_CAP / 2;
r1_CAP_SMOOTH = r1_CAP - r1_SMOOTH;
r1_DOTRADIUS = r1_para['dotsize'] / 2;
r1_SMOOTHA = r1_SMOOTH - r1_globalTransform['yx'] * r1_para['smoothadjust'];
r1_SMOOTHB = r1_SMOOTH + r1_globalTransform['yx'] * r1_para['smoothadjust'];
r1_SMALLSMOOTHA = r1_SMALLSMOOTH - r1_globalTransform['yx'] * r1_para['smoothadjust'];
r1_SMALLSMOOTHB = r1_SMALLSMOOTH + r1_globalTransform['yx'] * r1_para['smoothadjust'];
r1_ITALICCORS = r1_STROKE * r1_globalTransform['yx'];
r1_KAPPA = r1_para['kappa'];
r1_COKAPPA = 1 - r1_KAPPA;
r1_BKAPPA = r1_KAPPA + 0.1;
r1_COBKAPPA = 1 - r1_BKAPPA;
r1_KAPPA_HOOK = r1_para['kappa_hook'] || 0.7;
r1_KAPPA_AHOOK = r1_para['kappa_ahook'] || r1_KAPPA_HOOK;
r1_TAILADJX = r1_WIDTH * 0.2;
r1_TAILADJY = r1_XH * 0.25;
r1_TAILADJKAPPA = 0.75;
r1_TAILADJSX = r1_WIDTH * 0.2;
r1_TAILADJSY = 0;
r1_TAILADJSKAPPA = 0.75;
r1_ILBALANCE = r1_LONGSERIF * 0.04;
r1_JBALANCE = r1_para['jbalance'] || r1_HALFSTROKE + r1_ILBALANCE;
r1_TBALANCE = r1_para['tbalance'] || r1_JBALANCE;
r1_TBALANCE2 = r1_para['tbalance2'] || r1_TBALANCE;
r1_RBALANCE = r1_para['rbalance'] || r1_JBALANCE * 0.3;
r1_BASE = 'base';
r1_MARK = 'mark';
r1_MARKBASE = 'markbase';
r1_tm = function _r1_t0(r2_anchor) {
var r2_anchor;
return {
'x': r2_anchor['x'] * r1_globalTransform['xx'] + r2_anchor['y'] * r1_globalTransform['yx'] + r1_globalTransform['x'],
'y': r2_anchor['x'] * r1_globalTransform['xy'] + r2_anchor['y'] * r1_globalTransform['yy'] + r1_globalTransform['y'],
'type': r2_anchor['type']
};
};
r1_markAboveLower = {
'anchors': {
'above': r1_tm({
'x': r1_MIDDLE,
'y': r1_XH,
'type': r1_BASE
})
}
};
r1_markAboveCap = {
'anchors': {
'above': r1_tm({
'x': r1_MIDDLE,
'y': r1_CAP,
'type': r1_BASE
})
}
};
r1_markBelowLower = {
'anchors': {
'below': r1_tm({
'x': r1_MIDDLE,
'y': r1_DESCENDER,
'type': r1_BASE
})
}
};
r1_markBelowZero = {
'anchors': {
'below': r1_tm({
'x': r1_MIDDLE,
'y': 0,
'type': r1_BASE
})
}
};
r1_capitalMarks = {
'anchors': {
'above': r1_markAboveCap['anchors']['above'],
'below': r1_markBelowZero['anchors']['below']
}
};
r1_bMarks = {
'anchors': {
'above': r1_markAboveCap['anchors']['above'],
'below': r1_markBelowZero['anchors']['below']
}
};
r1_eMarks = {
'anchors': {
'above': r1_markAboveLower['anchors']['above'],
'below': r1_markBelowZero['anchors']['below']
}
};
r1_pMarks = {
'anchors': {
'above': r1_markAboveLower['anchors']['above'],
'below': r1_markBelowLower['anchors']['below']
}
};
r1_ifMarks = {
'anchors': {
'above': r1_markAboveCap['anchors']['above'],
'below': r1_markBelowLower['anchors']['below']
}
};
r0_Stroke['bindParameters'](r1_para);
r1_font['name']['fontFamily'] = r1_para['family'];
r1_font['name']['fontSubFamily'] = r1_para['style'];
r1_font['name']['preferredFamily'] = r1_para['family'];
r1_font['name']['preferredSubFamily'] = r1_para['style'];
r1_font['name']['uniqueSubFamily'] = r1_para['family'] + ' ' + r1_para['style'] + ' ' + r1_para['version'];
r1_font['name']['version'] = r1_para['version'];
r1_font['name']['fullName'] = r1_para['family'] + ' ' + r1_para['style'];
r1_font['name']['postScriptName'] = r1_font['name']['fullName']['replace'](/ /g, '-');
r1_font['name']['copyright'] = r1_para['copyright'];
r1_font['OS/2']['usWeightClass'] = r1_para['weight'];
r1_font['OS/2']['bProportion'] = 9;
r1_Ring = function _r1_t1(r3_u, r3_d, r3_l, r3_r) {
var r3_u, r3_d, r3_l, r3_r, r3_my, r3_mx, r3_s;
r3_my = (r3_u + r3_d) / 2;
r3_mx = (r3_l + r3_r) / 2;
r3_s = new r0_Stroke()['set-transform'](r1_globalTransform)['start-from'](r3_mx, r3_d)['cubic-to'](r3_mx + (r3_l - r3_mx) * r1_BKAPPA, r3_d, r3_l, r3_my + (r3_d - r3_my) * r1_BKAPPA, r3_l, r3_my)['cubic-to'](r3_l, r3_my + (r3_u - r3_my) * r1_BKAPPA, r3_mx + (r3_l - r3_mx) * r1_BKAPPA, r3_u, r3_mx, r3_u)['cubic-to'](r3_mx + (r3_r - r3_mx) * r1_BKAPPA, r3_u, r3_r, r3_my + (r3_u - r3_my) * r1_BKAPPA, r3_r, r3_my)['cubic-to'](r3_r, r3_my + (r3_d - r3_my) * r1_BKAPPA, r3_mx + (r3_r - r3_mx) * r1_BKAPPA, r3_d, r3_mx, r3_d);
return r3_s['points'];
};
r1_ORing = function _r1_t2(r4_u, r4_d, r4_l, r4_r, r4_smooth) {
var r4_u, r4_d, r4_l, r4_r, r4_smooth, r4_myu, r4_myd, r4_mx, r4_s;
r4_myu = r4_u - r4_smooth;
r4_myd = r4_d + r4_smooth;
r4_mx = (r4_l + r4_r) / 2;
r4_s = new r0_Stroke()['set-transform'](r1_globalTransform)['start-from'](r4_mx, r4_d)['cubic-to'](r4_mx + (r4_l - r4_mx) * r1_BKAPPA, r4_d, r4_l, r4_myd + (r4_d - r4_myd) * r1_BKAPPA, r4_l, r4_myd)['line-to'](r4_l, r4_myu)['cubic-to'](r4_l, r4_myu + (r4_u - r4_myu) * r1_BKAPPA, r4_mx + (r4_l - r4_mx) * r1_BKAPPA, r4_u, r4_mx, r4_u)['cubic-to'](r4_mx + (r4_r - r4_mx) * r1_BKAPPA, r4_u, r4_r, r4_myu + (r4_u - r4_myu) * r1_BKAPPA, r4_r, r4_myu)['line-to'](r4_r, r4_myd)['cubic-to'](r4_r, r4_myd + (r4_d - r4_myd) * r1_BKAPPA, r4_mx + (r4_r - r4_mx) * r1_BKAPPA, r4_d, r4_mx, r4_d);
return r4_s['points'];
};
r1_leftwardTopSerif = function _r1_t3(r5_x, r5_y, r5_length) {
var r5_x, r5_y, r5_length;
return new r0_Stroke()['set-transform'](r1_globalTransform)['start-from'](r5_x + r1_HALFSTROKE, r5_y)['heads-to'](r1_LEFTWARD)['set-width'](r1_STROKE, 0)['line-to'](r5_x - r5_length - r1_globalTransform['yx'] * r1_STROKE, r5_y)['to-outline']();
};
r1_leftwardBottomSerif = function _r1_t4(r6_x, r6_y, r6_length) {
var r6_x, r6_y, r6_length;
return new r0_Stroke()['set-transform'](r1_globalTransform)['start-from'](r6_x + r1_HALFSTROKE, r6_y)['heads-to'](r1_LEFTWARD)['set-width'](0, r1_STROKE)['line-to'](r6_x - r6_length + r1_globalTransform['yx'] * r1_STROKE, r6_y)['to-outline']();
};
r1_rightwardTopSerif = function _r1_t5(r7_x, r7_y, r7_length) {
var r7_x, r7_y, r7_length;
return new r0_Stroke()['set-transform'](r1_globalTransform)['start-from'](r7_x - r1_HALFSTROKE, r7_y)['heads-to'](r1_RIGHTWARD)['set-width'](0, r1_STROKE)['line-to'](r7_x + r7_length - r1_globalTransform['yx'] * r1_STROKE, r7_y)['to-outline']();
};
r1_rightwardBottomSerif = function _r1_t6(r8_x, r8_y, r8_length) {
var r8_x, r8_y, r8_length;
return new r0_Stroke()['set-transform'](r1_globalTransform)['start-from'](r8_x - r1_HALFSTROKE, r8_y)['heads-to'](r1_RIGHTWARD)['set-width'](r1_STROKE, 0)['line-to'](r8_x + r8_length + r1_globalTransform['yx'] * r1_STROKE, r8_y)['to-outline']();
};
r1_xn$createglyph$7Hrq = function _r1_t7(r13_name, r13_actions) {
var r13_name, r13_actions, r13_glyphObject;
r13_glyphObject = new r0_Glyph(r13_name);
r1_glyphList['push'](r13_glyphObject);
r1_glyphs[r13_name] = r13_glyphObject;
r13_actions['call'](r13_glyphObject);
return r13_glyphObject;
};
r1_xn$createglyph$7Hrq('space', function _r1_t8() {
var r15_xn$setwidth$9Jrj, r15_xn$assignunicode$7Hrq, r15_xn$startfrom$1aao, r15_xn$lineto$5sIl, r15_xn$curveto$1aao, r15_xn$cubicto$1aao, r15_xn$putshapes$9Jrj, r15_xn$reverselast$3qIs, r15_include, r15_xn$createstroke$7Hrq, r15_xn$setanchor$9Jrj, _r15_t0;
_r15_t0 = this;
r15_xn$setwidth$9Jrj = _r15_t0['set-width']['bind'](_r15_t0);
r15_xn$assignunicode$7Hrq = _r15_t0['assign-unicode']['bind'](_r15_t0);
r15_xn$startfrom$1aao = _r15_t0['start-from']['bind'](_r15_t0);
r15_xn$lineto$5sIl = _r15_t0['line-to']['bind'](_r15_t0);
r15_xn$curveto$1aao = _r15_t0['curve-to']['bind'](_r15_t0);
r15_xn$cubicto$1aao = _r15_t0['cubic-to']['bind'](_r15_t0);
r15_xn$putshapes$9Jrj = _r15_t0['put-shapes']['bind'](_r15_t0);
r15_xn$reverselast$3qIs = _r15_t0['reverse-last']['bind'](_r15_t0);
r15_include = _r15_t0['include']['bind'](_r15_t0);
r15_xn$createstroke$7Hrq = _r15_t0['create-stroke']['bind'](_r15_t0);
r15_xn$setanchor$9Jrj = _r15_t0['set-anchor']['bind'](_r15_t0);
_r15_t0['gizmo'] = r1_globalTransform;
_r15_t0['set-width'](r1_WIDTH);
r15_xn$setwidth$9Jrj(r1_WIDTH);
r15_xn$assignunicode$7Hrq(' ');
return void 0;
});
r1_xn$createglyph$7Hrq('bar', function _r1_t9() {
var r17_xn$setwidth$9Jrj, r17_xn$assignunicode$7Hrq, r17_xn$startfrom$1aao, r17_xn$lineto$5sIl, r17_xn$curveto$1aao, r17_xn$cubicto$1aao, r17_xn$putshapes$9Jrj, r17_xn$reverselast$3qIs, r17_include, r17_xn$createstroke$7Hrq, r17_xn$setanchor$9Jrj, _r17_t0;
_r17_t0 = this;
r17_xn$setwidth$9Jrj = _r17_t0['set-width']['bind'](_r17_t0);
r17_xn$assignunicode$7Hrq = _r17_t0['assign-unicode']['bind'](_r17_t0);
r17_xn$startfrom$1aao = _r17_t0['start-from']['bind'](_r17_t0);
r17_xn$lineto$5sIl = _r17_t0['line-to']['bind'](_r17_t0);
r17_xn$curveto$1aao = _r17_t0['curve-to']['bind'](_r17_t0);
r17_xn$cubicto$1aao = _r17_t0['cubic-to']['bind'](_r17_t0);
r17_xn$putshapes$9Jrj = _r17_t0['put-shapes']['bind'](_r17_t0);
r17_xn$reverselast$3qIs = _r17_t0['reverse-last']['bind'](_r17_t0);
r17_include = _r17_t0['include']['bind'](_r17_t0);
r17_xn$createstroke$7Hrq = _r17_t0['create-stroke']['bind'](_r17_t0);
r17_xn$setanchor$9Jrj = _r17_t0['set-anchor']['bind'](_r17_t0);
_r17_t0['gizmo'] = r1_globalTransform;
_r17_t0['set-width'](r1_WIDTH);
r17_xn$setwidth$9Jrj(r1_WIDTH);
r17_xn$assignunicode$7Hrq('|');
r17_xn$putshapes$9Jrj(r17_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, r1_DESCENDER / 2)['set-width'](r1_STROKE / 2, r1_STROKE / 2)['line-to'](r1_MIDDLE, r1_CAP - r1_DESCENDER / 2)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('A', function _r1_t10() {
var r19_xn$setwidth$9Jrj, r19_xn$assignunicode$7Hrq, r19_xn$startfrom$1aao, r19_xn$lineto$5sIl, r19_xn$curveto$1aao, r19_xn$cubicto$1aao, r19_xn$putshapes$9Jrj, r19_xn$reverselast$3qIs, r19_include, r19_xn$createstroke$7Hrq, r19_xn$setanchor$9Jrj, r19_TURN, r19_leftbar, r19_rightbar, r19_hbar, _r19_t0;
_r19_t0 = this;
r19_xn$setwidth$9Jrj = _r19_t0['set-width']['bind'](_r19_t0);
r19_xn$assignunicode$7Hrq = _r19_t0['assign-unicode']['bind'](_r19_t0);
r19_xn$startfrom$1aao = _r19_t0['start-from']['bind'](_r19_t0);
r19_xn$lineto$5sIl = _r19_t0['line-to']['bind'](_r19_t0);
r19_xn$curveto$1aao = _r19_t0['curve-to']['bind'](_r19_t0);
r19_xn$cubicto$1aao = _r19_t0['cubic-to']['bind'](_r19_t0);
r19_xn$putshapes$9Jrj = _r19_t0['put-shapes']['bind'](_r19_t0);
r19_xn$reverselast$3qIs = _r19_t0['reverse-last']['bind'](_r19_t0);
r19_include = _r19_t0['include']['bind'](_r19_t0);
r19_xn$createstroke$7Hrq = _r19_t0['create-stroke']['bind'](_r19_t0);
r19_xn$setanchor$9Jrj = _r19_t0['set-anchor']['bind'](_r19_t0);
_r19_t0['gizmo'] = r1_globalTransform;
_r19_t0['set-width'](r1_WIDTH);
r19_xn$setwidth$9Jrj(r1_WIDTH);
r19_xn$assignunicode$7Hrq('A');
r19_include(r1_capitalMarks);
r19_TURN = r1_XH * 0.1;
r19_leftbar = r19_xn$createstroke$7Hrq();
r19_leftbar['start-from'](r1_SB, 0)['heads-to'](r1_UPWARD)['set-width'](0, r1_STROKE)['line-to'](r1_SB, r19_TURN)['heads-to'](r1_UPWARD)['curve-to'](r1_SB, r19_TURN + 0.27 * (r1_CAP - r19_TURN), r1_MIDDLE - r1_STROKE / 2, r1_CAP)['set-width'](0, r1_STROKE * 0.8);
r19_rightbar = r19_xn$createstroke$7Hrq();
r19_rightbar['start-from'](r1_RIGHTSB, 0)['heads-to'](r1_UPWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_RIGHTSB, r19_TURN)['heads-to'](r1_UPWARD)['curve-to'](r1_RIGHTSB, r19_TURN + 0.27 * (r1_CAP - r19_TURN), r1_MIDDLE + r1_STROKE / 2, r1_CAP)['set-width'](r1_STROKE * 0.8, 0);
r19_hbar = r19_xn$createstroke$7Hrq()['start-from'](r1_SB + r1_STROKE, r1_XH / 2)['heads-to'](r1_RIGHTWARD)['set-width'](0, r1_STROKE)['line-to'](r1_RIGHTSB - r1_STROKE, r1_XH / 2)['heads-to'](r1_RIGHTWARD);
r19_xn$putshapes$9Jrj(r19_leftbar['to-outline']());
r19_xn$putshapes$9Jrj(r19_hbar['to-outline']());
r19_xn$putshapes$9Jrj(r19_rightbar['to-outline']());
r19_xn$startfrom$1aao(r1_MIDDLE - r1_STROKE / 2, r1_CAP);
r19_xn$lineto$5sIl(r1_MIDDLE + r1_STROKE / 2, r1_CAP);
r19_xn$lineto$5sIl(r1_MIDDLE, r1_CAP - r1_STROKE);
return void 0;
});
r1_xn$createglyph$7Hrq('V', function _r1_t11() {
var r21_xn$setwidth$9Jrj, r21_xn$assignunicode$7Hrq, r21_xn$startfrom$1aao, r21_xn$lineto$5sIl, r21_xn$curveto$1aao, r21_xn$cubicto$1aao, r21_xn$putshapes$9Jrj, r21_xn$reverselast$3qIs, r21_include, r21_xn$createstroke$7Hrq, r21_xn$setanchor$9Jrj, r21_TURN, r21_leftbar, r21_rightbar, _r21_t0;
_r21_t0 = this;
r21_xn$setwidth$9Jrj = _r21_t0['set-width']['bind'](_r21_t0);
r21_xn$assignunicode$7Hrq = _r21_t0['assign-unicode']['bind'](_r21_t0);
r21_xn$startfrom$1aao = _r21_t0['start-from']['bind'](_r21_t0);
r21_xn$lineto$5sIl = _r21_t0['line-to']['bind'](_r21_t0);
r21_xn$curveto$1aao = _r21_t0['curve-to']['bind'](_r21_t0);
r21_xn$cubicto$1aao = _r21_t0['cubic-to']['bind'](_r21_t0);
r21_xn$putshapes$9Jrj = _r21_t0['put-shapes']['bind'](_r21_t0);
r21_xn$reverselast$3qIs = _r21_t0['reverse-last']['bind'](_r21_t0);
r21_include = _r21_t0['include']['bind'](_r21_t0);
r21_xn$createstroke$7Hrq = _r21_t0['create-stroke']['bind'](_r21_t0);
r21_xn$setanchor$9Jrj = _r21_t0['set-anchor']['bind'](_r21_t0);
_r21_t0['gizmo'] = r1_globalTransform;
_r21_t0['set-width'](r1_WIDTH);
r21_xn$setwidth$9Jrj(r1_WIDTH);
r21_xn$assignunicode$7Hrq('V');
r21_include(r1_capitalMarks);
r21_TURN = r1_CAP * 0.9;
r21_leftbar = r21_xn$createstroke$7Hrq();
r21_leftbar['start-from'](r1_SB, r1_CAP)['heads-to'](r1_DOWNWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_SB, r21_TURN)['heads-to'](r1_DOWNWARD)['curve-to'](r1_SB, (1 - 0.27) * r21_TURN, r1_MIDDLE - r1_STROKE / 2, 0)['set-width'](r1_STROKE * 0.8, 0);
r21_rightbar = r21_xn$createstroke$7Hrq();
r21_rightbar['start-from'](r1_RIGHTSB, r1_CAP)['heads-to'](r1_DOWNWARD)['set-width'](0, r1_STROKE)['line-to'](r1_RIGHTSB, r21_TURN)['heads-to'](r1_DOWNWARD)['curve-to'](r1_RIGHTSB, (1 - 0.27) * r21_TURN, r1_MIDDLE + r1_STROKE / 2, 0)['set-width'](0, r1_STROKE * 0.8);
r21_xn$putshapes$9Jrj(r21_leftbar['to-outline']());
r21_xn$putshapes$9Jrj(r21_rightbar['to-outline']());
r21_xn$startfrom$1aao(r1_MIDDLE + r1_STROKE / 2, 0);
r21_xn$lineto$5sIl(r1_MIDDLE - r1_STROKE / 2, 0);
r21_xn$lineto$5sIl(r1_MIDDLE, r1_STROKE);
return void 0;
});
r1_xn$createglyph$7Hrq('W', function _r1_t12() {
var r23_xn$setwidth$9Jrj, r23_xn$assignunicode$7Hrq, r23_xn$startfrom$1aao, r23_xn$lineto$5sIl, r23_xn$curveto$1aao, r23_xn$cubicto$1aao, r23_xn$putshapes$9Jrj, r23_xn$reverselast$3qIs, r23_include, r23_xn$createstroke$7Hrq, r23_xn$setanchor$9Jrj, r23_TURN, r23_turn2, r23_wheight, r23_bottomStroke, r23_m1, r23_m2, _r23_t0;
_r23_t0 = this;
r23_xn$setwidth$9Jrj = _r23_t0['set-width']['bind'](_r23_t0);
r23_xn$assignunicode$7Hrq = _r23_t0['assign-unicode']['bind'](_r23_t0);
r23_xn$startfrom$1aao = _r23_t0['start-from']['bind'](_r23_t0);
r23_xn$lineto$5sIl = _r23_t0['line-to']['bind'](_r23_t0);
r23_xn$curveto$1aao = _r23_t0['curve-to']['bind'](_r23_t0);
r23_xn$cubicto$1aao = _r23_t0['cubic-to']['bind'](_r23_t0);
r23_xn$putshapes$9Jrj = _r23_t0['put-shapes']['bind'](_r23_t0);
r23_xn$reverselast$3qIs = _r23_t0['reverse-last']['bind'](_r23_t0);
r23_include = _r23_t0['include']['bind'](_r23_t0);
r23_xn$createstroke$7Hrq = _r23_t0['create-stroke']['bind'](_r23_t0);
r23_xn$setanchor$9Jrj = _r23_t0['set-anchor']['bind'](_r23_t0);
_r23_t0['gizmo'] = r1_globalTransform;
_r23_t0['set-width'](r1_WIDTH);
r23_xn$setwidth$9Jrj(r1_WIDTH);
r23_xn$assignunicode$7Hrq('W');
r23_include(r1_capitalMarks);
r23_TURN = r1_CAP * 0.75;
r23_turn2 = r1_CAP * 0.59;
r23_wheight = r1_CAP * 0.6;
r23_bottomStroke = Math['min'](r1_STROKE * 0.8, (r1_WIDTH - r1_SB * 2) * 0.175);
r23_m1 = r1_WIDTH * 0.3;
r23_m2 = r1_WIDTH * 0.7;
r23_xn$putshapes$9Jrj(r23_xn$createstroke$7Hrq()['start-from'](r1_SB, r1_CAP)['heads-to'](r1_DOWNWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_SB, r23_TURN)['heads-to'](r1_DOWNWARD)['curve-to'](r1_SB, (1 - 0.27) * r23_TURN, r23_m1 - r23_bottomStroke / 2, 0)['set-width'](r23_bottomStroke, 0)['to-outline']());
r23_xn$putshapes$9Jrj(r23_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB, r1_CAP)['heads-to'](r1_DOWNWARD)['set-width'](0, r1_STROKE)['line-to'](r1_RIGHTSB, r23_TURN)['heads-to'](r1_DOWNWARD)['curve-to'](r1_RIGHTSB, (1 - 0.27) * r23_TURN, r23_m2 + r23_bottomStroke / 2, 0)['set-width'](0, r23_bottomStroke)['to-outline']());
r23_xn$putshapes$9Jrj(r23_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE + r23_bottomStroke / 2, r23_wheight)['heads-to'](r1_DOWNWARD)['set-width'](0, r23_bottomStroke)['line-to'](r1_MIDDLE + r23_bottomStroke / 2, r23_turn2)['heads-to'](r1_DOWNWARD)['curve-to'](r1_MIDDLE + r23_bottomStroke / 2, (1 - 0.1) * r23_turn2, r23_m1 + r23_bottomStroke / 2, 0)['set-width'](0, r23_bottomStroke)['to-outline']());
r23_xn$putshapes$9Jrj(r23_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE - r23_bottomStroke / 2, r23_wheight)['heads-to'](r1_DOWNWARD)['set-width'](r23_bottomStroke, 0)['line-to'](r1_MIDDLE - r23_bottomStroke / 2, r23_turn2)['heads-to'](r1_DOWNWARD)['curve-to'](r1_MIDDLE - r23_bottomStroke / 2, (1 - 0.1) * r23_turn2, r23_m2 - r23_bottomStroke / 2, 0)['set-width'](r23_bottomStroke, 0)['to-outline']());
r23_xn$startfrom$1aao(r23_m1 + r23_bottomStroke / 2, 0);
r23_xn$lineto$5sIl(r23_m1 - r23_bottomStroke / 2, 0);
r23_xn$lineto$5sIl(r23_m1, r23_bottomStroke);
r23_xn$startfrom$1aao(r23_m2 + r23_bottomStroke / 2, 0);
r23_xn$lineto$5sIl(r23_m2 - r23_bottomStroke / 2, 0);
r23_xn$lineto$5sIl(r23_m2, r23_bottomStroke);
return void 0;
});
r1_xn$createglyph$7Hrq('X', function _r1_t13() {
var r25_xn$setwidth$9Jrj, r25_xn$assignunicode$7Hrq, r25_xn$startfrom$1aao, r25_xn$lineto$5sIl, r25_xn$curveto$1aao, r25_xn$cubicto$1aao, r25_xn$putshapes$9Jrj, r25_xn$reverselast$3qIs, r25_include, r25_xn$createstroke$7Hrq, r25_xn$setanchor$9Jrj, r25_TURN, r25_straight, r25_strench, r25_barone, r25_bartwo, _r25_t0;
_r25_t0 = this;
r25_xn$setwidth$9Jrj = _r25_t0['set-width']['bind'](_r25_t0);
r25_xn$assignunicode$7Hrq = _r25_t0['assign-unicode']['bind'](_r25_t0);
r25_xn$startfrom$1aao = _r25_t0['start-from']['bind'](_r25_t0);
r25_xn$lineto$5sIl = _r25_t0['line-to']['bind'](_r25_t0);
r25_xn$curveto$1aao = _r25_t0['curve-to']['bind'](_r25_t0);
r25_xn$cubicto$1aao = _r25_t0['cubic-to']['bind'](_r25_t0);
r25_xn$putshapes$9Jrj = _r25_t0['put-shapes']['bind'](_r25_t0);
r25_xn$reverselast$3qIs = _r25_t0['reverse-last']['bind'](_r25_t0);
r25_include = _r25_t0['include']['bind'](_r25_t0);
r25_xn$createstroke$7Hrq = _r25_t0['create-stroke']['bind'](_r25_t0);
r25_xn$setanchor$9Jrj = _r25_t0['set-anchor']['bind'](_r25_t0);
_r25_t0['gizmo'] = r1_globalTransform;
_r25_t0['set-width'](r1_WIDTH);
r25_xn$setwidth$9Jrj(r1_WIDTH);
r25_xn$assignunicode$7Hrq('X');
r25_include(r1_capitalMarks);
r25_TURN = r1_XH * 0.05;
r25_straight = 0.6;
r25_strench = 0.125;
r25_barone = r25_xn$createstroke$7Hrq()['start-from'](r1_SB + r1_HALFSTROKE, 0)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['heads-to'](r1_UPWARD)['line-to'](r1_SB + r1_HALFSTROKE, r25_TURN)['curve-to'](r1_SB + r1_HALFSTROKE, r25_TURN + r25_strench * (r1_CAP - r25_TURN), r1_MIDDLE + r25_straight * (r1_SB + r1_HALFSTROKE - r1_MIDDLE), r1_CAPMIDDLE + r25_straight * (r25_TURN + r25_strench * (r1_CAP - r25_TURN) - r1_CAPMIDDLE))['line-to'](r1_MIDDLE + r25_straight * (r1_RIGHTSB - r1_HALFSTROKE - r1_MIDDLE), r1_CAPMIDDLE + r25_straight * (r1_CAP - r25_TURN - r25_strench * (r1_CAP - r25_TURN) - r1_CAPMIDDLE))['curve-to'](r1_RIGHTSB - r1_HALFSTROKE, r1_CAP - r25_TURN - r25_strench * (r1_CAP - r25_TURN), r1_RIGHTSB - r1_HALFSTROKE, r1_CAP - r25_TURN)['line-to'](r1_RIGHTSB - r1_HALFSTROKE, r1_CAP)['heads-to'](r1_UPWARD);
r25_bartwo = r25_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB - r1_HALFSTROKE, 0)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['heads-to'](r1_UPWARD)['line-to'](r1_RIGHTSB - r1_HALFSTROKE, r25_TURN)['curve-to'](r1_RIGHTSB - r1_HALFSTROKE, r25_TURN + r25_strench * (r1_CAP - r25_TURN), r1_MIDDLE + r25_straight * (r1_RIGHTSB - r1_HALFSTROKE - r1_MIDDLE), r1_CAPMIDDLE + r25_straight * (r25_TURN + r25_strench * (r1_CAP - r25_TURN) - r1_CAPMIDDLE))['line-to'](r1_MIDDLE + r25_straight * (r1_SB + r1_HALFSTROKE - r1_MIDDLE), r1_CAPMIDDLE + r25_straight * (r1_CAP - r25_TURN - r25_strench * (r1_CAP - r25_TURN) - r1_CAPMIDDLE))['curve-to'](r1_SB + r1_HALFSTROKE, r1_CAP - r25_TURN - r25_strench * (r1_CAP - r25_TURN), r1_SB + r1_HALFSTROKE, r1_CAP - r25_TURN)['line-to'](r1_SB + r1_HALFSTROKE, r1_CAP)['heads-to'](r1_UPWARD);
r25_xn$putshapes$9Jrj(r25_barone['to-outline']());
r25_xn$putshapes$9Jrj(r25_bartwo['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('Y', function _r1_t14() {
var r27_xn$setwidth$9Jrj, r27_xn$assignunicode$7Hrq, r27_xn$startfrom$1aao, r27_xn$lineto$5sIl, r27_xn$curveto$1aao, r27_xn$cubicto$1aao, r27_xn$putshapes$9Jrj, r27_xn$reverselast$3qIs, r27_include, r27_xn$createstroke$7Hrq, r27_xn$setanchor$9Jrj, r27_TURN, r27_straight, r27_strench, r27_cross, r27_barone, r27_bartwo, _r27_t0;
_r27_t0 = this;
r27_xn$setwidth$9Jrj = _r27_t0['set-width']['bind'](_r27_t0);
r27_xn$assignunicode$7Hrq = _r27_t0['assign-unicode']['bind'](_r27_t0);
r27_xn$startfrom$1aao = _r27_t0['start-from']['bind'](_r27_t0);
r27_xn$lineto$5sIl = _r27_t0['line-to']['bind'](_r27_t0);
r27_xn$curveto$1aao = _r27_t0['curve-to']['bind'](_r27_t0);
r27_xn$cubicto$1aao = _r27_t0['cubic-to']['bind'](_r27_t0);
r27_xn$putshapes$9Jrj = _r27_t0['put-shapes']['bind'](_r27_t0);
r27_xn$reverselast$3qIs = _r27_t0['reverse-last']['bind'](_r27_t0);
r27_include = _r27_t0['include']['bind'](_r27_t0);
r27_xn$createstroke$7Hrq = _r27_t0['create-stroke']['bind'](_r27_t0);
r27_xn$setanchor$9Jrj = _r27_t0['set-anchor']['bind'](_r27_t0);
_r27_t0['gizmo'] = r1_globalTransform;
_r27_t0['set-width'](r1_WIDTH);
r27_xn$setwidth$9Jrj(r1_WIDTH);
r27_xn$assignunicode$7Hrq('Y');
r27_include(r1_capitalMarks);
r27_TURN = r1_XH * 0.05;
r27_straight = 0.6;
r27_strench = 0.15;
r27_cross = r1_CAP * 0.4;
r27_barone = r27_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, r27_cross)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['line-to'](r1_MIDDLE + r27_straight * (r1_RIGHTSB - r1_HALFSTROKE - r1_MIDDLE), r27_cross + r27_straight * (r1_CAP - r27_TURN - r27_strench * (r1_CAP - r27_TURN) - r27_cross))['curve-to'](r1_RIGHTSB - r1_HALFSTROKE, r1_CAP - r27_TURN - r27_strench * (r1_CAP - r27_TURN), r1_RIGHTSB - r1_HALFSTROKE, r1_CAP - r27_TURN)['line-to'](r1_RIGHTSB - r1_HALFSTROKE, r1_CAP)['heads-to'](r1_UPWARD);
r27_bartwo = r27_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, r27_cross)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['line-to'](r1_MIDDLE + r27_straight * (r1_SB + r1_HALFSTROKE - r1_MIDDLE), r27_cross + r27_straight * (r1_CAP - r27_TURN - r27_strench * (r1_CAP - r27_TURN) - r27_cross))['curve-to'](r1_SB + r1_HALFSTROKE, r1_CAP - r27_TURN - r27_strench * (r1_CAP - r27_TURN), r1_SB + r1_HALFSTROKE, r1_CAP - r27_TURN)['line-to'](r1_SB + r1_HALFSTROKE, r1_CAP)['heads-to'](r1_UPWARD);
r27_xn$putshapes$9Jrj(r27_barone['to-outline']());
r27_xn$putshapes$9Jrj(r27_bartwo['to-outline']());
r27_xn$putshapes$9Jrj(r27_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, 0)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['heads-to'](r1_UPWARD)['line-to'](r1_MIDDLE, r27_cross + r1_HALFSTROKE)['heads-to'](r1_UPWARD)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('K', function _r1_t15() {
var r29_xn$setwidth$9Jrj, r29_xn$assignunicode$7Hrq, r29_xn$startfrom$1aao, r29_xn$lineto$5sIl, r29_xn$curveto$1aao, r29_xn$cubicto$1aao, r29_xn$putshapes$9Jrj, r29_xn$reverselast$3qIs, r29_include, r29_xn$createstroke$7Hrq, r29_xn$setanchor$9Jrj, r29_TURN, r29_rturn, r29_right, r29_fine, _r29_t0;
_r29_t0 = this;
r29_xn$setwidth$9Jrj = _r29_t0['set-width']['bind'](_r29_t0);
r29_xn$assignunicode$7Hrq = _r29_t0['assign-unicode']['bind'](_r29_t0);
r29_xn$startfrom$1aao = _r29_t0['start-from']['bind'](_r29_t0);
r29_xn$lineto$5sIl = _r29_t0['line-to']['bind'](_r29_t0);
r29_xn$curveto$1aao = _r29_t0['curve-to']['bind'](_r29_t0);
r29_xn$cubicto$1aao = _r29_t0['cubic-to']['bind'](_r29_t0);
r29_xn$putshapes$9Jrj = _r29_t0['put-shapes']['bind'](_r29_t0);
r29_xn$reverselast$3qIs = _r29_t0['reverse-last']['bind'](_r29_t0);
r29_include = _r29_t0['include']['bind'](_r29_t0);
r29_xn$createstroke$7Hrq = _r29_t0['create-stroke']['bind'](_r29_t0);
r29_xn$setanchor$9Jrj = _r29_t0['set-anchor']['bind'](_r29_t0);
_r29_t0['gizmo'] = r1_globalTransform;
_r29_t0['set-width'](r1_WIDTH);
r29_xn$setwidth$9Jrj(r1_WIDTH);
r29_xn$assignunicode$7Hrq('K');
r29_include(r1_capitalMarks);
r29_TURN = r1_CAP * 0.95;
r29_rturn = r1_XH * 0.1;
r29_right = r1_RIGHTSB - r1_O;
r29_fine = Math['min'](r1_STROKE, (r1_WIDTH - r1_SB * 2) * 0.25);
r29_xn$putshapes$9Jrj(r29_xn$createstroke$7Hrq()['start-from'](r1_SB, 0)['set-width'](0, r1_STROKE)['heads-to'](r1_UPWARD)['line-to'](r1_SB, r1_CAP)['heads-to'](r1_UPWARD)['to-outline']());
r29_xn$putshapes$9Jrj(r29_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB, r1_CAP)['heads-to'](r1_DOWNWARD)['set-width'](0, r1_STROKE)['line-to'](r1_RIGHTSB, r29_TURN)['heads-to'](r1_DOWNWARD)['curve-to'](r1_RIGHTSB, (1 - 0.18) * r29_TURN, r1_SB + r1_STROKE, r1_CAP * 0.35)['set-width'](0, r29_fine)['to-outline']());
r29_xn$putshapes$9Jrj(r29_xn$createstroke$7Hrq()['start-from'](r29_right - r1_HALFSTROKE, 0)['heads-to'](r1_UPWARD)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['curve-to'](r29_right - r1_HALFSTROKE, r29_rturn + 0.2 * (r1_XH - r29_rturn), r1_MIDDLE, r1_CAPMIDDLE + r1_HALFSTROKE)['set-width'](r29_fine / 2, r29_fine / 2)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('B', function _r1_t16() {
var r31_xn$setwidth$9Jrj, r31_xn$assignunicode$7Hrq, r31_xn$startfrom$1aao, r31_xn$lineto$5sIl, r31_xn$curveto$1aao, r31_xn$cubicto$1aao, r31_xn$putshapes$9Jrj, r31_xn$reverselast$3qIs, r31_include, r31_xn$createstroke$7Hrq, r31_xn$setanchor$9Jrj, r31_bowl, r31_tkappa, r31_bkappa, r31_turntop, r31_turnbottom, r31_topbowl, r31_bottombowl, r31_leftbar, _r31_t0;
_r31_t0 = this;
r31_xn$setwidth$9Jrj = _r31_t0['set-width']['bind'](_r31_t0);
r31_xn$assignunicode$7Hrq = _r31_t0['assign-unicode']['bind'](_r31_t0);
r31_xn$startfrom$1aao = _r31_t0['start-from']['bind'](_r31_t0);
r31_xn$lineto$5sIl = _r31_t0['line-to']['bind'](_r31_t0);
r31_xn$curveto$1aao = _r31_t0['curve-to']['bind'](_r31_t0);
r31_xn$cubicto$1aao = _r31_t0['cubic-to']['bind'](_r31_t0);
r31_xn$putshapes$9Jrj = _r31_t0['put-shapes']['bind'](_r31_t0);
r31_xn$reverselast$3qIs = _r31_t0['reverse-last']['bind'](_r31_t0);
r31_include = _r31_t0['include']['bind'](_r31_t0);
r31_xn$createstroke$7Hrq = _r31_t0['create-stroke']['bind'](_r31_t0);
r31_xn$setanchor$9Jrj = _r31_t0['set-anchor']['bind'](_r31_t0);
_r31_t0['gizmo'] = r1_globalTransform;
_r31_t0['set-width'](r1_WIDTH);
r31_xn$setwidth$9Jrj(r1_WIDTH);
r31_xn$assignunicode$7Hrq('B');
r31_include(r1_capitalMarks);
r31_bowl = 451;
r31_tkappa = r1_COKAPPA - 0.22;
r31_bkappa = r1_COKAPPA - 0.2;
r31_turntop = (r1_CAP + (r31_bowl - r1_STROKE)) / 2;
r31_turnbottom = r31_bowl / 2;
r31_topbowl = r31_xn$createstroke$7Hrq();
r31_topbowl['start-from'](r1_SB, r1_CAP)['heads-to'](r1_RIGHTWARD)['line-to'](r1_RIGHTSB - r1_SB * 0.5 - r31_turnbottom, r1_CAP)['cubic-to'](r1_RIGHTSB - r1_SB * 0.5 - r31_tkappa * r31_turnbottom, r1_CAP, r1_RIGHTSB - r1_SB * 0.5, r31_turntop + (r1_CAP - r31_turntop) * r1_KAPPA, r1_RIGHTSB - r1_SB * 0.5, r31_turntop)['cubic-to'](r1_RIGHTSB - r1_SB * 0.5, r31_turntop + r1_KAPPA * (r31_bowl - r1_STROKE - r31_turntop), r1_RIGHTSB - r1_SB * 0.5 - r31_tkappa * r31_turnbottom, r31_bowl - r1_STROKE, r1_RIGHTSB - r1_SB * 0.5 - r31_turnbottom, r31_bowl - r1_STROKE)['line-to'](r1_SB, r31_bowl - r1_STROKE)['heads-to'](r1_LEFTWARD);
r31_bottombowl = r31_xn$createstroke$7Hrq();
r31_bottombowl['start-from'](r1_SB, 0)['heads-to'](r1_RIGHTWARD)['line-to'](r1_RIGHTSB - r31_turnbottom, 0)['cubic-to'](r1_RIGHTSB - r31_bkappa * r31_turnbottom, 0, r1_RIGHTSB, r31_turnbottom * r1_KAPPA, r1_RIGHTSB, r31_turnbottom)['cubic-to'](r1_RIGHTSB, r31_turnbottom + r1_KAPPA * (r31_bowl - r31_turnbottom), r1_RIGHTSB - r31_bkappa * r31_turnbottom, r31_bowl, r1_RIGHTSB - r31_turnbottom, r31_bowl)['line-to'](r1_SB, r31_bowl)['heads-to'](r1_LEFTWARD);
r31_leftbar = r31_xn$createstroke$7Hrq()['start-from'](r1_SB, 0)['heads-to'](r1_UPWARD)['line-to'](r1_SB, r1_CAP)['heads-to'](r1_UPWARD);
r31_xn$putshapes$9Jrj(r31_topbowl['to-outline'](0, r1_STROKE));
r31_xn$putshapes$9Jrj(r31_bottombowl['to-outline'](r1_STROKE, 0));
r31_xn$putshapes$9Jrj(r31_leftbar['to-outline'](0, r1_STROKE));
return void 0;
});
r1_xn$createglyph$7Hrq('D', function _r1_t17() {
var r33_xn$setwidth$9Jrj, r33_xn$assignunicode$7Hrq, r33_xn$startfrom$1aao, r33_xn$lineto$5sIl, r33_xn$curveto$1aao, r33_xn$cubicto$1aao, r33_xn$putshapes$9Jrj, r33_xn$reverselast$3qIs, r33_include, r33_xn$createstroke$7Hrq, r33_xn$setanchor$9Jrj, r33_dsmooth, r33_bsmooth, r33_bkappa, r33_leftbar, r33_bowl, _r33_t0;
_r33_t0 = this;
r33_xn$setwidth$9Jrj = _r33_t0['set-width']['bind'](_r33_t0);
r33_xn$assignunicode$7Hrq = _r33_t0['assign-unicode']['bind'](_r33_t0);
r33_xn$startfrom$1aao = _r33_t0['start-from']['bind'](_r33_t0);
r33_xn$lineto$5sIl = _r33_t0['line-to']['bind'](_r33_t0);
r33_xn$curveto$1aao = _r33_t0['curve-to']['bind'](_r33_t0);
r33_xn$cubicto$1aao = _r33_t0['cubic-to']['bind'](_r33_t0);
r33_xn$putshapes$9Jrj = _r33_t0['put-shapes']['bind'](_r33_t0);
r33_xn$reverselast$3qIs = _r33_t0['reverse-last']['bind'](_r33_t0);
r33_include = _r33_t0['include']['bind'](_r33_t0);
r33_xn$createstroke$7Hrq = _r33_t0['create-stroke']['bind'](_r33_t0);
r33_xn$setanchor$9Jrj = _r33_t0['set-anchor']['bind'](_r33_t0);
_r33_t0['gizmo'] = r1_globalTransform;
_r33_t0['set-width'](r1_WIDTH);
r33_xn$setwidth$9Jrj(r1_WIDTH);
r33_xn$assignunicode$7Hrq('D');
r33_include(r1_capitalMarks);
r33_dsmooth = r1_SMOOTH * 1.55;
r33_bsmooth = r1_SMOOTH * 1.3;
r33_bkappa = r1_COKAPPA - 0.2;
r33_leftbar = r33_xn$createstroke$7Hrq()['start-from'](r1_SB, 0)['heads-to'](r1_UPWARD)['line-to'](r1_SB, r1_CAP)['heads-to'](r1_UPWARD);
r33_bowl = r33_xn$createstroke$7Hrq();
r33_bowl['start-from'](r1_SB, 0)['heads-to'](r1_RIGHTWARD)['line-to'](r1_RIGHTSB - r33_bsmooth, 0)['cubic-to'](r1_RIGHTSB - r33_bkappa * r33_bsmooth, 0, r1_RIGHTSB, r1_COBKAPPA * r33_dsmooth, r1_RIGHTSB, r33_dsmooth)['line-to'](r1_RIGHTSB, r1_CAP - r33_dsmooth)['cubic-to'](r1_RIGHTSB, r1_CAP - r1_COBKAPPA * r33_dsmooth, r1_RIGHTSB - r33_bkappa * r33_bsmooth, r1_CAP, r1_RIGHTSB - r33_bsmooth, r1_CAP)['line-to'](r1_SB, r1_CAP)['heads-to'](r1_LEFTWARD);
r33_xn$putshapes$9Jrj(r33_bowl['to-outline'](r1_STROKE, 0));
r33_xn$putshapes$9Jrj(r33_leftbar['to-outline'](0, r1_STROKE));
return void 0;
});
r1_xn$createglyph$7Hrq('P', function _r1_t18() {
var r35_xn$setwidth$9Jrj, r35_xn$assignunicode$7Hrq, r35_xn$startfrom$1aao, r35_xn$lineto$5sIl, r35_xn$curveto$1aao, r35_xn$cubicto$1aao, r35_xn$putshapes$9Jrj, r35_xn$reverselast$3qIs, r35_include, r35_xn$createstroke$7Hrq, r35_xn$setanchor$9Jrj, r35_bowl, r35_bkappa, r35_turntop, r35_turnbottom, r35_topbowl, r35_leftbar, _r35_t0;
_r35_t0 = this;
r35_xn$setwidth$9Jrj = _r35_t0['set-width']['bind'](_r35_t0);
r35_xn$assignunicode$7Hrq = _r35_t0['assign-unicode']['bind'](_r35_t0);
r35_xn$startfrom$1aao = _r35_t0['start-from']['bind'](_r35_t0);
r35_xn$lineto$5sIl = _r35_t0['line-to']['bind'](_r35_t0);
r35_xn$curveto$1aao = _r35_t0['curve-to']['bind'](_r35_t0);
r35_xn$cubicto$1aao = _r35_t0['cubic-to']['bind'](_r35_t0);
r35_xn$putshapes$9Jrj = _r35_t0['put-shapes']['bind'](_r35_t0);
r35_xn$reverselast$3qIs = _r35_t0['reverse-last']['bind'](_r35_t0);
r35_include = _r35_t0['include']['bind'](_r35_t0);
r35_xn$createstroke$7Hrq = _r35_t0['create-stroke']['bind'](_r35_t0);
r35_xn$setanchor$9Jrj = _r35_t0['set-anchor']['bind'](_r35_t0);
_r35_t0['gizmo'] = r1_globalTransform;
_r35_t0['set-width'](r1_WIDTH);
r35_xn$setwidth$9Jrj(r1_WIDTH);
r35_xn$assignunicode$7Hrq('P');
r35_include(r1_capitalMarks);
r35_bowl = r1_CAPMIDDLE;
r35_bkappa = r1_COKAPPA - 0.2;
r35_turntop = (r1_CAP + (r35_bowl - r1_HALFSTROKE)) / 2;
r35_turnbottom = r35_bowl / 2;
r35_topbowl = r35_xn$createstroke$7Hrq()['start-from'](r1_SB * 1.25, r1_CAP)['heads-to'](r1_RIGHTWARD)['line-to'](r1_RIGHTSB - r35_turnbottom, r1_CAP)['arc-hv-to'](r1_RIGHTSB - r1_O, r35_turntop)['arc-vh-to'](r1_RIGHTSB - r35_turnbottom, r35_bowl - r1_HALFSTROKE)['line-to'](r1_SB * 1.25, r35_bowl - r1_HALFSTROKE)['heads-to'](r1_LEFTWARD);
r35_leftbar = r35_xn$createstroke$7Hrq()['start-from'](r1_SB * 1.25, 0)['heads-to'](r1_UPWARD)['line-to'](r1_SB * 1.25, r1_CAP)['heads-to'](r1_UPWARD);
r35_xn$putshapes$9Jrj(r35_topbowl['to-outline'](0, r1_STROKE));
r35_xn$putshapes$9Jrj(r35_leftbar['to-outline'](0, r1_STROKE));
return void 0;
});
r1_xn$createglyph$7Hrq('R', function _r1_t19() {
var r37_xn$setwidth$9Jrj, r37_xn$assignunicode$7Hrq, r37_xn$startfrom$1aao, r37_xn$lineto$5sIl, r37_xn$curveto$1aao, r37_xn$cubicto$1aao, r37_xn$putshapes$9Jrj, r37_xn$reverselast$3qIs, r37_include, r37_xn$createstroke$7Hrq, r37_xn$setanchor$9Jrj, r37_TURN, r37_right, _r37_t0;
_r37_t0 = this;
r37_xn$setwidth$9Jrj = _r37_t0['set-width']['bind'](_r37_t0);
r37_xn$assignunicode$7Hrq = _r37_t0['assign-unicode']['bind'](_r37_t0);
r37_xn$startfrom$1aao = _r37_t0['start-from']['bind'](_r37_t0);
r37_xn$lineto$5sIl = _r37_t0['line-to']['bind'](_r37_t0);
r37_xn$curveto$1aao = _r37_t0['curve-to']['bind'](_r37_t0);
r37_xn$cubicto$1aao = _r37_t0['cubic-to']['bind'](_r37_t0);
r37_xn$putshapes$9Jrj = _r37_t0['put-shapes']['bind'](_r37_t0);
r37_xn$reverselast$3qIs = _r37_t0['reverse-last']['bind'](_r37_t0);
r37_include = _r37_t0['include']['bind'](_r37_t0);
r37_xn$createstroke$7Hrq = _r37_t0['create-stroke']['bind'](_r37_t0);
r37_xn$setanchor$9Jrj = _r37_t0['set-anchor']['bind'](_r37_t0);
_r37_t0['gizmo'] = r1_globalTransform;
_r37_t0['set-width'](r1_WIDTH);
r37_xn$setwidth$9Jrj(r1_WIDTH);
r37_xn$assignunicode$7Hrq('R');
r37_include(r1_glyphs['P'], true);
r37_TURN = r1_XH * 0.1;
r37_right = r1_RIGHTSB - r1_O;
r37_xn$putshapes$9Jrj(r37_xn$createstroke$7Hrq()['start-from'](r37_right - r1_HALFSTROKE, 0)['heads-to'](r1_UPWARD)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['curve-to'](r37_right - r1_HALFSTROKE, r37_TURN + 0.2 * (r1_XH - r37_TURN), r1_MIDDLE, r1_CAPMIDDLE)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('C', function _r1_t20() {
var r39_xn$setwidth$9Jrj, r39_xn$assignunicode$7Hrq, r39_xn$startfrom$1aao, r39_xn$lineto$5sIl, r39_xn$curveto$1aao, r39_xn$cubicto$1aao, r39_xn$putshapes$9Jrj, r39_xn$reverselast$3qIs, r39_include, r39_xn$createstroke$7Hrq, r39_xn$setanchor$9Jrj, r39_outline, _r39_t0;
_r39_t0 = this;
r39_xn$setwidth$9Jrj = _r39_t0['set-width']['bind'](_r39_t0);
r39_xn$assignunicode$7Hrq = _r39_t0['assign-unicode']['bind'](_r39_t0);
r39_xn$startfrom$1aao = _r39_t0['start-from']['bind'](_r39_t0);
r39_xn$lineto$5sIl = _r39_t0['line-to']['bind'](_r39_t0);
r39_xn$curveto$1aao = _r39_t0['curve-to']['bind'](_r39_t0);
r39_xn$cubicto$1aao = _r39_t0['cubic-to']['bind'](_r39_t0);
r39_xn$putshapes$9Jrj = _r39_t0['put-shapes']['bind'](_r39_t0);
r39_xn$reverselast$3qIs = _r39_t0['reverse-last']['bind'](_r39_t0);
r39_include = _r39_t0['include']['bind'](_r39_t0);
r39_xn$createstroke$7Hrq = _r39_t0['create-stroke']['bind'](_r39_t0);
r39_xn$setanchor$9Jrj = _r39_t0['set-anchor']['bind'](_r39_t0);
_r39_t0['gizmo'] = r1_globalTransform;
_r39_t0['set-width'](r1_WIDTH);
r39_xn$setwidth$9Jrj(r1_WIDTH);
r39_xn$assignunicode$7Hrq('C');
r39_include(r1_capitalMarks);
r39_outline = r39_xn$createstroke$7Hrq();
r39_outline['start-from'](r1_RIGHTSB - r1_OXHOOK, r1_CAP - r1_HOOK)['curve-to'](r1_MIDDLE + r1_KAPPA_HOOK * (r1_MIDDLE - r1_para['sb']), r1_CAPO, r1_MIDDLE, r1_CAPO)['heads-to'](r1_LEFTWARD)['arc-hv-to'](r1_SB, r1_CAP - r1_SMOOTHA)['line-to'](r1_SB, r1_SMOOTHB)['arc-vh-to'](r1_MIDDLE, r1_O)['heads-to'](r1_RIGHTWARD)['curve-to'](r1_MIDDLE + r1_ITALICCORS + r1_KAPPA_HOOK * (r1_MIDDLE - r1_SB), r1_O, r1_RIGHTSB - r1_OXHOOK, r1_HOOK);
r39_xn$putshapes$9Jrj(r39_outline['to-outline'](r1_STROKE, 0));
return void 0;
});
r1_xn$createglyph$7Hrq('G', function _r1_t21() {
var r41_xn$setwidth$9Jrj, r41_xn$assignunicode$7Hrq, r41_xn$startfrom$1aao, r41_xn$lineto$5sIl, r41_xn$curveto$1aao, r41_xn$cubicto$1aao, r41_xn$putshapes$9Jrj, r41_xn$reverselast$3qIs, r41_include, r41_xn$createstroke$7Hrq, r41_xn$setanchor$9Jrj, r41_outline, r41_bar, _r41_t0;
_r41_t0 = this;
r41_xn$setwidth$9Jrj = _r41_t0['set-width']['bind'](_r41_t0);
r41_xn$assignunicode$7Hrq = _r41_t0['assign-unicode']['bind'](_r41_t0);
r41_xn$startfrom$1aao = _r41_t0['start-from']['bind'](_r41_t0);
r41_xn$lineto$5sIl = _r41_t0['line-to']['bind'](_r41_t0);
r41_xn$curveto$1aao = _r41_t0['curve-to']['bind'](_r41_t0);
r41_xn$cubicto$1aao = _r41_t0['cubic-to']['bind'](_r41_t0);
r41_xn$putshapes$9Jrj = _r41_t0['put-shapes']['bind'](_r41_t0);
r41_xn$reverselast$3qIs = _r41_t0['reverse-last']['bind'](_r41_t0);
r41_include = _r41_t0['include']['bind'](_r41_t0);
r41_xn$createstroke$7Hrq = _r41_t0['create-stroke']['bind'](_r41_t0);
r41_xn$setanchor$9Jrj = _r41_t0['set-anchor']['bind'](_r41_t0);
_r41_t0['gizmo'] = r1_globalTransform;
_r41_t0['set-width'](r1_WIDTH);
r41_xn$setwidth$9Jrj(r1_WIDTH);
r41_xn$assignunicode$7Hrq('G');
r41_include(r1_capitalMarks);
r41_outline = r41_xn$createstroke$7Hrq();
r41_outline['start-from'](r1_RIGHTSB - r1_OXHOOK, r1_CAP - r1_HOOK)['curve-to'](r1_MIDDLE + r1_KAPPA_HOOK * (r1_MIDDLE - r1_para['sb']), r1_CAPO, r1_MIDDLE, r1_CAPO)['heads-to'](r1_LEFTWARD)['arc-hv-to'](r1_SB, r1_CAP - r1_SMOOTHA)['line-to'](r1_SB, r1_SMOOTHB)['arc-vh-to'](r1_MIDDLE, r1_O)['heads-to'](r1_RIGHTWARD)['arc-hv-to'](r1_RIGHTSB, r1_SMOOTHA)['line-to'](r1_RIGHTSB, r1_CAP / 2 + r1_STROKE / 2)['heads-to'](r1_UPWARD);
r41_xn$putshapes$9Jrj(r41_outline['to-outline'](r1_STROKE, 0));
r41_bar = r41_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, r1_CAP / 2 + r1_STROKE / 2)['line-to'](r1_RIGHTSB, r1_CAP / 2 + r1_STROKE / 2)['heads-to'](r1_RIGHTWARD);
r41_xn$putshapes$9Jrj(r41_bar['to-outline'](0, r1_STROKE));
return void 0;
});
r1_xn$createglyph$7Hrq('O', function _r1_t22() {
var r43_xn$setwidth$9Jrj, r43_xn$assignunicode$7Hrq, r43_xn$startfrom$1aao, r43_xn$lineto$5sIl, r43_xn$curveto$1aao, r43_xn$cubicto$1aao, r43_xn$putshapes$9Jrj, r43_xn$reverselast$3qIs, r43_include, r43_xn$createstroke$7Hrq, r43_xn$setanchor$9Jrj, r43_outline, _r43_t0;
_r43_t0 = this;
r43_xn$setwidth$9Jrj = _r43_t0['set-width']['bind'](_r43_t0);
r43_xn$assignunicode$7Hrq = _r43_t0['assign-unicode']['bind'](_r43_t0);
r43_xn$startfrom$1aao = _r43_t0['start-from']['bind'](_r43_t0);
r43_xn$lineto$5sIl = _r43_t0['line-to']['bind'](_r43_t0);
r43_xn$curveto$1aao = _r43_t0['curve-to']['bind'](_r43_t0);
r43_xn$cubicto$1aao = _r43_t0['cubic-to']['bind'](_r43_t0);
r43_xn$putshapes$9Jrj = _r43_t0['put-shapes']['bind'](_r43_t0);
r43_xn$reverselast$3qIs = _r43_t0['reverse-last']['bind'](_r43_t0);
r43_include = _r43_t0['include']['bind'](_r43_t0);
r43_xn$createstroke$7Hrq = _r43_t0['create-stroke']['bind'](_r43_t0);
r43_xn$setanchor$9Jrj = _r43_t0['set-anchor']['bind'](_r43_t0);
_r43_t0['gizmo'] = r1_globalTransform;
_r43_t0['set-width'](r1_WIDTH);
r43_xn$setwidth$9Jrj(r1_WIDTH);
r43_xn$assignunicode$7Hrq('O');
r43_include(r1_capitalMarks);
r43_outline = r43_xn$createstroke$7Hrq();
r43_outline['start-from'](r1_MIDDLE, r1_CAPO)['heads-to'](r1_LEFTWARD)['arc-hv-to'](r1_SB, r1_CAP - r1_SMOOTHA)['line-to'](r1_SB, r1_SMOOTHB)['arc-vh-to'](r1_MIDDLE, r1_O)['heads-to'](r1_RIGHTWARD)['arc-hv-to'](r1_RIGHTSB, r1_SMOOTHA)['line-to'](r1_RIGHTSB, r1_CAP - r1_SMOOTHB)['arc-vh-to'](r1_MIDDLE, r1_CAPO)['heads-to'](r1_LEFTWARD);
r43_xn$putshapes$9Jrj(r43_outline['to-outline'](r1_STROKE, 0));
return void 0;
});
r1_xn$createglyph$7Hrq('zero.slashed', function _r1_t23() {
var r45_xn$setwidth$9Jrj, r45_xn$assignunicode$7Hrq, r45_xn$startfrom$1aao, r45_xn$lineto$5sIl, r45_xn$curveto$1aao, r45_xn$cubicto$1aao, r45_xn$putshapes$9Jrj, r45_xn$reverselast$3qIs, r45_include, r45_xn$createstroke$7Hrq, r45_xn$setanchor$9Jrj, r45_bar, _r45_t0;
_r45_t0 = this;
r45_xn$setwidth$9Jrj = _r45_t0['set-width']['bind'](_r45_t0);
r45_xn$assignunicode$7Hrq = _r45_t0['assign-unicode']['bind'](_r45_t0);
r45_xn$startfrom$1aao = _r45_t0['start-from']['bind'](_r45_t0);
r45_xn$lineto$5sIl = _r45_t0['line-to']['bind'](_r45_t0);
r45_xn$curveto$1aao = _r45_t0['curve-to']['bind'](_r45_t0);
r45_xn$cubicto$1aao = _r45_t0['cubic-to']['bind'](_r45_t0);
r45_xn$putshapes$9Jrj = _r45_t0['put-shapes']['bind'](_r45_t0);
r45_xn$reverselast$3qIs = _r45_t0['reverse-last']['bind'](_r45_t0);
r45_include = _r45_t0['include']['bind'](_r45_t0);
r45_xn$createstroke$7Hrq = _r45_t0['create-stroke']['bind'](_r45_t0);
r45_xn$setanchor$9Jrj = _r45_t0['set-anchor']['bind'](_r45_t0);
_r45_t0['gizmo'] = r1_globalTransform;
_r45_t0['set-width'](r1_WIDTH);
r45_xn$setwidth$9Jrj(r1_WIDTH);
r45_xn$putshapes$9Jrj(r1_glyphs['O']['contours']);
r45_bar = r45_xn$createstroke$7Hrq()['start-from'](r1_SB + r1_STROKE / 2, r1_CAP * (1 - 0.65))['line-to'](r1_RIGHTSB - r1_STROKE / 2, r1_CAP * 0.65);
r45_xn$putshapes$9Jrj(r45_bar['to-outline'](r1_STROKE / 2, r1_STROKE / 2));
return void 0;
});
r1_xn$createglyph$7Hrq('zero.unslashed', function _r1_t24() {
var r47_xn$setwidth$9Jrj, r47_xn$assignunicode$7Hrq, r47_xn$startfrom$1aao, r47_xn$lineto$5sIl, r47_xn$curveto$1aao, r47_xn$cubicto$1aao, r47_xn$putshapes$9Jrj, r47_xn$reverselast$3qIs, r47_include, r47_xn$createstroke$7Hrq, r47_xn$setanchor$9Jrj, _r47_t0;
_r47_t0 = this;
r47_xn$setwidth$9Jrj = _r47_t0['set-width']['bind'](_r47_t0);
r47_xn$assignunicode$7Hrq = _r47_t0['assign-unicode']['bind'](_r47_t0);
r47_xn$startfrom$1aao = _r47_t0['start-from']['bind'](_r47_t0);
r47_xn$lineto$5sIl = _r47_t0['line-to']['bind'](_r47_t0);
r47_xn$curveto$1aao = _r47_t0['curve-to']['bind'](_r47_t0);
r47_xn$cubicto$1aao = _r47_t0['cubic-to']['bind'](_r47_t0);
r47_xn$putshapes$9Jrj = _r47_t0['put-shapes']['bind'](_r47_t0);
r47_xn$reverselast$3qIs = _r47_t0['reverse-last']['bind'](_r47_t0);
r47_include = _r47_t0['include']['bind'](_r47_t0);
r47_xn$createstroke$7Hrq = _r47_t0['create-stroke']['bind'](_r47_t0);
r47_xn$setanchor$9Jrj = _r47_t0['set-anchor']['bind'](_r47_t0);
_r47_t0['gizmo'] = r1_globalTransform;
_r47_t0['set-width'](r1_WIDTH);
r47_include(r1_glyphs['O']);
return void 0;
});
r1_xn$createglyph$7Hrq('zero.dotted', function _r1_t25() {
var r49_xn$setwidth$9Jrj, r49_xn$assignunicode$7Hrq, r49_xn$startfrom$1aao, r49_xn$lineto$5sIl, r49_xn$curveto$1aao, r49_xn$cubicto$1aao, r49_xn$putshapes$9Jrj, r49_xn$reverselast$3qIs, r49_include, r49_xn$createstroke$7Hrq, r49_xn$setanchor$9Jrj, _r49_t0;
_r49_t0 = this;
r49_xn$setwidth$9Jrj = _r49_t0['set-width']['bind'](_r49_t0);
r49_xn$assignunicode$7Hrq = _r49_t0['assign-unicode']['bind'](_r49_t0);
r49_xn$startfrom$1aao = _r49_t0['start-from']['bind'](_r49_t0);
r49_xn$lineto$5sIl = _r49_t0['line-to']['bind'](_r49_t0);
r49_xn$curveto$1aao = _r49_t0['curve-to']['bind'](_r49_t0);
r49_xn$cubicto$1aao = _r49_t0['cubic-to']['bind'](_r49_t0);
r49_xn$putshapes$9Jrj = _r49_t0['put-shapes']['bind'](_r49_t0);
r49_xn$reverselast$3qIs = _r49_t0['reverse-last']['bind'](_r49_t0);
r49_include = _r49_t0['include']['bind'](_r49_t0);
r49_xn$createstroke$7Hrq = _r49_t0['create-stroke']['bind'](_r49_t0);
r49_xn$setanchor$9Jrj = _r49_t0['set-anchor']['bind'](_r49_t0);
_r49_t0['gizmo'] = r1_globalTransform;
_r49_t0['set-width'](r1_WIDTH);
r49_include(r1_glyphs['O']);
r49_xn$putshapes$9Jrj([r1_Ring(r1_CAPMIDDLE + r1_DOTRADIUS, r1_CAPMIDDLE - r1_DOTRADIUS, r1_MIDDLE + r1_DOTRADIUS, r1_MIDDLE - r1_DOTRADIUS)]);
return void 0;
});
r1_xn$createglyph$7Hrq('zero', function _r1_t26() {
var r51_xn$setwidth$9Jrj, r51_xn$assignunicode$7Hrq, r51_xn$startfrom$1aao, r51_xn$lineto$5sIl, r51_xn$curveto$1aao, r51_xn$cubicto$1aao, r51_xn$putshapes$9Jrj, r51_xn$reverselast$3qIs, r51_include, r51_xn$createstroke$7Hrq, r51_xn$setanchor$9Jrj, r51_otherwise, _r51_t0, _r51_t1, _r51_t2, _r51_t3, _r51_t4, _r51_t5, _r51_t6, _r51_t7;
_r51_t1 = this;
r51_xn$setwidth$9Jrj = _r51_t1['set-width']['bind'](_r51_t1);
r51_xn$assignunicode$7Hrq = _r51_t1['assign-unicode']['bind'](_r51_t1);
r51_xn$startfrom$1aao = _r51_t1['start-from']['bind'](_r51_t1);
r51_xn$lineto$5sIl = _r51_t1['line-to']['bind'](_r51_t1);
r51_xn$curveto$1aao = _r51_t1['curve-to']['bind'](_r51_t1);
r51_xn$cubicto$1aao = _r51_t1['cubic-to']['bind'](_r51_t1);
r51_xn$putshapes$9Jrj = _r51_t1['put-shapes']['bind'](_r51_t1);
r51_xn$reverselast$3qIs = _r51_t1['reverse-last']['bind'](_r51_t1);
r51_include = _r51_t1['include']['bind'](_r51_t1);
r51_xn$createstroke$7Hrq = _r51_t1['create-stroke']['bind'](_r51_t1);
r51_xn$setanchor$9Jrj = _r51_t1['set-anchor']['bind'](_r51_t1);
_r51_t1['gizmo'] = r1_globalTransform;
_r51_t1['set-width'](r1_WIDTH);
r51_xn$setwidth$9Jrj(r1_WIDTH);
r51_xn$assignunicode$7Hrq('0');
_r51_t2 = r51_include;
_r51_t3 = r1_glyphs;
_r51_t0 = r1_variantSelector['zero'];
if ('slashed' === _r51_t0) {
_r51_t4 = 'zero.slashed';
} else {
if ('dotted' === _r51_t0) {
_r51_t5 = 'zero.dotted';
} else {
if ('unslahsed' === _r51_t0) {
_r51_t6 = 'zero.unslashed';
} else {
r51_otherwise = _r51_t0;
_r51_t6 = 'zero.slashed';
}
_r51_t5 = _r51_t6;
}
_r51_t4 = _r51_t5;
}
_r51_t7 = _r51_t3[_r51_t4];
_r51_t2(_r51_t7);
return void 0;
});
r1_xn$createglyph$7Hrq('Q', function _r1_t27() {
var r53_xn$setwidth$9Jrj, r53_xn$assignunicode$7Hrq, r53_xn$startfrom$1aao, r53_xn$lineto$5sIl, r53_xn$curveto$1aao, r53_xn$cubicto$1aao, r53_xn$putshapes$9Jrj, r53_xn$reverselast$3qIs, r53_include, r53_xn$createstroke$7Hrq, r53_xn$setanchor$9Jrj, _r53_t0;
_r53_t0 = this;
r53_xn$setwidth$9Jrj = _r53_t0['set-width']['bind'](_r53_t0);
r53_xn$assignunicode$7Hrq = _r53_t0['assign-unicode']['bind'](_r53_t0);
r53_xn$startfrom$1aao = _r53_t0['start-from']['bind'](_r53_t0);
r53_xn$lineto$5sIl = _r53_t0['line-to']['bind'](_r53_t0);
r53_xn$curveto$1aao = _r53_t0['curve-to']['bind'](_r53_t0);
r53_xn$cubicto$1aao = _r53_t0['cubic-to']['bind'](_r53_t0);
r53_xn$putshapes$9Jrj = _r53_t0['put-shapes']['bind'](_r53_t0);
r53_xn$reverselast$3qIs = _r53_t0['reverse-last']['bind'](_r53_t0);
r53_include = _r53_t0['include']['bind'](_r53_t0);
r53_xn$createstroke$7Hrq = _r53_t0['create-stroke']['bind'](_r53_t0);
r53_xn$setanchor$9Jrj = _r53_t0['set-anchor']['bind'](_r53_t0);
_r53_t0['gizmo'] = r1_globalTransform;
_r53_t0['set-width'](r1_WIDTH);
r53_xn$setwidth$9Jrj(r1_WIDTH);
r53_xn$assignunicode$7Hrq('Q');
r53_include(r1_glyphs['O'], true);
r53_xn$startfrom$1aao(r1_MIDDLE, 0);
r53_xn$lineto$5sIl(r1_MIDDLE + r1_STROKE / 2, -r1_CAP * 0.2);
r53_xn$lineto$5sIl(r1_MIDDLE + r1_STROKE / 2 + r1_STROKE, -r1_CAP * 0.2);
r53_xn$lineto$5sIl(r1_MIDDLE + r1_STROKE, 0);
r53_xn$lineto$5sIl(r1_MIDDLE + r1_STROKE * (1 - 0.5 / 3), r1_STROKE * 0.5);
r53_xn$reverselast$3qIs();
return void 0;
});
r1_xn$createglyph$7Hrq('U', function _r1_t28() {
var r55_xn$setwidth$9Jrj, r55_xn$assignunicode$7Hrq, r55_xn$startfrom$1aao, r55_xn$lineto$5sIl, r55_xn$curveto$1aao, r55_xn$cubicto$1aao, r55_xn$putshapes$9Jrj, r55_xn$reverselast$3qIs, r55_include, r55_xn$createstroke$7Hrq, r55_xn$setanchor$9Jrj, r55_outline, _r55_t0;
_r55_t0 = this;
r55_xn$setwidth$9Jrj = _r55_t0['set-width']['bind'](_r55_t0);
r55_xn$assignunicode$7Hrq = _r55_t0['assign-unicode']['bind'](_r55_t0);
r55_xn$startfrom$1aao = _r55_t0['start-from']['bind'](_r55_t0);
r55_xn$lineto$5sIl = _r55_t0['line-to']['bind'](_r55_t0);
r55_xn$curveto$1aao = _r55_t0['curve-to']['bind'](_r55_t0);
r55_xn$cubicto$1aao = _r55_t0['cubic-to']['bind'](_r55_t0);
r55_xn$putshapes$9Jrj = _r55_t0['put-shapes']['bind'](_r55_t0);
r55_xn$reverselast$3qIs = _r55_t0['reverse-last']['bind'](_r55_t0);
r55_include = _r55_t0['include']['bind'](_r55_t0);
r55_xn$createstroke$7Hrq = _r55_t0['create-stroke']['bind'](_r55_t0);
r55_xn$setanchor$9Jrj = _r55_t0['set-anchor']['bind'](_r55_t0);
_r55_t0['gizmo'] = r1_globalTransform;
_r55_t0['set-width'](r1_WIDTH);
r55_xn$setwidth$9Jrj(r1_WIDTH);
r55_xn$assignunicode$7Hrq('U');
r55_include(r1_capitalMarks);
r55_outline = r55_xn$createstroke$7Hrq();
r55_outline['start-from'](r1_SB, r1_CAP)['heads-to'](r1_DOWNWARD)['line-to'](r1_SB, r1_SMOOTHB)['arc-vh-to'](r1_MIDDLE, r1_O)['heads-to'](r1_RIGHTWARD)['arc-hv-to'](r1_RIGHTSB, r1_SMOOTHA)['line-to'](r1_RIGHTSB, r1_CAP)['heads-to'](r1_UPWARD);
r55_xn$putshapes$9Jrj(r55_outline['to-outline'](r1_STROKE, 0));
return void 0;
});
r1_xn$createglyph$7Hrq('F', function _r1_t29() {
var r57_xn$setwidth$9Jrj, r57_xn$assignunicode$7Hrq, r57_xn$startfrom$1aao, r57_xn$lineto$5sIl, r57_xn$curveto$1aao, r57_xn$cubicto$1aao, r57_xn$putshapes$9Jrj, r57_xn$reverselast$3qIs, r57_include, r57_xn$createstroke$7Hrq, r57_xn$setanchor$9Jrj, _r57_t0;
_r57_t0 = this;
r57_xn$setwidth$9Jrj = _r57_t0['set-width']['bind'](_r57_t0);
r57_xn$assignunicode$7Hrq = _r57_t0['assign-unicode']['bind'](_r57_t0);
r57_xn$startfrom$1aao = _r57_t0['start-from']['bind'](_r57_t0);
r57_xn$lineto$5sIl = _r57_t0['line-to']['bind'](_r57_t0);
r57_xn$curveto$1aao = _r57_t0['curve-to']['bind'](_r57_t0);
r57_xn$cubicto$1aao = _r57_t0['cubic-to']['bind'](_r57_t0);
r57_xn$putshapes$9Jrj = _r57_t0['put-shapes']['bind'](_r57_t0);
r57_xn$reverselast$3qIs = _r57_t0['reverse-last']['bind'](_r57_t0);
r57_include = _r57_t0['include']['bind'](_r57_t0);
r57_xn$createstroke$7Hrq = _r57_t0['create-stroke']['bind'](_r57_t0);
r57_xn$setanchor$9Jrj = _r57_t0['set-anchor']['bind'](_r57_t0);
_r57_t0['gizmo'] = r1_globalTransform;
_r57_t0['set-width'](r1_WIDTH);
r57_xn$setwidth$9Jrj(r1_WIDTH);
r57_xn$assignunicode$7Hrq('F');
r57_include(r1_capitalMarks);
r57_xn$putshapes$9Jrj(r57_xn$createstroke$7Hrq()['start-from'](r1_SB * 1.5, 0)['heads-to'](r1_UPWARD)['set-width'](0, r1_STROKE)['line-to'](r1_SB * 1.5, r1_CAP)['heads-to'](r1_UPWARD)['to-outline']());
r57_xn$putshapes$9Jrj(r57_xn$createstroke$7Hrq()['start-from'](r1_SB * 1.5, r1_CAP)['set-width'](0, r1_STROKE)['heads-to'](r1_RIGHTWARD)['line-to'](r1_RIGHTSB, r1_CAP)['heads-to'](r1_RIGHTWARD)['to-outline']());
r57_xn$putshapes$9Jrj(r57_xn$createstroke$7Hrq()['start-from'](r1_SB * 1.5, r1_CAPMIDDLE)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['heads-to'](r1_RIGHTWARD)['line-to'](r1_RIGHTSB - r1_HALFSTROKE, r1_CAPMIDDLE)['heads-to'](r1_RIGHTWARD)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('E', function _r1_t30() {
var r59_xn$setwidth$9Jrj, r59_xn$assignunicode$7Hrq, r59_xn$startfrom$1aao, r59_xn$lineto$5sIl, r59_xn$curveto$1aao, r59_xn$cubicto$1aao, r59_xn$putshapes$9Jrj, r59_xn$reverselast$3qIs, r59_include, r59_xn$createstroke$7Hrq, r59_xn$setanchor$9Jrj, _r59_t0;
_r59_t0 = this;
r59_xn$setwidth$9Jrj = _r59_t0['set-width']['bind'](_r59_t0);
r59_xn$assignunicode$7Hrq = _r59_t0['assign-unicode']['bind'](_r59_t0);
r59_xn$startfrom$1aao = _r59_t0['start-from']['bind'](_r59_t0);
r59_xn$lineto$5sIl = _r59_t0['line-to']['bind'](_r59_t0);
r59_xn$curveto$1aao = _r59_t0['curve-to']['bind'](_r59_t0);
r59_xn$cubicto$1aao = _r59_t0['cubic-to']['bind'](_r59_t0);
r59_xn$putshapes$9Jrj = _r59_t0['put-shapes']['bind'](_r59_t0);
r59_xn$reverselast$3qIs = _r59_t0['reverse-last']['bind'](_r59_t0);
r59_include = _r59_t0['include']['bind'](_r59_t0);
r59_xn$createstroke$7Hrq = _r59_t0['create-stroke']['bind'](_r59_t0);
r59_xn$setanchor$9Jrj = _r59_t0['set-anchor']['bind'](_r59_t0);
_r59_t0['gizmo'] = r1_globalTransform;
_r59_t0['set-width'](r1_WIDTH);
r59_xn$setwidth$9Jrj(r1_WIDTH);
r59_xn$assignunicode$7Hrq('E');
r59_include(r1_glyphs['F'], true);
r59_xn$putshapes$9Jrj(r59_xn$createstroke$7Hrq()['start-from'](r1_SB * 1.5, 0)['set-width'](r1_STROKE, 0)['heads-to'](r1_RIGHTWARD)['line-to'](r1_RIGHTSB, 0)['heads-to'](r1_RIGHTWARD)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('H', function _r1_t31() {
var r61_xn$setwidth$9Jrj, r61_xn$assignunicode$7Hrq, r61_xn$startfrom$1aao, r61_xn$lineto$5sIl, r61_xn$curveto$1aao, r61_xn$cubicto$1aao, r61_xn$putshapes$9Jrj, r61_xn$reverselast$3qIs, r61_include, r61_xn$createstroke$7Hrq, r61_xn$setanchor$9Jrj, _r61_t0;
_r61_t0 = this;
r61_xn$setwidth$9Jrj = _r61_t0['set-width']['bind'](_r61_t0);
r61_xn$assignunicode$7Hrq = _r61_t0['assign-unicode']['bind'](_r61_t0);
r61_xn$startfrom$1aao = _r61_t0['start-from']['bind'](_r61_t0);
r61_xn$lineto$5sIl = _r61_t0['line-to']['bind'](_r61_t0);
r61_xn$curveto$1aao = _r61_t0['curve-to']['bind'](_r61_t0);
r61_xn$cubicto$1aao = _r61_t0['cubic-to']['bind'](_r61_t0);
r61_xn$putshapes$9Jrj = _r61_t0['put-shapes']['bind'](_r61_t0);
r61_xn$reverselast$3qIs = _r61_t0['reverse-last']['bind'](_r61_t0);
r61_include = _r61_t0['include']['bind'](_r61_t0);
r61_xn$createstroke$7Hrq = _r61_t0['create-stroke']['bind'](_r61_t0);
r61_xn$setanchor$9Jrj = _r61_t0['set-anchor']['bind'](_r61_t0);
_r61_t0['gizmo'] = r1_globalTransform;
_r61_t0['set-width'](r1_WIDTH);
r61_xn$setwidth$9Jrj(r1_WIDTH);
r61_xn$assignunicode$7Hrq('H');
r61_include(r1_capitalMarks);
r61_xn$putshapes$9Jrj(r61_xn$createstroke$7Hrq()['start-from'](r1_SB, 0)['heads-to'](r1_UPWARD)['set-width'](0, r1_STROKE)['line-to'](r1_SB, r1_CAP)['heads-to'](r1_UPWARD)['to-outline']());
r61_xn$putshapes$9Jrj(r61_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB, 0)['heads-to'](r1_UPWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_RIGHTSB, r1_CAP)['heads-to'](r1_UPWARD)['to-outline']());
r61_xn$putshapes$9Jrj(r61_xn$createstroke$7Hrq()['start-from'](r1_SB, r1_CAP / 2)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['heads-to'](r1_RIGHTWARD)['line-to'](r1_RIGHTSB, r1_CAP / 2)['heads-to'](r1_RIGHTWARD)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('L', function _r1_t32() {
var r63_xn$setwidth$9Jrj, r63_xn$assignunicode$7Hrq, r63_xn$startfrom$1aao, r63_xn$lineto$5sIl, r63_xn$curveto$1aao, r63_xn$cubicto$1aao, r63_xn$putshapes$9Jrj, r63_xn$reverselast$3qIs, r63_include, r63_xn$createstroke$7Hrq, r63_xn$setanchor$9Jrj, _r63_t0;
_r63_t0 = this;
r63_xn$setwidth$9Jrj = _r63_t0['set-width']['bind'](_r63_t0);
r63_xn$assignunicode$7Hrq = _r63_t0['assign-unicode']['bind'](_r63_t0);
r63_xn$startfrom$1aao = _r63_t0['start-from']['bind'](_r63_t0);
r63_xn$lineto$5sIl = _r63_t0['line-to']['bind'](_r63_t0);
r63_xn$curveto$1aao = _r63_t0['curve-to']['bind'](_r63_t0);
r63_xn$cubicto$1aao = _r63_t0['cubic-to']['bind'](_r63_t0);
r63_xn$putshapes$9Jrj = _r63_t0['put-shapes']['bind'](_r63_t0);
r63_xn$reverselast$3qIs = _r63_t0['reverse-last']['bind'](_r63_t0);
r63_include = _r63_t0['include']['bind'](_r63_t0);
r63_xn$createstroke$7Hrq = _r63_t0['create-stroke']['bind'](_r63_t0);
r63_xn$setanchor$9Jrj = _r63_t0['set-anchor']['bind'](_r63_t0);
_r63_t0['gizmo'] = r1_globalTransform;
_r63_t0['set-width'](r1_WIDTH);
r63_xn$setwidth$9Jrj(r1_WIDTH);
r63_xn$assignunicode$7Hrq('L');
r63_include(r1_capitalMarks);
r63_xn$putshapes$9Jrj(r63_xn$createstroke$7Hrq()['start-from'](r1_SB * 1.5, r1_CAP)['set-width'](r1_STROKE, 0)['heads-to'](r1_DOWNWARD)['line-to'](r1_SB * 1.5, 0)['heads-to'](r1_DOWNWARD)['to-outline']());
r63_xn$putshapes$9Jrj(r63_xn$createstroke$7Hrq()['start-from'](r1_SB * 1.5, 0)['set-width'](r1_STROKE, 0)['heads-to'](r1_RIGHTWARD)['line-to'](r1_RIGHTSB, 0)['heads-to'](r1_RIGHTWARD)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('dotlessI.straight', function _r1_t33() {
var r65_xn$setwidth$9Jrj, r65_xn$assignunicode$7Hrq, r65_xn$startfrom$1aao, r65_xn$lineto$5sIl, r65_xn$curveto$1aao, r65_xn$cubicto$1aao, r65_xn$putshapes$9Jrj, r65_xn$reverselast$3qIs, r65_include, r65_xn$createstroke$7Hrq, r65_xn$setanchor$9Jrj, _r65_t0;
_r65_t0 = this;
r65_xn$setwidth$9Jrj = _r65_t0['set-width']['bind'](_r65_t0);
r65_xn$assignunicode$7Hrq = _r65_t0['assign-unicode']['bind'](_r65_t0);
r65_xn$startfrom$1aao = _r65_t0['start-from']['bind'](_r65_t0);
r65_xn$lineto$5sIl = _r65_t0['line-to']['bind'](_r65_t0);
r65_xn$curveto$1aao = _r65_t0['curve-to']['bind'](_r65_t0);
r65_xn$cubicto$1aao = _r65_t0['cubic-to']['bind'](_r65_t0);
r65_xn$putshapes$9Jrj = _r65_t0['put-shapes']['bind'](_r65_t0);
r65_xn$reverselast$3qIs = _r65_t0['reverse-last']['bind'](_r65_t0);
r65_include = _r65_t0['include']['bind'](_r65_t0);
r65_xn$createstroke$7Hrq = _r65_t0['create-stroke']['bind'](_r65_t0);
r65_xn$setanchor$9Jrj = _r65_t0['set-anchor']['bind'](_r65_t0);
_r65_t0['gizmo'] = r1_globalTransform;
_r65_t0['set-width'](r1_WIDTH);
r65_xn$putshapes$9Jrj(r65_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, 0)['heads-to'](r1_UPWARD)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['line-to'](r1_MIDDLE, r1_CAP)['heads-to'](r1_UPWARD)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('dotlessI.symmetric', function _r1_t34() {
var r67_xn$setwidth$9Jrj, r67_xn$assignunicode$7Hrq, r67_xn$startfrom$1aao, r67_xn$lineto$5sIl, r67_xn$curveto$1aao, r67_xn$cubicto$1aao, r67_xn$putshapes$9Jrj, r67_xn$reverselast$3qIs, r67_include, r67_xn$createstroke$7Hrq, r67_xn$setanchor$9Jrj, _r67_t0;
_r67_t0 = this;
r67_xn$setwidth$9Jrj = _r67_t0['set-width']['bind'](_r67_t0);
r67_xn$assignunicode$7Hrq = _r67_t0['assign-unicode']['bind'](_r67_t0);
r67_xn$startfrom$1aao = _r67_t0['start-from']['bind'](_r67_t0);
r67_xn$lineto$5sIl = _r67_t0['line-to']['bind'](_r67_t0);
r67_xn$curveto$1aao = _r67_t0['curve-to']['bind'](_r67_t0);
r67_xn$cubicto$1aao = _r67_t0['cubic-to']['bind'](_r67_t0);
r67_xn$putshapes$9Jrj = _r67_t0['put-shapes']['bind'](_r67_t0);
r67_xn$reverselast$3qIs = _r67_t0['reverse-last']['bind'](_r67_t0);
r67_include = _r67_t0['include']['bind'](_r67_t0);
r67_xn$createstroke$7Hrq = _r67_t0['create-stroke']['bind'](_r67_t0);
r67_xn$setanchor$9Jrj = _r67_t0['set-anchor']['bind'](_r67_t0);
_r67_t0['gizmo'] = r1_globalTransform;
_r67_t0['set-width'](r1_WIDTH);
r67_include(r1_glyphs['dotlessI.straight']);
r67_xn$putshapes$9Jrj(r67_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE - r1_WIDTH * 0.26 - r1_STROKE * r1_globalTransform['yx'], r1_CAP)['set-width'](0, r1_STROKE)['line-to'](r1_MIDDLE + r1_WIDTH * 0.26 - r1_STROKE * r1_globalTransform['yx'], r1_CAP)['to-outline']());
r67_xn$putshapes$9Jrj(r67_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE - r1_WIDTH * 0.26 + r1_STROKE * r1_globalTransform['yx'], 0)['set-width'](r1_STROKE, 0)['line-to'](r1_MIDDLE + r1_WIDTH * 0.26 + r1_STROKE * r1_globalTransform['yx'], 0)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('I', function _r1_t35() {
var r69_xn$setwidth$9Jrj, r69_xn$assignunicode$7Hrq, r69_xn$startfrom$1aao, r69_xn$lineto$5sIl, r69_xn$curveto$1aao, r69_xn$cubicto$1aao, r69_xn$putshapes$9Jrj, r69_xn$reverselast$3qIs, r69_include, r69_xn$createstroke$7Hrq, r69_xn$setanchor$9Jrj, _r69_t0;
_r69_t0 = this;
r69_xn$setwidth$9Jrj = _r69_t0['set-width']['bind'](_r69_t0);
r69_xn$assignunicode$7Hrq = _r69_t0['assign-unicode']['bind'](_r69_t0);
r69_xn$startfrom$1aao = _r69_t0['start-from']['bind'](_r69_t0);
r69_xn$lineto$5sIl = _r69_t0['line-to']['bind'](_r69_t0);
r69_xn$curveto$1aao = _r69_t0['curve-to']['bind'](_r69_t0);
r69_xn$cubicto$1aao = _r69_t0['cubic-to']['bind'](_r69_t0);
r69_xn$putshapes$9Jrj = _r69_t0['put-shapes']['bind'](_r69_t0);
r69_xn$reverselast$3qIs = _r69_t0['reverse-last']['bind'](_r69_t0);
r69_include = _r69_t0['include']['bind'](_r69_t0);
r69_xn$createstroke$7Hrq = _r69_t0['create-stroke']['bind'](_r69_t0);
r69_xn$setanchor$9Jrj = _r69_t0['set-anchor']['bind'](_r69_t0);
_r69_t0['gizmo'] = r1_globalTransform;
_r69_t0['set-width'](r1_WIDTH);
r69_xn$setwidth$9Jrj(r1_WIDTH);
r69_xn$assignunicode$7Hrq('I');
r69_include(r1_capitalMarks);
r69_include(r1_glyphs['dotlessI.symmetric']);
return void 0;
});
r1_xn$createglyph$7Hrq('T', function _r1_t36() {
var r71_xn$setwidth$9Jrj, r71_xn$assignunicode$7Hrq, r71_xn$startfrom$1aao, r71_xn$lineto$5sIl, r71_xn$curveto$1aao, r71_xn$cubicto$1aao, r71_xn$putshapes$9Jrj, r71_xn$reverselast$3qIs, r71_include, r71_xn$createstroke$7Hrq, r71_xn$setanchor$9Jrj, _r71_t0;
_r71_t0 = this;
r71_xn$setwidth$9Jrj = _r71_t0['set-width']['bind'](_r71_t0);
r71_xn$assignunicode$7Hrq = _r71_t0['assign-unicode']['bind'](_r71_t0);
r71_xn$startfrom$1aao = _r71_t0['start-from']['bind'](_r71_t0);
r71_xn$lineto$5sIl = _r71_t0['line-to']['bind'](_r71_t0);
r71_xn$curveto$1aao = _r71_t0['curve-to']['bind'](_r71_t0);
r71_xn$cubicto$1aao = _r71_t0['cubic-to']['bind'](_r71_t0);
r71_xn$putshapes$9Jrj = _r71_t0['put-shapes']['bind'](_r71_t0);
r71_xn$reverselast$3qIs = _r71_t0['reverse-last']['bind'](_r71_t0);
r71_include = _r71_t0['include']['bind'](_r71_t0);
r71_xn$createstroke$7Hrq = _r71_t0['create-stroke']['bind'](_r71_t0);
r71_xn$setanchor$9Jrj = _r71_t0['set-anchor']['bind'](_r71_t0);
_r71_t0['gizmo'] = r1_globalTransform;
_r71_t0['set-width'](r1_WIDTH);
r71_xn$setwidth$9Jrj(r1_WIDTH);
r71_xn$assignunicode$7Hrq('T');
r71_include(r1_capitalMarks);
r71_xn$putshapes$9Jrj(r71_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, 0)['heads-to'](r1_UPWARD)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['line-to'](r1_MIDDLE, r1_CAP)['heads-to'](r1_UPWARD)['to-outline']());
r71_xn$putshapes$9Jrj(r71_xn$createstroke$7Hrq()['start-from'](r1_SB, r1_CAP)['heads-to'](r1_RIGHTWARD)['set-width'](0, r1_STROKE)['line-to'](r1_RIGHTSB, r1_CAP)['heads-to'](r1_RIGHTWARD)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('Z', function _r1_t37() {
var r73_xn$setwidth$9Jrj, r73_xn$assignunicode$7Hrq, r73_xn$startfrom$1aao, r73_xn$lineto$5sIl, r73_xn$curveto$1aao, r73_xn$cubicto$1aao, r73_xn$putshapes$9Jrj, r73_xn$reverselast$3qIs, r73_include, r73_xn$createstroke$7Hrq, r73_xn$setanchor$9Jrj, r73_cor, _r73_t0;
_r73_t0 = this;
r73_xn$setwidth$9Jrj = _r73_t0['set-width']['bind'](_r73_t0);
r73_xn$assignunicode$7Hrq = _r73_t0['assign-unicode']['bind'](_r73_t0);
r73_xn$startfrom$1aao = _r73_t0['start-from']['bind'](_r73_t0);
r73_xn$lineto$5sIl = _r73_t0['line-to']['bind'](_r73_t0);
r73_xn$curveto$1aao = _r73_t0['curve-to']['bind'](_r73_t0);
r73_xn$cubicto$1aao = _r73_t0['cubic-to']['bind'](_r73_t0);
r73_xn$putshapes$9Jrj = _r73_t0['put-shapes']['bind'](_r73_t0);
r73_xn$reverselast$3qIs = _r73_t0['reverse-last']['bind'](_r73_t0);
r73_include = _r73_t0['include']['bind'](_r73_t0);
r73_xn$createstroke$7Hrq = _r73_t0['create-stroke']['bind'](_r73_t0);
r73_xn$setanchor$9Jrj = _r73_t0['set-anchor']['bind'](_r73_t0);
_r73_t0['gizmo'] = r1_globalTransform;
_r73_t0['set-width'](r1_WIDTH);
r73_xn$setwidth$9Jrj(r1_WIDTH);
r73_xn$assignunicode$7Hrq('Z');
r73_include(r1_capitalMarks);
r73_cor = 1.15;
r73_xn$putshapes$9Jrj(r73_xn$createstroke$7Hrq()['start-from'](r1_SB, r1_CAP)['heads-to'](r1_RIGHTWARD)['set-width'](0, r1_STROKE)['line-to'](r1_RIGHTSB, r1_CAP)['heads-to'](r1_RIGHTWARD)['to-outline']());
r73_xn$putshapes$9Jrj(r73_xn$createstroke$7Hrq()['start-from'](r1_SB, 0)['heads-to'](r1_RIGHTWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_RIGHTSB, 0)['heads-to'](r1_RIGHTWARD)['to-outline']());
r73_xn$startfrom$1aao(r1_SB, r1_STROKE);
r73_xn$lineto$5sIl(r1_SB + r1_STROKE * r73_cor, r1_STROKE);
r73_xn$lineto$5sIl(r1_RIGHTSB, r1_CAP - r1_STROKE);
r73_xn$lineto$5sIl(r1_RIGHTSB - r1_STROKE * r73_cor, r1_CAP - r1_STROKE);
r73_xn$reverselast$3qIs();
return void 0;
});
r1_xn$createglyph$7Hrq('J.straight', function _r1_t38() {
var r75_xn$setwidth$9Jrj, r75_xn$assignunicode$7Hrq, r75_xn$startfrom$1aao, r75_xn$lineto$5sIl, r75_xn$curveto$1aao, r75_xn$cubicto$1aao, r75_xn$putshapes$9Jrj, r75_xn$reverselast$3qIs, r75_include, r75_xn$createstroke$7Hrq, r75_xn$setanchor$9Jrj, r75_slope, r75_expand, r75_coexpand, r75_kappa, r75_smooth, _r75_t0;
_r75_t0 = this;
r75_xn$setwidth$9Jrj = _r75_t0['set-width']['bind'](_r75_t0);
r75_xn$assignunicode$7Hrq = _r75_t0['assign-unicode']['bind'](_r75_t0);
r75_xn$startfrom$1aao = _r75_t0['start-from']['bind'](_r75_t0);
r75_xn$lineto$5sIl = _r75_t0['line-to']['bind'](_r75_t0);
r75_xn$curveto$1aao = _r75_t0['curve-to']['bind'](_r75_t0);
r75_xn$cubicto$1aao = _r75_t0['cubic-to']['bind'](_r75_t0);
r75_xn$putshapes$9Jrj = _r75_t0['put-shapes']['bind'](_r75_t0);
r75_xn$reverselast$3qIs = _r75_t0['reverse-last']['bind'](_r75_t0);
r75_include = _r75_t0['include']['bind'](_r75_t0);
r75_xn$createstroke$7Hrq = _r75_t0['create-stroke']['bind'](_r75_t0);
r75_xn$setanchor$9Jrj = _r75_t0['set-anchor']['bind'](_r75_t0);
_r75_t0['gizmo'] = r1_globalTransform;
_r75_t0['set-width'](r1_WIDTH);
r75_xn$setwidth$9Jrj(r1_WIDTH);
r75_include(r1_capitalMarks);
r75_slope = r1_STROKE * 0.00092;
r75_expand = 0.35;
r75_coexpand = (1 - r75_expand) / 2;
r75_kappa = r1_KAPPA_HOOK;
r75_smooth = r1_HOOK + 0.75 * r1_STROKE;
r75_xn$putshapes$9Jrj(r75_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB, r1_CAP)['set-width'](0, r1_STROKE)['heads-to'](r1_DOWNWARD)['line-to'](r1_RIGHTSB, r75_smooth)['arc-vh-to'](r1_MIDDLE - r1_SB * 0.25, r1_O)['heads-to'](r1_LEFTWARD)['curve-to'](r1_MIDDLE - r75_kappa * (r1_MIDDLE - r1_SB) - r1_SB * 0.5, r1_O, 0.5 * r1_SB + r1_OXHOOK, r1_HOOK)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('J.serifed', function _r1_t39() {
var r77_xn$setwidth$9Jrj, r77_xn$assignunicode$7Hrq, r77_xn$startfrom$1aao, r77_xn$lineto$5sIl, r77_xn$curveto$1aao, r77_xn$cubicto$1aao, r77_xn$putshapes$9Jrj, r77_xn$reverselast$3qIs, r77_include, r77_xn$createstroke$7Hrq, r77_xn$setanchor$9Jrj, _r77_t0;
_r77_t0 = this;
r77_xn$setwidth$9Jrj = _r77_t0['set-width']['bind'](_r77_t0);
r77_xn$assignunicode$7Hrq = _r77_t0['assign-unicode']['bind'](_r77_t0);
r77_xn$startfrom$1aao = _r77_t0['start-from']['bind'](_r77_t0);
r77_xn$lineto$5sIl = _r77_t0['line-to']['bind'](_r77_t0);
r77_xn$curveto$1aao = _r77_t0['curve-to']['bind'](_r77_t0);
r77_xn$cubicto$1aao = _r77_t0['cubic-to']['bind'](_r77_t0);
r77_xn$putshapes$9Jrj = _r77_t0['put-shapes']['bind'](_r77_t0);
r77_xn$reverselast$3qIs = _r77_t0['reverse-last']['bind'](_r77_t0);
r77_include = _r77_t0['include']['bind'](_r77_t0);
r77_xn$createstroke$7Hrq = _r77_t0['create-stroke']['bind'](_r77_t0);
r77_xn$setanchor$9Jrj = _r77_t0['set-anchor']['bind'](_r77_t0);
_r77_t0['gizmo'] = r1_globalTransform;
_r77_t0['set-width'](r1_WIDTH);
r77_xn$setwidth$9Jrj(r1_WIDTH);
r77_xn$assignunicode$7Hrq('J');
r77_include(r1_glyphs['J.straight'], true);
r77_xn$putshapes$9Jrj(r1_leftwardTopSerif(r1_RIGHTSB - r1_HALFSTROKE, r1_CAP, r1_LONGSERIF));
return void 0;
});
r1_xn$createglyph$7Hrq('N', function _r1_t40() {
var r79_xn$setwidth$9Jrj, r79_xn$assignunicode$7Hrq, r79_xn$startfrom$1aao, r79_xn$lineto$5sIl, r79_xn$curveto$1aao, r79_xn$cubicto$1aao, r79_xn$putshapes$9Jrj, r79_xn$reverselast$3qIs, r79_include, r79_xn$createstroke$7Hrq, r79_xn$setanchor$9Jrj, r79_topstroke, r79_halftopstroke, _r79_t0;
_r79_t0 = this;
r79_xn$setwidth$9Jrj = _r79_t0['set-width']['bind'](_r79_t0);
r79_xn$assignunicode$7Hrq = _r79_t0['assign-unicode']['bind'](_r79_t0);
r79_xn$startfrom$1aao = _r79_t0['start-from']['bind'](_r79_t0);
r79_xn$lineto$5sIl = _r79_t0['line-to']['bind'](_r79_t0);
r79_xn$curveto$1aao = _r79_t0['curve-to']['bind'](_r79_t0);
r79_xn$cubicto$1aao = _r79_t0['cubic-to']['bind'](_r79_t0);
r79_xn$putshapes$9Jrj = _r79_t0['put-shapes']['bind'](_r79_t0);
r79_xn$reverselast$3qIs = _r79_t0['reverse-last']['bind'](_r79_t0);
r79_include = _r79_t0['include']['bind'](_r79_t0);
r79_xn$createstroke$7Hrq = _r79_t0['create-stroke']['bind'](_r79_t0);
r79_xn$setanchor$9Jrj = _r79_t0['set-anchor']['bind'](_r79_t0);
_r79_t0['gizmo'] = r1_globalTransform;
_r79_t0['set-width'](r1_WIDTH);
r79_xn$setwidth$9Jrj(r1_WIDTH);
r79_xn$assignunicode$7Hrq('N');
r79_include(r1_capitalMarks);
r79_topstroke = Math['min'](r1_STROKE, (r1_WIDTH - r1_SB * 2) * 0.24);
r79_halftopstroke = r79_topstroke / 2;
r79_xn$putshapes$9Jrj(r79_xn$createstroke$7Hrq()['start-from'](r1_SB, 0)['heads-to'](r1_UPWARD)['set-width'](0, r1_STROKE)['line-to'](r1_SB, r1_CAP * 0.4)['heads-to'](r1_UPWARD)['line-to'](r1_SB, r1_CAP)['heads-to'](r1_UPWARD)['set-width'](0, r79_topstroke)['to-outline']());
r79_xn$putshapes$9Jrj(r79_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB, 0)['heads-to'](r1_UPWARD)['set-width'](r79_topstroke, 0)['line-to'](r1_RIGHTSB, r1_CAP * 0.6)['heads-to'](r1_UPWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_RIGHTSB, r1_CAP)['heads-to'](r1_UPWARD)['to-outline']());
r79_xn$putshapes$9Jrj(r79_xn$createstroke$7Hrq()['start-from'](r1_SB + r79_halftopstroke, r1_CAP)['heads-to'](r1_DOWNWARD)['set-width'](r79_topstroke, 0)['line-to'](r1_RIGHTSB - r79_topstroke - r79_halftopstroke, 0)['heads-to'](r1_DOWNWARD)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('M', function _r1_t41() {
var r81_xn$setwidth$9Jrj, r81_xn$assignunicode$7Hrq, r81_xn$startfrom$1aao, r81_xn$lineto$5sIl, r81_xn$curveto$1aao, r81_xn$cubicto$1aao, r81_xn$putshapes$9Jrj, r81_xn$reverselast$3qIs, r81_include, r81_xn$createstroke$7Hrq, r81_xn$setanchor$9Jrj, r81_topstroke, r81_halftopstroke, _r81_t0;
_r81_t0 = this;
r81_xn$setwidth$9Jrj = _r81_t0['set-width']['bind'](_r81_t0);
r81_xn$assignunicode$7Hrq = _r81_t0['assign-unicode']['bind'](_r81_t0);
r81_xn$startfrom$1aao = _r81_t0['start-from']['bind'](_r81_t0);
r81_xn$lineto$5sIl = _r81_t0['line-to']['bind'](_r81_t0);
r81_xn$curveto$1aao = _r81_t0['curve-to']['bind'](_r81_t0);
r81_xn$cubicto$1aao = _r81_t0['cubic-to']['bind'](_r81_t0);
r81_xn$putshapes$9Jrj = _r81_t0['put-shapes']['bind'](_r81_t0);
r81_xn$reverselast$3qIs = _r81_t0['reverse-last']['bind'](_r81_t0);
r81_include = _r81_t0['include']['bind'](_r81_t0);
r81_xn$createstroke$7Hrq = _r81_t0['create-stroke']['bind'](_r81_t0);
r81_xn$setanchor$9Jrj = _r81_t0['set-anchor']['bind'](_r81_t0);
_r81_t0['gizmo'] = r1_globalTransform;
_r81_t0['set-width'](r1_WIDTH);
r81_xn$setwidth$9Jrj(r1_WIDTH);
r81_xn$assignunicode$7Hrq('M');
r81_include(r1_capitalMarks);
r81_topstroke = Math['min'](r1_STROKE, (r1_WIDTH - r1_SB * 2) * 0.175);
r81_halftopstroke = r81_topstroke / 2;
r81_xn$putshapes$9Jrj(r81_xn$createstroke$7Hrq()['start-from'](r1_SB, 0)['heads-to'](r1_UPWARD)['set-width'](0, r1_STROKE)['line-to'](r1_SB, r1_CAP * 0.2)['heads-to'](r1_UPWARD)['line-to'](r1_SB, r1_CAP)['heads-to'](r1_UPWARD)['set-width'](0, r81_topstroke)['to-outline']());
r81_xn$putshapes$9Jrj(r81_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB, 0)['heads-to'](r1_UPWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_RIGHTSB, r1_CAP * 0.2)['heads-to'](r1_UPWARD)['line-to'](r1_RIGHTSB, r1_CAP)['heads-to'](r1_UPWARD)['set-width'](r81_topstroke, 0)['to-outline']());
r81_xn$putshapes$9Jrj(r81_xn$createstroke$7Hrq()['start-from'](r1_SB + r81_halftopstroke, r1_CAP)['heads-to'](r1_DOWNWARD)['set-width'](r81_topstroke, 0)['line-to'](r1_MIDDLE - r81_halftopstroke, r1_CAP * 0.3)['heads-to'](r1_DOWNWARD)['to-outline']());
r81_xn$putshapes$9Jrj(r81_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE + r81_halftopstroke, r1_CAP * 0.3)['heads-to'](r1_UPWARD)['set-width'](r81_topstroke, 0)['line-to'](r1_RIGHTSB - r81_halftopstroke, r1_CAP)['heads-to'](r1_UPWARD)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('S', function _r1_t42() {
var r83_xn$setwidth$9Jrj, r83_xn$assignunicode$7Hrq, r83_xn$startfrom$1aao, r83_xn$lineto$5sIl, r83_xn$curveto$1aao, r83_xn$cubicto$1aao, r83_xn$putshapes$9Jrj, r83_xn$reverselast$3qIs, r83_include, r83_xn$createstroke$7Hrq, r83_xn$setanchor$9Jrj, r83_slope, r83_expand, r83_coexpand, r83_ssmootha, r83_bowltop, r83_strokemiddle, r83_bowlbottom, _r83_t0;
_r83_t0 = this;
r83_xn$setwidth$9Jrj = _r83_t0['set-width']['bind'](_r83_t0);
r83_xn$assignunicode$7Hrq = _r83_t0['assign-unicode']['bind'](_r83_t0);
r83_xn$startfrom$1aao = _r83_t0['start-from']['bind'](_r83_t0);
r83_xn$lineto$5sIl = _r83_t0['line-to']['bind'](_r83_t0);
r83_xn$curveto$1aao = _r83_t0['curve-to']['bind'](_r83_t0);
r83_xn$cubicto$1aao = _r83_t0['cubic-to']['bind'](_r83_t0);
r83_xn$putshapes$9Jrj = _r83_t0['put-shapes']['bind'](_r83_t0);
r83_xn$reverselast$3qIs = _r83_t0['reverse-last']['bind'](_r83_t0);
r83_include = _r83_t0['include']['bind'](_r83_t0);
r83_xn$createstroke$7Hrq = _r83_t0['create-stroke']['bind'](_r83_t0);
r83_xn$setanchor$9Jrj = _r83_t0['set-anchor']['bind'](_r83_t0);
_r83_t0['gizmo'] = r1_globalTransform;
_r83_t0['set-width'](r1_WIDTH);
r83_xn$setwidth$9Jrj(r1_WIDTH);
r83_xn$assignunicode$7Hrq('S');
r83_include(r1_capitalMarks);
r83_slope = r1_STROKE * 0.00092;
r83_expand = 0.35;
r83_coexpand = (1 - r83_expand) / 2;
r83_ssmootha = r1_SMOOTHA;
r83_bowltop = r83_xn$createstroke$7Hrq();
r83_bowltop['start-from'](r1_RIGHTSB - r1_OXHOOK, r1_CAP - r1_HOOK)['set-width'](r1_STROKE, 0)['curve-to'](r1_MIDDLE + r1_KAPPA_HOOK * (r1_MIDDLE - r1_para['sb']), r1_CAPO, r1_MIDDLE, r1_CAPO)['heads-to'](r1_LEFTWARD)['arc-hv-to'](r1_SB, r1_CAP - r83_ssmootha);
r83_strokemiddle = r83_xn$createstroke$7Hrq();
r83_strokemiddle['start-from'](r1_SB + r1_STROKE / 2, r1_CAP - r83_ssmootha)['set-width'](r1_STROKE / 2, r1_STROKE / 2)['curve-to'](r1_SB + r1_STROKE / 2, (0.5 + r83_slope) * r1_CAP + 2 * r83_slope * r1_CAP / (r83_expand * r1_WIDTH) * (r83_coexpand * r1_WIDTH - r1_SB - r1_STROKE / 2), r83_coexpand * r1_WIDTH, (0.5 + r83_slope) * r1_CAP)['line-to']((1 - r83_coexpand) * r1_WIDTH, (0.5 - r83_slope) * r1_CAP)['curve-to'](r1_RIGHTSB - r1_STROKE / 2, (0.5 - r83_slope) * r1_CAP - 2 * r83_slope * r1_CAP / (r83_expand * r1_WIDTH) * (r83_coexpand * r1_WIDTH - r1_SB - r1_STROKE / 2), r1_RIGHTSB - r1_STROKE / 2, r83_ssmootha);
r83_bowlbottom = r83_xn$createstroke$7Hrq();
r83_bowlbottom['start-from'](r1_RIGHTSB, r83_ssmootha)['set-width'](0, r1_STROKE)['arc-vh-to'](r1_MIDDLE, r1_O)['heads-to'](r1_LEFTWARD)['curve-to'](r1_MIDDLE - r1_KAPPA_HOOK * (r1_MIDDLE - r1_para['sb']), r1_O, r1_SB + r1_OXHOOK, r1_HOOK);
r83_xn$putshapes$9Jrj(r83_bowltop['to-outline']());
r83_xn$putshapes$9Jrj(r83_strokemiddle['to-outline']());
r83_xn$putshapes$9Jrj(r83_bowlbottom['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('dollar', function _r1_t43() {
var r85_xn$setwidth$9Jrj, r85_xn$assignunicode$7Hrq, r85_xn$startfrom$1aao, r85_xn$lineto$5sIl, r85_xn$curveto$1aao, r85_xn$cubicto$1aao, r85_xn$putshapes$9Jrj, r85_xn$reverselast$3qIs, r85_include, r85_xn$createstroke$7Hrq, r85_xn$setanchor$9Jrj, _r85_t0;
_r85_t0 = this;
r85_xn$setwidth$9Jrj = _r85_t0['set-width']['bind'](_r85_t0);
r85_xn$assignunicode$7Hrq = _r85_t0['assign-unicode']['bind'](_r85_t0);
r85_xn$startfrom$1aao = _r85_t0['start-from']['bind'](_r85_t0);
r85_xn$lineto$5sIl = _r85_t0['line-to']['bind'](_r85_t0);
r85_xn$curveto$1aao = _r85_t0['curve-to']['bind'](_r85_t0);
r85_xn$cubicto$1aao = _r85_t0['cubic-to']['bind'](_r85_t0);
r85_xn$putshapes$9Jrj = _r85_t0['put-shapes']['bind'](_r85_t0);
r85_xn$reverselast$3qIs = _r85_t0['reverse-last']['bind'](_r85_t0);
r85_include = _r85_t0['include']['bind'](_r85_t0);
r85_xn$createstroke$7Hrq = _r85_t0['create-stroke']['bind'](_r85_t0);
r85_xn$setanchor$9Jrj = _r85_t0['set-anchor']['bind'](_r85_t0);
_r85_t0['gizmo'] = r1_globalTransform;
_r85_t0['set-width'](r1_WIDTH);
r85_xn$setwidth$9Jrj(r1_WIDTH);
r85_xn$assignunicode$7Hrq('$');
r85_xn$putshapes$9Jrj(r1_glyphs['S']['contours']);
r85_xn$putshapes$9Jrj(r85_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, r1_CAP - r1_HALFSTROKE)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['line-to'](r1_MIDDLE, r1_CAP - r1_DESCENDER / 2)['to-outline']());
r85_xn$putshapes$9Jrj(r85_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, r1_DESCENDER / 2)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['line-to'](r1_MIDDLE, r1_HALFSTROKE)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('fbar', function _r1_t44() {
var r87_xn$setwidth$9Jrj, r87_xn$assignunicode$7Hrq, r87_xn$startfrom$1aao, r87_xn$lineto$5sIl, r87_xn$curveto$1aao, r87_xn$cubicto$1aao, r87_xn$putshapes$9Jrj, r87_xn$reverselast$3qIs, r87_include, r87_xn$createstroke$7Hrq, r87_xn$setanchor$9Jrj, _r87_t0;
_r87_t0 = this;
r87_xn$setwidth$9Jrj = _r87_t0['set-width']['bind'](_r87_t0);
r87_xn$assignunicode$7Hrq = _r87_t0['assign-unicode']['bind'](_r87_t0);
r87_xn$startfrom$1aao = _r87_t0['start-from']['bind'](_r87_t0);
r87_xn$lineto$5sIl = _r87_t0['line-to']['bind'](_r87_t0);
r87_xn$curveto$1aao = _r87_t0['curve-to']['bind'](_r87_t0);
r87_xn$cubicto$1aao = _r87_t0['cubic-to']['bind'](_r87_t0);
r87_xn$putshapes$9Jrj = _r87_t0['put-shapes']['bind'](_r87_t0);
r87_xn$reverselast$3qIs = _r87_t0['reverse-last']['bind'](_r87_t0);
r87_include = _r87_t0['include']['bind'](_r87_t0);
r87_xn$createstroke$7Hrq = _r87_t0['create-stroke']['bind'](_r87_t0);
r87_xn$setanchor$9Jrj = _r87_t0['set-anchor']['bind'](_r87_t0);
_r87_t0['gizmo'] = r1_globalTransform;
_r87_t0['set-width'](r1_WIDTH);
r87_xn$putshapes$9Jrj(r87_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE - r1_LONGSERIF, r1_XH)['heads-to'](r1_RIGHTWARD)['set-width'](0, r1_STROKE)['line-to'](r1_MIDDLE + r1_LONGSERIF, r1_XH)['heads-to'](r1_RIGHTWARD)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('o', function _r1_t45() {
var r89_xn$setwidth$9Jrj, r89_xn$assignunicode$7Hrq, r89_xn$startfrom$1aao, r89_xn$lineto$5sIl, r89_xn$curveto$1aao, r89_xn$cubicto$1aao, r89_xn$putshapes$9Jrj, r89_xn$reverselast$3qIs, r89_include, r89_xn$createstroke$7Hrq, r89_xn$setanchor$9Jrj, r89_outline, _r89_t0;
_r89_t0 = this;
r89_xn$setwidth$9Jrj = _r89_t0['set-width']['bind'](_r89_t0);
r89_xn$assignunicode$7Hrq = _r89_t0['assign-unicode']['bind'](_r89_t0);
r89_xn$startfrom$1aao = _r89_t0['start-from']['bind'](_r89_t0);
r89_xn$lineto$5sIl = _r89_t0['line-to']['bind'](_r89_t0);
r89_xn$curveto$1aao = _r89_t0['curve-to']['bind'](_r89_t0);
r89_xn$cubicto$1aao = _r89_t0['cubic-to']['bind'](_r89_t0);
r89_xn$putshapes$9Jrj = _r89_t0['put-shapes']['bind'](_r89_t0);
r89_xn$reverselast$3qIs = _r89_t0['reverse-last']['bind'](_r89_t0);
r89_include = _r89_t0['include']['bind'](_r89_t0);
r89_xn$createstroke$7Hrq = _r89_t0['create-stroke']['bind'](_r89_t0);
r89_xn$setanchor$9Jrj = _r89_t0['set-anchor']['bind'](_r89_t0);
_r89_t0['gizmo'] = r1_globalTransform;
_r89_t0['set-width'](r1_WIDTH);
r89_xn$setwidth$9Jrj(r1_WIDTH);
r89_xn$assignunicode$7Hrq('o');
r89_include(r1_eMarks);
r89_outline = r89_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, r1_XO)['set-width'](r1_STROKE, 0)['heads-to'](r1_LEFTWARD)['arc-hv-to'](r1_SB + r1_O, r1_XH - r1_SMALLSMOOTHA)['line-to'](r1_SB + r1_O, r1_SMALLSMOOTHB)['arc-vh-to'](r1_MIDDLE, r1_O)['heads-to'](r1_RIGHTWARD)['arc-hv-to'](r1_RIGHTSB - r1_O, r1_SMALLSMOOTHA)['line-to'](r1_RIGHTSB - r1_O, r1_XH - r1_SMALLSMOOTHB)['arc-vh-to'](r1_MIDDLE, r1_XO)['heads-to'](r1_LEFTWARD);
r89_xn$putshapes$9Jrj(r89_outline['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('o.left', function _r1_t46() {
var r91_xn$setwidth$9Jrj, r91_xn$assignunicode$7Hrq, r91_xn$startfrom$1aao, r91_xn$lineto$5sIl, r91_xn$curveto$1aao, r91_xn$cubicto$1aao, r91_xn$putshapes$9Jrj, r91_xn$reverselast$3qIs, r91_include, r91_xn$createstroke$7Hrq, r91_xn$setanchor$9Jrj, _r91_t0;
_r91_t0 = this;
r91_xn$setwidth$9Jrj = _r91_t0['set-width']['bind'](_r91_t0);
r91_xn$assignunicode$7Hrq = _r91_t0['assign-unicode']['bind'](_r91_t0);
r91_xn$startfrom$1aao = _r91_t0['start-from']['bind'](_r91_t0);
r91_xn$lineto$5sIl = _r91_t0['line-to']['bind'](_r91_t0);
r91_xn$curveto$1aao = _r91_t0['curve-to']['bind'](_r91_t0);
r91_xn$cubicto$1aao = _r91_t0['cubic-to']['bind'](_r91_t0);
r91_xn$putshapes$9Jrj = _r91_t0['put-shapes']['bind'](_r91_t0);
r91_xn$reverselast$3qIs = _r91_t0['reverse-last']['bind'](_r91_t0);
r91_include = _r91_t0['include']['bind'](_r91_t0);
r91_xn$createstroke$7Hrq = _r91_t0['create-stroke']['bind'](_r91_t0);
r91_xn$setanchor$9Jrj = _r91_t0['set-anchor']['bind'](_r91_t0);
_r91_t0['gizmo'] = r1_globalTransform;
_r91_t0['set-width'](r1_WIDTH);
r91_xn$setwidth$9Jrj(r1_WIDTH);
r91_xn$putshapes$9Jrj(r91_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, r1_XO)['heads-to'](r1_RIGHTWARD)['set-width'](0, r1_STROKE)['arc-hv-to'](r1_RIGHTSB - r1_O, r1_XH - r1_SMALLSMOOTHB)['line-to'](r1_RIGHTSB - r1_O, r1_SMALLSMOOTHA)['arc-vh-to'](r1_MIDDLE, r1_O)['heads-to'](r1_LEFTWARD)['to-outline']());
r91_xn$putshapes$9Jrj(r91_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, r1_O + r1_STROKE)['heads-to'](r1_LEFTWARD)['set-width'](r1_STROKE, 0)['arc-hv-to'](r1_SB + r1_STROKE, r1_SMALLSMOOTHB - r1_STROKE * 0.05)['set-width'](r1_HALFSTROKE, 0)['line-to'](r1_SB + r1_STROKE, r1_XH - r1_SMALLSMOOTHA + r1_STROKE * 0.05)['set-width'](r1_HALFSTROKE, 0)['arc-vh-to'](r1_MIDDLE, r1_XO - r1_STROKE)['set-width'](r1_STROKE, 0)['heads-to'](r1_RIGHTWARD)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('o.right', function _r1_t47() {
var r93_xn$setwidth$9Jrj, r93_xn$assignunicode$7Hrq, r93_xn$startfrom$1aao, r93_xn$lineto$5sIl, r93_xn$curveto$1aao, r93_xn$cubicto$1aao, r93_xn$putshapes$9Jrj, r93_xn$reverselast$3qIs, r93_include, r93_xn$createstroke$7Hrq, r93_xn$setanchor$9Jrj, _r93_t0;
_r93_t0 = this;
r93_xn$setwidth$9Jrj = _r93_t0['set-width']['bind'](_r93_t0);
r93_xn$assignunicode$7Hrq = _r93_t0['assign-unicode']['bind'](_r93_t0);
r93_xn$startfrom$1aao = _r93_t0['start-from']['bind'](_r93_t0);
r93_xn$lineto$5sIl = _r93_t0['line-to']['bind'](_r93_t0);
r93_xn$curveto$1aao = _r93_t0['curve-to']['bind'](_r93_t0);
r93_xn$cubicto$1aao = _r93_t0['cubic-to']['bind'](_r93_t0);
r93_xn$putshapes$9Jrj = _r93_t0['put-shapes']['bind'](_r93_t0);
r93_xn$reverselast$3qIs = _r93_t0['reverse-last']['bind'](_r93_t0);
r93_include = _r93_t0['include']['bind'](_r93_t0);
r93_xn$createstroke$7Hrq = _r93_t0['create-stroke']['bind'](_r93_t0);
r93_xn$setanchor$9Jrj = _r93_t0['set-anchor']['bind'](_r93_t0);
_r93_t0['gizmo'] = r1_globalTransform;
_r93_t0['set-width'](r1_WIDTH);
r93_xn$setwidth$9Jrj(r1_WIDTH);
r93_xn$putshapes$9Jrj(r93_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, r1_XO)['heads-to'](r1_LEFTWARD)['set-width'](r1_STROKE, 0)['arc-hv-to'](r1_SB + r1_O, r1_XH - r1_SMALLSMOOTHA)['line-to'](r1_SB + r1_O, r1_SMALLSMOOTHB)['arc-vh-to'](r1_MIDDLE, r1_O)['heads-to'](r1_RIGHTWARD)['to-outline']());
r93_xn$putshapes$9Jrj(r93_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, r1_O + r1_STROKE)['heads-to'](r1_RIGHTWARD)['set-width'](0, r1_STROKE)['arc-hv-to'](r1_RIGHTSB - r1_STROKE, r1_SMALLSMOOTHA - r1_STROKE * 0.05)['set-width'](0, r1_HALFSTROKE)['line-to'](r1_RIGHTSB - r1_STROKE, r1_XH - r1_SMALLSMOOTHB + r1_STROKE * 0.05)['set-width'](0, r1_HALFSTROKE)['arc-vh-to'](r1_MIDDLE, r1_XO - r1_STROKE)['set-width'](0, r1_STROKE)['heads-to'](r1_LEFTWARD)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('p', function _r1_t48() {
var r95_xn$setwidth$9Jrj, r95_xn$assignunicode$7Hrq, r95_xn$startfrom$1aao, r95_xn$lineto$5sIl, r95_xn$curveto$1aao, r95_xn$cubicto$1aao, r95_xn$putshapes$9Jrj, r95_xn$reverselast$3qIs, r95_include, r95_xn$createstroke$7Hrq, r95_xn$setanchor$9Jrj, _r95_t0;
_r95_t0 = this;
r95_xn$setwidth$9Jrj = _r95_t0['set-width']['bind'](_r95_t0);
r95_xn$assignunicode$7Hrq = _r95_t0['assign-unicode']['bind'](_r95_t0);
r95_xn$startfrom$1aao = _r95_t0['start-from']['bind'](_r95_t0);
r95_xn$lineto$5sIl = _r95_t0['line-to']['bind'](_r95_t0);
r95_xn$curveto$1aao = _r95_t0['curve-to']['bind'](_r95_t0);
r95_xn$cubicto$1aao = _r95_t0['cubic-to']['bind'](_r95_t0);
r95_xn$putshapes$9Jrj = _r95_t0['put-shapes']['bind'](_r95_t0);
r95_xn$reverselast$3qIs = _r95_t0['reverse-last']['bind'](_r95_t0);
r95_include = _r95_t0['include']['bind'](_r95_t0);
r95_xn$createstroke$7Hrq = _r95_t0['create-stroke']['bind'](_r95_t0);
r95_xn$setanchor$9Jrj = _r95_t0['set-anchor']['bind'](_r95_t0);
_r95_t0['gizmo'] = r1_globalTransform;
_r95_t0['set-width'](r1_WIDTH);
r95_xn$setwidth$9Jrj(r1_WIDTH);
r95_xn$assignunicode$7Hrq('p');
r95_include(r1_eMarks);
r95_include(r1_glyphs['o.left']);
r95_xn$putshapes$9Jrj(r95_xn$createstroke$7Hrq()['start-from'](r1_SB, r1_XH)['heads-to'](r1_DOWNWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_SB, r1_DESCENDER)['heads-to'](r1_DOWNWARD)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('b', function _r1_t49() {
var r97_xn$setwidth$9Jrj, r97_xn$assignunicode$7Hrq, r97_xn$startfrom$1aao, r97_xn$lineto$5sIl, r97_xn$curveto$1aao, r97_xn$cubicto$1aao, r97_xn$putshapes$9Jrj, r97_xn$reverselast$3qIs, r97_include, r97_xn$createstroke$7Hrq, r97_xn$setanchor$9Jrj, _r97_t0;
_r97_t0 = this;
r97_xn$setwidth$9Jrj = _r97_t0['set-width']['bind'](_r97_t0);
r97_xn$assignunicode$7Hrq = _r97_t0['assign-unicode']['bind'](_r97_t0);
r97_xn$startfrom$1aao = _r97_t0['start-from']['bind'](_r97_t0);
r97_xn$lineto$5sIl = _r97_t0['line-to']['bind'](_r97_t0);
r97_xn$curveto$1aao = _r97_t0['curve-to']['bind'](_r97_t0);
r97_xn$cubicto$1aao = _r97_t0['cubic-to']['bind'](_r97_t0);
r97_xn$putshapes$9Jrj = _r97_t0['put-shapes']['bind'](_r97_t0);
r97_xn$reverselast$3qIs = _r97_t0['reverse-last']['bind'](_r97_t0);
r97_include = _r97_t0['include']['bind'](_r97_t0);
r97_xn$createstroke$7Hrq = _r97_t0['create-stroke']['bind'](_r97_t0);
r97_xn$setanchor$9Jrj = _r97_t0['set-anchor']['bind'](_r97_t0);
_r97_t0['gizmo'] = r1_globalTransform;
_r97_t0['set-width'](r1_WIDTH);
r97_xn$setwidth$9Jrj(r1_WIDTH);
r97_xn$assignunicode$7Hrq('b');
r97_include(r1_bMarks);
r97_xn$putshapes$9Jrj(r1_glyphs['o.left']['contours']);
r97_xn$putshapes$9Jrj(r97_xn$createstroke$7Hrq()['start-from'](r1_SB, 0)['heads-to'](r1_UPWARD)['set-width'](0, r1_STROKE)['line-to'](r1_SB, r1_CAP)['heads-to'](r1_UPWARD)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('q', function _r1_t50() {
var r99_xn$setwidth$9Jrj, r99_xn$assignunicode$7Hrq, r99_xn$startfrom$1aao, r99_xn$lineto$5sIl, r99_xn$curveto$1aao, r99_xn$cubicto$1aao, r99_xn$putshapes$9Jrj, r99_xn$reverselast$3qIs, r99_include, r99_xn$createstroke$7Hrq, r99_xn$setanchor$9Jrj, _r99_t0;
_r99_t0 = this;
r99_xn$setwidth$9Jrj = _r99_t0['set-width']['bind'](_r99_t0);
r99_xn$assignunicode$7Hrq = _r99_t0['assign-unicode']['bind'](_r99_t0);
r99_xn$startfrom$1aao = _r99_t0['start-from']['bind'](_r99_t0);
r99_xn$lineto$5sIl = _r99_t0['line-to']['bind'](_r99_t0);
r99_xn$curveto$1aao = _r99_t0['curve-to']['bind'](_r99_t0);
r99_xn$cubicto$1aao = _r99_t0['cubic-to']['bind'](_r99_t0);
r99_xn$putshapes$9Jrj = _r99_t0['put-shapes']['bind'](_r99_t0);
r99_xn$reverselast$3qIs = _r99_t0['reverse-last']['bind'](_r99_t0);
r99_include = _r99_t0['include']['bind'](_r99_t0);
r99_xn$createstroke$7Hrq = _r99_t0['create-stroke']['bind'](_r99_t0);
r99_xn$setanchor$9Jrj = _r99_t0['set-anchor']['bind'](_r99_t0);
_r99_t0['gizmo'] = r1_globalTransform;
_r99_t0['set-width'](r1_WIDTH);
r99_xn$setwidth$9Jrj(r1_WIDTH);
r99_xn$assignunicode$7Hrq('q');
r99_include(r1_eMarks);
r99_xn$putshapes$9Jrj(r1_glyphs['o.right']['contours']);
r99_xn$putshapes$9Jrj(r99_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB, r1_XH)['heads-to'](r1_DOWNWARD)['set-width'](0, r1_STROKE)['line-to'](r1_RIGHTSB, r1_DESCENDER)['heads-to'](r1_DOWNWARD)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('d', function _r1_t51() {
var r101_xn$setwidth$9Jrj, r101_xn$assignunicode$7Hrq, r101_xn$startfrom$1aao, r101_xn$lineto$5sIl, r101_xn$curveto$1aao, r101_xn$cubicto$1aao, r101_xn$putshapes$9Jrj, r101_xn$reverselast$3qIs, r101_include, r101_xn$createstroke$7Hrq, r101_xn$setanchor$9Jrj, _r101_t0;
_r101_t0 = this;
r101_xn$setwidth$9Jrj = _r101_t0['set-width']['bind'](_r101_t0);
r101_xn$assignunicode$7Hrq = _r101_t0['assign-unicode']['bind'](_r101_t0);
r101_xn$startfrom$1aao = _r101_t0['start-from']['bind'](_r101_t0);
r101_xn$lineto$5sIl = _r101_t0['line-to']['bind'](_r101_t0);
r101_xn$curveto$1aao = _r101_t0['curve-to']['bind'](_r101_t0);
r101_xn$cubicto$1aao = _r101_t0['cubic-to']['bind'](_r101_t0);
r101_xn$putshapes$9Jrj = _r101_t0['put-shapes']['bind'](_r101_t0);
r101_xn$reverselast$3qIs = _r101_t0['reverse-last']['bind'](_r101_t0);
r101_include = _r101_t0['include']['bind'](_r101_t0);
r101_xn$createstroke$7Hrq = _r101_t0['create-stroke']['bind'](_r101_t0);
r101_xn$setanchor$9Jrj = _r101_t0['set-anchor']['bind'](_r101_t0);
_r101_t0['gizmo'] = r1_globalTransform;
_r101_t0['set-width'](r1_WIDTH);
r101_xn$setwidth$9Jrj(r1_WIDTH);
r101_xn$assignunicode$7Hrq('d');
r101_include(r1_bMarks);
r101_xn$putshapes$9Jrj(r1_glyphs['o.right']['contours']);
r101_xn$putshapes$9Jrj(r101_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB, 0)['heads-to'](r1_UPWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_RIGHTSB, r1_CAP)['heads-to'](r1_UPWARD)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('g', function _r1_t52() {
var r103_xn$setwidth$9Jrj, r103_xn$assignunicode$7Hrq, r103_xn$startfrom$1aao, r103_xn$lineto$5sIl, r103_xn$curveto$1aao, r103_xn$cubicto$1aao, r103_xn$putshapes$9Jrj, r103_xn$reverselast$3qIs, r103_include, r103_xn$createstroke$7Hrq, r103_xn$setanchor$9Jrj, _r103_t0;
_r103_t0 = this;
r103_xn$setwidth$9Jrj = _r103_t0['set-width']['bind'](_r103_t0);
r103_xn$assignunicode$7Hrq = _r103_t0['assign-unicode']['bind'](_r103_t0);
r103_xn$startfrom$1aao = _r103_t0['start-from']['bind'](_r103_t0);
r103_xn$lineto$5sIl = _r103_t0['line-to']['bind'](_r103_t0);
r103_xn$curveto$1aao = _r103_t0['curve-to']['bind'](_r103_t0);
r103_xn$cubicto$1aao = _r103_t0['cubic-to']['bind'](_r103_t0);
r103_xn$putshapes$9Jrj = _r103_t0['put-shapes']['bind'](_r103_t0);
r103_xn$reverselast$3qIs = _r103_t0['reverse-last']['bind'](_r103_t0);
r103_include = _r103_t0['include']['bind'](_r103_t0);
r103_xn$createstroke$7Hrq = _r103_t0['create-stroke']['bind'](_r103_t0);
r103_xn$setanchor$9Jrj = _r103_t0['set-anchor']['bind'](_r103_t0);
_r103_t0['gizmo'] = r1_globalTransform;
_r103_t0['set-width'](r1_WIDTH);
r103_xn$setwidth$9Jrj(r1_WIDTH);
r103_xn$assignunicode$7Hrq('g');
r103_include(r1_pMarks);
r103_xn$putshapes$9Jrj([
r1_Ring(r1_XO, r1_XH * r1_GBARPOS, r1_SB * 1.25, r1_RIGHTSB - 0.25 * r1_SB, r1_SMALLSMOOTH),
r1_Ring(r1_XO - r1_STROKE, r1_XH * r1_GBARPOS + r1_STROKE, r1_SB * 1.25 + r1_STROKE, r1_RIGHTSB - 0.25 * r1_SB - r1_STROKE, r1_SMALLSMOOTH - r1_STROKE)
]);
r103_xn$reverselast$3qIs();
r103_xn$putshapes$9Jrj(r103_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, r1_XH * r1_GBARPOS)['set-width'](0, r1_STROKE * 0.75)['arc-hv-to'](r1_SB * 1.5 + r1_STROKE, (r1_O - r1_DESCENDER * 0.85 + r1_XH * r1_GBARPOS) * 0.47)['set-width'](0, r1_STROKE)['arc-vh-to'](r1_MIDDLE + r1_DESCENDER * 0.15, r1_O - r1_DESCENDER * 0.85)['line-to'](r1_MIDDLE - r1_DESCENDER * 0.15, r1_O - r1_DESCENDER * 0.85)['arc-hv-to'](r1_RIGHTSB - r1_O * 2, -r1_STROKE * r1_globalTransform['yx'] * 2)['arc-vh-to'](r1_MIDDLE, r1_DESCENDER + r1_O)['arc-hv-to'](r1_SB, r1_DESCENDER * 0.1)['arc-vh-to'](r1_MIDDLE + r1_DESCENDER * 0.15, r1_O - r1_DESCENDER * 0.85)['to-outline']());
r103_xn$startfrom$1aao(r1_RIGHTSB + 0.5 * r1_SB, r1_XH);
r103_xn$lineto$5sIl(r1_RIGHTSB + 0.5 * r1_SB, r1_XH - r1_STROKE);
r103_xn$lineto$5sIl(r1_MIDDLE, r1_XH - r1_STROKE - r1_O);
r103_xn$lineto$5sIl(r1_MIDDLE, r1_XH);
return void 0;
});
r1_xn$createglyph$7Hrq('c', function _r1_t53() {
var r105_xn$setwidth$9Jrj, r105_xn$assignunicode$7Hrq, r105_xn$startfrom$1aao, r105_xn$lineto$5sIl, r105_xn$curveto$1aao, r105_xn$cubicto$1aao, r105_xn$putshapes$9Jrj, r105_xn$reverselast$3qIs, r105_include, r105_xn$createstroke$7Hrq, r105_xn$setanchor$9Jrj, r105_outline, _r105_t0;
_r105_t0 = this;
r105_xn$setwidth$9Jrj = _r105_t0['set-width']['bind'](_r105_t0);
r105_xn$assignunicode$7Hrq = _r105_t0['assign-unicode']['bind'](_r105_t0);
r105_xn$startfrom$1aao = _r105_t0['start-from']['bind'](_r105_t0);
r105_xn$lineto$5sIl = _r105_t0['line-to']['bind'](_r105_t0);
r105_xn$curveto$1aao = _r105_t0['curve-to']['bind'](_r105_t0);
r105_xn$cubicto$1aao = _r105_t0['cubic-to']['bind'](_r105_t0);
r105_xn$putshapes$9Jrj = _r105_t0['put-shapes']['bind'](_r105_t0);
r105_xn$reverselast$3qIs = _r105_t0['reverse-last']['bind'](_r105_t0);
r105_include = _r105_t0['include']['bind'](_r105_t0);
r105_xn$createstroke$7Hrq = _r105_t0['create-stroke']['bind'](_r105_t0);
r105_xn$setanchor$9Jrj = _r105_t0['set-anchor']['bind'](_r105_t0);
_r105_t0['gizmo'] = r1_globalTransform;
_r105_t0['set-width'](r1_WIDTH);
r105_xn$setwidth$9Jrj(r1_WIDTH);
r105_xn$assignunicode$7Hrq('c');
r105_include(r1_eMarks);
r105_outline = r105_xn$createstroke$7Hrq();
r105_outline['start-from'](r1_RIGHTSB - r1_OXHOOK, r1_XH - r1_HOOK)['curve-to'](r1_MIDDLE + r1_KAPPA_HOOK * (r1_MIDDLE - r1_para['sb']), r1_XO, r1_MIDDLE, r1_XO)['heads-to'](r1_LEFTWARD)['arc-hv-to'](r1_SB + r1_O, r1_XH - r1_SMALLSMOOTHA)['line-to'](r1_SB + r1_O, r1_SMALLSMOOTHB)['arc-vh-to'](r1_MIDDLE, r1_O)['heads-to'](r1_RIGHTWARD)['curve-to'](r1_MIDDLE + (r1_KAPPA_HOOK + r1_TAILADJKAPPA * r1_globalTransform['yx']) * (r1_MIDDLE - r1_SB), r1_O, r1_RIGHTSB - r1_OXHOOK + r1_TAILADJX * r1_globalTransform['yx'], r1_HOOK - r1_TAILADJY * r1_globalTransform['yx']);
r105_xn$putshapes$9Jrj(r105_outline['to-outline'](r1_STROKE, 0));
return void 0;
});
r1_xn$createglyph$7Hrq('e.upright', function _r1_t54() {
var r107_xn$setwidth$9Jrj, r107_xn$assignunicode$7Hrq, r107_xn$startfrom$1aao, r107_xn$lineto$5sIl, r107_xn$curveto$1aao, r107_xn$cubicto$1aao, r107_xn$putshapes$9Jrj, r107_xn$reverselast$3qIs, r107_include, r107_xn$createstroke$7Hrq, r107_xn$setanchor$9Jrj, r107_barbottom, r107_outline, r107_bar, _r107_t0;
_r107_t0 = this;
r107_xn$setwidth$9Jrj = _r107_t0['set-width']['bind'](_r107_t0);
r107_xn$assignunicode$7Hrq = _r107_t0['assign-unicode']['bind'](_r107_t0);
r107_xn$startfrom$1aao = _r107_t0['start-from']['bind'](_r107_t0);
r107_xn$lineto$5sIl = _r107_t0['line-to']['bind'](_r107_t0);
r107_xn$curveto$1aao = _r107_t0['curve-to']['bind'](_r107_t0);
r107_xn$cubicto$1aao = _r107_t0['cubic-to']['bind'](_r107_t0);
r107_xn$putshapes$9Jrj = _r107_t0['put-shapes']['bind'](_r107_t0);
r107_xn$reverselast$3qIs = _r107_t0['reverse-last']['bind'](_r107_t0);
r107_include = _r107_t0['include']['bind'](_r107_t0);
r107_xn$createstroke$7Hrq = _r107_t0['create-stroke']['bind'](_r107_t0);
r107_xn$setanchor$9Jrj = _r107_t0['set-anchor']['bind'](_r107_t0);
_r107_t0['gizmo'] = r1_globalTransform;
_r107_t0['set-width'](r1_WIDTH);
r107_xn$setwidth$9Jrj(r1_WIDTH);
r107_barbottom = r1_XH * r1_BARPOS;
r107_outline = r107_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB - r1_O, r107_barbottom)['heads-to'](r1_UPWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_RIGHTSB - r1_O, r1_XH - r1_SMALLSMOOTHB)['arc-vh-to'](r1_MIDDLE, r1_XO)['heads-to'](r1_LEFTWARD)['arc-hv-to'](r1_SB + r1_O, r1_XH - r1_SMALLSMOOTHA)['line-to'](r1_SB + r1_O, r1_SMALLSMOOTHB)['arc-vh-to'](r1_MIDDLE, r1_O)['heads-to'](r1_RIGHTWARD)['curve-to'](r1_MIDDLE + (r1_KAPPA_HOOK + r1_TAILADJKAPPA * r1_globalTransform['yx']) * (r1_MIDDLE - r1_SB), r1_O, r1_RIGHTSB - r1_OXHOOK + r1_TAILADJX * r1_globalTransform['yx'], r1_HOOK - r1_TAILADJY * r1_globalTransform['yx']);
r107_bar = r107_xn$createstroke$7Hrq()['start-from'](r1_SB + r1_HALFSTROKE, r107_barbottom)['set-width'](r1_STROKE, 0)['heads-to'](r1_RIGHTWARD)['line-to'](r1_RIGHTSB - r1_HALFSTROKE, r107_barbottom)['heads-to'](r1_RIGHTWARD);
r107_xn$putshapes$9Jrj(r107_outline['to-outline']());
r107_xn$putshapes$9Jrj(r107_bar['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('e.italic', function _r1_t55() {
var r109_xn$setwidth$9Jrj, r109_xn$assignunicode$7Hrq, r109_xn$startfrom$1aao, r109_xn$lineto$5sIl, r109_xn$curveto$1aao, r109_xn$cubicto$1aao, r109_xn$putshapes$9Jrj, r109_xn$reverselast$3qIs, r109_include, r109_xn$createstroke$7Hrq, r109_xn$setanchor$9Jrj, r109_barbottom, _r109_t0;
_r109_t0 = this;
r109_xn$setwidth$9Jrj = _r109_t0['set-width']['bind'](_r109_t0);
r109_xn$assignunicode$7Hrq = _r109_t0['assign-unicode']['bind'](_r109_t0);
r109_xn$startfrom$1aao = _r109_t0['start-from']['bind'](_r109_t0);
r109_xn$lineto$5sIl = _r109_t0['line-to']['bind'](_r109_t0);
r109_xn$curveto$1aao = _r109_t0['curve-to']['bind'](_r109_t0);
r109_xn$cubicto$1aao = _r109_t0['cubic-to']['bind'](_r109_t0);
r109_xn$putshapes$9Jrj = _r109_t0['put-shapes']['bind'](_r109_t0);
r109_xn$reverselast$3qIs = _r109_t0['reverse-last']['bind'](_r109_t0);
r109_include = _r109_t0['include']['bind'](_r109_t0);
r109_xn$createstroke$7Hrq = _r109_t0['create-stroke']['bind'](_r109_t0);
r109_xn$setanchor$9Jrj = _r109_t0['set-anchor']['bind'](_r109_t0);
_r109_t0['gizmo'] = r1_globalTransform;
_r109_t0['set-width'](r1_WIDTH);
r109_xn$setwidth$9Jrj(r1_WIDTH);
r109_barbottom = r1_XH * (r1_BARPOS - 0.04);
r109_xn$putshapes$9Jrj(r109_xn$createstroke$7Hrq()['start-from'](r1_SB + r1_O + r1_STROKE, r109_barbottom)['set-width'](r1_STROKE, 0)['arc-hv-to'](r1_RIGHTSB - r1_O, r1_XH - r1_SMALLSMOOTHB * 0.95)['arc-vh-to'](r1_MIDDLE, r1_XO)['heads-to'](r1_LEFTWARD)['arc-hv-to'](r1_SB + r1_O, r1_XH - r1_SMALLSMOOTHA)['line-to'](r1_SB + r1_O, r1_SMALLSMOOTHB)['arc-vh-to'](r1_MIDDLE, r1_O)['heads-to'](r1_RIGHTWARD)['curve-to'](r1_MIDDLE + (r1_KAPPA_HOOK + r1_TAILADJKAPPA * r1_globalTransform['yx']) * (r1_MIDDLE - r1_SB), r1_O, r1_RIGHTSB - r1_OXHOOK + r1_TAILADJX * r1_globalTransform['yx'], r1_HOOK - r1_TAILADJY * r1_globalTransform['yx'])['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('e', function _r1_t56() {
var r111_xn$setwidth$9Jrj, r111_xn$assignunicode$7Hrq, r111_xn$startfrom$1aao, r111_xn$lineto$5sIl, r111_xn$curveto$1aao, r111_xn$cubicto$1aao, r111_xn$putshapes$9Jrj, r111_xn$reverselast$3qIs, r111_include, r111_xn$createstroke$7Hrq, r111_xn$setanchor$9Jrj, _r111_t0;
_r111_t0 = this;
r111_xn$setwidth$9Jrj = _r111_t0['set-width']['bind'](_r111_t0);
r111_xn$assignunicode$7Hrq = _r111_t0['assign-unicode']['bind'](_r111_t0);
r111_xn$startfrom$1aao = _r111_t0['start-from']['bind'](_r111_t0);
r111_xn$lineto$5sIl = _r111_t0['line-to']['bind'](_r111_t0);
r111_xn$curveto$1aao = _r111_t0['curve-to']['bind'](_r111_t0);
r111_xn$cubicto$1aao = _r111_t0['cubic-to']['bind'](_r111_t0);
r111_xn$putshapes$9Jrj = _r111_t0['put-shapes']['bind'](_r111_t0);
r111_xn$reverselast$3qIs = _r111_t0['reverse-last']['bind'](_r111_t0);
r111_include = _r111_t0['include']['bind'](_r111_t0);
r111_xn$createstroke$7Hrq = _r111_t0['create-stroke']['bind'](_r111_t0);
r111_xn$setanchor$9Jrj = _r111_t0['set-anchor']['bind'](_r111_t0);
_r111_t0['gizmo'] = r1_globalTransform;
_r111_t0['set-width'](r1_WIDTH);
r111_xn$setwidth$9Jrj(r1_WIDTH);
r111_xn$assignunicode$7Hrq('e');
r111_include(r1_eMarks);
if (r1_para['italicangle'] > 0) {
r111_include(r1_glyphs['e.italic']);
} else {
r111_include(r1_glyphs['e.upright']);
}
return void 0;
});
r1_xn$createglyph$7Hrq('t', function _r1_t57() {
var r113_xn$setwidth$9Jrj, r113_xn$assignunicode$7Hrq, r113_xn$startfrom$1aao, r113_xn$lineto$5sIl, r113_xn$curveto$1aao, r113_xn$cubicto$1aao, r113_xn$putshapes$9Jrj, r113_xn$reverselast$3qIs, r113_include, r113_xn$createstroke$7Hrq, r113_xn$setanchor$9Jrj, r113_center, r113_hookx, r113_turn, _r113_t0;
_r113_t0 = this;
r113_xn$setwidth$9Jrj = _r113_t0['set-width']['bind'](_r113_t0);
r113_xn$assignunicode$7Hrq = _r113_t0['assign-unicode']['bind'](_r113_t0);
r113_xn$startfrom$1aao = _r113_t0['start-from']['bind'](_r113_t0);
r113_xn$lineto$5sIl = _r113_t0['line-to']['bind'](_r113_t0);
r113_xn$curveto$1aao = _r113_t0['curve-to']['bind'](_r113_t0);
r113_xn$cubicto$1aao = _r113_t0['cubic-to']['bind'](_r113_t0);
r113_xn$putshapes$9Jrj = _r113_t0['put-shapes']['bind'](_r113_t0);
r113_xn$reverselast$3qIs = _r113_t0['reverse-last']['bind'](_r113_t0);
r113_include = _r113_t0['include']['bind'](_r113_t0);
r113_xn$createstroke$7Hrq = _r113_t0['create-stroke']['bind'](_r113_t0);
r113_xn$setanchor$9Jrj = _r113_t0['set-anchor']['bind'](_r113_t0);
_r113_t0['gizmo'] = r1_globalTransform;
_r113_t0['set-width'](r1_WIDTH);
r113_xn$setwidth$9Jrj(r1_WIDTH);
r113_xn$assignunicode$7Hrq('t');
r113_include(r1_bMarks);
r113_center = r1_MIDDLE - r1_TBALANCE - r1_HALFSTROKE;
r113_hookx = r113_center + (r1_WIDTH - r1_SB * 2) * 0.82 - r1_OXHOOK + r1_TAILADJX * r1_globalTransform['yx'];
r113_turn = r113_center + (r113_hookx - r113_center) * (0.5 + r1_globalTransform['yx'] * 0.5);
r113_xn$putshapes$9Jrj(r113_xn$createstroke$7Hrq()['start-from'](r113_center, r1_CAP)['set-width'](r1_STROKE, 0)['heads-to'](r1_DOWNWARD)['line-to'](r113_center, r1_SMOOTHB)['arc-vh-to'](r113_turn, r1_O)['curve-to'](r113_turn + (r1_KAPPA_HOOK + r1_TAILADJKAPPA * r1_globalTransform['yx'] + 0.1) * (r113_hookx - r113_turn), r1_O, r113_hookx, r1_HOOK - r1_TAILADJY * r1_globalTransform['yx'])['to-outline']());
r113_xn$putshapes$9Jrj(r113_xn$createstroke$7Hrq()['start-from'](r113_center + r1_HALFSTROKE - r1_LONGSERIF + r1_TBALANCE2, r1_XH)['heads-to'](r1_RIGHTWARD)['set-width'](0, r1_STROKE)['line-to'](r113_center + r1_HALFSTROKE + r1_LONGSERIF + r1_TBALANCE2, r1_XH)['heads-to'](r1_RIGHTWARD)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('a.upright', function _r1_t58() {
var r115_xn$setwidth$9Jrj, r115_xn$assignunicode$7Hrq, r115_xn$startfrom$1aao, r115_xn$lineto$5sIl, r115_xn$curveto$1aao, r115_xn$cubicto$1aao, r115_xn$putshapes$9Jrj, r115_xn$reverselast$3qIs, r115_include, r115_xn$createstroke$7Hrq, r115_xn$setanchor$9Jrj, r115_bartop, _r115_t0;
_r115_t0 = this;
r115_xn$setwidth$9Jrj = _r115_t0['set-width']['bind'](_r115_t0);
r115_xn$assignunicode$7Hrq = _r115_t0['assign-unicode']['bind'](_r115_t0);
r115_xn$startfrom$1aao = _r115_t0['start-from']['bind'](_r115_t0);
r115_xn$lineto$5sIl = _r115_t0['line-to']['bind'](_r115_t0);
r115_xn$curveto$1aao = _r115_t0['curve-to']['bind'](_r115_t0);
r115_xn$cubicto$1aao = _r115_t0['cubic-to']['bind'](_r115_t0);
r115_xn$putshapes$9Jrj = _r115_t0['put-shapes']['bind'](_r115_t0);
r115_xn$reverselast$3qIs = _r115_t0['reverse-last']['bind'](_r115_t0);
r115_include = _r115_t0['include']['bind'](_r115_t0);
r115_xn$createstroke$7Hrq = _r115_t0['create-stroke']['bind'](_r115_t0);
r115_xn$setanchor$9Jrj = _r115_t0['set-anchor']['bind'](_r115_t0);
_r115_t0['gizmo'] = r1_globalTransform;
_r115_t0['set-width'](r1_WIDTH);
r115_xn$setwidth$9Jrj(r1_WIDTH);
r115_bartop = r1_XH * r1_BARPOS + r1_STROKE;
r115_xn$putshapes$9Jrj(r115_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB, 0)['heads-to'](r1_UPWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_RIGHTSB, r1_XH - r1_SMOOTHA)['arc-vh-to'](r1_MIDDLE, r1_XO)['heads-to'](r1_LEFTWARD)['curve-to'](r1_MIDDLE - r1_KAPPA_AHOOK * (r1_MIDDLE - r1_SB), r1_XO, r1_SB + r1_OXHOOK, r1_XH - r1_AHOOK)['to-outline']());
r115_xn$putshapes$9Jrj(r115_xn$createstroke$7Hrq()['start-from'](r1_WIDTH * 0.47, r1_O)['set-width'](0, r1_STROKE)['heads-to'](r1_LEFTWARD)['arc-hv-to'](r1_SB + r1_O, r115_bartop * 0.45)['arc-vh-to'](r1_WIDTH * 0.6, r115_bartop)['line-to'](r1_RIGHTSB, r115_bartop)['heads-to'](r1_RIGHTWARD)['to-outline']());
r115_xn$putshapes$9Jrj(r115_xn$createstroke$7Hrq()['start-from'](r1_WIDTH * 0.47, r1_O + r1_STROKE)['set-width'](0, r1_STROKE)['heads-to'](r1_RIGHTWARD)['arc-hv-to'](r1_RIGHTSB - r1_STROKE, r1_SMALLSMOOTHA * 0.65)['heads-to'](r1_UPWARD)['set-width'](0, r1_STROKE * 0.4)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('a.italic', function _r1_t59() {
var r117_xn$setwidth$9Jrj, r117_xn$assignunicode$7Hrq, r117_xn$startfrom$1aao, r117_xn$lineto$5sIl, r117_xn$curveto$1aao, r117_xn$cubicto$1aao, r117_xn$putshapes$9Jrj, r117_xn$reverselast$3qIs, r117_include, r117_xn$createstroke$7Hrq, r117_xn$setanchor$9Jrj, _r117_t0;
_r117_t0 = this;
r117_xn$setwidth$9Jrj = _r117_t0['set-width']['bind'](_r117_t0);
r117_xn$assignunicode$7Hrq = _r117_t0['assign-unicode']['bind'](_r117_t0);
r117_xn$startfrom$1aao = _r117_t0['start-from']['bind'](_r117_t0);
r117_xn$lineto$5sIl = _r117_t0['line-to']['bind'](_r117_t0);
r117_xn$curveto$1aao = _r117_t0['curve-to']['bind'](_r117_t0);
r117_xn$cubicto$1aao = _r117_t0['cubic-to']['bind'](_r117_t0);
r117_xn$putshapes$9Jrj = _r117_t0['put-shapes']['bind'](_r117_t0);
r117_xn$reverselast$3qIs = _r117_t0['reverse-last']['bind'](_r117_t0);
r117_include = _r117_t0['include']['bind'](_r117_t0);
r117_xn$createstroke$7Hrq = _r117_t0['create-stroke']['bind'](_r117_t0);
r117_xn$setanchor$9Jrj = _r117_t0['set-anchor']['bind'](_r117_t0);
_r117_t0['gizmo'] = r1_globalTransform;
_r117_t0['set-width'](r1_WIDTH);
r117_xn$setwidth$9Jrj(r1_WIDTH);
r117_include(r1_glyphs['o.right']);
r117_xn$putshapes$9Jrj(r117_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB, 0)['heads-to'](r1_UPWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_RIGHTSB, r1_XH)['heads-to'](r1_UPWARD)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('a', function _r1_t60() {
var r119_xn$setwidth$9Jrj, r119_xn$assignunicode$7Hrq, r119_xn$startfrom$1aao, r119_xn$lineto$5sIl, r119_xn$curveto$1aao, r119_xn$cubicto$1aao, r119_xn$putshapes$9Jrj, r119_xn$reverselast$3qIs, r119_include, r119_xn$createstroke$7Hrq, r119_xn$setanchor$9Jrj, _r119_t0;
_r119_t0 = this;
r119_xn$setwidth$9Jrj = _r119_t0['set-width']['bind'](_r119_t0);
r119_xn$assignunicode$7Hrq = _r119_t0['assign-unicode']['bind'](_r119_t0);
r119_xn$startfrom$1aao = _r119_t0['start-from']['bind'](_r119_t0);
r119_xn$lineto$5sIl = _r119_t0['line-to']['bind'](_r119_t0);
r119_xn$curveto$1aao = _r119_t0['curve-to']['bind'](_r119_t0);
r119_xn$cubicto$1aao = _r119_t0['cubic-to']['bind'](_r119_t0);
r119_xn$putshapes$9Jrj = _r119_t0['put-shapes']['bind'](_r119_t0);
r119_xn$reverselast$3qIs = _r119_t0['reverse-last']['bind'](_r119_t0);
r119_include = _r119_t0['include']['bind'](_r119_t0);
r119_xn$createstroke$7Hrq = _r119_t0['create-stroke']['bind'](_r119_t0);
r119_xn$setanchor$9Jrj = _r119_t0['set-anchor']['bind'](_r119_t0);
_r119_t0['gizmo'] = r1_globalTransform;
_r119_t0['set-width'](r1_WIDTH);
r119_xn$setwidth$9Jrj(r1_WIDTH);
r119_xn$assignunicode$7Hrq('a');
r119_include(r1_eMarks);
if (r1_para['italicangle'] > 0) {
r119_include(r1_glyphs['a.italic']);
} else {
r119_include(r1_glyphs['a.upright']);
}
return void 0;
});
r1_xn$createglyph$7Hrq('u', function _r1_t61() {
var r121_xn$setwidth$9Jrj, r121_xn$assignunicode$7Hrq, r121_xn$startfrom$1aao, r121_xn$lineto$5sIl, r121_xn$curveto$1aao, r121_xn$cubicto$1aao, r121_xn$putshapes$9Jrj, r121_xn$reverselast$3qIs, r121_include, r121_xn$createstroke$7Hrq, r121_xn$setanchor$9Jrj, _r121_t0;
_r121_t0 = this;
r121_xn$setwidth$9Jrj = _r121_t0['set-width']['bind'](_r121_t0);
r121_xn$assignunicode$7Hrq = _r121_t0['assign-unicode']['bind'](_r121_t0);
r121_xn$startfrom$1aao = _r121_t0['start-from']['bind'](_r121_t0);
r121_xn$lineto$5sIl = _r121_t0['line-to']['bind'](_r121_t0);
r121_xn$curveto$1aao = _r121_t0['curve-to']['bind'](_r121_t0);
r121_xn$cubicto$1aao = _r121_t0['cubic-to']['bind'](_r121_t0);
r121_xn$putshapes$9Jrj = _r121_t0['put-shapes']['bind'](_r121_t0);
r121_xn$reverselast$3qIs = _r121_t0['reverse-last']['bind'](_r121_t0);
r121_include = _r121_t0['include']['bind'](_r121_t0);
r121_xn$createstroke$7Hrq = _r121_t0['create-stroke']['bind'](_r121_t0);
r121_xn$setanchor$9Jrj = _r121_t0['set-anchor']['bind'](_r121_t0);
_r121_t0['gizmo'] = r1_globalTransform;
_r121_t0['set-width'](r1_WIDTH);
r121_xn$setwidth$9Jrj(r1_WIDTH);
r121_xn$assignunicode$7Hrq('u');
r121_include(r1_eMarks);
r121_xn$putshapes$9Jrj(r121_xn$createstroke$7Hrq()['start-from'](r1_SB, r1_XH)['heads-to'](r1_DOWNWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_SB, r1_SMALLSMOOTHA)['arc-vh-to'](r1_MIDDLE, r1_O)['heads-to'](r1_RIGHTWARD)['to-outline']());
r121_xn$putshapes$9Jrj(r121_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, r1_O + r1_STROKE)['set-width'](0, r1_STROKE)['heads-to'](r1_RIGHTWARD)['arc-hv-to'](r1_RIGHTSB - r1_STROKE * r1_ITALICCOR, r1_SMALLSMOOTHA)['heads-to'](r1_UPWARD)['set-width'](0, r1_STROKE * 0.4)['to-outline']());
r121_xn$putshapes$9Jrj(r121_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB, 0)['heads-to'](r1_UPWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_RIGHTSB, r1_XH)['heads-to'](r1_UPWARD)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('nbowl', function _r1_t62() {
var r123_xn$setwidth$9Jrj, r123_xn$assignunicode$7Hrq, r123_xn$startfrom$1aao, r123_xn$lineto$5sIl, r123_xn$curveto$1aao, r123_xn$cubicto$1aao, r123_xn$putshapes$9Jrj, r123_xn$reverselast$3qIs, r123_include, r123_xn$createstroke$7Hrq, r123_xn$setanchor$9Jrj, _r123_t0;
_r123_t0 = this;
r123_xn$setwidth$9Jrj = _r123_t0['set-width']['bind'](_r123_t0);
r123_xn$assignunicode$7Hrq = _r123_t0['assign-unicode']['bind'](_r123_t0);
r123_xn$startfrom$1aao = _r123_t0['start-from']['bind'](_r123_t0);
r123_xn$lineto$5sIl = _r123_t0['line-to']['bind'](_r123_t0);
r123_xn$curveto$1aao = _r123_t0['curve-to']['bind'](_r123_t0);
r123_xn$cubicto$1aao = _r123_t0['cubic-to']['bind'](_r123_t0);
r123_xn$putshapes$9Jrj = _r123_t0['put-shapes']['bind'](_r123_t0);
r123_xn$reverselast$3qIs = _r123_t0['reverse-last']['bind'](_r123_t0);
r123_include = _r123_t0['include']['bind'](_r123_t0);
r123_xn$createstroke$7Hrq = _r123_t0['create-stroke']['bind'](_r123_t0);
r123_xn$setanchor$9Jrj = _r123_t0['set-anchor']['bind'](_r123_t0);
_r123_t0['gizmo'] = r1_globalTransform;
_r123_t0['set-width'](r1_WIDTH);
r123_xn$putshapes$9Jrj(r123_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB, 0)['heads-to'](r1_UPWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_RIGHTSB, r1_XH - r1_SMALLSMOOTHB)['arc-vh-to'](r1_MIDDLE, r1_XO)['heads-to'](r1_LEFTWARD)['to-outline']());
r123_xn$putshapes$9Jrj(r123_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, r1_XO - r1_STROKE)['set-width'](0, r1_STROKE)['heads-to'](r1_LEFTWARD)['arc-hv-to'](r1_SB + r1_STROKE * r1_ITALICCOR, r1_XH - r1_SMALLSMOOTHA)['heads-to'](r1_DOWNWARD)['set-width'](0, r1_STROKE * 0.4)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('n', function _r1_t63() {
var r125_xn$setwidth$9Jrj, r125_xn$assignunicode$7Hrq, r125_xn$startfrom$1aao, r125_xn$lineto$5sIl, r125_xn$curveto$1aao, r125_xn$cubicto$1aao, r125_xn$putshapes$9Jrj, r125_xn$reverselast$3qIs, r125_include, r125_xn$createstroke$7Hrq, r125_xn$setanchor$9Jrj, _r125_t0;
_r125_t0 = this;
r125_xn$setwidth$9Jrj = _r125_t0['set-width']['bind'](_r125_t0);
r125_xn$assignunicode$7Hrq = _r125_t0['assign-unicode']['bind'](_r125_t0);
r125_xn$startfrom$1aao = _r125_t0['start-from']['bind'](_r125_t0);
r125_xn$lineto$5sIl = _r125_t0['line-to']['bind'](_r125_t0);
r125_xn$curveto$1aao = _r125_t0['curve-to']['bind'](_r125_t0);
r125_xn$cubicto$1aao = _r125_t0['cubic-to']['bind'](_r125_t0);
r125_xn$putshapes$9Jrj = _r125_t0['put-shapes']['bind'](_r125_t0);
r125_xn$reverselast$3qIs = _r125_t0['reverse-last']['bind'](_r125_t0);
r125_include = _r125_t0['include']['bind'](_r125_t0);
r125_xn$createstroke$7Hrq = _r125_t0['create-stroke']['bind'](_r125_t0);
r125_xn$setanchor$9Jrj = _r125_t0['set-anchor']['bind'](_r125_t0);
_r125_t0['gizmo'] = r1_globalTransform;
_r125_t0['set-width'](r1_WIDTH);
r125_xn$setwidth$9Jrj(r1_WIDTH);
r125_xn$assignunicode$7Hrq('n');
r125_include(r1_eMarks);
r125_include(r1_glyphs['nbowl']);
r125_xn$putshapes$9Jrj(r125_xn$createstroke$7Hrq()['start-from'](r1_SB, 0)['heads-to'](r1_UPWARD)['set-width'](0, r1_STROKE)['line-to'](r1_SB, r1_XH)['heads-to'](r1_UPWARD)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('h', function _r1_t64() {
var r127_xn$setwidth$9Jrj, r127_xn$assignunicode$7Hrq, r127_xn$startfrom$1aao, r127_xn$lineto$5sIl, r127_xn$curveto$1aao, r127_xn$cubicto$1aao, r127_xn$putshapes$9Jrj, r127_xn$reverselast$3qIs, r127_include, r127_xn$createstroke$7Hrq, r127_xn$setanchor$9Jrj, _r127_t0;
_r127_t0 = this;
r127_xn$setwidth$9Jrj = _r127_t0['set-width']['bind'](_r127_t0);
r127_xn$assignunicode$7Hrq = _r127_t0['assign-unicode']['bind'](_r127_t0);
r127_xn$startfrom$1aao = _r127_t0['start-from']['bind'](_r127_t0);
r127_xn$lineto$5sIl = _r127_t0['line-to']['bind'](_r127_t0);
r127_xn$curveto$1aao = _r127_t0['curve-to']['bind'](_r127_t0);
r127_xn$cubicto$1aao = _r127_t0['cubic-to']['bind'](_r127_t0);
r127_xn$putshapes$9Jrj = _r127_t0['put-shapes']['bind'](_r127_t0);
r127_xn$reverselast$3qIs = _r127_t0['reverse-last']['bind'](_r127_t0);
r127_include = _r127_t0['include']['bind'](_r127_t0);
r127_xn$createstroke$7Hrq = _r127_t0['create-stroke']['bind'](_r127_t0);
r127_xn$setanchor$9Jrj = _r127_t0['set-anchor']['bind'](_r127_t0);
_r127_t0['gizmo'] = r1_globalTransform;
_r127_t0['set-width'](r1_WIDTH);
r127_xn$setwidth$9Jrj(r1_WIDTH);
r127_xn$assignunicode$7Hrq('h');
r127_include(r1_bMarks);
r127_include(r1_glyphs['nbowl']);
r127_xn$putshapes$9Jrj(r127_xn$createstroke$7Hrq()['start-from'](r1_SB, 0)['heads-to'](r1_UPWARD)['set-width'](0, r1_STROKE)['line-to'](r1_SB, r1_CAP)['heads-to'](r1_UPWARD)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('m', function _r1_t65() {
var r129_xn$setwidth$9Jrj, r129_xn$assignunicode$7Hrq, r129_xn$startfrom$1aao, r129_xn$lineto$5sIl, r129_xn$curveto$1aao, r129_xn$cubicto$1aao, r129_xn$putshapes$9Jrj, r129_xn$reverselast$3qIs, r129_include, r129_xn$createstroke$7Hrq, r129_xn$setanchor$9Jrj, r129_sw, r129_m1, r129_m2, _r129_t0;
_r129_t0 = this;
r129_xn$setwidth$9Jrj = _r129_t0['set-width']['bind'](_r129_t0);
r129_xn$assignunicode$7Hrq = _r129_t0['assign-unicode']['bind'](_r129_t0);
r129_xn$startfrom$1aao = _r129_t0['start-from']['bind'](_r129_t0);
r129_xn$lineto$5sIl = _r129_t0['line-to']['bind'](_r129_t0);
r129_xn$curveto$1aao = _r129_t0['curve-to']['bind'](_r129_t0);
r129_xn$cubicto$1aao = _r129_t0['cubic-to']['bind'](_r129_t0);
r129_xn$putshapes$9Jrj = _r129_t0['put-shapes']['bind'](_r129_t0);
r129_xn$reverselast$3qIs = _r129_t0['reverse-last']['bind'](_r129_t0);
r129_include = _r129_t0['include']['bind'](_r129_t0);
r129_xn$createstroke$7Hrq = _r129_t0['create-stroke']['bind'](_r129_t0);
r129_xn$setanchor$9Jrj = _r129_t0['set-anchor']['bind'](_r129_t0);
_r129_t0['gizmo'] = r1_globalTransform;
_r129_t0['set-width'](r1_WIDTH);
r129_xn$setwidth$9Jrj(r1_WIDTH);
r129_xn$assignunicode$7Hrq('m');
r129_include(r1_eMarks);
r129_sw = Math['min'](r1_STROKE, (r1_WIDTH - r1_SB * 2) * 0.26);
r129_m1 = (r1_MIDDLE + r1_SB + r129_sw * 0.25) / 2;
r129_m2 = r129_m1 + (r1_MIDDLE - r129_sw / 2 - r1_SB);
r129_xn$putshapes$9Jrj(r129_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE - r129_sw / 2, 0)['set-width'](0, r129_sw)['heads-to'](r1_UPWARD)['line-to'](r1_MIDDLE - r129_sw / 2, r1_XH - r1_SMALLSMOOTHA)['arc-vh-to'](r129_m1, r1_XO - r1_STROKE)['set-width'](0, r1_STROKE)['heads-to'](r1_LEFTWARD)['arc-hv-to'](r1_SB + r129_sw * 0.75, r1_XH - r1_SMALLSMOOTHA)['heads-to'](r1_DOWNWARD)['set-width'](0, r129_sw * 0.4)['to-outline']());
r129_xn$putshapes$9Jrj(r129_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB - r129_sw - r1_O, 0)['set-width'](0, r129_sw)['heads-to'](r1_UPWARD)['line-to'](r1_RIGHTSB - r129_sw - r1_O, r1_XH - r1_SMALLSMOOTHA)['arc-vh-to'](r129_m2, r1_XO - r1_STROKE)['set-width'](0, r1_STROKE)['heads-to'](r1_LEFTWARD)['arc-hv-to'](r1_MIDDLE + r129_sw * 0.25, r1_XH - r1_SMALLSMOOTHA)['heads-to'](r1_DOWNWARD)['set-width'](0, r129_sw * 0.4)['to-outline']());
r129_xn$putshapes$9Jrj(r129_xn$createstroke$7Hrq()['start-from'](r1_SB + r1_O, 0)['heads-to'](r1_UPWARD)['set-width'](0, r129_sw)['line-to'](r1_SB + r1_O, r1_XH)['heads-to'](r1_UPWARD)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('dotlessi.straight', function _r1_t66() {
var r131_xn$setwidth$9Jrj, r131_xn$assignunicode$7Hrq, r131_xn$startfrom$1aao, r131_xn$lineto$5sIl, r131_xn$curveto$1aao, r131_xn$cubicto$1aao, r131_xn$putshapes$9Jrj, r131_xn$reverselast$3qIs, r131_include, r131_xn$createstroke$7Hrq, r131_xn$setanchor$9Jrj, _r131_t0;
_r131_t0 = this;
r131_xn$setwidth$9Jrj = _r131_t0['set-width']['bind'](_r131_t0);
r131_xn$assignunicode$7Hrq = _r131_t0['assign-unicode']['bind'](_r131_t0);
r131_xn$startfrom$1aao = _r131_t0['start-from']['bind'](_r131_t0);
r131_xn$lineto$5sIl = _r131_t0['line-to']['bind'](_r131_t0);
r131_xn$curveto$1aao = _r131_t0['curve-to']['bind'](_r131_t0);
r131_xn$cubicto$1aao = _r131_t0['cubic-to']['bind'](_r131_t0);
r131_xn$putshapes$9Jrj = _r131_t0['put-shapes']['bind'](_r131_t0);
r131_xn$reverselast$3qIs = _r131_t0['reverse-last']['bind'](_r131_t0);
r131_include = _r131_t0['include']['bind'](_r131_t0);
r131_xn$createstroke$7Hrq = _r131_t0['create-stroke']['bind'](_r131_t0);
r131_xn$setanchor$9Jrj = _r131_t0['set-anchor']['bind'](_r131_t0);
_r131_t0['gizmo'] = r1_globalTransform;
_r131_t0['set-width'](r1_WIDTH);
r131_include(r1_eMarks);
r131_xn$putshapes$9Jrj(r131_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, 0)['heads-to'](r1_UPWARD)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['line-to'](r1_MIDDLE, r1_XH)['heads-to'](r1_UPWARD)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('dotlessi.hooky', function _r1_t67() {
var r133_xn$setwidth$9Jrj, r133_xn$assignunicode$7Hrq, r133_xn$startfrom$1aao, r133_xn$lineto$5sIl, r133_xn$curveto$1aao, r133_xn$cubicto$1aao, r133_xn$putshapes$9Jrj, r133_xn$reverselast$3qIs, r133_include, r133_xn$createstroke$7Hrq, r133_xn$setanchor$9Jrj, _r133_t0;
_r133_t0 = this;
r133_xn$setwidth$9Jrj = _r133_t0['set-width']['bind'](_r133_t0);
r133_xn$assignunicode$7Hrq = _r133_t0['assign-unicode']['bind'](_r133_t0);
r133_xn$startfrom$1aao = _r133_t0['start-from']['bind'](_r133_t0);
r133_xn$lineto$5sIl = _r133_t0['line-to']['bind'](_r133_t0);
r133_xn$curveto$1aao = _r133_t0['curve-to']['bind'](_r133_t0);
r133_xn$cubicto$1aao = _r133_t0['cubic-to']['bind'](_r133_t0);
r133_xn$putshapes$9Jrj = _r133_t0['put-shapes']['bind'](_r133_t0);
r133_xn$reverselast$3qIs = _r133_t0['reverse-last']['bind'](_r133_t0);
r133_include = _r133_t0['include']['bind'](_r133_t0);
r133_xn$createstroke$7Hrq = _r133_t0['create-stroke']['bind'](_r133_t0);
r133_xn$setanchor$9Jrj = _r133_t0['set-anchor']['bind'](_r133_t0);
_r133_t0['gizmo'] = r1_globalTransform;
_r133_t0['set-width'](r1_WIDTH);
r133_include(r1_glyphs['dotlessi.straight'], true);
r133_xn$putshapes$9Jrj(r1_leftwardTopSerif(r1_MIDDLE, r1_XH, r1_LONGSERIF));
return void 0;
});
r1_xn$createglyph$7Hrq('dotlessi.zshaped', function _r1_t68() {
var r135_xn$setwidth$9Jrj, r135_xn$assignunicode$7Hrq, r135_xn$startfrom$1aao, r135_xn$lineto$5sIl, r135_xn$curveto$1aao, r135_xn$cubicto$1aao, r135_xn$putshapes$9Jrj, r135_xn$reverselast$3qIs, r135_include, r135_xn$createstroke$7Hrq, r135_xn$setanchor$9Jrj, _r135_t0;
_r135_t0 = this;
r135_xn$setwidth$9Jrj = _r135_t0['set-width']['bind'](_r135_t0);
r135_xn$assignunicode$7Hrq = _r135_t0['assign-unicode']['bind'](_r135_t0);
r135_xn$startfrom$1aao = _r135_t0['start-from']['bind'](_r135_t0);
r135_xn$lineto$5sIl = _r135_t0['line-to']['bind'](_r135_t0);
r135_xn$curveto$1aao = _r135_t0['curve-to']['bind'](_r135_t0);
r135_xn$cubicto$1aao = _r135_t0['cubic-to']['bind'](_r135_t0);
r135_xn$putshapes$9Jrj = _r135_t0['put-shapes']['bind'](_r135_t0);
r135_xn$reverselast$3qIs = _r135_t0['reverse-last']['bind'](_r135_t0);
r135_include = _r135_t0['include']['bind'](_r135_t0);
r135_xn$createstroke$7Hrq = _r135_t0['create-stroke']['bind'](_r135_t0);
r135_xn$setanchor$9Jrj = _r135_t0['set-anchor']['bind'](_r135_t0);
_r135_t0['gizmo'] = r1_globalTransform;
_r135_t0['set-width'](r1_WIDTH);
r135_include(r1_glyphs['dotlessi.hooky'], true);
r135_xn$putshapes$9Jrj(r1_rightwardBottomSerif(r1_MIDDLE, 0, r1_LONGSERIF));
return void 0;
});
r1_xn$createglyph$7Hrq('dotlessi.serifed', function _r1_t69() {
var r137_xn$setwidth$9Jrj, r137_xn$assignunicode$7Hrq, r137_xn$startfrom$1aao, r137_xn$lineto$5sIl, r137_xn$curveto$1aao, r137_xn$cubicto$1aao, r137_xn$putshapes$9Jrj, r137_xn$reverselast$3qIs, r137_include, r137_xn$createstroke$7Hrq, r137_xn$setanchor$9Jrj, r137_balance, _r137_t0;
_r137_t0 = this;
r137_xn$setwidth$9Jrj = _r137_t0['set-width']['bind'](_r137_t0);
r137_xn$assignunicode$7Hrq = _r137_t0['assign-unicode']['bind'](_r137_t0);
r137_xn$startfrom$1aao = _r137_t0['start-from']['bind'](_r137_t0);
r137_xn$lineto$5sIl = _r137_t0['line-to']['bind'](_r137_t0);
r137_xn$curveto$1aao = _r137_t0['curve-to']['bind'](_r137_t0);
r137_xn$cubicto$1aao = _r137_t0['cubic-to']['bind'](_r137_t0);
r137_xn$putshapes$9Jrj = _r137_t0['put-shapes']['bind'](_r137_t0);
r137_xn$reverselast$3qIs = _r137_t0['reverse-last']['bind'](_r137_t0);
r137_include = _r137_t0['include']['bind'](_r137_t0);
r137_xn$createstroke$7Hrq = _r137_t0['create-stroke']['bind'](_r137_t0);
r137_xn$setanchor$9Jrj = _r137_t0['set-anchor']['bind'](_r137_t0);
_r137_t0['gizmo'] = r1_globalTransform;
_r137_t0['set-width'](r1_WIDTH);
r137_include(r1_eMarks);
r137_balance = r1_ILBALANCE;
r137_xn$putshapes$9Jrj(r137_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE + r137_balance, 0)['heads-to'](r1_UPWARD)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['line-to'](r1_MIDDLE + r137_balance, r1_XH)['heads-to'](r1_UPWARD)['to-outline']());
r137_xn$putshapes$9Jrj(r1_leftwardTopSerif(r1_MIDDLE + r137_balance, r1_XH, r1_LONGSERIF - r137_balance));
r137_xn$putshapes$9Jrj(r1_rightwardBottomSerif(r1_MIDDLE, 0, r1_LONGSERIF));
r137_xn$putshapes$9Jrj(r1_leftwardBottomSerif(r1_MIDDLE, 0, r1_LONGSERIF));
return void 0;
});
r1_xn$createglyph$7Hrq('dotlessi', function _r1_t70() {
var r139_xn$setwidth$9Jrj, r139_xn$assignunicode$7Hrq, r139_xn$startfrom$1aao, r139_xn$lineto$5sIl, r139_xn$curveto$1aao, r139_xn$cubicto$1aao, r139_xn$putshapes$9Jrj, r139_xn$reverselast$3qIs, r139_include, r139_xn$createstroke$7Hrq, r139_xn$setanchor$9Jrj, r139_otherwise, _r139_t0, _r139_t1, _r139_t2, _r139_t3, _r139_t4, _r139_t5, _r139_t6, _r139_t7, _r139_t8, _r139_t9;
_r139_t1 = this;
r139_xn$setwidth$9Jrj = _r139_t1['set-width']['bind'](_r139_t1);
r139_xn$assignunicode$7Hrq = _r139_t1['assign-unicode']['bind'](_r139_t1);
r139_xn$startfrom$1aao = _r139_t1['start-from']['bind'](_r139_t1);
r139_xn$lineto$5sIl = _r139_t1['line-to']['bind'](_r139_t1);
r139_xn$curveto$1aao = _r139_t1['curve-to']['bind'](_r139_t1);
r139_xn$cubicto$1aao = _r139_t1['cubic-to']['bind'](_r139_t1);
r139_xn$putshapes$9Jrj = _r139_t1['put-shapes']['bind'](_r139_t1);
r139_xn$reverselast$3qIs = _r139_t1['reverse-last']['bind'](_r139_t1);
r139_include = _r139_t1['include']['bind'](_r139_t1);
r139_xn$createstroke$7Hrq = _r139_t1['create-stroke']['bind'](_r139_t1);
r139_xn$setanchor$9Jrj = _r139_t1['set-anchor']['bind'](_r139_t1);
_r139_t1['gizmo'] = r1_globalTransform;
_r139_t1['set-width'](r1_WIDTH);
r139_xn$setwidth$9Jrj(r1_WIDTH);
r139_xn$assignunicode$7Hrq(305);
_r139_t2 = r139_include;
_r139_t3 = r1_glyphs;
_r139_t0 = r1_variantSelector['zero'];
if ('straight' === _r139_t0) {
_r139_t4 = 'dotlessi.straight';
} else {
if ('hooky' === _r139_t0) {
_r139_t5 = 'dotlessi.hooky';
} else {
if ('zshaped' === _r139_t0) {
_r139_t6 = 'dotlessi.zshaped';
} else {
if ('serifed' === _r139_t0) {
_r139_t7 = 'dotlessi.serifed';
} else {
r139_otherwise = _r139_t0;
_r139_t7 = 'dotlessi.serifed';
}
_r139_t6 = _r139_t7;
}
_r139_t5 = _r139_t6;
}
_r139_t4 = _r139_t5;
}
_r139_t8 = _r139_t3[_r139_t4];
_r139_t9 = true;
_r139_t2(_r139_t8, _r139_t9);
return void 0;
});
r1_xn$createglyph$7Hrq('dotaccent', function _r1_t71() {
var r141_xn$setwidth$9Jrj, r141_xn$assignunicode$7Hrq, r141_xn$startfrom$1aao, r141_xn$lineto$5sIl, r141_xn$curveto$1aao, r141_xn$cubicto$1aao, r141_xn$putshapes$9Jrj, r141_xn$reverselast$3qIs, r141_include, r141_xn$createstroke$7Hrq, r141_xn$setanchor$9Jrj, _r141_t0;
_r141_t0 = this;
r141_xn$setwidth$9Jrj = _r141_t0['set-width']['bind'](_r141_t0);
r141_xn$assignunicode$7Hrq = _r141_t0['assign-unicode']['bind'](_r141_t0);
r141_xn$startfrom$1aao = _r141_t0['start-from']['bind'](_r141_t0);
r141_xn$lineto$5sIl = _r141_t0['line-to']['bind'](_r141_t0);
r141_xn$curveto$1aao = _r141_t0['curve-to']['bind'](_r141_t0);
r141_xn$cubicto$1aao = _r141_t0['cubic-to']['bind'](_r141_t0);
r141_xn$putshapes$9Jrj = _r141_t0['put-shapes']['bind'](_r141_t0);
r141_xn$reverselast$3qIs = _r141_t0['reverse-last']['bind'](_r141_t0);
r141_include = _r141_t0['include']['bind'](_r141_t0);
r141_xn$createstroke$7Hrq = _r141_t0['create-stroke']['bind'](_r141_t0);
r141_xn$setanchor$9Jrj = _r141_t0['set-anchor']['bind'](_r141_t0);
_r141_t0['gizmo'] = r1_globalTransform;
_r141_t0['set-width'](r1_WIDTH);
r141_xn$setwidth$9Jrj(r1_WIDTH);
r141_xn$setanchor$9Jrj('above', r1_MARK, r1_MIDDLE, r1_XH, r1_MIDDLE, r1_XH + r1_ACCENT);
r141_xn$putshapes$9Jrj([r1_Ring(r1_XH + r1_ACCENT + r1_DOTRADIUS, r1_XH + r1_ACCENT - r1_DOTRADIUS, r1_MIDDLE - r1_DOTRADIUS, r1_MIDDLE + r1_DOTRADIUS)]);
return void 0;
});
r1_xn$createglyph$7Hrq('i', function _r1_t72() {
var r143_xn$setwidth$9Jrj, r143_xn$assignunicode$7Hrq, r143_xn$startfrom$1aao, r143_xn$lineto$5sIl, r143_xn$curveto$1aao, r143_xn$cubicto$1aao, r143_xn$putshapes$9Jrj, r143_xn$reverselast$3qIs, r143_include, r143_xn$createstroke$7Hrq, r143_xn$setanchor$9Jrj, _r143_t0;
_r143_t0 = this;
r143_xn$setwidth$9Jrj = _r143_t0['set-width']['bind'](_r143_t0);
r143_xn$assignunicode$7Hrq = _r143_t0['assign-unicode']['bind'](_r143_t0);
r143_xn$startfrom$1aao = _r143_t0['start-from']['bind'](_r143_t0);
r143_xn$lineto$5sIl = _r143_t0['line-to']['bind'](_r143_t0);
r143_xn$curveto$1aao = _r143_t0['curve-to']['bind'](_r143_t0);
r143_xn$cubicto$1aao = _r143_t0['cubic-to']['bind'](_r143_t0);
r143_xn$putshapes$9Jrj = _r143_t0['put-shapes']['bind'](_r143_t0);
r143_xn$reverselast$3qIs = _r143_t0['reverse-last']['bind'](_r143_t0);
r143_include = _r143_t0['include']['bind'](_r143_t0);
r143_xn$createstroke$7Hrq = _r143_t0['create-stroke']['bind'](_r143_t0);
r143_xn$setanchor$9Jrj = _r143_t0['set-anchor']['bind'](_r143_t0);
_r143_t0['gizmo'] = r1_globalTransform;
_r143_t0['set-width'](r1_WIDTH);
r143_xn$setwidth$9Jrj(r1_WIDTH);
r143_xn$assignunicode$7Hrq('i');
r143_include(r1_glyphs['dotlessi'], r1_BASE);
r143_include(r1_glyphs['dotaccent']);
return void 0;
});
r1_xn$createglyph$7Hrq('dotlessj.straight', function _r1_t73() {
var r145_xn$setwidth$9Jrj, r145_xn$assignunicode$7Hrq, r145_xn$startfrom$1aao, r145_xn$lineto$5sIl, r145_xn$curveto$1aao, r145_xn$cubicto$1aao, r145_xn$putshapes$9Jrj, r145_xn$reverselast$3qIs, r145_include, r145_xn$createstroke$7Hrq, r145_xn$setanchor$9Jrj, _r145_t0;
_r145_t0 = this;
r145_xn$setwidth$9Jrj = _r145_t0['set-width']['bind'](_r145_t0);
r145_xn$assignunicode$7Hrq = _r145_t0['assign-unicode']['bind'](_r145_t0);
r145_xn$startfrom$1aao = _r145_t0['start-from']['bind'](_r145_t0);
r145_xn$lineto$5sIl = _r145_t0['line-to']['bind'](_r145_t0);
r145_xn$curveto$1aao = _r145_t0['curve-to']['bind'](_r145_t0);
r145_xn$cubicto$1aao = _r145_t0['cubic-to']['bind'](_r145_t0);
r145_xn$putshapes$9Jrj = _r145_t0['put-shapes']['bind'](_r145_t0);
r145_xn$reverselast$3qIs = _r145_t0['reverse-last']['bind'](_r145_t0);
r145_include = _r145_t0['include']['bind'](_r145_t0);
r145_xn$createstroke$7Hrq = _r145_t0['create-stroke']['bind'](_r145_t0);
r145_xn$setanchor$9Jrj = _r145_t0['set-anchor']['bind'](_r145_t0);
_r145_t0['gizmo'] = r1_globalTransform;
_r145_t0['set-width'](r1_WIDTH);
r145_xn$putshapes$9Jrj(r145_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE + r1_JBALANCE, r1_XH)['heads-to'](r1_DOWNWARD)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['line-to'](r1_MIDDLE + r1_JBALANCE, 0)['arc-vh-to'](r1_MIDDLE + r1_DESCENDER, r1_DESCENDER + r1_HALFSTROKE)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('dotlessj.serifed', function _r1_t74() {
var r147_xn$setwidth$9Jrj, r147_xn$assignunicode$7Hrq, r147_xn$startfrom$1aao, r147_xn$lineto$5sIl, r147_xn$curveto$1aao, r147_xn$cubicto$1aao, r147_xn$putshapes$9Jrj, r147_xn$reverselast$3qIs, r147_include, r147_xn$createstroke$7Hrq, r147_xn$setanchor$9Jrj, _r147_t0;
_r147_t0 = this;
r147_xn$setwidth$9Jrj = _r147_t0['set-width']['bind'](_r147_t0);
r147_xn$assignunicode$7Hrq = _r147_t0['assign-unicode']['bind'](_r147_t0);
r147_xn$startfrom$1aao = _r147_t0['start-from']['bind'](_r147_t0);
r147_xn$lineto$5sIl = _r147_t0['line-to']['bind'](_r147_t0);
r147_xn$curveto$1aao = _r147_t0['curve-to']['bind'](_r147_t0);
r147_xn$cubicto$1aao = _r147_t0['cubic-to']['bind'](_r147_t0);
r147_xn$putshapes$9Jrj = _r147_t0['put-shapes']['bind'](_r147_t0);
r147_xn$reverselast$3qIs = _r147_t0['reverse-last']['bind'](_r147_t0);
r147_include = _r147_t0['include']['bind'](_r147_t0);
r147_xn$createstroke$7Hrq = _r147_t0['create-stroke']['bind'](_r147_t0);
r147_xn$setanchor$9Jrj = _r147_t0['set-anchor']['bind'](_r147_t0);
_r147_t0['gizmo'] = r1_globalTransform;
_r147_t0['set-width'](r1_WIDTH);
r147_include(r1_glyphs['dotlessj.straight']);
r147_xn$putshapes$9Jrj(r1_leftwardTopSerif(r1_MIDDLE + r1_JBALANCE, r1_XH, r1_LONGSERIF));
return void 0;
});
r1_xn$createglyph$7Hrq('dotlessj', function _r1_t75() {
var r149_xn$setwidth$9Jrj, r149_xn$assignunicode$7Hrq, r149_xn$startfrom$1aao, r149_xn$lineto$5sIl, r149_xn$curveto$1aao, r149_xn$cubicto$1aao, r149_xn$putshapes$9Jrj, r149_xn$reverselast$3qIs, r149_include, r149_xn$createstroke$7Hrq, r149_xn$setanchor$9Jrj, _r149_t0;
_r149_t0 = this;
r149_xn$setwidth$9Jrj = _r149_t0['set-width']['bind'](_r149_t0);
r149_xn$assignunicode$7Hrq = _r149_t0['assign-unicode']['bind'](_r149_t0);
r149_xn$startfrom$1aao = _r149_t0['start-from']['bind'](_r149_t0);
r149_xn$lineto$5sIl = _r149_t0['line-to']['bind'](_r149_t0);
r149_xn$curveto$1aao = _r149_t0['curve-to']['bind'](_r149_t0);
r149_xn$cubicto$1aao = _r149_t0['cubic-to']['bind'](_r149_t0);
r149_xn$putshapes$9Jrj = _r149_t0['put-shapes']['bind'](_r149_t0);
r149_xn$reverselast$3qIs = _r149_t0['reverse-last']['bind'](_r149_t0);
r149_include = _r149_t0['include']['bind'](_r149_t0);
r149_xn$createstroke$7Hrq = _r149_t0['create-stroke']['bind'](_r149_t0);
r149_xn$setanchor$9Jrj = _r149_t0['set-anchor']['bind'](_r149_t0);
_r149_t0['gizmo'] = r1_globalTransform;
_r149_t0['set-width'](r1_WIDTH);
r149_xn$setwidth$9Jrj(r1_WIDTH);
r149_xn$setanchor$9Jrj('above', r1_BASE, r1_MIDDLE + r1_JBALANCE, r1_XH);
r149_xn$assignunicode$7Hrq(567);
r149_include(r1_glyphs['dotlessj.serifed']);
return void 0;
});
r1_xn$createglyph$7Hrq('j', function _r1_t76() {
var r151_xn$setwidth$9Jrj, r151_xn$assignunicode$7Hrq, r151_xn$startfrom$1aao, r151_xn$lineto$5sIl, r151_xn$curveto$1aao, r151_xn$cubicto$1aao, r151_xn$putshapes$9Jrj, r151_xn$reverselast$3qIs, r151_include, r151_xn$createstroke$7Hrq, r151_xn$setanchor$9Jrj, _r151_t0;
_r151_t0 = this;
r151_xn$setwidth$9Jrj = _r151_t0['set-width']['bind'](_r151_t0);
r151_xn$assignunicode$7Hrq = _r151_t0['assign-unicode']['bind'](_r151_t0);
r151_xn$startfrom$1aao = _r151_t0['start-from']['bind'](_r151_t0);
r151_xn$lineto$5sIl = _r151_t0['line-to']['bind'](_r151_t0);
r151_xn$curveto$1aao = _r151_t0['curve-to']['bind'](_r151_t0);
r151_xn$cubicto$1aao = _r151_t0['cubic-to']['bind'](_r151_t0);
r151_xn$putshapes$9Jrj = _r151_t0['put-shapes']['bind'](_r151_t0);
r151_xn$reverselast$3qIs = _r151_t0['reverse-last']['bind'](_r151_t0);
r151_include = _r151_t0['include']['bind'](_r151_t0);
r151_xn$createstroke$7Hrq = _r151_t0['create-stroke']['bind'](_r151_t0);
r151_xn$setanchor$9Jrj = _r151_t0['set-anchor']['bind'](_r151_t0);
_r151_t0['gizmo'] = r1_globalTransform;
_r151_t0['set-width'](r1_WIDTH);
r151_xn$setwidth$9Jrj(r1_WIDTH);
r151_xn$assignunicode$7Hrq('j');
r151_include(r1_glyphs['dotlessj'], r1_BASE);
r151_include(r1_glyphs['dotaccent']);
return void 0;
});
r1_xn$createglyph$7Hrq('l.straight', function _r1_t77() {
var r153_xn$setwidth$9Jrj, r153_xn$assignunicode$7Hrq, r153_xn$startfrom$1aao, r153_xn$lineto$5sIl, r153_xn$curveto$1aao, r153_xn$cubicto$1aao, r153_xn$putshapes$9Jrj, r153_xn$reverselast$3qIs, r153_include, r153_xn$createstroke$7Hrq, r153_xn$setanchor$9Jrj, _r153_t0;
_r153_t0 = this;
r153_xn$setwidth$9Jrj = _r153_t0['set-width']['bind'](_r153_t0);
r153_xn$assignunicode$7Hrq = _r153_t0['assign-unicode']['bind'](_r153_t0);
r153_xn$startfrom$1aao = _r153_t0['start-from']['bind'](_r153_t0);
r153_xn$lineto$5sIl = _r153_t0['line-to']['bind'](_r153_t0);
r153_xn$curveto$1aao = _r153_t0['curve-to']['bind'](_r153_t0);
r153_xn$cubicto$1aao = _r153_t0['cubic-to']['bind'](_r153_t0);
r153_xn$putshapes$9Jrj = _r153_t0['put-shapes']['bind'](_r153_t0);
r153_xn$reverselast$3qIs = _r153_t0['reverse-last']['bind'](_r153_t0);
r153_include = _r153_t0['include']['bind'](_r153_t0);
r153_xn$createstroke$7Hrq = _r153_t0['create-stroke']['bind'](_r153_t0);
r153_xn$setanchor$9Jrj = _r153_t0['set-anchor']['bind'](_r153_t0);
_r153_t0['gizmo'] = r1_globalTransform;
_r153_t0['set-width'](r1_WIDTH);
r153_xn$putshapes$9Jrj(r153_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, 0)['heads-to'](r1_UPWARD)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['line-to'](r1_MIDDLE, r1_CAP)['heads-to'](r1_UPWARD)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('l.hooky', function _r1_t78() {
var r155_xn$setwidth$9Jrj, r155_xn$assignunicode$7Hrq, r155_xn$startfrom$1aao, r155_xn$lineto$5sIl, r155_xn$curveto$1aao, r155_xn$cubicto$1aao, r155_xn$putshapes$9Jrj, r155_xn$reverselast$3qIs, r155_include, r155_xn$createstroke$7Hrq, r155_xn$setanchor$9Jrj, _r155_t0;
_r155_t0 = this;
r155_xn$setwidth$9Jrj = _r155_t0['set-width']['bind'](_r155_t0);
r155_xn$assignunicode$7Hrq = _r155_t0['assign-unicode']['bind'](_r155_t0);
r155_xn$startfrom$1aao = _r155_t0['start-from']['bind'](_r155_t0);
r155_xn$lineto$5sIl = _r155_t0['line-to']['bind'](_r155_t0);
r155_xn$curveto$1aao = _r155_t0['curve-to']['bind'](_r155_t0);
r155_xn$cubicto$1aao = _r155_t0['cubic-to']['bind'](_r155_t0);
r155_xn$putshapes$9Jrj = _r155_t0['put-shapes']['bind'](_r155_t0);
r155_xn$reverselast$3qIs = _r155_t0['reverse-last']['bind'](_r155_t0);
r155_include = _r155_t0['include']['bind'](_r155_t0);
r155_xn$createstroke$7Hrq = _r155_t0['create-stroke']['bind'](_r155_t0);
r155_xn$setanchor$9Jrj = _r155_t0['set-anchor']['bind'](_r155_t0);
_r155_t0['gizmo'] = r1_globalTransform;
_r155_t0['set-width'](r1_WIDTH);
r155_include(r1_glyphs['l.straight']);
r155_xn$putshapes$9Jrj(r1_leftwardTopSerif(r1_MIDDLE, r1_CAP, r1_LONGSERIF));
return void 0;
});
r1_xn$createglyph$7Hrq('l.zshaped', function _r1_t79() {
var r157_xn$setwidth$9Jrj, r157_xn$assignunicode$7Hrq, r157_xn$startfrom$1aao, r157_xn$lineto$5sIl, r157_xn$curveto$1aao, r157_xn$cubicto$1aao, r157_xn$putshapes$9Jrj, r157_xn$reverselast$3qIs, r157_include, r157_xn$createstroke$7Hrq, r157_xn$setanchor$9Jrj, _r157_t0;
_r157_t0 = this;
r157_xn$setwidth$9Jrj = _r157_t0['set-width']['bind'](_r157_t0);
r157_xn$assignunicode$7Hrq = _r157_t0['assign-unicode']['bind'](_r157_t0);
r157_xn$startfrom$1aao = _r157_t0['start-from']['bind'](_r157_t0);
r157_xn$lineto$5sIl = _r157_t0['line-to']['bind'](_r157_t0);
r157_xn$curveto$1aao = _r157_t0['curve-to']['bind'](_r157_t0);
r157_xn$cubicto$1aao = _r157_t0['cubic-to']['bind'](_r157_t0);
r157_xn$putshapes$9Jrj = _r157_t0['put-shapes']['bind'](_r157_t0);
r157_xn$reverselast$3qIs = _r157_t0['reverse-last']['bind'](_r157_t0);
r157_include = _r157_t0['include']['bind'](_r157_t0);
r157_xn$createstroke$7Hrq = _r157_t0['create-stroke']['bind'](_r157_t0);
r157_xn$setanchor$9Jrj = _r157_t0['set-anchor']['bind'](_r157_t0);
_r157_t0['gizmo'] = r1_globalTransform;
_r157_t0['set-width'](r1_WIDTH);
r157_include(r1_glyphs['l.hooky']);
r157_xn$putshapes$9Jrj(r1_rightwardBottomSerif(r1_MIDDLE, 0, r1_LONGSERIF));
return void 0;
});
r1_xn$createglyph$7Hrq('l.serifed', function _r1_t80() {
var r159_xn$setwidth$9Jrj, r159_xn$assignunicode$7Hrq, r159_xn$startfrom$1aao, r159_xn$lineto$5sIl, r159_xn$curveto$1aao, r159_xn$cubicto$1aao, r159_xn$putshapes$9Jrj, r159_xn$reverselast$3qIs, r159_include, r159_xn$createstroke$7Hrq, r159_xn$setanchor$9Jrj, r159_balance, _r159_t0;
_r159_t0 = this;
r159_xn$setwidth$9Jrj = _r159_t0['set-width']['bind'](_r159_t0);
r159_xn$assignunicode$7Hrq = _r159_t0['assign-unicode']['bind'](_r159_t0);
r159_xn$startfrom$1aao = _r159_t0['start-from']['bind'](_r159_t0);
r159_xn$lineto$5sIl = _r159_t0['line-to']['bind'](_r159_t0);
r159_xn$curveto$1aao = _r159_t0['curve-to']['bind'](_r159_t0);
r159_xn$cubicto$1aao = _r159_t0['cubic-to']['bind'](_r159_t0);
r159_xn$putshapes$9Jrj = _r159_t0['put-shapes']['bind'](_r159_t0);
r159_xn$reverselast$3qIs = _r159_t0['reverse-last']['bind'](_r159_t0);
r159_include = _r159_t0['include']['bind'](_r159_t0);
r159_xn$createstroke$7Hrq = _r159_t0['create-stroke']['bind'](_r159_t0);
r159_xn$setanchor$9Jrj = _r159_t0['set-anchor']['bind'](_r159_t0);
_r159_t0['gizmo'] = r1_globalTransform;
_r159_t0['set-width'](r1_WIDTH);
r159_balance = r1_ILBALANCE;
r159_xn$putshapes$9Jrj(r159_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE + r159_balance, 0)['heads-to'](r1_UPWARD)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['line-to'](r1_MIDDLE + r159_balance, r1_CAP)['heads-to'](r1_UPWARD)['to-outline']());
r159_xn$putshapes$9Jrj(r1_leftwardTopSerif(r1_MIDDLE + r159_balance, r1_CAP, r1_LONGSERIF - r159_balance));
r159_xn$putshapes$9Jrj(r1_rightwardBottomSerif(r1_MIDDLE, 0, r1_LONGSERIF));
r159_xn$putshapes$9Jrj(r1_leftwardBottomSerif(r1_MIDDLE, 0, r1_LONGSERIF));
return void 0;
});
r1_xn$createglyph$7Hrq('l', function _r1_t81() {
var r161_xn$setwidth$9Jrj, r161_xn$assignunicode$7Hrq, r161_xn$startfrom$1aao, r161_xn$lineto$5sIl, r161_xn$curveto$1aao, r161_xn$cubicto$1aao, r161_xn$putshapes$9Jrj, r161_xn$reverselast$3qIs, r161_include, r161_xn$createstroke$7Hrq, r161_xn$setanchor$9Jrj, r161_otherwise, _r161_t0, _r161_t1, _r161_t2, _r161_t3, _r161_t4, _r161_t5, _r161_t6, _r161_t7, _r161_t8;
_r161_t1 = this;
r161_xn$setwidth$9Jrj = _r161_t1['set-width']['bind'](_r161_t1);
r161_xn$assignunicode$7Hrq = _r161_t1['assign-unicode']['bind'](_r161_t1);
r161_xn$startfrom$1aao = _r161_t1['start-from']['bind'](_r161_t1);
r161_xn$lineto$5sIl = _r161_t1['line-to']['bind'](_r161_t1);
r161_xn$curveto$1aao = _r161_t1['curve-to']['bind'](_r161_t1);
r161_xn$cubicto$1aao = _r161_t1['cubic-to']['bind'](_r161_t1);
r161_xn$putshapes$9Jrj = _r161_t1['put-shapes']['bind'](_r161_t1);
r161_xn$reverselast$3qIs = _r161_t1['reverse-last']['bind'](_r161_t1);
r161_include = _r161_t1['include']['bind'](_r161_t1);
r161_xn$createstroke$7Hrq = _r161_t1['create-stroke']['bind'](_r161_t1);
r161_xn$setanchor$9Jrj = _r161_t1['set-anchor']['bind'](_r161_t1);
_r161_t1['gizmo'] = r1_globalTransform;
_r161_t1['set-width'](r1_WIDTH);
r161_xn$setwidth$9Jrj(r1_WIDTH);
r161_xn$assignunicode$7Hrq('l');
r161_include(r1_bMarks);
_r161_t2 = r161_include;
_r161_t3 = r1_glyphs;
_r161_t0 = r1_variantSelector['zero'];
if ('straight' === _r161_t0) {
_r161_t4 = 'l.straight';
} else {
if ('hooky' === _r161_t0) {
_r161_t5 = 'l.hooky';
} else {
if ('zshaped' === _r161_t0) {
_r161_t6 = 'l.zshaped';
} else {
if ('serifed' === _r161_t0) {
_r161_t7 = 'l.serifed';
} else {
r161_otherwise = _r161_t0;
_r161_t7 = 'l.serifed';
}
_r161_t6 = _r161_t7;
}
_r161_t5 = _r161_t6;
}
_r161_t4 = _r161_t5;
}
_r161_t8 = _r161_t3[_r161_t4];
_r161_t2(_r161_t8);
return void 0;
});
r1_xn$createglyph$7Hrq('x', function _r1_t82() {
var r163_xn$setwidth$9Jrj, r163_xn$assignunicode$7Hrq, r163_xn$startfrom$1aao, r163_xn$lineto$5sIl, r163_xn$curveto$1aao, r163_xn$cubicto$1aao, r163_xn$putshapes$9Jrj, r163_xn$reverselast$3qIs, r163_include, r163_xn$createstroke$7Hrq, r163_xn$setanchor$9Jrj, r163_TURN, r163_barone, r163_bartwo, _r163_t0;
_r163_t0 = this;
r163_xn$setwidth$9Jrj = _r163_t0['set-width']['bind'](_r163_t0);
r163_xn$assignunicode$7Hrq = _r163_t0['assign-unicode']['bind'](_r163_t0);
r163_xn$startfrom$1aao = _r163_t0['start-from']['bind'](_r163_t0);
r163_xn$lineto$5sIl = _r163_t0['line-to']['bind'](_r163_t0);
r163_xn$curveto$1aao = _r163_t0['curve-to']['bind'](_r163_t0);
r163_xn$cubicto$1aao = _r163_t0['cubic-to']['bind'](_r163_t0);
r163_xn$putshapes$9Jrj = _r163_t0['put-shapes']['bind'](_r163_t0);
r163_xn$reverselast$3qIs = _r163_t0['reverse-last']['bind'](_r163_t0);
r163_include = _r163_t0['include']['bind'](_r163_t0);
r163_xn$createstroke$7Hrq = _r163_t0['create-stroke']['bind'](_r163_t0);
r163_xn$setanchor$9Jrj = _r163_t0['set-anchor']['bind'](_r163_t0);
_r163_t0['gizmo'] = r1_globalTransform;
_r163_t0['set-width'](r1_WIDTH);
r163_xn$setwidth$9Jrj(r1_WIDTH);
r163_xn$assignunicode$7Hrq('x');
r163_include(r1_eMarks);
r163_TURN = r1_XH * 0.1;
r163_barone = r163_xn$createstroke$7Hrq()['start-from'](r1_SB + r1_HALFSTROKE + r1_O, 0)['heads-to'](r1_UPWARD)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['cubic-to'](r1_SB + r1_HALFSTROKE + r1_O, r163_TURN + 0.17 * (r1_XH - r163_TURN), r1_RIGHTSB - r1_HALFSTROKE - r1_O, r1_XH - r163_TURN - 0.17 * (r1_XH - r163_TURN), r1_RIGHTSB - r1_HALFSTROKE - r1_O, r1_XH)['heads-to'](r1_UPWARD);
r163_bartwo = r163_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB - r1_HALFSTROKE - r1_O, 0)['heads-to'](r1_UPWARD)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['cubic-to'](r1_RIGHTSB - r1_HALFSTROKE - r1_O, r163_TURN + 0.17 * (r1_XH - r163_TURN), r1_SB + r1_HALFSTROKE + r1_O, r1_XH - r163_TURN - 0.17 * (r1_XH - r163_TURN), r1_SB + r1_HALFSTROKE + r1_O, r1_XH)['heads-to'](r1_UPWARD);
r163_xn$putshapes$9Jrj(r163_barone['to-outline']());
r163_xn$putshapes$9Jrj(r163_bartwo['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('v', function _r1_t83() {
var r165_xn$setwidth$9Jrj, r165_xn$assignunicode$7Hrq, r165_xn$startfrom$1aao, r165_xn$lineto$5sIl, r165_xn$curveto$1aao, r165_xn$cubicto$1aao, r165_xn$putshapes$9Jrj, r165_xn$reverselast$3qIs, r165_include, r165_xn$createstroke$7Hrq, r165_xn$setanchor$9Jrj, r165_TURN, r165_leftbar, r165_rightbar, _r165_t0;
_r165_t0 = this;
r165_xn$setwidth$9Jrj = _r165_t0['set-width']['bind'](_r165_t0);
r165_xn$assignunicode$7Hrq = _r165_t0['assign-unicode']['bind'](_r165_t0);
r165_xn$startfrom$1aao = _r165_t0['start-from']['bind'](_r165_t0);
r165_xn$lineto$5sIl = _r165_t0['line-to']['bind'](_r165_t0);
r165_xn$curveto$1aao = _r165_t0['curve-to']['bind'](_r165_t0);
r165_xn$cubicto$1aao = _r165_t0['cubic-to']['bind'](_r165_t0);
r165_xn$putshapes$9Jrj = _r165_t0['put-shapes']['bind'](_r165_t0);
r165_xn$reverselast$3qIs = _r165_t0['reverse-last']['bind'](_r165_t0);
r165_include = _r165_t0['include']['bind'](_r165_t0);
r165_xn$createstroke$7Hrq = _r165_t0['create-stroke']['bind'](_r165_t0);
r165_xn$setanchor$9Jrj = _r165_t0['set-anchor']['bind'](_r165_t0);
_r165_t0['gizmo'] = r1_globalTransform;
_r165_t0['set-width'](r1_WIDTH);
r165_xn$setwidth$9Jrj(r1_WIDTH);
r165_xn$assignunicode$7Hrq('v');
r165_include(r1_eMarks);
r165_TURN = r1_XH * 0.9;
r165_leftbar = r165_xn$createstroke$7Hrq();
r165_leftbar['start-from'](r1_SB, r1_XH)['heads-to'](r1_DOWNWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_SB, r165_TURN)['heads-to'](r1_DOWNWARD)['curve-to'](r1_SB, (1 - 0.27) * r165_TURN, r1_MIDDLE - r1_STROKE / 2, 0)['set-width'](r1_STROKE * 0.8, 0);
r165_rightbar = r165_xn$createstroke$7Hrq();
r165_rightbar['start-from'](r1_RIGHTSB, r1_XH)['heads-to'](r1_DOWNWARD)['set-width'](0, r1_STROKE)['line-to'](r1_RIGHTSB, r165_TURN)['heads-to'](r1_DOWNWARD)['curve-to'](r1_RIGHTSB, (1 - 0.27) * r165_TURN, r1_MIDDLE + r1_STROKE / 2, 0)['set-width'](0, r1_STROKE * 0.8);
r165_xn$putshapes$9Jrj(r165_leftbar['to-outline']());
r165_xn$putshapes$9Jrj(r165_rightbar['to-outline']());
r165_xn$startfrom$1aao(r1_MIDDLE + r1_STROKE / 2, 0);
r165_xn$lineto$5sIl(r1_MIDDLE - r1_STROKE / 2, 0);
r165_xn$lineto$5sIl(r1_MIDDLE, r1_STROKE);
return void 0;
});
r1_xn$createglyph$7Hrq('w', function _r1_t84() {
var r167_xn$setwidth$9Jrj, r167_xn$assignunicode$7Hrq, r167_xn$startfrom$1aao, r167_xn$lineto$5sIl, r167_xn$curveto$1aao, r167_xn$cubicto$1aao, r167_xn$putshapes$9Jrj, r167_xn$reverselast$3qIs, r167_include, r167_xn$createstroke$7Hrq, r167_xn$setanchor$9Jrj, r167_TURN, r167_turn2, r167_wheight, r167_bottomStroke, r167_m1, r167_m2, _r167_t0;
_r167_t0 = this;
r167_xn$setwidth$9Jrj = _r167_t0['set-width']['bind'](_r167_t0);
r167_xn$assignunicode$7Hrq = _r167_t0['assign-unicode']['bind'](_r167_t0);
r167_xn$startfrom$1aao = _r167_t0['start-from']['bind'](_r167_t0);
r167_xn$lineto$5sIl = _r167_t0['line-to']['bind'](_r167_t0);
r167_xn$curveto$1aao = _r167_t0['curve-to']['bind'](_r167_t0);
r167_xn$cubicto$1aao = _r167_t0['cubic-to']['bind'](_r167_t0);
r167_xn$putshapes$9Jrj = _r167_t0['put-shapes']['bind'](_r167_t0);
r167_xn$reverselast$3qIs = _r167_t0['reverse-last']['bind'](_r167_t0);
r167_include = _r167_t0['include']['bind'](_r167_t0);
r167_xn$createstroke$7Hrq = _r167_t0['create-stroke']['bind'](_r167_t0);
r167_xn$setanchor$9Jrj = _r167_t0['set-anchor']['bind'](_r167_t0);
_r167_t0['gizmo'] = r1_globalTransform;
_r167_t0['set-width'](r1_WIDTH);
r167_xn$setwidth$9Jrj(r1_WIDTH);
r167_xn$assignunicode$7Hrq('w');
r167_include(r1_eMarks);
r167_TURN = r1_XH * 0.75;
r167_turn2 = r1_XH * 0.59;
r167_wheight = r1_XH * 0.6;
r167_bottomStroke = Math['min'](r1_STROKE * 0.8, (r1_WIDTH - r1_SB * 2) * 0.175);
r167_m1 = r1_WIDTH * 0.325;
r167_m2 = r1_WIDTH * 0.675;
r167_xn$putshapes$9Jrj(r167_xn$createstroke$7Hrq()['start-from'](r1_SB, r1_XH)['heads-to'](r1_DOWNWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_SB, r167_TURN)['heads-to'](r1_DOWNWARD)['curve-to'](r1_SB, (1 - 0.27) * r167_TURN, r167_m1 - r167_bottomStroke / 2, 0)['set-width'](r167_bottomStroke, 0)['to-outline']());
r167_xn$putshapes$9Jrj(r167_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB, r1_XH)['heads-to'](r1_DOWNWARD)['set-width'](0, r1_STROKE)['line-to'](r1_RIGHTSB, r167_TURN)['heads-to'](r1_DOWNWARD)['curve-to'](r1_RIGHTSB, (1 - 0.27) * r167_TURN, r167_m2 + r167_bottomStroke / 2, 0)['set-width'](0, r167_bottomStroke)['to-outline']());
r167_xn$putshapes$9Jrj(r167_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE + r167_bottomStroke / 2, r167_wheight)['heads-to'](r1_DOWNWARD)['set-width'](0, r167_bottomStroke)['line-to'](r1_MIDDLE + r167_bottomStroke / 2, r167_turn2)['heads-to'](r1_DOWNWARD)['curve-to'](r1_MIDDLE + r167_bottomStroke / 2, (1 - 0.1) * r167_turn2, r167_m1 + r167_bottomStroke / 2, 0)['set-width'](0, r167_bottomStroke)['to-outline']());
r167_xn$putshapes$9Jrj(r167_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE - r167_bottomStroke / 2, r167_wheight)['heads-to'](r1_DOWNWARD)['set-width'](r167_bottomStroke, 0)['line-to'](r1_MIDDLE - r167_bottomStroke / 2, r167_turn2)['heads-to'](r1_DOWNWARD)['curve-to'](r1_MIDDLE - r167_bottomStroke / 2, (1 - 0.1) * r167_turn2, r167_m2 - r167_bottomStroke / 2, 0)['set-width'](r167_bottomStroke, 0)['to-outline']());
r167_xn$startfrom$1aao(r167_m1 + r167_bottomStroke / 2, 0);
r167_xn$lineto$5sIl(r167_m1 - r167_bottomStroke / 2, 0);
r167_xn$lineto$5sIl(r167_m1, r167_bottomStroke);
r167_xn$startfrom$1aao(r167_m2 + r167_bottomStroke / 2, 0);
r167_xn$lineto$5sIl(r167_m2 - r167_bottomStroke / 2, 0);
r167_xn$lineto$5sIl(r167_m2, r167_bottomStroke);
return void 0;
});
r1_xn$createglyph$7Hrq('y.upright', function _r1_t85() {
var r169_xn$setwidth$9Jrj, r169_xn$assignunicode$7Hrq, r169_xn$startfrom$1aao, r169_xn$lineto$5sIl, r169_xn$curveto$1aao, r169_xn$cubicto$1aao, r169_xn$putshapes$9Jrj, r169_xn$reverselast$3qIs, r169_include, r169_xn$createstroke$7Hrq, r169_xn$setanchor$9Jrj, r169_turn1, r169_turn2, r169_cross, r169_xbottom, r169_barone, r169_bartwo, _r169_t0;
_r169_t0 = this;
r169_xn$setwidth$9Jrj = _r169_t0['set-width']['bind'](_r169_t0);
r169_xn$assignunicode$7Hrq = _r169_t0['assign-unicode']['bind'](_r169_t0);
r169_xn$startfrom$1aao = _r169_t0['start-from']['bind'](_r169_t0);
r169_xn$lineto$5sIl = _r169_t0['line-to']['bind'](_r169_t0);
r169_xn$curveto$1aao = _r169_t0['curve-to']['bind'](_r169_t0);
r169_xn$cubicto$1aao = _r169_t0['cubic-to']['bind'](_r169_t0);
r169_xn$putshapes$9Jrj = _r169_t0['put-shapes']['bind'](_r169_t0);
r169_xn$reverselast$3qIs = _r169_t0['reverse-last']['bind'](_r169_t0);
r169_include = _r169_t0['include']['bind'](_r169_t0);
r169_xn$createstroke$7Hrq = _r169_t0['create-stroke']['bind'](_r169_t0);
r169_xn$setanchor$9Jrj = _r169_t0['set-anchor']['bind'](_r169_t0);
_r169_t0['gizmo'] = r1_globalTransform;
_r169_t0['set-width'](r1_WIDTH);
r169_xn$setwidth$9Jrj(r1_WIDTH);
r169_include(r1_pMarks);
r169_turn1 = r1_DESCENDER + (r1_XH - r1_DESCENDER) * 0.1;
r169_turn2 = r1_XH * 0.1;
r169_cross = r1_XH * 0.15;
r169_xbottom = r1_WIDTH * 0.4;
r169_barone = r169_xn$createstroke$7Hrq()['start-from'](r169_xbottom, r1_DESCENDER)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['cubic-to'](r169_xbottom, r169_turn1 + 0.3 * (r1_XH - r169_turn1), r1_RIGHTSB - r1_HALFSTROKE - r1_O, r1_XH - r169_turn1 - 0.65 * (r1_XH - r169_turn1), r1_RIGHTSB - r1_HALFSTROKE - r1_O, r1_XH)['heads-to'](r1_UPWARD);
r169_bartwo = r169_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, r169_cross)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['curve-to'](r1_SB + r1_HALFSTROKE + r1_O, r1_XH - r169_turn2 - 0.35 * (r1_XH - r169_turn2), r1_SB + r1_HALFSTROKE + r1_O, r1_XH)['heads-to'](r1_UPWARD);
r169_xn$putshapes$9Jrj(r169_barone['to-outline']());
r169_xn$putshapes$9Jrj(r169_bartwo['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('y.italic', function _r1_t86() {
var r171_xn$setwidth$9Jrj, r171_xn$assignunicode$7Hrq, r171_xn$startfrom$1aao, r171_xn$lineto$5sIl, r171_xn$curveto$1aao, r171_xn$cubicto$1aao, r171_xn$putshapes$9Jrj, r171_xn$reverselast$3qIs, r171_include, r171_xn$createstroke$7Hrq, r171_xn$setanchor$9Jrj, r171_TURN, r171_cross, r171_xbottom, r171_barone, r171_bartwo, _r171_t0;
_r171_t0 = this;
r171_xn$setwidth$9Jrj = _r171_t0['set-width']['bind'](_r171_t0);
r171_xn$assignunicode$7Hrq = _r171_t0['assign-unicode']['bind'](_r171_t0);
r171_xn$startfrom$1aao = _r171_t0['start-from']['bind'](_r171_t0);
r171_xn$lineto$5sIl = _r171_t0['line-to']['bind'](_r171_t0);
r171_xn$curveto$1aao = _r171_t0['curve-to']['bind'](_r171_t0);
r171_xn$cubicto$1aao = _r171_t0['cubic-to']['bind'](_r171_t0);
r171_xn$putshapes$9Jrj = _r171_t0['put-shapes']['bind'](_r171_t0);
r171_xn$reverselast$3qIs = _r171_t0['reverse-last']['bind'](_r171_t0);
r171_include = _r171_t0['include']['bind'](_r171_t0);
r171_xn$createstroke$7Hrq = _r171_t0['create-stroke']['bind'](_r171_t0);
r171_xn$setanchor$9Jrj = _r171_t0['set-anchor']['bind'](_r171_t0);
_r171_t0['gizmo'] = r1_globalTransform;
_r171_t0['set-width'](r1_WIDTH);
r171_xn$setwidth$9Jrj(r1_WIDTH);
r171_include(r1_pMarks);
r171_TURN = r1_XH * 0.1;
r171_cross = r1_XH * 0.15;
r171_xbottom = r1_WIDTH * 0.4;
r171_barone = r171_xn$createstroke$7Hrq()['start-from'](r171_xbottom, r1_DESCENDER)['heads-to'](r1_UPWARD)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['cubic-to'](r171_xbottom, r171_TURN + 0.17 * (r1_XH - r171_TURN), r1_RIGHTSB - r1_HALFSTROKE - r1_O, r1_XH - r171_TURN - 0.17 * (r1_XH - r171_TURN), r1_RIGHTSB - r1_HALFSTROKE - r1_O, r1_XH)['heads-to'](r1_UPWARD);
r171_bartwo = r171_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, r171_cross)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['curve-to'](r1_SB + r1_HALFSTROKE + r1_O, r1_XH - r171_TURN - 0.17 * (r1_XH - r171_TURN), r1_SB + r1_HALFSTROKE + r1_O, r1_XH)['heads-to'](r1_UPWARD);
r171_xn$putshapes$9Jrj(r171_barone['to-outline']());
r171_xn$putshapes$9Jrj(r171_bartwo['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('y', function _r1_t87() {
var r173_xn$setwidth$9Jrj, r173_xn$assignunicode$7Hrq, r173_xn$startfrom$1aao, r173_xn$lineto$5sIl, r173_xn$curveto$1aao, r173_xn$cubicto$1aao, r173_xn$putshapes$9Jrj, r173_xn$reverselast$3qIs, r173_include, r173_xn$createstroke$7Hrq, r173_xn$setanchor$9Jrj, _r173_t0;
_r173_t0 = this;
r173_xn$setwidth$9Jrj = _r173_t0['set-width']['bind'](_r173_t0);
r173_xn$assignunicode$7Hrq = _r173_t0['assign-unicode']['bind'](_r173_t0);
r173_xn$startfrom$1aao = _r173_t0['start-from']['bind'](_r173_t0);
r173_xn$lineto$5sIl = _r173_t0['line-to']['bind'](_r173_t0);
r173_xn$curveto$1aao = _r173_t0['curve-to']['bind'](_r173_t0);
r173_xn$cubicto$1aao = _r173_t0['cubic-to']['bind'](_r173_t0);
r173_xn$putshapes$9Jrj = _r173_t0['put-shapes']['bind'](_r173_t0);
r173_xn$reverselast$3qIs = _r173_t0['reverse-last']['bind'](_r173_t0);
r173_include = _r173_t0['include']['bind'](_r173_t0);
r173_xn$createstroke$7Hrq = _r173_t0['create-stroke']['bind'](_r173_t0);
r173_xn$setanchor$9Jrj = _r173_t0['set-anchor']['bind'](_r173_t0);
_r173_t0['gizmo'] = r1_globalTransform;
_r173_t0['set-width'](r1_WIDTH);
r173_xn$setwidth$9Jrj(r1_WIDTH);
r173_xn$assignunicode$7Hrq('y');
if (r1_para['italicangle'] > 0) {
r173_include(r1_glyphs['y.italic'], true);
} else {
r173_include(r1_glyphs['y.upright'], true);
}
return void 0;
});
r1_xn$createglyph$7Hrq('z', function _r1_t88() {
var r175_xn$setwidth$9Jrj, r175_xn$assignunicode$7Hrq, r175_xn$startfrom$1aao, r175_xn$lineto$5sIl, r175_xn$curveto$1aao, r175_xn$cubicto$1aao, r175_xn$putshapes$9Jrj, r175_xn$reverselast$3qIs, r175_include, r175_xn$createstroke$7Hrq, r175_xn$setanchor$9Jrj, r175_cor, _r175_t0;
_r175_t0 = this;
r175_xn$setwidth$9Jrj = _r175_t0['set-width']['bind'](_r175_t0);
r175_xn$assignunicode$7Hrq = _r175_t0['assign-unicode']['bind'](_r175_t0);
r175_xn$startfrom$1aao = _r175_t0['start-from']['bind'](_r175_t0);
r175_xn$lineto$5sIl = _r175_t0['line-to']['bind'](_r175_t0);
r175_xn$curveto$1aao = _r175_t0['curve-to']['bind'](_r175_t0);
r175_xn$cubicto$1aao = _r175_t0['cubic-to']['bind'](_r175_t0);
r175_xn$putshapes$9Jrj = _r175_t0['put-shapes']['bind'](_r175_t0);
r175_xn$reverselast$3qIs = _r175_t0['reverse-last']['bind'](_r175_t0);
r175_include = _r175_t0['include']['bind'](_r175_t0);
r175_xn$createstroke$7Hrq = _r175_t0['create-stroke']['bind'](_r175_t0);
r175_xn$setanchor$9Jrj = _r175_t0['set-anchor']['bind'](_r175_t0);
_r175_t0['gizmo'] = r1_globalTransform;
_r175_t0['set-width'](r1_WIDTH);
r175_xn$setwidth$9Jrj(r1_WIDTH);
r175_xn$assignunicode$7Hrq('z');
r175_include(r1_eMarks);
r175_cor = 1.2;
r175_xn$putshapes$9Jrj(r175_xn$createstroke$7Hrq()['start-from'](r1_SB, r1_XH)['heads-to'](r1_RIGHTWARD)['set-width'](0, r1_STROKE)['line-to'](r1_RIGHTSB, r1_XH)['heads-to'](r1_RIGHTWARD)['to-outline']());
r175_xn$putshapes$9Jrj(r175_xn$createstroke$7Hrq()['start-from'](r1_SB, 0)['heads-to'](r1_RIGHTWARD)['set-width'](r1_STROKE, 0)['line-to'](r1_RIGHTSB, 0)['heads-to'](r1_RIGHTWARD)['to-outline']());
r175_xn$startfrom$1aao(r1_SB, r1_STROKE);
r175_xn$lineto$5sIl(r1_SB + r1_STROKE * r175_cor, r1_STROKE);
r175_xn$lineto$5sIl(r1_RIGHTSB, r1_XH - r1_STROKE);
r175_xn$lineto$5sIl(r1_RIGHTSB - r1_STROKE * r175_cor, r1_XH - r1_STROKE);
r175_xn$reverselast$3qIs();
return void 0;
});
r1_xn$createglyph$7Hrq('k', function _r1_t89() {
var r177_xn$setwidth$9Jrj, r177_xn$assignunicode$7Hrq, r177_xn$startfrom$1aao, r177_xn$lineto$5sIl, r177_xn$curveto$1aao, r177_xn$cubicto$1aao, r177_xn$putshapes$9Jrj, r177_xn$reverselast$3qIs, r177_include, r177_xn$createstroke$7Hrq, r177_xn$setanchor$9Jrj, r177_TURN, r177_rturn, r177_right, r177_attach, r177_attach2, r177_fine, _r177_t0;
_r177_t0 = this;
r177_xn$setwidth$9Jrj = _r177_t0['set-width']['bind'](_r177_t0);
r177_xn$assignunicode$7Hrq = _r177_t0['assign-unicode']['bind'](_r177_t0);
r177_xn$startfrom$1aao = _r177_t0['start-from']['bind'](_r177_t0);
r177_xn$lineto$5sIl = _r177_t0['line-to']['bind'](_r177_t0);
r177_xn$curveto$1aao = _r177_t0['curve-to']['bind'](_r177_t0);
r177_xn$cubicto$1aao = _r177_t0['cubic-to']['bind'](_r177_t0);
r177_xn$putshapes$9Jrj = _r177_t0['put-shapes']['bind'](_r177_t0);
r177_xn$reverselast$3qIs = _r177_t0['reverse-last']['bind'](_r177_t0);
r177_include = _r177_t0['include']['bind'](_r177_t0);
r177_xn$createstroke$7Hrq = _r177_t0['create-stroke']['bind'](_r177_t0);
r177_xn$setanchor$9Jrj = _r177_t0['set-anchor']['bind'](_r177_t0);
_r177_t0['gizmo'] = r1_globalTransform;
_r177_t0['set-width'](r1_WIDTH);
r177_xn$setwidth$9Jrj(r1_WIDTH);
r177_xn$assignunicode$7Hrq('k');
r177_include(r1_bMarks);
r177_TURN = r1_XH * 0.99;
r177_rturn = r1_XH * 0.1;
r177_right = r1_RIGHTSB - r1_O;
r177_attach = r1_XH * 0.4;
r177_attach2 = r1_MIDDLE - r1_WIDTH * 0.1;
r177_fine = Math['min'](r1_STROKE, (r1_WIDTH - r1_SB * 2) * 0.25);
r177_xn$putshapes$9Jrj(r177_xn$createstroke$7Hrq()['start-from'](r1_SB, 0)['set-width'](0, r1_STROKE)['heads-to'](r1_UPWARD)['line-to'](r1_SB, r1_CAP)['heads-to'](r1_UPWARD)['to-outline']());
r177_xn$putshapes$9Jrj(r177_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB, r1_XH)['heads-to'](r1_DOWNWARD)['set-width'](0, r1_STROKE)['line-to'](r1_RIGHTSB, r177_TURN)['heads-to'](r1_DOWNWARD)['curve-to'](r1_RIGHTSB, (1 - 0.18) * r177_TURN, r1_SB + r1_STROKE, r177_attach)['set-width'](0, r177_fine)['to-outline']());
r177_xn$putshapes$9Jrj(r177_xn$createstroke$7Hrq()['start-from'](r177_right - r1_HALFSTROKE, 0)['heads-to'](r1_UPWARD)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['curve-to'](r177_right - r1_HALFSTROKE, r177_rturn + 0.05 * (r1_XH - r177_rturn), r177_attach2, r1_XH * 0.5 + r1_HALFSTROKE)['set-width'](r177_fine / 2, r177_fine / 2)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('s', function _r1_t90() {
var r179_xn$setwidth$9Jrj, r179_xn$assignunicode$7Hrq, r179_xn$startfrom$1aao, r179_xn$lineto$5sIl, r179_xn$curveto$1aao, r179_xn$cubicto$1aao, r179_xn$putshapes$9Jrj, r179_xn$reverselast$3qIs, r179_include, r179_xn$createstroke$7Hrq, r179_xn$setanchor$9Jrj, r179_slope, r179_expand, r179_coexpand, r179_ssmootha, r179_bowltop, r179_strokemiddle, r179_bowlbottom, _r179_t0;
_r179_t0 = this;
r179_xn$setwidth$9Jrj = _r179_t0['set-width']['bind'](_r179_t0);
r179_xn$assignunicode$7Hrq = _r179_t0['assign-unicode']['bind'](_r179_t0);
r179_xn$startfrom$1aao = _r179_t0['start-from']['bind'](_r179_t0);
r179_xn$lineto$5sIl = _r179_t0['line-to']['bind'](_r179_t0);
r179_xn$curveto$1aao = _r179_t0['curve-to']['bind'](_r179_t0);
r179_xn$cubicto$1aao = _r179_t0['cubic-to']['bind'](_r179_t0);
r179_xn$putshapes$9Jrj = _r179_t0['put-shapes']['bind'](_r179_t0);
r179_xn$reverselast$3qIs = _r179_t0['reverse-last']['bind'](_r179_t0);
r179_include = _r179_t0['include']['bind'](_r179_t0);
r179_xn$createstroke$7Hrq = _r179_t0['create-stroke']['bind'](_r179_t0);
r179_xn$setanchor$9Jrj = _r179_t0['set-anchor']['bind'](_r179_t0);
_r179_t0['gizmo'] = r1_globalTransform;
_r179_t0['set-width'](r1_WIDTH);
r179_xn$setwidth$9Jrj(r1_WIDTH);
r179_xn$assignunicode$7Hrq('s');
r179_include(r1_eMarks);
r179_slope = 0.015;
r179_expand = 0.175;
r179_coexpand = (1 - r179_expand) / 2;
r179_ssmootha = r1_SMOOTHA * 0.87;
r179_bowltop = r179_xn$createstroke$7Hrq();
r179_bowltop['start-from'](r1_RIGHTSB - r1_OXHOOK, r1_XH - r1_SHOOK)['set-width'](r1_STROKE, 0)['curve-to'](r1_MIDDLE + r1_KAPPA_AHOOK * (r1_MIDDLE - r1_para['sb']), r1_XO, r1_MIDDLE, r1_XO)['heads-to'](r1_LEFTWARD)['arc-hv-to'](r1_SB, r1_XH - r179_ssmootha);
r179_strokemiddle = r179_xn$createstroke$7Hrq();
r179_strokemiddle['start-from'](r1_SB + r1_STROKE / 2, r1_XH - r179_ssmootha)['set-width'](r1_STROKE / 2, r1_STROKE / 2)['curve-to'](r1_SB + r1_STROKE / 2, (0.5 + r179_slope) * r1_XH + 2 * r179_slope * r1_XH / (r179_expand * r1_WIDTH) * (r179_coexpand * r1_WIDTH - r1_SB - r1_STROKE / 2), r179_coexpand * r1_WIDTH, (0.5 + r179_slope) * r1_XH)['line-to']((1 - r179_coexpand) * r1_WIDTH, (0.5 - r179_slope) * r1_XH)['curve-to'](r1_RIGHTSB - r1_STROKE / 2, (0.5 - r179_slope) * r1_XH - 2 * r179_slope * r1_XH / (r179_expand * r1_WIDTH) * (r179_coexpand * r1_WIDTH - r1_SB - r1_STROKE / 2), r1_RIGHTSB - r1_STROKE / 2, r179_ssmootha);
r179_bowlbottom = r179_xn$createstroke$7Hrq();
r179_bowlbottom['start-from'](r1_RIGHTSB, r179_ssmootha)['set-width'](0, r1_STROKE)['arc-vh-to'](r1_MIDDLE, r1_O)['heads-to'](r1_LEFTWARD)['curve-to'](r1_MIDDLE - (r1_KAPPA_AHOOK + r1_TAILADJSKAPPA * r1_globalTransform['yx']) * (r1_MIDDLE - r1_para['sb']), r1_O, r1_SB + r1_OXHOOK - +r1_TAILADJSX * r1_globalTransform['yx'], r1_SHOOK - r1_TAILADJSY * r1_globalTransform['yx']);
r179_xn$putshapes$9Jrj(r179_bowltop['to-outline']());
r179_xn$putshapes$9Jrj(r179_strokemiddle['to-outline']());
r179_xn$putshapes$9Jrj(r179_bowlbottom['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('r', function _r1_t91() {
var r181_xn$setwidth$9Jrj, r181_xn$assignunicode$7Hrq, r181_xn$startfrom$1aao, r181_xn$lineto$5sIl, r181_xn$curveto$1aao, r181_xn$cubicto$1aao, r181_xn$putshapes$9Jrj, r181_xn$reverselast$3qIs, r181_include, r181_xn$createstroke$7Hrq, r181_xn$setanchor$9Jrj, r181_slope, r181_expand, r181_coexpand, r181_ssmootha, _r181_t0;
_r181_t0 = this;
r181_xn$setwidth$9Jrj = _r181_t0['set-width']['bind'](_r181_t0);
r181_xn$assignunicode$7Hrq = _r181_t0['assign-unicode']['bind'](_r181_t0);
r181_xn$startfrom$1aao = _r181_t0['start-from']['bind'](_r181_t0);
r181_xn$lineto$5sIl = _r181_t0['line-to']['bind'](_r181_t0);
r181_xn$curveto$1aao = _r181_t0['curve-to']['bind'](_r181_t0);
r181_xn$cubicto$1aao = _r181_t0['cubic-to']['bind'](_r181_t0);
r181_xn$putshapes$9Jrj = _r181_t0['put-shapes']['bind'](_r181_t0);
r181_xn$reverselast$3qIs = _r181_t0['reverse-last']['bind'](_r181_t0);
r181_include = _r181_t0['include']['bind'](_r181_t0);
r181_xn$createstroke$7Hrq = _r181_t0['create-stroke']['bind'](_r181_t0);
r181_xn$setanchor$9Jrj = _r181_t0['set-anchor']['bind'](_r181_t0);
_r181_t0['gizmo'] = r1_globalTransform;
_r181_t0['set-width'](r1_WIDTH);
r181_xn$setwidth$9Jrj(r1_WIDTH);
r181_xn$assignunicode$7Hrq('r');
r181_include(r1_eMarks);
r181_slope = 0.015;
r181_expand = 0.175;
r181_coexpand = (1 - r181_expand) / 2;
r181_ssmootha = r1_SMOOTHA * 0.87;
r181_xn$putshapes$9Jrj(r181_xn$createstroke$7Hrq()['start-from'](r1_RIGHTSB - r1_OXHOOK + r1_JBALANCE / 2, r1_XH - r1_RHOOK)['set-width'](r1_STROKE, 0)['curve-to'](r1_MIDDLE + r1_BKAPPA * (r1_MIDDLE - r1_para['sb']) + r1_JBALANCE / 2, r1_XO, r1_MIDDLE + r1_JBALANCE * 0.75, r1_XO)['heads-to'](r1_LEFTWARD)['to-outline']());
r181_xn$putshapes$9Jrj(r181_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE + r1_JBALANCE * 0.75, r1_XO - r1_STROKE)['set-width'](0, r1_STROKE)['heads-to'](r1_LEFTWARD)['arc-hv-to'](r1_SB + r1_STROKE * r1_ITALICCOR + r1_RBALANCE, r1_XH - r1_SMALLSMOOTHA)['heads-to'](r1_DOWNWARD)['set-width'](0, r1_STROKE * 0.4)['to-outline']());
r181_xn$putshapes$9Jrj(r181_xn$createstroke$7Hrq()['start-from'](r1_SB + r1_RBALANCE, 0)['heads-to'](r1_UPWARD)['set-width'](0, r1_STROKE)['line-to'](r1_SB + r1_RBALANCE, r1_XH)['heads-to'](r1_UPWARD)['to-outline']());
return void 0;
});
r1_xn$createglyph$7Hrq('f.upright', function _r1_t92() {
var r183_xn$setwidth$9Jrj, r183_xn$assignunicode$7Hrq, r183_xn$startfrom$1aao, r183_xn$lineto$5sIl, r183_xn$curveto$1aao, r183_xn$cubicto$1aao, r183_xn$putshapes$9Jrj, r183_xn$reverselast$3qIs, r183_include, r183_xn$createstroke$7Hrq, r183_xn$setanchor$9Jrj, _r183_t0;
_r183_t0 = this;
r183_xn$setwidth$9Jrj = _r183_t0['set-width']['bind'](_r183_t0);
r183_xn$assignunicode$7Hrq = _r183_t0['assign-unicode']['bind'](_r183_t0);
r183_xn$startfrom$1aao = _r183_t0['start-from']['bind'](_r183_t0);
r183_xn$lineto$5sIl = _r183_t0['line-to']['bind'](_r183_t0);
r183_xn$curveto$1aao = _r183_t0['curve-to']['bind'](_r183_t0);
r183_xn$cubicto$1aao = _r183_t0['cubic-to']['bind'](_r183_t0);
r183_xn$putshapes$9Jrj = _r183_t0['put-shapes']['bind'](_r183_t0);
r183_xn$reverselast$3qIs = _r183_t0['reverse-last']['bind'](_r183_t0);
r183_include = _r183_t0['include']['bind'](_r183_t0);
r183_xn$createstroke$7Hrq = _r183_t0['create-stroke']['bind'](_r183_t0);
r183_xn$setanchor$9Jrj = _r183_t0['set-anchor']['bind'](_r183_t0);
_r183_t0['gizmo'] = r1_globalTransform;
_r183_t0['set-width'](r1_WIDTH);
r183_xn$setwidth$9Jrj(r1_WIDTH);
r183_include(r1_bMarks);
r183_xn$putshapes$9Jrj(r183_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE, 0)['heads-to'](r1_UPWARD)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['line-to'](r1_MIDDLE, r1_CAP - r1_SHOOK * 1.4)['arc-vh-to'](r1_MIDDLE + r1_SHOOK * 2, r1_CAP - r1_HALFSTROKE - r1_O * 6)['heads-to'](r1_RIGHTWARD)['to-outline']());
r183_include(r1_glyphs['fbar']);
return void 0;
});
r1_xn$createglyph$7Hrq('f.italic', function _r1_t93() {
var r185_xn$setwidth$9Jrj, r185_xn$assignunicode$7Hrq, r185_xn$startfrom$1aao, r185_xn$lineto$5sIl, r185_xn$curveto$1aao, r185_xn$cubicto$1aao, r185_xn$putshapes$9Jrj, r185_xn$reverselast$3qIs, r185_include, r185_xn$createstroke$7Hrq, r185_xn$setanchor$9Jrj, _r185_t0;
_r185_t0 = this;
r185_xn$setwidth$9Jrj = _r185_t0['set-width']['bind'](_r185_t0);
r185_xn$assignunicode$7Hrq = _r185_t0['assign-unicode']['bind'](_r185_t0);
r185_xn$startfrom$1aao = _r185_t0['start-from']['bind'](_r185_t0);
r185_xn$lineto$5sIl = _r185_t0['line-to']['bind'](_r185_t0);
r185_xn$curveto$1aao = _r185_t0['curve-to']['bind'](_r185_t0);
r185_xn$cubicto$1aao = _r185_t0['cubic-to']['bind'](_r185_t0);
r185_xn$putshapes$9Jrj = _r185_t0['put-shapes']['bind'](_r185_t0);
r185_xn$reverselast$3qIs = _r185_t0['reverse-last']['bind'](_r185_t0);
r185_include = _r185_t0['include']['bind'](_r185_t0);
r185_xn$createstroke$7Hrq = _r185_t0['create-stroke']['bind'](_r185_t0);
r185_xn$setanchor$9Jrj = _r185_t0['set-anchor']['bind'](_r185_t0);
_r185_t0['gizmo'] = r1_globalTransform;
_r185_t0['set-width'](r1_WIDTH);
r185_xn$setwidth$9Jrj(r1_WIDTH);
r185_include(r1_ifMarks);
r185_xn$putshapes$9Jrj(r185_xn$createstroke$7Hrq()['start-from'](r1_MIDDLE - r1_SHOOK * 2, r1_HALFSTROKE + r1_O * 6 - r1_SHOOK)['heads-to'](r1_RIGHTWARD)['set-width'](r1_HALFSTROKE, r1_HALFSTROKE)['arc-hv-to'](r1_MIDDLE, 0)['line-to'](r1_MIDDLE, r1_CAP - r1_SHOOK)['arc-vh-to'](r1_MIDDLE + r1_SHOOK * 2, r1_CAP - r1_HALFSTROKE - r1_O * 6)['heads-to'](r1_RIGHTWARD)['to-outline']());
r185_include(r1_glyphs['fbar']);
return void 0;
});
r1_xn$createglyph$7Hrq('f', function _r1_t94() {
var r187_xn$setwidth$9Jrj, r187_xn$assignunicode$7Hrq, r187_xn$startfrom$1aao, r187_xn$lineto$5sIl, r187_xn$curveto$1aao, r187_xn$cubicto$1aao, r187_xn$putshapes$9Jrj, r187_xn$reverselast$3qIs, r187_include, r187_xn$createstroke$7Hrq, r187_xn$setanchor$9Jrj, _r187_t0;
_r187_t0 = this;
r187_xn$setwidth$9Jrj = _r187_t0['set-width']['bind'](_r187_t0);
r187_xn$assignunicode$7Hrq = _r187_t0['assign-unicode']['bind'](_r187_t0);
r187_xn$startfrom$1aao = _r187_t0['start-from']['bind'](_r187_t0);
r187_xn$lineto$5sIl = _r187_t0['line-to']['bind'](_r187_t0);
r187_xn$curveto$1aao = _r187_t0['curve-to']['bind'](_r187_t0);
r187_xn$cubicto$1aao = _r187_t0['cubic-to']['bind'](_r187_t0);
r187_xn$putshapes$9Jrj = _r187_t0['put-shapes']['bind'](_r187_t0);
r187_xn$reverselast$3qIs = _r187_t0['reverse-last']['bind'](_r187_t0);
r187_include = _r187_t0['include']['bind'](_r187_t0);
r187_xn$createstroke$7Hrq = _r187_t0['create-stroke']['bind'](_r187_t0);
r187_xn$setanchor$9Jrj = _r187_t0['set-anchor']['bind'](_r187_t0);
_r187_t0['gizmo'] = r1_globalTransform;
_r187_t0['set-width'](r1_WIDTH);
r187_xn$setwidth$9Jrj(r1_WIDTH);
r187_xn$assignunicode$7Hrq('f');
if (r1_para['italicangle'] > 0) {
r187_include(r1_glyphs['f.italic'], true);
} else {
r187_include(r1_glyphs['f.upright'], true);
}
return void 0;
});
return r1_font;
};
}