2015-08-31 14:10:07 +00:00
( function ( e ) { if ( typeof exports === "object" && typeof module !== "undefined" ) { module . exports = e ( ) } else if ( typeof define === "function" && define . amd ) { define ( [ ] , e ) } else { var t ; if ( typeof window !== "undefined" ) { t = window } else if ( typeof global !== "undefined" ) { t = global } else if ( typeof self !== "undefined" ) { t = self } else { t = this } t . katex = e ( ) } } ) ( function ( ) { var e , t , i ; return function h ( e , t , i ) { function a ( l , s ) { if ( ! t [ l ] ) { if ( ! e [ l ] ) { var p = typeof require == "function" && require ; if ( ! s && p ) return p ( l , ! 0 ) ; if ( r ) return r ( l , ! 0 ) ; var n = new Error ( "Cannot find module '" + l + "'" ) ; throw n . code = "MODULE_NOT_FOUND" , n } var o = t [ l ] = { exports : { } } ; e [ l ] [ 0 ] . call ( o . exports , function ( t ) { var i = e [ l ] [ 1 ] [ t ] ; return a ( i ? i : t ) } , o , o . exports , h , e , t , i ) } return t [ l ] . exports } var r = typeof require == "function" && require ; for ( var l = 0 ; l < i . length ; l ++ ) a ( i [ l ] ) ; return a } ( { 1 : [ function ( e , t , i ) { var h = e ( "./src/ParseError" ) ; var a = e ( "./src/Settings" ) ; var r = e ( "./src/buildTree" ) ; var l = e ( "./src/parseTree" ) ; var s = e ( "./src/utils" ) ; var p = function ( e , t , i ) { s . clearNode ( t ) ; var h = new a ( i ) ; var p = l ( e , h ) ; var n = r ( p , e , h ) . toNode ( ) ; t . appendChild ( n ) } ; if ( typeof document !== "undefined" ) { if ( document . compatMode !== "CSS1Compat" ) { typeof console !== "undefined" && console . warn ( "Warning: KaTeX doesn't work in quirks mode. Make sure your " + "website has a suitable doctype." ) ; p = function ( ) { throw new h ( "KaTeX doesn't work in quirks mode." ) } } } var n = function ( e , t ) { var i = new a ( t ) ; var h = l ( e , i ) ; return r ( h , e , i ) . toMarkup ( ) } ; var o = function ( e , t ) { var i = new a ( t ) ; return l ( e , i ) } ; t . exports = { render : p , renderToString : n , _ _parse : o , ParseError : h } } , { "./src/ParseError" : 5 , "./src/Settings" : 7 , "./src/buildTree" : 12 , "./src/parseTree" : 21 , "./src/utils" : 23 } ] , 2 : [ function ( e , t , i ) { "use strict" ; function h ( e ) { if ( ! e . _ _matchAtRelocatable ) { var t = e . source + "|()" ; var i = "g" + ( e . ignoreCase ? "i" : "" ) + ( e . multiline ? "m" : "" ) + ( e . unicode ? "u" : "" ) ; e . _ _matchAtRelocatable = new RegExp ( t , i ) } return e . _ _matchAtRelocatable } function a ( e , t , i ) { if ( e . global || e . sticky ) { throw new Error ( "matchAt(...): Only non-global regexes are supported" ) } var a = h ( e ) ; a . lastIndex = i ; var r = a . exec ( t ) ; if ( r [ r . length - 1 ] == null ) { r . length = r . length - 1 ; return r } else { return null } } t . exports = a } , { } ] , 3 : [ function ( e , t , i ) { var h = e ( "match-at" ) ; var a = e ( "./ParseError" ) ; function r ( e ) { this . _input = e } function l ( e , t , i ) { this . text = e ; this . data = t ; this . position = i } var s = [ /[/|@.""`0-9a-zA-Z]/ , /[*+-]/ , /[=<>:]/ , /[,;]/ , /['\^_{}]/ , /[(\[]/ , /[)\]?!]/ , /~/ , /&/ , /\\\\/ ] ; var p = [ /[a-zA-Z0-9`!@*()-=+\[\]'";:?\/.,]/ , /[{}]/ , /~/ , /&/ , /\\\\/ ] ; var n = /\s*/ ; var o = / +|\\ +/ ; var c = /\\(?:[a-zA-Z]+|.)/ ; r . prototype . _innerLex = function ( e , t , i ) { var r = this . _input ; var s ; if ( i ) { s = h ( n , r , e ) [ 0 ] ; e += s . length } else { s = h ( o , r , e ) ; if ( s !== null ) { return new l ( " " , null , e + s [ 0 ] . length ) } } if ( e === r . length ) { return new l ( "EOF" , null , e ) } var p ; if ( p = h ( c , r , e ) ) { return new l ( p [ 0 ] , null , e + p [ 0 ] . length ) } else { for ( var g = 0 ; g < t . length ; g ++ ) { var d = t [ g ] ; if ( p = h ( d , r , e ) ) { return new l ( p [ 0 ] , null , e + p [ 0 ] . length ) } } } throw new a ( "Unexpected character: '" + r [ e ] + "'" , this , e ) } ; var g = /#[a-z0-9]+|[a-z]+/i ; r . prototype . _innerLexColor = function ( e ) { var t = this . _input ; var i = h ( n , t , e ) [ 0 ] ; e += i . length ; var r ; if ( r = h ( g , t , e ) ) { return new l ( r [ 0 ] , null , e + r [ 0 ] . length ) } else { throw new a ( "Invalid color" , this , e ) } } ; var d = /(-?)\s*(\d+(?:\.\d*)?|\.\d+)\s*([a-z]{2})/ ; r . prototype . _innerLexSize = function ( e ) { var t = this . _input ; var i = h ( n , t , e ) [ 0 ] ; e += i . length ; var r ; if ( r = h ( d , t , e ) ) { var s = r [ 3 ] ; if ( s !== "em" && s !== "ex" ) { throw new a ( "Invalid unit: '" + s + "'" , this , e ) } return new l ( r [ 0 ] , { number : + ( r [ 1 ] + r [ 2 ] ) , unit : s } , e + r [ 0 ] . length ) } throw new a ( "Invalid size" , this , e ) } ; r . prototype . _innerLexWhitespace = function ( e ) { var t = this . _input ; var i = h ( n , t , e ) [ 0 ] ; e += i . length ; return new l ( i [ 0 ] , null , e ) } ; r . prototype . lex = function ( e , t ) { if ( t === "math" ) { return this . _innerLex ( e , s , true ) } else if ( t === "text" ) { return this . _innerLex ( e , p , false ) } else if ( t === "color" ) { return this . _innerLexColor ( e ) } else if ( t === "size" ) { return this . _innerLexSize ( e ) } else if ( t === "whitespace" ) { return this . _innerLexWhitespace ( e ) } } ; t . exports = r } , { "./ParseError" : 5 , "match-at" : 2 } ] , 4 : [ function ( e , t , i ) { function h ( e ) { this . style = e . style ; this . color = e . color ; this . size = e . size ; this . phantom = e . phantom ; if ( e . parentStyle === undefined ) { this . parentStyle = e . style } else { this . parentStyle = e . parentStyle } if ( e . pare
var s = c ( [ "base" , a . style . cls ( ) ] , l ) ; var p = c ( [ "strut" ] ) ; var n = c ( [ "strut" , "bottom" ] ) ; p . style . height = s . height + "em" ; n . style . height = s . height + s . depth + "em" ; n . style . verticalAlign = - s . depth + "em" ; var o = c ( [ "katex-html" ] , [ p , n , s ] ) ; o . setAttribute ( "aria-hidden" , "true" ) ; return o } ; t . exports = x } , { "./Options" : 4 , "./ParseError" : 5 , "./Style" : 8 , "./buildCommon" : 9 , "./delimiter" : 13 , "./domTree" : 14 , "./fontMetrics" : 16 , "./utils" : 23 } ] , 11 : [ function ( e , t , i ) { var h = e ( "./buildCommon" ) ; var a = e ( "./mathMLTree" ) ; var r = e ( "./ParseError" ) ; var l = e ( "./symbols" ) ; var s = h . makeSpan ; var p = function ( e , t ) { if ( l [ t ] [ e ] && l [ t ] [ e ] . replace ) { e = l [ t ] [ e ] . replace } return new a . TextNode ( e ) } ; var n = { mathord : function ( e ) { var t = new a . MathNode ( "mi" , [ p ( e . value , e . mode ) ] ) ; return t } , textord : function ( e ) { var t = p ( e . value , e . mode ) ; var i ; if ( /[0-9]/ . test ( e . value ) ) { i = new a . MathNode ( "mn" , [ t ] ) } else { i = new a . MathNode ( "mi" , [ t ] ) ; i . setAttribute ( "mathvariant" , "normal" ) } return i } , bin : function ( e ) { var t = new a . MathNode ( "mo" , [ p ( e . value , e . mode ) ] ) ; return t } , rel : function ( e ) { var t = new a . MathNode ( "mo" , [ p ( e . value , e . mode ) ] ) ; return t } , open : function ( e ) { var t = new a . MathNode ( "mo" , [ p ( e . value , e . mode ) ] ) ; return t } , close : function ( e ) { var t = new a . MathNode ( "mo" , [ p ( e . value , e . mode ) ] ) ; return t } , inner : function ( e ) { var t = new a . MathNode ( "mo" , [ p ( e . value , e . mode ) ] ) ; return t } , punct : function ( e ) { var t = new a . MathNode ( "mo" , [ p ( e . value , e . mode ) ] ) ; t . setAttribute ( "separator" , "true" ) ; return t } , ordgroup : function ( e ) { var t = o ( e . value ) ; var i = new a . MathNode ( "mrow" , t ) ; return i } , text : function ( e ) { var t = o ( e . value . body ) ; var i = new a . MathNode ( "mtext" , t ) ; return i } , color : function ( e ) { var t = o ( e . value . value ) ; var i = new a . MathNode ( "mstyle" , t ) ; i . setAttribute ( "mathcolor" , e . value . color ) ; return i } , supsub : function ( e ) { var t = [ c ( e . value . base ) ] ; if ( e . value . sub ) { t . push ( c ( e . value . sub ) ) } if ( e . value . sup ) { t . push ( c ( e . value . sup ) ) } var i ; if ( ! e . value . sub ) { i = "msup" } else if ( ! e . value . sup ) { i = "msub" } else { i = "msubsup" } var h = new a . MathNode ( i , t ) ; return h } , genfrac : function ( e ) { var t = new a . MathNode ( "mfrac" , [ c ( e . value . numer ) , c ( e . value . denom ) ] ) ; if ( ! e . value . hasBarLine ) { t . setAttribute ( "linethickness" , "0px" ) } if ( e . value . leftDelim != null || e . value . rightDelim != null ) { var i = [ ] ; if ( e . value . leftDelim != null ) { var h = new a . MathNode ( "mo" , [ new a . TextNode ( e . value . leftDelim ) ] ) ; h . setAttribute ( "fence" , "true" ) ; i . push ( h ) } i . push ( t ) ; if ( e . value . rightDelim != null ) { var r = new a . MathNode ( "mo" , [ new a . TextNode ( e . value . rightDelim ) ] ) ; r . setAttribute ( "fence" , "true" ) ; i . push ( r ) } var l = new a . MathNode ( "mrow" , i ) ; return l } return t } , array : function ( e ) { return new a . MathNode ( "mtable" , e . value . body . map ( function ( e ) { return new a . MathNode ( "mtr" , e . map ( function ( e ) { return new a . MathNode ( "mtd" , [ c ( e ) ] ) } ) ) } ) ) } , sqrt : function ( e ) { var t ; if ( e . value . index ) { t = new a . MathNode ( "mroot" , [ c ( e . value . body ) , c ( e . value . index ) ] ) } else { t = new a . MathNode ( "msqrt" , [ c ( e . value . body ) ] ) } return t } , leftright : function ( e ) { var t = o ( e . value . body ) ; if ( e . value . left !== "." ) { var i = new a . MathNode ( "mo" , [ p ( e . value . left , e . mode ) ] ) ; i . setAttribute ( "fence" , "true" ) ; t . unshift ( i ) } if ( e . value . right !== "." ) { var h = new a . MathNode ( "mo" , [ p ( e . value . right , e . mode ) ] ) ; h . setAttribute ( "fence" , "true" ) ; t . push ( h ) } var r = new a . MathNode ( "mrow" , t ) ; return r } , accent : function ( e ) { var t = new a . MathNode ( "mo" , [ p ( e . value . accent , e . mode ) ] ) ; var i = new a . MathNode ( "mover" , [ c ( e . value . base ) , t ] ) ; i . setAttribute ( "accent" , "true" ) ; return i } , spacing : function ( e ) { var t ; if ( e . value === "\\ " || e . value === "\\space" || e . value === " " || e . value === "~" ) { t = new a . MathNode ( "mtext" , [ new a . TextNode ( "\xa0" ) ] ) } else { t = new a . MathNode ( "mspace" ) ; t . setAttribute ( "width" , h . spacingFunctions [ e . value ] . size ) } return t } , op : function ( e ) { var t ; if ( e . value . symbol ) { t = new a . MathNode ( "mo" , [ p ( e . value . body , e . mode ) ] ) } else { t = new a . MathNode ( "mi" , [ new a . TextNode ( e . value . body . slice ( 1 ) ) ] ) } return t } , katex : function ( e ) { var t = new a . MathNode ( "mtext" , [ new a . TextNode ( "KaTeX" ) ] ) ; return t } , delimsizing : function ( e ) { var t = [ ] ; if ( e . value . value !== "." ) { t . push ( p ( e . value . value , e . mode ) ) } var i = new a . MathNode ( "mo" , t ) ; if ( e . value . delimType === "open" || e . value . delimType === "close" ) { i . setAttribute ( "fence" , "true" ) } else { i . setAttribute ( "fence" , "false" ) } return i } , styling : function ( e ) { var t = o ( e . value . value , t ) ; var i = new a . MathNode ( "mstyle" , t ) ; var h = { display
skew : 0 } , 101 : { depth : 0 , height : . 44444 , italic : 0 , skew : 0 } , 102 : { depth : 0 , height : . 69444 , italic : . 10903 , skew : 0 } , 103 : { depth : . 19444 , height : . 44444 , italic : . 01597 , skew : 0 } , 104 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 105 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 106 : { depth : . 19444 , height : . 69444 , italic : 0 , skew : 0 } , 107 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 108 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 109 : { depth : 0 , height : . 44444 , italic : 0 , skew : 0 } , 110 : { depth : 0 , height : . 44444 , italic : 0 , skew : 0 } , 111 : { depth : 0 , height : . 44444 , italic : 0 , skew : 0 } , 112 : { depth : . 19444 , height : . 44444 , italic : 0 , skew : 0 } , 113 : { depth : . 19444 , height : . 44444 , italic : 0 , skew : 0 } , 114 : { depth : 0 , height : . 44444 , italic : 0 , skew : 0 } , 115 : { depth : 0 , height : . 44444 , italic : 0 , skew : 0 } , 116 : { depth : 0 , height : . 63492 , italic : 0 , skew : 0 } , 117 : { depth : 0 , height : . 44444 , italic : 0 , skew : 0 } , 118 : { depth : 0 , height : . 44444 , italic : . 01597 , skew : 0 } , 119 : { depth : 0 , height : . 44444 , italic : . 01597 , skew : 0 } , 120 : { depth : 0 , height : . 44444 , italic : 0 , skew : 0 } , 121 : { depth : . 19444 , height : . 44444 , italic : . 01597 , skew : 0 } , 122 : { depth : 0 , height : . 44444 , italic : 0 , skew : 0 } , 123 : { depth : . 25 , height : . 75 , italic : 0 , skew : 0 } , 124 : { depth : . 25 , height : . 75 , italic : 0 , skew : 0 } , 125 : { depth : . 25 , height : . 75 , italic : 0 , skew : 0 } , 126 : { depth : . 35 , height : . 34444 , italic : 0 , skew : 0 } , 168 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 172 : { depth : 0 , height : . 44444 , italic : 0 , skew : 0 } , 175 : { depth : 0 , height : . 59611 , italic : 0 , skew : 0 } , 176 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 177 : { depth : . 13333 , height : . 63333 , italic : 0 , skew : 0 } , 180 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 215 : { depth : . 13333 , height : . 63333 , italic : 0 , skew : 0 } , 247 : { depth : . 13333 , height : . 63333 , italic : 0 , skew : 0 } , 305 : { depth : 0 , height : . 44444 , italic : 0 , skew : 0 } , 567 : { depth : . 19444 , height : . 44444 , italic : 0 , skew : 0 } , 710 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 711 : { depth : 0 , height : . 63194 , italic : 0 , skew : 0 } , 713 : { depth : 0 , height : . 59611 , italic : 0 , skew : 0 } , 714 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 715 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 728 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 729 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 730 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 732 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 768 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 769 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 770 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 771 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 772 : { depth : 0 , height : . 59611 , italic : 0 , skew : 0 } , 774 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 775 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 776 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 778 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 779 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 780 : { depth : 0 , height : . 63194 , italic : 0 , skew : 0 } , 824 : { depth : . 19444 , height : . 69444 , italic : 0 , skew : 0 } , 915 : { depth : 0 , height : . 68611 , italic : 0 , skew : 0 } , 916 : { depth : 0 , height : . 68611 , italic : 0 , skew : 0 } , 920 : { depth : 0 , height : . 68611 , italic : 0 , skew : 0 } , 923 : { depth : 0 , height : . 68611 , italic : 0 , skew : 0 } , 926 : { depth : 0 , height : . 68611 , italic : 0 , skew : 0 } , 928 : { depth : 0 , height : . 68611 , italic : 0 , skew : 0 } , 931 : { depth : 0 , height : . 68611 , italic : 0 , skew : 0 } , 933 : { depth : 0 , height : . 68611 , italic : 0 , skew : 0 } , 934 : { depth : 0 , height : . 68611 , italic : 0 , skew : 0 } , 936 : { depth : 0 , height : . 68611 , italic : 0 , skew : 0 } , 937 : { depth : 0 , height : . 68611 , italic : 0 , skew : 0 } , 8211 : { depth : 0 , height : . 44444 , italic : . 03194 , skew : 0 } , 8212 : { depth : 0 , height : . 44444 , italic : . 03194 , skew : 0 } , 8216 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 8217 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 8220 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 8221 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 8224 : { depth : . 19444 , height : . 69444 , italic : 0 , skew : 0 } , 8225 : { depth : . 19444 , height : . 69444 , italic : 0 , skew : 0 } , 8242 : { depth : 0 , height : . 55556 , italic : 0 , skew : 0 } , 8407 : { depth : 0 , height : . 72444 , italic : . 15486 , skew : 0 } , 8463 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 8465 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 8467 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 8472 : { depth : . 19444 , height : . 44444 , italic : 0 , skew : 0 } , 8476 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 8501 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 8592 : { depth : - . 10889 , height : . 39111 , italic : 0 , skew : 0 } , 8593 : { depth : . 19444 , height : . 69444 , italic : 0 , skew : 0 } , 8594 : { depth : - . 10889 , height : . 39111 , italic : 0 , skew : 0 } , 8595 : { depth : . 19444 , height : . 69444 , italic : 0 , skew : 0 } , 8596 : { depth : - . 10889 , height : . 39111 , italic : 0 , skew : 0 } , 8597 : { depth : . 25 , he
} , 66 : { depth : 0 , height : . 68333 , italic : . 05017 , skew : . 08334 } , 67 : { depth : 0 , height : . 68333 , italic : . 07153 , skew : . 08334 } , 68 : { depth : 0 , height : . 68333 , italic : . 02778 , skew : . 05556 } , 69 : { depth : 0 , height : . 68333 , italic : . 05764 , skew : . 08334 } , 70 : { depth : 0 , height : . 68333 , italic : . 13889 , skew : . 08334 } , 71 : { depth : 0 , height : . 68333 , italic : 0 , skew : . 08334 } , 72 : { depth : 0 , height : . 68333 , italic : . 08125 , skew : . 05556 } , 73 : { depth : 0 , height : . 68333 , italic : . 07847 , skew : . 11111 } , 74 : { depth : 0 , height : . 68333 , italic : . 09618 , skew : . 16667 } , 75 : { depth : 0 , height : . 68333 , italic : . 07153 , skew : . 05556 } , 76 : { depth : 0 , height : . 68333 , italic : 0 , skew : . 02778 } , 77 : { depth : 0 , height : . 68333 , italic : . 10903 , skew : . 08334 } , 78 : { depth : 0 , height : . 68333 , italic : . 10903 , skew : . 08334 } , 79 : { depth : 0 , height : . 68333 , italic : . 02778 , skew : . 08334 } , 80 : { depth : 0 , height : . 68333 , italic : . 13889 , skew : . 08334 } , 81 : { depth : . 19444 , height : . 68333 , italic : 0 , skew : . 08334 } , 82 : { depth : 0 , height : . 68333 , italic : . 00773 , skew : . 08334 } , 83 : { depth : 0 , height : . 68333 , italic : . 05764 , skew : . 08334 } , 84 : { depth : 0 , height : . 68333 , italic : . 13889 , skew : . 08334 } , 85 : { depth : 0 , height : . 68333 , italic : . 10903 , skew : . 02778 } , 86 : { depth : 0 , height : . 68333 , italic : . 22222 , skew : 0 } , 87 : { depth : 0 , height : . 68333 , italic : . 13889 , skew : 0 } , 88 : { depth : 0 , height : . 68333 , italic : . 07847 , skew : . 08334 } , 89 : { depth : 0 , height : . 68333 , italic : . 22222 , skew : 0 } , 90 : { depth : 0 , height : . 68333 , italic : . 07153 , skew : . 08334 } , 97 : { depth : 0 , height : . 43056 , italic : 0 , skew : 0 } , 98 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 99 : { depth : 0 , height : . 43056 , italic : 0 , skew : . 05556 } , 100 : { depth : 0 , height : . 69444 , italic : 0 , skew : . 16667 } , 101 : { depth : 0 , height : . 43056 , italic : 0 , skew : . 05556 } , 102 : { depth : . 19444 , height : . 69444 , italic : . 10764 , skew : . 16667 } , 103 : { depth : . 19444 , height : . 43056 , italic : . 03588 , skew : . 02778 } , 104 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 105 : { depth : 0 , height : . 65952 , italic : 0 , skew : 0 } , 106 : { depth : . 19444 , height : . 65952 , italic : . 05724 , skew : 0 } , 107 : { depth : 0 , height : . 69444 , italic : . 03148 , skew : 0 } , 108 : { depth : 0 , height : . 69444 , italic : . 01968 , skew : . 08334 } , 109 : { depth : 0 , height : . 43056 , italic : 0 , skew : 0 } , 110 : { depth : 0 , height : . 43056 , italic : 0 , skew : 0 } , 111 : { depth : 0 , height : . 43056 , italic : 0 , skew : . 05556 } , 112 : { depth : . 19444 , height : . 43056 , italic : 0 , skew : . 08334 } , 113 : { depth : . 19444 , height : . 43056 , italic : . 03588 , skew : . 08334 } , 114 : { depth : 0 , height : . 43056 , italic : . 02778 , skew : . 05556 } , 115 : { depth : 0 , height : . 43056 , italic : 0 , skew : . 05556 } , 116 : { depth : 0 , height : . 61508 , italic : 0 , skew : . 08334 } , 117 : { depth : 0 , height : . 43056 , italic : 0 , skew : . 02778 } , 118 : { depth : 0 , height : . 43056 , italic : . 03588 , skew : . 02778 } , 119 : { depth : 0 , height : . 43056 , italic : . 02691 , skew : . 08334 } , 120 : { depth : 0 , height : . 43056 , italic : 0 , skew : . 02778 } , 121 : { depth : . 19444 , height : . 43056 , italic : . 03588 , skew : . 05556 } , 122 : { depth : 0 , height : . 43056 , italic : . 04398 , skew : . 05556 } , 915 : { depth : 0 , height : . 68333 , italic : . 13889 , skew : . 08334 } , 916 : { depth : 0 , height : . 68333 , italic : 0 , skew : . 16667 } , 920 : { depth : 0 , height : . 68333 , italic : . 02778 , skew : . 08334 } , 923 : { depth : 0 , height : . 68333 , italic : 0 , skew : . 16667 } , 926 : { depth : 0 , height : . 68333 , italic : . 07569 , skew : . 08334 } , 928 : { depth : 0 , height : . 68333 , italic : . 08125 , skew : . 05556 } , 931 : { depth : 0 , height : . 68333 , italic : . 05764 , skew : . 08334 } , 933 : { depth : 0 , height : . 68333 , italic : . 13889 , skew : . 05556 } , 934 : { depth : 0 , height : . 68333 , italic : 0 , skew : . 08334 } , 936 : { depth : 0 , height : . 68333 , italic : . 11 , skew : . 05556 } , 937 : { depth : 0 , height : . 68333 , italic : . 05017 , skew : . 08334 } , 945 : { depth : 0 , height : . 43056 , italic : . 0037 , skew : . 02778 } , 946 : { depth : . 19444 , height : . 69444 , italic : . 05278 , skew : . 08334 } , 947 : { depth : . 19444 , height : . 43056 , italic : . 05556 , skew : 0 } , 948 : { depth : 0 , height : . 69444 , italic : . 03785 , skew : . 05556 } , 949 : { depth : 0 , height : . 43056 , italic : 0 , skew : . 08334 } , 950 : { depth : . 19444 , height : . 69444 , italic : . 07378 , skew : . 08334 } , 951 : { depth : . 19444 , height : . 43056 , italic : . 03588 , skew : . 05556 } , 952 : { depth : 0 , height : . 69444 , italic : . 02778 , skew : . 08334 } , 953 : { depth : 0 , height : . 43056 , italic : 0 , skew : . 05556 } , 954 : { depth : 0 , height : . 43056 , italic : 0 , skew : 0 } , 955 : { depth : 0 , height : . 69444 , italic : 0 , skew : 0 } , 956 : { depth : . 19444 , height : . 43056 , italic : 0 , skew : . 02778 } , 957 : { depth : 0 , height : . 43056 , italic : . 06366 , skew : . 02778 } , 958 : { depth : . 19444 , height : . 69444 , italic : . 04601 , skew : . 11111 } , 959 : { depth : 0 , height : . 43056 , italic : 0 , skew : . 05556 } , 960 : { depth : 0 , height : . 43056 , italic : . 03588 , skew : 0 } , 961 : { depth : . 19444 , height : . 43056 , italic : 0 , skew : . 08334 } , 962 :
"\\measuredangle" : { font : "ams" , group : "textord" , replace : "\u2221" } , "\\nexists" : { font : "ams" , group : "textord" , replace : "\u2204" } , "\\mho" : { font : "ams" , group : "textord" , replace : "\u2127" } , "\\Finv" : { font : "ams" , group : "textord" , replace : "\u2132" } , "\\Game" : { font : "ams" , group : "textord" , replace : "\u2141" } , "\\Bbbk" : { font : "ams" , group : "textord" , replace : "k" } , "\\backprime" : { font : "ams" , group : "textord" , replace : "\u2035" } , "\\blacktriangle" : { font : "ams" , group : "textord" , replace : "\u25b2" } , "\\blacktriangledown" : { font : "ams" , group : "textord" , replace : "\u25bc" } , "\\blacksquare" : { font : "ams" , group : "textord" , replace : "\u25a0" } , "\\blacklozenge" : { font : "ams" , group : "textord" , replace : "\u29eb" } , "\\bigstar" : { font : "ams" , group : "textord" , replace : "\u2605" } , "\\sphericalangle" : { font : "ams" , group : "textord" , replace : "\u2222" } , "\\complement" : { font : "ams" , group : "textord" , replace : "\u2201" } , "\\eth" : { font : "ams" , group : "textord" , replace : "\xf0" } , "\\diagup" : { font : "ams" , group : "textord" , replace : "\u2571" } , "\\diagdown" : { font : "ams" , group : "textord" , replace : "\u2572" } , "\\square" : { font : "ams" , group : "textord" , replace : "\u25a1" } , "\\Box" : { font : "ams" , group : "textord" , replace : "\u25a1" } , "\\Diamond" : { font : "ams" , group : "textord" , replace : "\u25ca" } , "\\yen" : { font : "ams" , group : "textord" , replace : "\xa5" } , "\\checkmark" : { font : "ams" , group : "textord" , replace : "\u2713" } , "\\beth" : { font : "ams" , group : "textord" , replace : "\u2136" } , "\\daleth" : { font : "ams" , group : "textord" , replace : "\u2138" } , "\\gimel" : { font : "ams" , group : "textord" , replace : "\u2137" } , "\\digamma" : { font : "ams" , group : "textord" , replace : "\u03dd" } , "\\varkappa" : { font : "ams" , group : "textord" , replace : "\u03f0" } , "\\ulcorner" : { font : "ams" , group : "textord" , replace : "\u250c" } , "\\urcorner" : { font : "ams" , group : "textord" , replace : "\u2510" } , "\\llcorner" : { font : "ams" , group : "textord" , replace : "\u2514" } , "\\lrcorner" : { font : "ams" , group : "textord" , replace : "\u2518" } , "\\leqq" : { font : "ams" , group : "rel" , replace : "\u2266" } , "\\leqslant" : { font : "ams" , group : "rel" , replace : "\u2a7d" } , "\\eqslantless" : { font : "ams" , group : "rel" , replace : "\u2a95" } , "\\lesssim" : { font : "ams" , group : "rel" , replace : "\u2272" } , "\\lessapprox" : { font : "ams" , group : "rel" , replace : "\u2a85" } , "\\approxeq" : { font : "ams" , group : "rel" , replace : "\u224a" } , "\\lessdot" : { font : "ams" , group : "bin" , replace : "\u22d6" } , "\\lll" : { font : "ams" , group : "rel" , replace : "\u22d8" } , "\\lessgtr" : { font : "ams" , group : "rel" , replace : "\u2276" } , "\\lesseqgtr" : { font : "ams" , group : "rel" , replace : "\u22da" } , "\\lesseqqgtr" : { font : "ams" , group : "rel" , replace : "\u2a8b" } , "\\doteqdot" : { font : "ams" , group : "rel" , replace : "\u2251" } , "\\risingdotseq" : { font : "ams" , group : "rel" , replace : "\u2253" } , "\\fallingdotseq" : { font : "ams" , group : "rel" , replace : "\u2252" } , "\\backsim" : { font : "ams" , group : "rel" , replace : "\u223d" } , "\\backsimeq" : { font : "ams" , group : "rel" , replace : "\u22cd" } , "\\subseteqq" : { font : "ams" , group : "rel" , replace : "\u2ac5" } , "\\Subset" : { font : "ams" , group : "rel" , replace : "\u22d0" } , "\\sqsubset" : { font : "ams" , group : "rel" , replace : "\u228f" } , "\\preccurlyeq" : { font : "ams" , group : "rel" , replace : "\u227c" } , "\\curlyeqprec" : { font : "ams" , group : "rel" , replace : "\u22de" } , "\\precsim" : { font : "ams" , group : "rel" , replace : "\u227e" } , "\\precapprox" : { font : "ams" , group : "rel" , replace : "\u2ab7" } , "\\vartriangleleft" : { font : "ams" , group : "rel" , replace : "\u22b2" } , "\\trianglelefteq" : { font : "ams" , group : "rel" , replace : "\u22b4" } , "\\vDash" : { font : "ams" , group : "rel" , replace : "\u22a8" } , "\\Vvdash" : { font : "ams" , group : "rel" , replace : "\u22aa" } , "\\smallsmile" : { font : "ams" , group : "rel" , replace : "\u2323" } , "\\smallfrown" : { font : "ams" , group : "rel" , replace : "\u2322" } , "\\bumpeq" : { font : "ams" , group : "rel" , replace : "\u224f" } , "\\Bumpeq" : { font : "ams" , group : "rel" , replace : "\u224e" } , "\\geqq" : { font : "ams" , group : "rel" , replace : "\u2267" } , "\\geqslant" : { font : "ams" , group : "rel" , replace : "\u2a7e" } , "\\eqslantgtr" : { font : "ams" , group : "rel" , replace : "\u2a96" } , "\\gtrsim" : { font : "ams" , group : "rel" , replace : "\u2273" } , "\\gtrapprox" : { font : "ams" , group : "rel" , replace : "\u2a86" } , "\\gtrdot" : { font : "ams" , group : "bin" , replace : "\u22d7" } , "\\ggg" : { font : "ams" , group : "rel" , replace : "\u22d9" } , "\\gtrless" : { font : "ams" , group : "rel" , replace : "\u2277" } , "\\gtreqless" : { font : "ams" , group : "rel" , replace : "\u22db" } , "\\gtreqqless" : { font : "ams" , group : "rel" , replace : "\u2a8c" } , "\\eqcirc" : { font : "ams"