├── .gitignore ├── .npmignore ├── LICENSE.md ├── README.md ├── browser.js ├── fnt ├── Arial.bin ├── Arial.json ├── Lato-Error.fnt ├── Lato-Regular-32.fnt ├── Lato-Regular-32.json ├── NexaLight32.fnt └── NexaLight32.json ├── index.js ├── json-spec.md ├── lib └── is-binary.js ├── package-lock.json ├── package.json ├── test-server.js └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | node_modules 3 | *.log 4 | .DS_Store 5 | bundle.js 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | node_modules 3 | *.log 4 | .DS_Store 5 | bundle.js 6 | test 7 | test.js 8 | fnt/ 9 | demo/ 10 | .npmignore 11 | LICENSE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | Copyright (c) 2015 Jam3 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining a copy 5 | of this software and associated documentation files (the "Software"), to deal 6 | in the Software without restriction, including without limitation the rights 7 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 8 | copies of the Software, and to permit persons to whom the Software is 9 | furnished to do so, subject to the following conditions: 10 | 11 | The above copyright notice and this permission notice shall be included in all 12 | copies or substantial portions of the Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 15 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 17 | IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 18 | DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 19 | OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE 20 | OR OTHER DEALINGS IN THE SOFTWARE. 21 | 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # load-bmfont 2 | 3 | [![stable](http://badges.github.io/stability-badges/dist/stable.svg)](http://github.com/badges/stability-badges) 4 | 5 | Loads an [AngelCode BMFont](http://www.angelcode.com/products/bmfont/) file in browser (with XHR) and node (with fs and [phin](https://github.com/ethanent/phin)), returning a [JSON representation](json-spec.md). 6 | 7 | ```js 8 | var load = require("load-bmfont"); 9 | 10 | load("fonts/Arial-32.fnt", function (err, font) { 11 | if (err) throw err; 12 | 13 | //The BMFont spec in JSON form 14 | console.log(font.common.lineHeight); 15 | console.log(font.info); 16 | console.log(font.chars); 17 | console.log(font.kernings); 18 | }); 19 | ``` 20 | 21 | Currently supported BMFont formats: 22 | 23 | - ASCII (text) 24 | - JSON 25 | - XML 26 | - binary 27 | 28 | ## See Also 29 | 30 | See [text-modules](https://github.com/mattdesl/text-modules) for related modules. 31 | 32 | ## Usage 33 | 34 | [![NPM](https://nodei.co/npm/load-bmfont.png)](https://www.npmjs.com/package/load-bmfont) 35 | 36 | #### `load(opt, cb)` 37 | 38 | Loads a BMFont file with the `opt` settings and fires the callback with `(err, font)` params once finished. If `opt` is a string, it is used as the URI. Otherwise the options can be: 39 | 40 | - `uri` or `url` the path (in Node) or URI 41 | - `binary` boolean, whether the data should be read as binary, default false 42 | - (in node) options for `fs.readFile` or [phin](https://www.npmjs.com/package/phin) 43 | - (in browser) options for [xhr](https://github.com/Raynos/xhr) 44 | 45 | To support binary files in the browser and Node, you should use `binary: true`. Otherwise the XHR request might come in the form of a UTF8 string, which will not work with binary files. This also sets up the XHR object to override mime type in older browsers. 46 | 47 | ```js 48 | load( 49 | { 50 | uri: "fonts/Arial.bin", 51 | binary: true, 52 | }, 53 | function (err, font) { 54 | console.log(font); 55 | } 56 | ); 57 | ``` 58 | 59 | ## License 60 | 61 | MIT, see [LICENSE.md](http://github.com/Jam3/load-bmfont/blob/master/LICENSE.md) for details. 62 | -------------------------------------------------------------------------------- /browser.js: -------------------------------------------------------------------------------- 1 | var xhr = require('xhr') 2 | var noop = function(){} 3 | var parseASCII = require('parse-bmfont-ascii') 4 | var parseXML = require('parse-bmfont-xml') 5 | var readBinary = require('parse-bmfont-binary') 6 | var isBinaryFormat = require('./lib/is-binary') 7 | var xtend = require('xtend') 8 | 9 | var xml2 = (function hasXML2() { 10 | return self.XMLHttpRequest && "withCredentials" in new XMLHttpRequest 11 | })() 12 | 13 | module.exports = function(opt, cb) { 14 | cb = typeof cb === 'function' ? cb : noop 15 | 16 | if (typeof opt === 'string') 17 | opt = { uri: opt } 18 | else if (!opt) 19 | opt = {} 20 | 21 | var expectBinary = opt.binary 22 | if (expectBinary) 23 | opt = getBinaryOpts(opt) 24 | 25 | xhr(opt, function(err, res, body) { 26 | if (err) 27 | return cb(err) 28 | if (!/^2/.test(res.statusCode)) 29 | return cb(new Error('http status code: '+res.statusCode)) 30 | if (!body) 31 | return cb(new Error('no body result')) 32 | 33 | var binary = false 34 | 35 | //if the response type is an array buffer, 36 | //we need to convert it into a regular Buffer object 37 | if (isArrayBuffer(body)) { 38 | var array = new Uint8Array(body) 39 | body = Buffer.from(array, 'binary') 40 | } 41 | 42 | //now check the string/Buffer response 43 | //and see if it has a binary BMF header 44 | if (isBinaryFormat(body)) { 45 | binary = true 46 | //if we have a string, turn it into a Buffer 47 | if (typeof body === 'string') 48 | body = Buffer.from(body, 'binary') 49 | } 50 | 51 | //we are not parsing a binary format, just ASCII/XML/etc 52 | if (!binary) { 53 | //might still be a buffer if responseType is 'arraybuffer' 54 | if (Buffer.isBuffer(body)) 55 | body = body.toString(opt.encoding) 56 | body = body.trim() 57 | } 58 | 59 | var result 60 | try { 61 | var type = res.headers['content-type'] 62 | if (binary) 63 | result = readBinary(body) 64 | else if (/json/.test(type) || body.charAt(0) === '{') 65 | result = JSON.parse(body) 66 | else if (/xml/.test(type) || body.charAt(0) === '<') 67 | result = parseXML(body) 68 | else 69 | result = parseASCII(body) 70 | } catch (e) { 71 | cb(new Error('error parsing font '+e.message)) 72 | cb = noop 73 | } 74 | cb(null, result) 75 | }) 76 | } 77 | 78 | function isArrayBuffer(arr) { 79 | var str = Object.prototype.toString 80 | return str.call(arr) === '[object ArrayBuffer]' 81 | } 82 | 83 | function getBinaryOpts(opt) { 84 | //IE10+ and other modern browsers support array buffers 85 | if (xml2) 86 | return xtend(opt, { responseType: 'arraybuffer' }) 87 | 88 | if (typeof self.XMLHttpRequest === 'undefined') 89 | throw new Error('your browser does not support XHR loading') 90 | 91 | //IE9 and XML1 browsers could still use an override 92 | var req = new self.XMLHttpRequest() 93 | req.overrideMimeType('text/plain; charset=x-user-defined') 94 | return xtend({ 95 | xhr: req 96 | }, opt) 97 | } 98 | -------------------------------------------------------------------------------- /fnt/Arial.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Experience-Monks/load-bmfont/9001c01806a50da2da04eed8a2392d98270a74cd/fnt/Arial.bin -------------------------------------------------------------------------------- /fnt/Arial.json: -------------------------------------------------------------------------------- 1 | {"kernings":[{"first":32,"second":65,"amount":-2},{"first":32,"second":84,"amount":-1},{"first":32,"second":89,"amount":-1},{"first":121,"second":46,"amount":-2},{"first":121,"second":44,"amount":-2},{"first":119,"second":46,"amount":-2},{"first":119,"second":44,"amount":-2},{"first":118,"second":46,"amount":-2},{"first":118,"second":44,"amount":-2},{"first":114,"second":46,"amount":-2},{"first":49,"second":49,"amount":-2},{"first":65,"second":32,"amount":-2},{"first":65,"second":84,"amount":-2},{"first":65,"second":86,"amount":-2},{"first":65,"second":87,"amount":-1},{"first":65,"second":89,"amount":-2},{"first":65,"second":118,"amount":-1},{"first":65,"second":119,"amount":-1},{"first":65,"second":121,"amount":-1},{"first":114,"second":44,"amount":-2},{"first":70,"second":44,"amount":-3},{"first":70,"second":46,"amount":-3},{"first":70,"second":65,"amount":-2},{"first":76,"second":32,"amount":-1},{"first":76,"second":84,"amount":-2},{"first":76,"second":86,"amount":-2},{"first":76,"second":87,"amount":-2},{"first":76,"second":89,"amount":-2},{"first":76,"second":121,"amount":-1},{"first":102,"second":102,"amount":-1},{"first":80,"second":32,"amount":-1},{"first":80,"second":44,"amount":-4},{"first":80,"second":46,"amount":-4},{"first":80,"second":65,"amount":-2},{"first":82,"second":84,"amount":-1},{"first":82,"second":86,"amount":-1},{"first":82,"second":87,"amount":-1},{"first":82,"second":89,"amount":-1},{"first":84,"second":32,"amount":-1},{"first":84,"second":44,"amount":-3},{"first":84,"second":45,"amount":-2},{"first":84,"second":46,"amount":-3},{"first":84,"second":58,"amount":-3},{"first":89,"second":118,"amount":-2},{"first":84,"second":65,"amount":-2},{"first":84,"second":79,"amount":-1},{"first":84,"second":97,"amount":-3},{"first":84,"second":99,"amount":-3},{"first":84,"second":101,"amount":-3},{"first":84,"second":105,"amount":-1},{"first":84,"second":111,"amount":-3},{"first":84,"second":114,"amount":-1},{"first":84,"second":115,"amount":-3},{"first":84,"second":117,"amount":-1},{"first":84,"second":119,"amount":-2},{"first":84,"second":121,"amount":-2},{"first":86,"second":44,"amount":-3},{"first":86,"second":45,"amount":-2},{"first":86,"second":46,"amount":-3},{"first":86,"second":58,"amount":-1},{"first":89,"second":117,"amount":-2},{"first":86,"second":65,"amount":-2},{"first":86,"second":97,"amount":-2},{"first":86,"second":101,"amount":-2},{"first":86,"second":105,"amount":-1},{"first":86,"second":111,"amount":-2},{"first":86,"second":114,"amount":-1},{"first":86,"second":117,"amount":-1},{"first":86,"second":121,"amount":-1},{"first":87,"second":44,"amount":-2},{"first":87,"second":45,"amount":-1},{"first":87,"second":46,"amount":-2},{"first":87,"second":58,"amount":-1},{"first":89,"second":113,"amount":-3},{"first":87,"second":65,"amount":-1},{"first":87,"second":97,"amount":-1},{"first":87,"second":101,"amount":-1},{"first":89,"second":112,"amount":-2},{"first":87,"second":111,"amount":-1},{"first":87,"second":114,"amount":-1},{"first":87,"second":117,"amount":-1},{"first":89,"second":111,"amount":-3},{"first":89,"second":32,"amount":-1},{"first":89,"second":44,"amount":-4},{"first":89,"second":45,"amount":-3},{"first":89,"second":46,"amount":-4},{"first":89,"second":58,"amount":-2},{"first":89,"second":105,"amount":-1},{"first":89,"second":65,"amount":-2},{"first":89,"second":97,"amount":-2},{"first":89,"second":101,"amount":-3}],"chars":[{"id":32,"x":155,"y":75,"width":3,"height":1,"xoffset":-1,"yoffset":31,"xadvance":8,"page":0,"chnl":15},{"id":33,"x":250,"y":116,"width":4,"height":20,"xoffset":2,"yoffset":6,"xadvance":8,"page":0,"chnl":15},{"id":34,"x":113,"y":219,"width":10,"height":7,"xoffset":0,"yoffset":6,"xadvance":10,"page":0,"chnl":15},{"id":35,"x":120,"y":120,"width":16,"height":20,"xoffset":-1,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":36,"x":124,"y":53,"width":15,"height":23,"xoffset":0,"yoffset":5,"xadvance":15,"page":0,"chnl":15},{"id":37,"x":75,"y":79,"width":22,"height":20,"xoffset":1,"yoffset":6,"xadvance":24,"page":0,"chnl":15},{"id":38,"x":186,"y":96,"width":17,"height":20,"xoffset":1,"yoffset":6,"xadvance":18,"page":0,"chnl":15},{"id":39,"x":134,"y":219,"width":5,"height":7,"xoffset":0,"yoffset":6,"xadvance":5,"page":0,"chnl":15},{"id":40,"x":220,"y":27,"width":8,"height":25,"xoffset":1,"yoffset":6,"xadvance":9,"page":0,"chnl":15},{"id":41,"x":229,"y":27,"width":8,"height":25,"xoffset":1,"yoffset":6,"xadvance":9,"page":0,"chnl":15},{"id":42,"x":101,"y":219,"width":11,"height":8,"xoffset":0,"yoffset":6,"xadvance":11,"page":0,"chnl":15},{"id":43,"x":192,"y":196,"width":14,"height":12,"xoffset":1,"yoffset":10,"xadvance":16,"page":0,"chnl":15},{"id":44,"x":148,"y":215,"width":4,"height":6,"xoffset":2,"yoffset":24,"xadvance":8,"page":0,"chnl":15},{"id":45,"x":230,"y":209,"width":9,"height":2,"xoffset":0,"yoffset":18,"xadvance":9,"page":0,"chnl":15},{"id":46,"x":148,"y":222,"width":4,"height":2,"xoffset":2,"yoffset":24,"xadvance":8,"page":0,"chnl":15},{"id":47,"x":199,"y":159,"width":10,"height":20,"xoffset":-1,"yoffset":6,"xadvance":8,"page":0,"chnl":15},{"id":48,"x":0,"y":164,"width":14,"height":20,"xoffset":0,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":49,"x":220,"y":159,"width":9,"height":20,"xoffset":2,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":50,"x":185,"y":138,"width":14,"height":20,"xoffset":0,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":51,"x":60,"y":164,"width":13,"height":20,"xoffset":1,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":52,"x":155,"y":140,"width":14,"height":20,"xoffset":0,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":53,"x":74,"y":163,"width":13,"height":20,"xoffset":1,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":54,"x":140,"y":141,"width":14,"height":20,"xoffset":0,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":55,"x":172,"y":159,"width":13,"height":20,"xoffset":1,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":56,"x":154,"y":119,"width":15,"height":20,"xoffset":0,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":57,"x":240,"y":95,"width":15,"height":20,"xoffset":0,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":58,"x":142,"y":201,"width":4,"height":15,"xoffset":2,"yoffset":11,"xadvance":8,"page":0,"chnl":15},{"id":59,"x":67,"y":185,"width":4,"height":19,"xoffset":2,"yoffset":11,"xadvance":8,"page":0,"chnl":15},{"id":60,"x":177,"y":196,"width":14,"height":13,"xoffset":1,"yoffset":10,"xadvance":16,"page":0,"chnl":15},{"id":61,"x":71,"y":221,"width":14,"height":8,"xoffset":1,"yoffset":12,"xadvance":16,"page":0,"chnl":15},{"id":62,"x":162,"y":199,"width":14,"height":13,"xoffset":1,"yoffset":10,"xadvance":16,"page":0,"chnl":15},{"id":63,"x":88,"y":163,"width":13,"height":20,"xoffset":1,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":64,"x":0,"y":0,"width":26,"height":26,"xoffset":1,"yoffset":6,"xadvance":27,"page":0,"chnl":15},{"id":65,"x":231,"y":74,"width":19,"height":20,"xoffset":-1,"yoffset":6,"xadvance":18,"page":0,"chnl":15},{"id":66,"x":137,"y":120,"width":16,"height":20,"xoffset":1,"yoffset":6,"xadvance":18,"page":0,"chnl":15},{"id":67,"x":39,"y":100,"width":18,"height":20,"xoffset":1,"yoffset":6,"xadvance":20,"page":0,"chnl":15},{"id":68,"x":168,"y":96,"width":17,"height":20,"xoffset":2,"yoffset":6,"xadvance":20,"page":0,"chnl":15},{"id":69,"x":69,"y":121,"width":16,"height":20,"xoffset":1,"yoffset":6,"xadvance":18,"page":0,"chnl":15},{"id":70,"x":170,"y":117,"width":15,"height":20,"xoffset":2,"yoffset":6,"xadvance":17,"page":0,"chnl":15},{"id":71,"x":0,"y":101,"width":19,"height":20,"xoffset":1,"yoffset":6,"xadvance":21,"page":0,"chnl":15},{"id":72,"x":132,"y":99,"width":17,"height":20,"xoffset":1,"yoffset":6,"xadvance":19,"page":0,"chnl":15},{"id":73,"x":7,"y":185,"width":4,"height":20,"xoffset":2,"yoffset":6,"xadvance":8,"page":0,"chnl":15},{"id":74,"x":186,"y":159,"width":12,"height":20,"xoffset":0,"yoffset":6,"xadvance":13,"page":0,"chnl":15},{"id":75,"x":20,"y":101,"width":18,"height":20,"xoffset":1,"yoffset":6,"xadvance":18,"page":0,"chnl":15},{"id":76,"x":170,"y":138,"width":14,"height":20,"xoffset":1,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":77,"x":167,"y":75,"width":21,"height":20,"xoffset":1,"yoffset":6,"xadvance":23,"page":0,"chnl":15},{"id":78,"x":96,"y":100,"width":17,"height":20,"xoffset":1,"yoffset":6,"xadvance":19,"page":0,"chnl":15},{"id":79,"x":210,"y":75,"width":20,"height":20,"xoffset":1,"yoffset":6,"xadvance":21,"page":0,"chnl":15},{"id":80,"x":52,"y":121,"width":16,"height":20,"xoffset":1,"yoffset":6,"xadvance":17,"page":0,"chnl":15},{"id":81,"x":155,"y":53,"width":21,"height":21,"xoffset":0,"yoffset":6,"xadvance":21,"page":0,"chnl":15},{"id":82,"x":77,"y":100,"width":18,"height":20,"xoffset":2,"yoffset":6,"xadvance":20,"page":0,"chnl":15},{"id":83,"x":35,"y":122,"width":16,"height":20,"xoffset":1,"yoffset":6,"xadvance":18,"page":0,"chnl":15},{"id":84,"x":18,"y":122,"width":16,"height":20,"xoffset":0,"yoffset":6,"xadvance":16,"page":0,"chnl":15},{"id":85,"x":222,"y":96,"width":17,"height":20,"xoffset":1,"yoffset":6,"xadvance":19,"page":0,"chnl":15},{"id":86,"x":150,"y":98,"width":17,"height":20,"xoffset":0,"yoffset":6,"xadvance":17,"page":0,"chnl":15},{"id":87,"x":227,"y":53,"width":28,"height":20,"xoffset":0,"yoffset":6,"xadvance":28,"page":0,"chnl":15},{"id":88,"x":0,"y":122,"width":17,"height":20,"xoffset":0,"yoffset":6,"xadvance":17,"page":0,"chnl":15},{"id":89,"x":58,"y":100,"width":18,"height":20,"xoffset":0,"yoffset":6,"xadvance":18,"page":0,"chnl":15},{"id":90,"x":114,"y":99,"width":17,"height":20,"xoffset":0,"yoffset":6,"xadvance":17,"page":0,"chnl":15},{"id":91,"x":0,"y":54,"width":7,"height":25,"xoffset":1,"yoffset":6,"xadvance":8,"page":0,"chnl":15},{"id":92,"x":210,"y":159,"width":9,"height":20,"xoffset":-1,"yoffset":6,"xadvance":8,"page":0,"chnl":15},{"id":93,"x":246,"y":27,"width":7,"height":25,"xoffset":0,"yoffset":6,"xadvance":8,"page":0,"chnl":15},{"id":94,"x":16,"y":222,"width":12,"height":10,"xoffset":0,"yoffset":6,"xadvance":12,"page":0,"chnl":15},{"id":95,"x":202,"y":209,"width":17,"height":2,"xoffset":-1,"yoffset":29,"xadvance":15,"page":0,"chnl":15},{"id":96,"x":170,"y":213,"width":6,"height":4,"xoffset":1,"yoffset":6,"xadvance":9,"page":0,"chnl":15},{"id":97,"x":241,"y":180,"width":14,"height":15,"xoffset":0,"yoffset":11,"xadvance":15,"page":0,"chnl":15},{"id":98,"x":215,"y":138,"width":14,"height":20,"xoffset":1,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":99,"x":91,"y":203,"width":13,"height":15,"xoffset":0,"yoffset":11,"xadvance":14,"page":0,"chnl":15},{"id":100,"x":15,"y":164,"width":14,"height":20,"xoffset":0,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":101,"x":16,"y":206,"width":15,"height":15,"xoffset":0,"yoffset":11,"xadvance":15,"page":0,"chnl":15},{"id":102,"x":245,"y":138,"width":10,"height":20,"xoffset":-1,"yoffset":6,"xadvance":7,"page":0,"chnl":15},{"id":103,"x":30,"y":164,"width":14,"height":20,"xoffset":0,"yoffset":11,"xadvance":15,"page":0,"chnl":15},{"id":104,"x":144,"y":162,"width":13,"height":20,"xoffset":1,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":105,"x":17,"y":185,"width":4,"height":20,"xoffset":1,"yoffset":6,"xadvance":6,"page":0,"chnl":15},{"id":106,"x":238,"y":27,"width":7,"height":25,"xoffset":-2,"yoffset":6,"xadvance":6,"page":0,"chnl":15},{"id":107,"x":158,"y":161,"width":13,"height":20,"xoffset":1,"yoffset":6,"xadvance":14,"page":0,"chnl":15},{"id":108,"x":12,"y":185,"width":4,"height":20,"xoffset":1,"yoffset":6,"xadvance":6,"page":0,"chnl":15},{"id":109,"x":199,"y":180,"width":20,"height":15,"xoffset":1,"yoffset":11,"xadvance":22,"page":0,"chnl":15},{"id":110,"x":77,"y":204,"width":13,"height":15,"xoffset":1,"yoffset":11,"xadvance":15,"page":0,"chnl":15},{"id":111,"x":0,"y":206,"width":15,"height":15,"xoffset":0,"yoffset":11,"xadvance":15,"page":0,"chnl":15},{"id":112,"x":80,"y":142,"width":14,"height":20,"xoffset":1,"yoffset":11,"xadvance":15,"page":0,"chnl":15},{"id":113,"x":95,"y":142,"width":14,"height":20,"xoffset":0,"yoffset":11,"xadvance":15,"page":0,"chnl":15},{"id":114,"x":132,"y":203,"width":9,"height":15,"xoffset":1,"yoffset":11,"xadvance":9,"page":0,"chnl":15},{"id":115,"x":48,"y":205,"width":14,"height":15,"xoffset":0,"yoffset":11,"xadvance":14,"page":0,"chnl":15},{"id":116,"x":239,"y":159,"width":8,"height":20,"xoffset":0,"yoffset":6,"xadvance":8,"page":0,"chnl":15},{"id":117,"x":105,"y":203,"width":13,"height":15,"xoffset":1,"yoffset":11,"xadvance":15,"page":0,"chnl":15},{"id":118,"x":32,"y":205,"width":15,"height":15,"xoffset":-1,"yoffset":11,"xadvance":13,"page":0,"chnl":15},{"id":119,"x":220,"y":180,"width":20,"height":15,"xoffset":-1,"yoffset":11,"xadvance":19,"page":0,"chnl":15},{"id":120,"x":119,"y":203,"width":12,"height":15,"xoffset":0,"yoffset":11,"xadvance":12,"page":0,"chnl":15},{"id":121,"x":230,"y":138,"width":14,"height":20,"xoffset":0,"yoffset":11,"xadvance":14,"page":0,"chnl":15},{"id":122,"x":63,"y":205,"width":13,"height":15,"xoffset":0,"yoffset":11,"xadvance":13,"page":0,"chnl":15},{"id":123,"x":200,"y":27,"width":9,"height":25,"xoffset":0,"yoffset":6,"xadvance":9,"page":0,"chnl":15},{"id":124,"x":13,"y":54,"width":4,"height":25,"xoffset":1,"yoffset":6,"xadvance":6,"page":0,"chnl":15},{"id":125,"x":210,"y":27,"width":9,"height":25,"xoffset":0,"yoffset":6,"xadvance":9,"page":0,"chnl":15},{"id":126,"x":153,"y":215,"width":16,"height":4,"xoffset":0,"yoffset":14,"xadvance":16,"page":0,"chnl":15},{"id":160,"x":159,"y":75,"width":3,"height":1,"xoffset":-1,"yoffset":31,"xadvance":8,"page":0,"chnl":15},{"id":161,"x":251,"y":74,"width":4,"height":20,"xoffset":2,"yoffset":11,"xadvance":8,"page":0,"chnl":15},{"id":162,"x":186,"y":27,"width":13,"height":25,"xoffset":1,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":163,"x":218,"y":117,"width":15,"height":20,"xoffset":0,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":164,"x":147,"y":201,"width":14,"height":13,"xoffset":0,"yoffset":10,"xadvance":15,"page":0,"chnl":15},{"id":165,"x":86,"y":121,"width":16,"height":20,"xoffset":-1,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":166,"x":8,"y":54,"width":4,"height":25,"xoffset":1,"yoffset":6,"xadvance":6,"page":0,"chnl":15},{"id":167,"x":156,"y":27,"width":14,"height":25,"xoffset":0,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":168,"x":240,"y":208,"width":9,"height":2,"xoffset":0,"yoffset":6,"xadvance":9,"page":0,"chnl":15},{"id":169,"x":121,"y":78,"width":22,"height":20,"xoffset":-1,"yoffset":6,"xadvance":20,"page":0,"chnl":15},{"id":170,"x":40,"y":221,"width":10,"height":10,"xoffset":0,"yoffset":6,"xadvance":10,"page":0,"chnl":15},{"id":171,"x":221,"y":196,"width":13,"height":12,"xoffset":1,"yoffset":13,"xadvance":15,"page":0,"chnl":15},{"id":172,"x":86,"y":220,"width":14,"height":8,"xoffset":1,"yoffset":12,"xadvance":16,"page":0,"chnl":15},{"id":173,"x":220,"y":209,"width":9,"height":2,"xoffset":0,"yoffset":18,"xadvance":9,"page":0,"chnl":15},{"id":174,"x":98,"y":78,"width":22,"height":20,"xoffset":-1,"yoffset":6,"xadvance":20,"page":0,"chnl":15},{"id":175,"x":184,"y":210,"width":17,"height":2,"xoffset":-1,"yoffset":3,"xadvance":15,"page":0,"chnl":15},{"id":176,"x":124,"y":219,"width":9,"height":7,"xoffset":1,"yoffset":6,"xadvance":11,"page":0,"chnl":15},{"id":177,"x":158,"y":182,"width":15,"height":16,"xoffset":0,"yoffset":10,"xadvance":15,"page":0,"chnl":15},{"id":178,"x":61,"y":221,"width":9,"height":10,"xoffset":0,"yoffset":6,"xadvance":9,"page":0,"chnl":15},{"id":179,"x":51,"y":221,"width":9,"height":10,"xoffset":0,"yoffset":6,"xadvance":9,"page":0,"chnl":15},{"id":180,"x":177,"y":210,"width":6,"height":4,"xoffset":2,"yoffset":6,"xadvance":9,"page":0,"chnl":15},{"id":181,"x":110,"y":142,"width":14,"height":20,"xoffset":1,"yoffset":11,"xadvance":16,"page":0,"chnl":15},{"id":182,"x":105,"y":27,"width":17,"height":25,"xoffset":-1,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":183,"x":250,"y":207,"width":5,"height":2,"xoffset":2,"yoffset":16,"xadvance":9,"page":0,"chnl":15},{"id":184,"x":140,"y":219,"width":7,"height":6,"xoffset":1,"yoffset":26,"xadvance":9,"page":0,"chnl":15},{"id":185,"x":249,"y":196,"width":6,"height":10,"xoffset":1,"yoffset":6,"xadvance":9,"page":0,"chnl":15},{"id":186,"x":29,"y":222,"width":10,"height":10,"xoffset":0,"yoffset":6,"xadvance":10,"page":0,"chnl":15},{"id":187,"x":207,"y":196,"width":13,"height":12,"xoffset":1,"yoffset":13,"xadvance":15,"page":0,"chnl":15},{"id":188,"x":144,"y":77,"width":22,"height":20,"xoffset":1,"yoffset":6,"xadvance":23,"page":0,"chnl":15},{"id":189,"x":52,"y":79,"width":22,"height":20,"xoffset":1,"yoffset":6,"xadvance":23,"page":0,"chnl":15},{"id":190,"x":28,"y":79,"width":23,"height":20,"xoffset":0,"yoffset":6,"xadvance":23,"page":0,"chnl":15},{"id":191,"x":202,"y":117,"width":15,"height":20,"xoffset":1,"yoffset":11,"xadvance":17,"page":0,"chnl":15},{"id":192,"x":130,"y":0,"width":19,"height":26,"xoffset":-1,"yoffset":0,"xadvance":18,"page":0,"chnl":15},{"id":193,"x":110,"y":0,"width":19,"height":26,"xoffset":-1,"yoffset":0,"xadvance":18,"page":0,"chnl":15},{"id":194,"x":90,"y":0,"width":19,"height":26,"xoffset":-1,"yoffset":0,"xadvance":18,"page":0,"chnl":15},{"id":195,"x":85,"y":27,"width":19,"height":25,"xoffset":-1,"yoffset":1,"xadvance":18,"page":0,"chnl":15},{"id":196,"x":59,"y":54,"width":19,"height":24,"xoffset":-1,"yoffset":2,"xadvance":18,"page":0,"chnl":15},{"id":197,"x":39,"y":54,"width":19,"height":24,"xoffset":-1,"yoffset":2,"xadvance":18,"page":0,"chnl":15},{"id":198,"x":0,"y":80,"width":27,"height":20,"xoffset":-1,"yoffset":6,"xadvance":27,"page":0,"chnl":15},{"id":199,"x":150,"y":0,"width":18,"height":26,"xoffset":1,"yoffset":6,"xadvance":20,"page":0,"chnl":15},{"id":200,"x":17,"y":27,"width":16,"height":26,"xoffset":1,"yoffset":0,"xadvance":18,"page":0,"chnl":15},{"id":201,"x":34,"y":27,"width":16,"height":26,"xoffset":1,"yoffset":0,"xadvance":18,"page":0,"chnl":15},{"id":202,"x":0,"y":27,"width":16,"height":26,"xoffset":1,"yoffset":0,"xadvance":18,"page":0,"chnl":15},{"id":203,"x":97,"y":53,"width":16,"height":24,"xoffset":1,"yoffset":2,"xadvance":18,"page":0,"chnl":15},{"id":204,"x":58,"y":27,"width":5,"height":26,"xoffset":1,"yoffset":0,"xadvance":8,"page":0,"chnl":15},{"id":205,"x":51,"y":27,"width":6,"height":26,"xoffset":2,"yoffset":0,"xadvance":8,"page":0,"chnl":15},{"id":206,"x":242,"y":0,"width":10,"height":26,"xoffset":-1,"yoffset":0,"xadvance":8,"page":0,"chnl":15},{"id":207,"x":114,"y":53,"width":9,"height":24,"xoffset":-1,"yoffset":2,"xadvance":8,"page":0,"chnl":15},{"id":208,"x":189,"y":75,"width":20,"height":20,"xoffset":-1,"yoffset":6,"xadvance":20,"page":0,"chnl":15},{"id":209,"x":123,"y":27,"width":17,"height":25,"xoffset":1,"yoffset":1,"xadvance":19,"page":0,"chnl":15},{"id":210,"x":69,"y":0,"width":20,"height":26,"xoffset":1,"yoffset":0,"xadvance":21,"page":0,"chnl":15},{"id":211,"x":48,"y":0,"width":20,"height":26,"xoffset":1,"yoffset":0,"xadvance":21,"page":0,"chnl":15},{"id":212,"x":27,"y":0,"width":20,"height":26,"xoffset":1,"yoffset":0,"xadvance":21,"page":0,"chnl":15},{"id":213,"x":64,"y":27,"width":20,"height":25,"xoffset":1,"yoffset":1,"xadvance":21,"page":0,"chnl":15},{"id":214,"x":18,"y":54,"width":20,"height":24,"xoffset":1,"yoffset":2,"xadvance":21,"page":0,"chnl":15},{"id":215,"x":235,"y":196,"width":13,"height":11,"xoffset":1,"yoffset":11,"xadvance":16,"page":0,"chnl":15},{"id":216,"x":177,"y":53,"width":20,"height":21,"xoffset":0,"yoffset":6,"xadvance":21,"page":0,"chnl":15},{"id":217,"x":224,"y":0,"width":17,"height":26,"xoffset":1,"yoffset":0,"xadvance":19,"page":0,"chnl":15},{"id":218,"x":206,"y":0,"width":17,"height":26,"xoffset":1,"yoffset":0,"xadvance":19,"page":0,"chnl":15},{"id":219,"x":188,"y":0,"width":17,"height":26,"xoffset":1,"yoffset":0,"xadvance":19,"page":0,"chnl":15},{"id":220,"x":79,"y":53,"width":17,"height":24,"xoffset":1,"yoffset":2,"xadvance":19,"page":0,"chnl":15},{"id":221,"x":169,"y":0,"width":18,"height":26,"xoffset":0,"yoffset":0,"xadvance":18,"page":0,"chnl":15},{"id":222,"x":204,"y":96,"width":17,"height":20,"xoffset":1,"yoffset":6,"xadvance":18,"page":0,"chnl":15},{"id":223,"x":103,"y":121,"width":16,"height":20,"xoffset":1,"yoffset":6,"xadvance":17,"page":0,"chnl":15},{"id":224,"x":45,"y":164,"width":14,"height":20,"xoffset":0,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":225,"x":200,"y":138,"width":14,"height":20,"xoffset":0,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":226,"x":125,"y":141,"width":14,"height":20,"xoffset":0,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":227,"x":38,"y":185,"width":14,"height":19,"xoffset":0,"yoffset":7,"xadvance":15,"page":0,"chnl":15},{"id":228,"x":104,"y":184,"width":14,"height":18,"xoffset":0,"yoffset":8,"xadvance":15,"page":0,"chnl":15},{"id":229,"x":198,"y":53,"width":14,"height":21,"xoffset":0,"yoffset":5,"xadvance":15,"page":0,"chnl":15},{"id":230,"x":174,"y":180,"width":24,"height":15,"xoffset":0,"yoffset":11,"xadvance":24,"page":0,"chnl":15},{"id":231,"x":213,"y":53,"width":13,"height":21,"xoffset":0,"yoffset":11,"xadvance":14,"page":0,"chnl":15},{"id":232,"x":186,"y":117,"width":15,"height":20,"xoffset":0,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":233,"x":0,"y":143,"width":15,"height":20,"xoffset":0,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":234,"x":16,"y":143,"width":15,"height":20,"xoffset":0,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":235,"x":88,"y":184,"width":15,"height":18,"xoffset":0,"yoffset":8,"xadvance":15,"page":0,"chnl":15},{"id":236,"x":0,"y":185,"width":6,"height":20,"xoffset":-1,"yoffset":6,"xadvance":6,"page":0,"chnl":15},{"id":237,"x":248,"y":159,"width":6,"height":20,"xoffset":1,"yoffset":6,"xadvance":6,"page":0,"chnl":15},{"id":238,"x":230,"y":159,"width":8,"height":20,"xoffset":-1,"yoffset":6,"xadvance":6,"page":0,"chnl":15},{"id":239,"x":133,"y":183,"width":8,"height":18,"xoffset":-1,"yoffset":8,"xadvance":6,"page":0,"chnl":15},{"id":240,"x":234,"y":117,"width":15,"height":20,"xoffset":0,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":241,"x":53,"y":185,"width":13,"height":19,"xoffset":1,"yoffset":7,"xadvance":15,"page":0,"chnl":15},{"id":242,"x":32,"y":143,"width":15,"height":20,"xoffset":0,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":243,"x":48,"y":143,"width":15,"height":20,"xoffset":0,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":244,"x":64,"y":142,"width":15,"height":20,"xoffset":0,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":245,"x":22,"y":185,"width":15,"height":19,"xoffset":0,"yoffset":7,"xadvance":15,"page":0,"chnl":15},{"id":246,"x":72,"y":185,"width":15,"height":18,"xoffset":0,"yoffset":8,"xadvance":15,"page":0,"chnl":15},{"id":247,"x":0,"y":222,"width":15,"height":10,"xoffset":0,"yoffset":11,"xadvance":15,"page":0,"chnl":15},{"id":248,"x":142,"y":183,"width":15,"height":17,"xoffset":1,"yoffset":10,"xadvance":17,"page":0,"chnl":15},{"id":249,"x":102,"y":163,"width":13,"height":20,"xoffset":1,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":250,"x":116,"y":163,"width":13,"height":20,"xoffset":1,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":251,"x":130,"y":162,"width":13,"height":20,"xoffset":1,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":252,"x":119,"y":184,"width":13,"height":18,"xoffset":1,"yoffset":8,"xadvance":15,"page":0,"chnl":15},{"id":253,"x":171,"y":27,"width":14,"height":25,"xoffset":0,"yoffset":6,"xadvance":14,"page":0,"chnl":15},{"id":254,"x":141,"y":27,"width":14,"height":25,"xoffset":1,"yoffset":6,"xadvance":15,"page":0,"chnl":15},{"id":255,"x":140,"y":53,"width":14,"height":23,"xoffset":0,"yoffset":8,"xadvance":14,"page":0,"chnl":15}],"info":{"size":32,"smooth":1,"unicode":1,"italic":0,"bold":0,"charset":"","stretchH":100,"aa":1,"padding":[0,0,0,0],"spacing":[1,1],"outline":0,"face":"Arial"},"common":{"lineHeight":32,"base":26,"scaleW":256,"scaleH":256,"pages":1,"packed":0,"alphaChnl":1,"redChnl":0,"greenChnl":0,"blueChnl":0},"pages":["font-bin_0.tga"]} -------------------------------------------------------------------------------- /fnt/Lato-Error.fnt: -------------------------------------------------------------------------------- 1 | {/"pages":["lato.png"],"chars":[{"id":10,"x":185,"y":424,"width":17,"height":24,"xoffset":0,"yoffset":8,"xadvance":17,"page":0,"chnl":0},{"id":32,"x":0,"y":0,"width":0,"height":0,"xoffset":0,"yoffset":0,"xadvance":6,"page":0,"chnl":0},{"id":33,"x":40,"y":438,"width":5,"height":24,"xoffset":3,"yoffset":8,"xadvance":11,"page":0,"chnl":0},{"id":34,"x":71,"y":437,"width":9,"height":8,"xoffset":2,"yoffset":8,"xadvance":13,"page":0,"chnl":0},{"id":35,"x":355,"y":194,"width":18,"height":24,"xoffset":0,"yoffset":8,"xadvance":19,"page":0,"chnl":0},{"id":36,"x":247,"y":277,"width":16,"height":31,"xoffset":1,"yoffset":5,"xadvance":19,"page":0,"chnl":0},{"id":37,"x":330,"y":194,"width":23,"height":24,"xoffset":1,"yoffset":8,"xadvance":25,"page":0,"chnl":0},{"id":38,"x":375,"y":194,"width":22,"height":24,"xoffset":1,"yoffset":8,"xadvance":23,"page":0,"chnl":0},{"id":39,"x":40,"y":207,"width":3,"height":8,"xoffset":2,"yoffset":8,"xadvance":7,"page":0,"chnl":0},{"id":40,"x":103,"y":353,"width":7,"height":31,"xoffset":2,"yoffset":6,"xadvance":10,"page":0,"chnl":0},{"id":41,"x":139,"y":480,"width":7,"height":31,"xoffset":1,"yoffset":6,"xadvance":10,"page":0,"chnl":0},{"id":42,"x":82,"y":437,"width":11,"height":11,"xoffset":1,"yoffset":7,"xadvance":13,"page":0,"chnl":0},{"id":43,"x":204,"y":399,"width":16,"height":16,"xoffset":1,"yoffset":13,"xadvance":19,"page":0,"chnl":0},{"id":44,"x":40,"y":464,"width":5,"height":9,"xoffset":1,"yoffset":28,"xadvance":7,"page":0,"chnl":0},{"id":45,"x":79,"y":277,"width":9,"height":3,"xoffset":1,"yoffset":20,"xadvance":11,"page":0,"chnl":0},{"id":46,"x":40,"y":217,"width":5,"height":4,"xoffset":1,"yoffset":28,"xadvance":7,"page":0,"chnl":0},{"id":47,"x":247,"y":220,"width":14,"height":26,"xoffset":-1,"yoffset":8,"xadvance":12,"page":0,"chnl":0},{"id":48,"x":310,"y":194,"width":18,"height":24,"xoffset":0,"yoffset":8,"xadvance":19,"page":0,"chnl":0},{"id":49,"x":204,"y":424,"width":14,"height":24,"xoffset":3,"yoffset":8,"xadvance":19,"page":0,"chnl":0},{"id":50,"x":185,"y":450,"width":16,"height":24,"xoffset":1,"yoffset":8,"xadvance":19,"page":0,"chnl":0},{"id":51,"x":203,"y":450,"width":17,"height":24,"xoffset":1,"yoffset":8,"xadvance":19,"page":0,"chnl":0},{"id":52,"x":185,"y":476,"width":18,"height":24,"xoffset":0,"yoffset":8,"xadvance":19,"page":0,"chnl":0},{"id":53,"x":205,"y":476,"width":16,"height":24,"xoffset":1,"yoffset":8,"xadvance":19,"page":0,"chnl":0},{"id":54,"x":236,"y":194,"width":17,"height":24,"xoffset":1,"yoffset":8,"xadvance":19,"page":0,"chnl":0},{"id":55,"x":255,"y":194,"width":17,"height":24,"xoffset":1,"yoffset":8,"xadvance":19,"page":0,"chnl":0},{"id":56,"x":274,"y":194,"width":16,"height":24,"xoffset":1,"yoffset":8,"xadvance":19,"page":0,"chnl":0},{"id":57,"x":292,"y":194,"width":16,"height":24,"xoffset":2,"yoffset":8,"xadvance":19,"page":0,"chnl":0},{"id":58,"x":449,"y":84,"width":5,"height":17,"xoffset":2,"yoffset":15,"xadvance":8,"page":0,"chnl":0},{"id":59,"x":87,"y":198,"width":5,"height":22,"xoffset":2,"yoffset":15,"xadvance":8,"page":0,"chnl":0},{"id":60,"x":219,"y":336,"width":13,"height":16,"xoffset":2,"yoffset":13,"xadvance":19,"page":0,"chnl":0},{"id":61,"x":147,"y":98,"width":15,"height":8,"xoffset":2,"yoffset":17,"xadvance":19,"page":0,"chnl":0},{"id":62,"x":203,"y":380,"width":14,"height":16,"xoffset":3,"yoffset":13,"xadvance":19,"page":0,"chnl":0},{"id":63,"x":220,"y":424,"width":13,"height":24,"xoffset":0,"yoffset":8,"xadvance":13,"page":0,"chnl":0},{"id":64,"x":247,"y":248,"width":25,"height":27,"xoffset":1,"yoffset":9,"xadvance":26,"page":0,"chnl":0},{"id":65,"x":315,"y":108,"width":22,"height":24,"xoffset":0,"yoffset":8,"xadvance":22,"page":0,"chnl":0},{"id":66,"x":76,"y":283,"width":17,"height":24,"xoffset":2,"yoffset":8,"xadvance":21,"page":0,"chnl":0},{"id":67,"x":339,"y":108,"width":20,"height":24,"xoffset":1,"yoffset":8,"xadvance":22,"page":0,"chnl":0},{"id":68,"x":361,"y":108,"width":21,"height":24,"xoffset":2,"yoffset":8,"xadvance":24,"page":0,"chnl":0},{"id":69,"x":78,"y":318,"width":15,"height":24,"xoffset":2,"yoffset":8,"xadvance":19,"page":0,"chnl":0},{"id":70,"x":78,"y":367,"width":15,"height":24,"xoffset":2,"yoffset":8,"xadvance":18,"page":0,"chnl":0},{"id":71,"x":384,"y":108,"width":21,"height":24,"xoffset":1,"yoffset":8,"xadvance":23,"page":0,"chnl":0},{"id":72,"x":407,"y":108,"width":20,"height":24,"xoffset":2,"yoffset":8,"xadvance":24,"page":0,"chnl":0},{"id":73,"x":32,"y":262,"width":4,"height":24,"xoffset":3,"yoffset":8,"xadvance":10,"page":0,"chnl":0},{"id":74,"x":498,"y":49,"width":12,"height":24,"xoffset":0,"yoffset":8,"xadvance":14,"page":0,"chnl":0},{"id":75,"x":429,"y":108,"width":19,"height":24,"xoffset":3,"yoffset":8,"xadvance":22,"page":0,"chnl":0},{"id":76,"x":96,"y":415,"width":14,"height":24,"xoffset":2,"yoffset":8,"xadvance":16,"page":0,"chnl":0},{"id":77,"x":450,"y":108,"width":25,"height":24,"xoffset":2,"yoffset":8,"xadvance":29,"page":0,"chnl":0},{"id":78,"x":477,"y":108,"width":20,"height":24,"xoffset":2,"yoffset":8,"xadvance":24,"page":0,"chnl":0},{"id":79,"x":113,"y":480,"width":24,"height":24,"xoffset":1,"yoffset":8,"xadvance":26,"page":0,"chnl":0},{"id":80,"x":371,"y":142,"width":16,"height":24,"xoffset":3,"yoffset":8,"xadvance":20,"page":0,"chnl":0},{"id":81,"x":389,"y":142,"width":25,"height":29,"xoffset":1,"yoffset":8,"xadvance":26,"page":0,"chnl":0},{"id":82,"x":416,"y":142,"width":18,"height":24,"xoffset":3,"yoffset":8,"xadvance":21,"page":0,"chnl":0},{"id":83,"x":371,"y":168,"width":16,"height":24,"xoffset":0,"yoffset":8,"xadvance":17,"page":0,"chnl":0},{"id":84,"x":436,"y":142,"width":19,"height":24,"xoffset":0,"yoffset":8,"xadvance":19,"page":0,"chnl":0},{"id":85,"x":436,"y":168,"width":19,"height":24,"xoffset":2,"yoffset":8,"xadvance":23,"page":0,"chnl":0},{"id":86,"x":457,"y":142,"width":22,"height":24,"xoffset":0,"yoffset":8,"xadvance":22,"page":0,"chnl":0},{"id":87,"x":185,"y":310,"width":33,"height":24,"xoffset":0,"yoffset":8,"xadvance":33,"page":0,"chnl":0},{"id":88,"x":457,"y":168,"width":21,"height":24,"xoffset":0,"yoffset":8,"xadvance":21,"page":0,"chnl":0},{"id":89,"x":481,"y":142,"width":21,"height":24,"xoffset":0,"yoffset":8,"xadvance":20,"page":0,"chnl":0},{"id":90,"x":416,"y":168,"width":18,"height":24,"xoffset":1,"yoffset":8,"xadvance":20,"page":0,"chnl":0},{"id":91,"x":174,"y":387,"width":7,"height":31,"xoffset":2,"yoffset":6,"xadvance":10,"page":0,"chnl":0},{"id":92,"x":263,"y":220,"width":14,"height":26,"xoffset":-1,"yoffset":8,"xadvance":12,"page":0,"chnl":0},{"id":93,"x":223,"y":476,"width":7,"height":31,"xoffset":1,"yoffset":6,"xadvance":10,"page":0,"chnl":0},{"id":94,"x":319,"y":95,"width":14,"height":11,"xoffset":2,"yoffset":8,"xadvance":19,"page":0,"chnl":0},{"id":95,"x":76,"y":309,"width":13,"height":3,"xoffset":0,"yoffset":34,"xadvance":13,"page":0,"chnl":0},{"id":96,"x":32,"y":236,"width":7,"height":5,"xoffset":0,"yoffset":8,"xadvance":10,"page":0,"chnl":0},{"id":97,"x":78,"y":344,"width":14,"height":17,"xoffset":1,"yoffset":15,"xadvance":16,"page":0,"chnl":0},{"id":98,"x":96,"y":441,"width":15,"height":24,"xoffset":2,"yoffset":8,"xadvance":18,"page":0,"chnl":0},{"id":99,"x":237,"y":84,"width":14,"height":17,"xoffset":1,"yoffset":15,"xadvance":15,"page":0,"chnl":0},{"id":100,"x":96,"y":467,"width":15,"height":24,"xoffset":1,"yoffset":8,"xadvance":18,"page":0,"chnl":0},{"id":101,"x":255,"y":84,"width":15,"height":17,"xoffset":1,"yoffset":15,"xadvance":17,"page":0,"chnl":0},{"id":102,"x":499,"y":108,"width":11,"height":24,"xoffset":0,"yoffset":8,"xadvance":11,"page":0,"chnl":0},{"id":103,"x":481,"y":168,"width":16,"height":23,"xoffset":0,"yoffset":15,"xadvance":16,"page":0,"chnl":0},{"id":104,"x":218,"y":247,"width":14,"height":24,"xoffset":2,"yoffset":8,"xadvance":18,"page":0,"chnl":0},{"id":105,"x":38,"y":262,"width":5,"height":24,"xoffset":2,"yoffset":8,"xadvance":8,"page":0,"chnl":0},{"id":106,"x":86,"y":149,"width":8,"height":30,"xoffset":-1,"yoffset":8,"xadvance":8,"page":0,"chnl":0},{"id":107,"x":218,"y":273,"width":15,"height":24,"xoffset":2,"yoffset":8,"xadvance":17,"page":0,"chnl":0},{"id":108,"x":41,"y":341,"width":4,"height":24,"xoffset":2,"yoffset":8,"xadvance":8,"page":0,"chnl":0},{"id":109,"x":382,"y":85,"width":23,"height":17,"xoffset":2,"yoffset":15,"xadvance":26,"page":0,"chnl":0},{"id":110,"x":433,"y":84,"width":14,"height":17,"xoffset":2,"yoffset":15,"xadvance":18,"page":0,"chnl":0},{"id":111,"x":389,"y":173,"width":16,"height":17,"xoffset":1,"yoffset":15,"xadvance":18,"page":0,"chnl":0},{"id":112,"x":496,"y":83,"width":15,"height":23,"xoffset":2,"yoffset":15,"xadvance":18,"page":0,"chnl":0},{"id":113,"x":185,"y":336,"width":15,"height":23,"xoffset":1,"yoffset":15,"xadvance":18,"page":0,"chnl":0},{"id":114,"x":272,"y":84,"width":11,"height":17,"xoffset":2,"yoffset":15,"xadvance":13,"page":0,"chnl":0},{"id":115,"x":96,"y":493,"width":13,"height":17,"xoffset":0,"yoffset":15,"xadvance":14,"page":0,"chnl":0},{"id":116,"x":499,"y":168,"width":12,"height":23,"xoffset":0,"yoffset":9,"xadvance":12,"page":0,"chnl":0},{"id":117,"x":202,"y":336,"width":15,"height":17,"xoffset":1,"yoffset":15,"xadvance":18,"page":0,"chnl":0},{"id":118,"x":185,"y":361,"width":17,"height":17,"xoffset":0,"yoffset":15,"xadvance":16,"page":0,"chnl":0},{"id":119,"x":204,"y":361,"width":25,"height":17,"xoffset":0,"yoffset":15,"xadvance":25,"page":0,"chnl":0},{"id":120,"x":185,"y":380,"width":16,"height":17,"xoffset":0,"yoffset":15,"xadvance":16,"page":0,"chnl":0},{"id":121,"x":185,"y":399,"width":17,"height":23,"xoffset":0,"yoffset":15,"xadvance":16,"page":0,"chnl":0},{"id":122,"x":220,"y":310,"width":13,"height":17,"xoffset":1,"yoffset":15,"xadvance":15,"page":0,"chnl":0},{"id":123,"x":236,"y":220,"width":9,"height":31,"xoffset":0,"yoffset":6,"xadvance":10,"page":0,"chnl":0},{"id":124,"x":91,"y":99,"width":3,"height":31,"xoffset":3,"yoffset":7,"xadvance":10,"page":0,"chnl":0},{"id":125,"x":236,"y":253,"width":8,"height":31,"xoffset":1,"yoffset":6,"xadvance":10,"page":0,"chnl":0},{"id":126,"x":78,"y":393,"width":16,"height":6,"xoffset":1,"yoffset":19,"xadvance":19,"page":0,"chnl":0}],"kernings":[{"first":34,"second":38,"amount":-4},{"first":34,"second":44,"amount":-5},{"first":34,"second":45,"amount":-4},{"first":34,"second":46,"amount":-5},{"first":34,"second":47,"amount":-4},{"first":34,"second":64,"amount":-2},{"first":34,"second":65,"amount":-4},{"first":34,"second":67,"amount":-2},{"first":34,"second":71,"amount":-2},{"first":34,"second":79,"amount":-2},{"first":34,"second":81,"amount":-2},{"first":34,"second":86,"amount":1},{"first":34,"second":87,"amount":1},{"first":34,"second":92,"amount":1},{"first":34,"second":97,"amount":-2},{"first":34,"second":99,"amount":-2},{"first":34,"second":100,"amount":-2},{"first":34,"second":101,"amount":-2},{"first":34,"second":111,"amount":-2},{"first":34,"second":113,"amount":-2},{"first":39,"second":38,"amount":-4},{"first":39,"second":44,"amount":-5},{"first":39,"second":45,"amount":-4},{"first":39,"second":46,"amount":-5},{"first":39,"second":47,"amount":-4},{"first":39,"second":64,"amount":-2},{"first":39,"second":65,"amount":-4},{"first":39,"second":67,"amount":-2},{"first":39,"second":71,"amount":-2},{"first":39,"second":79,"amount":-2},{"first":39,"second":81,"amount":-2},{"first":39,"second":86,"amount":1},{"first":39,"second":87,"amount":1},{"first":39,"second":92,"amount":1},{"first":39,"second":97,"amount":-2},{"first":39,"second":99,"amount":-2},{"first":39,"second":100,"amount":-2},{"first":39,"second":101,"amount":-2},{"first":39,"second":111,"amount":-2},{"first":39,"second":113,"amount":-2},{"first":40,"second":64,"amount":-2},{"first":40,"second":67,"amount":-2},{"first":40,"second":71,"amount":-2},{"first":40,"second":79,"amount":-2},{"first":40,"second":81,"amount":-2},{"first":40,"second":99,"amount":-2},{"first":40,"second":100,"amount":-2},{"first":40,"second":101,"amount":-2},{"first":40,"second":111,"amount":-2},{"first":40,"second":113,"amount":-2},{"first":42,"second":38,"amount":-4},{"first":42,"second":44,"amount":-5},{"first":42,"second":45,"amount":-4},{"first":42,"second":46,"amount":-5},{"first":42,"second":47,"amount":-4},{"first":42,"second":64,"amount":-2},{"first":42,"second":65,"amount":-4},{"first":42,"second":67,"amount":-2},{"first":42,"second":71,"amount":-2},{"first":42,"second":79,"amount":-2},{"first":42,"second":81,"amount":-2},{"first":42,"second":86,"amount":1},{"first":42,"second":87,"amount":1},{"first":42,"second":92,"amount":1},{"first":42,"second":97,"amount":-2},{"first":42,"second":99,"amount":-2},{"first":42,"second":100,"amount":-2},{"first":42,"second":101,"amount":-2},{"first":42,"second":111,"amount":-2},{"first":42,"second":113,"amount":-2},{"first":44,"second":34,"amount":-5},{"first":44,"second":39,"amount":-5},{"first":44,"second":42,"amount":-5},{"first":44,"second":45,"amount":-3},{"first":44,"second":64,"amount":-2},{"first":44,"second":67,"amount":-2},{"first":44,"second":71,"amount":-2},{"first":44,"second":79,"amount":-2},{"first":44,"second":81,"amount":-2},{"first":44,"second":84,"amount":-4},{"first":44,"second":86,"amount":-4},{"first":44,"second":87,"amount":-3},{"first":44,"second":89,"amount":-3},{"first":44,"second":92,"amount":-4},{"first":44,"second":118,"amount":-3},{"first":44,"second":119,"amount":-2},{"first":44,"second":121,"amount":-3},{"first":45,"second":34,"amount":-4},{"first":45,"second":38,"amount":-2},{"first":45,"second":39,"amount":-4},{"first":45,"second":42,"amount":-4},{"first":45,"second":44,"amount":-3},{"first":45,"second":46,"amount":-3},{"first":45,"second":47,"amount":-2},{"first":45,"second":65,"amount":-2},{"first":45,"second":84,"amount":-4},{"first":45,"second":86,"amount":-3},{"first":45,"second":87,"amount":-2},{"first":45,"second":88,"amount":-2},{"first":45,"second":89,"amount":-4},{"first":45,"second":90,"amount":-2},{"first":45,"second":92,"amount":-3},{"first":46,"second":34,"amount":-5},{"first":46,"second":39,"amount":-5},{"first":46,"second":42,"amount":-5},{"first":46,"second":45,"amount":-3},{"first":46,"second":64,"amount":-2},{"first":46,"second":67,"amount":-2},{"first":46,"second":71,"amount":-2},{"first":46,"second":79,"amount":-2},{"first":46,"second":81,"amount":-2},{"first":46,"second":84,"amount":-4},{"first":46,"second":86,"amount":-4},{"first":46,"second":87,"amount":-3},{"first":46,"second":89,"amount":-3},{"first":46,"second":92,"amount":-4},{"first":46,"second":118,"amount":-3},{"first":46,"second":119,"amount":-2},{"first":46,"second":121,"amount":-3},{"first":47,"second":34,"amount":1},{"first":47,"second":38,"amount":-3},{"first":47,"second":39,"amount":1},{"first":47,"second":42,"amount":1},{"first":47,"second":44,"amount":-4},{"first":47,"second":45,"amount":-3},{"first":47,"second":46,"amount":-4},{"first":47,"second":47,"amount":-3},{"first":47,"second":58,"amount":-2},{"first":47,"second":59,"amount":-2},{"first":47,"second":63,"amount":1},{"first":47,"second":64,"amount":-2},{"first":47,"second":65,"amount":-3},{"first":47,"second":67,"amount":-2},{"first":47,"second":71,"amount":-2},{"first":47,"second":74,"amount":-3},{"first":47,"second":79,"amount":-2},{"first":47,"second":81,"amount":-2},{"first":47,"second":97,"amount":-3},{"first":47,"second":99,"amount":-3},{"first":47,"second":100,"amount":-3},{"first":47,"second":101,"amount":-3},{"first":47,"second":103,"amount":-3},{"first":47,"second":109,"amount":-2},{"first":47,"second":110,"amount":-2},{"first":47,"second":111,"amount":-3},{"first":47,"second":112,"amount":-2},{"first":47,"second":113,"amount":-3},{"first":47,"second":114,"amount":-2},{"first":47,"second":115,"amount":-3},{"first":47,"second":116,"amount":-2},{"first":47,"second":117,"amount":-2},{"first":47,"second":118,"amount":-2},{"first":47,"second":120,"amount":-2},{"first":47,"second":121,"amount":-2},{"first":47,"second":122,"amount":-2},{"first":64,"second":34,"amount":-2},{"first":64,"second":38,"amount":-2},{"first":64,"second":39,"amount":-2},{"first":64,"second":41,"amount":-2},{"first":64,"second":42,"amount":-2},{"first":64,"second":44,"amount":-2},{"first":64,"second":46,"amount":-2},{"first":64,"second":47,"amount":-2},{"first":64,"second":65,"amount":-2},{"first":64,"second":84,"amount":-3},{"first":64,"second":86,"amount":-2},{"first":64,"second":89,"amount":-2},{"first":64,"second":90,"amount":-2},{"first":64,"second":92,"amount":-2},{"first":64,"second":93,"amount":-2},{"first":64,"second":125,"amount":-2},{"first":65,"second":34,"amount":-4},{"first":65,"second":39,"amount":-4},{"first":65,"second":42,"amount":-4},{"first":65,"second":45,"amount":-2},{"first":65,"second":63,"amount":-2},{"first":65,"second":64,"amount":-2},{"first":65,"second":67,"amount":-2},{"first":65,"second":71,"amount":-2},{"first":65,"second":74,"amount":1},{"first":65,"second":79,"amount":-2},{"first":65,"second":81,"amount":-2},{"first":65,"second":84,"amount":-3},{"first":65,"second":85,"amount":-2},{"first":65,"second":86,"amount":-3},{"first":65,"second":87,"amount":-2},{"first":65,"second":89,"amount":-4},{"first":65,"second":92,"amount":-3},{"first":65,"second":118,"amount":-2},{"first":65,"second":121,"amount":-2},{"first":67,"second":45,"amount":-3},{"first":68,"second":34,"amount":-2},{"first":68,"second":38,"amount":-2},{"first":68,"second":39,"amount":-2},{"first":68,"second":41,"amount":-2},{"first":68,"second":42,"amount":-2},{"first":68,"second":44,"amount":-2},{"first":68,"second":46,"amount":-2},{"first":68,"second":47,"amount":-2},{"first":68,"second":65,"amount":-2},{"first":68,"second":84,"amount":-3},{"first":68,"second":86,"amount":-2},{"first":68,"second":89,"amount":-2},{"first":68,"second":90,"amount":-2},{"first":68,"second":92,"amount":-2},{"first":68,"second":93,"amount":-2},{"first":68,"second":125,"amount":-2},{"first":70,"second":38,"amount":-3},{"first":70,"second":44,"amount":-4},{"first":70,"second":46,"amount":-4},{"first":70,"second":47,"amount":-3},{"first":70,"second":58,"amount":-2},{"first":70,"second":59,"amount":-2},{"first":70,"second":65,"amount":-3},{"first":70,"second":74,"amount":-4},{"first":70,"second":99,"amount":-2},{"first":70,"second":100,"amount":-2},{"first":70,"second":101,"amount":-2},{"first":70,"second":109,"amount":-2},{"first":70,"second":110,"amount":-2},{"first":70,"second":111,"amount":-2},{"first":70,"second":112,"amount":-2},{"first":70,"second":113,"amount":-2},{"first":70,"second":114,"amount":-2},{"first":70,"second":117,"amount":-2},{"first":74,"second":38,"amount":-2},{"first":74,"second":44,"amount":-2},{"first":74,"second":46,"amount":-2},{"first":74,"second":47,"amount":-2},{"first":74,"second":65,"amount":-2},{"first":75,"second":45,"amount":-2},{"first":75,"second":99,"amount":-2},{"first":75,"second":100,"amount":-2},{"first":75,"second":101,"amount":-2},{"first":75,"second":102,"amount":-2},{"first":75,"second":111,"amount":-2},{"first":75,"second":113,"amount":-2},{"first":75,"second":116,"amount":-2},{"first":75,"second":118,"amount":-2},{"first":75,"second":119,"amount":-2},{"first":75,"second":121,"amount":-2},{"first":76,"second":34,"amount":-6},{"first":76,"second":39,"amount":-6},{"first":76,"second":42,"amount":-6},{"first":76,"second":44,"amount":1},{"first":76,"second":45,"amount":-4},{"first":76,"second":46,"amount":1},{"first":76,"second":63,"amount":-2},{"first":76,"second":64,"amount":-2},{"first":76,"second":67,"amount":-2},{"first":76,"second":71,"amount":-2},{"first":76,"second":79,"amount":-2},{"first":76,"second":81,"amount":-2},{"first":76,"second":84,"amount":-4},{"first":76,"second":86,"amount":-4},{"first":76,"second":87,"amount":-3},{"first":76,"second":89,"amount":-4},{"first":76,"second":92,"amount":-4},{"first":76,"second":99,"amount":-2},{"first":76,"second":100,"amount":-2},{"first":76,"second":101,"amount":-2},{"first":76,"second":111,"amount":-2},{"first":76,"second":113,"amount":-2},{"first":76,"second":118,"amount":-3},{"first":76,"second":119,"amount":-2},{"first":76,"second":121,"amount":-3},{"first":79,"second":34,"amount":-2},{"first":79,"second":38,"amount":-2},{"first":79,"second":39,"amount":-2},{"first":79,"second":41,"amount":-2},{"first":79,"second":42,"amount":-2},{"first":79,"second":44,"amount":-2},{"first":79,"second":46,"amount":-2},{"first":79,"second":47,"amount":-2},{"first":79,"second":65,"amount":-2},{"first":79,"second":84,"amount":-3},{"first":79,"second":86,"amount":-2},{"first":79,"second":89,"amount":-2},{"first":79,"second":90,"amount":-2},{"first":79,"second":92,"amount":-2},{"first":79,"second":93,"amount":-2},{"first":79,"second":125,"amount":-2},{"first":80,"second":38,"amount":-3},{"first":80,"second":44,"amount":-5},{"first":80,"second":46,"amount":-5},{"first":80,"second":47,"amount":-3},{"first":80,"second":65,"amount":-3},{"first":80,"second":74,"amount":-4},{"first":80,"second":97,"amount":-2},{"first":81,"second":34,"amount":-2},{"first":81,"second":38,"amount":-2},{"first":81,"second":39,"amount":-2},{"first":81,"second":41,"amount":-2},{"first":81,"second":42,"amount":-2},{"first":81,"second":44,"amount":-2},{"first":81,"second":46,"amount":-2},{"first":81,"second":47,"amount":-2},{"first":81,"second":65,"amount":-2},{"first":81,"second":84,"amount":-3},{"first":81,"second":86,"amount":-2},{"first":81,"second":89,"amount":-2},{"first":81,"second":90,"amount":-2},{"first":81,"second":92,"amount":-2},{"first":81,"second":93,"amount":-2},{"first":81,"second":125,"amount":-2},{"first":82,"second":64,"amount":-2},{"first":82,"second":67,"amount":-2},{"first":82,"second":71,"amount":-2},{"first":82,"second":79,"amount":-2},{"first":82,"second":81,"amount":-2},{"first":82,"second":84,"amount":-2},{"first":82,"second":85,"amount":-2},{"first":84,"second":38,"amount":-3},{"first":84,"second":44,"amount":-4},{"first":84,"second":45,"amount":-4},{"first":84,"second":46,"amount":-4},{"first":84,"second":47,"amount":-3},{"first":84,"second":58,"amount":-4},{"first":84,"second":59,"amount":-4},{"first":84,"second":64,"amount":-3},{"first":84,"second":65,"amount":-3},{"first":84,"second":67,"amount":-3},{"first":84,"second":71,"amount":-3},{"first":84,"second":74,"amount":-4},{"first":84,"second":79,"amount":-3},{"first":84,"second":81,"amount":-3},{"first":84,"second":97,"amount":-5},{"first":84,"second":99,"amount":-4},{"first":84,"second":100,"amount":-4},{"first":84,"second":101,"amount":-4},{"first":84,"second":103,"amount":-4},{"first":84,"second":109,"amount":-4},{"first":84,"second":110,"amount":-4},{"first":84,"second":111,"amount":-4},{"first":84,"second":112,"amount":-4},{"first":84,"second":113,"amount":-4},{"first":84,"second":114,"amount":-4},{"first":84,"second":115,"amount":-4},{"first":84,"second":117,"amount":-4},{"first":84,"second":118,"amount":-4},{"first":84,"second":119,"amount":-3},{"first":84,"second":120,"amount":-3},{"first":84,"second":121,"amount":-4},{"first":84,"second":122,"amount":-3},{"first":85,"second":38,"amount":-2},{"first":85,"second":44,"amount":-2},{"first":85,"second":46,"amount":-2},{"first":85,"second":47,"amount":-2},{"first":85,"second":65,"amount":-2},{"first":86,"second":34,"amount":1},{"first":86,"second":38,"amount":-3},{"first":86,"second":39,"amount":1},{"first":86,"second":42,"amount":1},{"first":86,"second":44,"amount":-4},{"first":86,"second":45,"amount":-3},{"first":86,"second":46,"amount":-4},{"first":86,"second":47,"amount":-3},{"first":86,"second":58,"amount":-2},{"first":86,"second":59,"amount":-2},{"first":86,"second":63,"amount":1},{"first":86,"second":64,"amount":-2},{"first":86,"second":65,"amount":-3},{"first":86,"second":67,"amount":-2},{"first":86,"second":71,"amount":-2},{"first":86,"second":74,"amount":-3},{"first":86,"second":79,"amount":-2},{"first":86,"second":81,"amount":-2},{"first":86,"second":97,"amount":-3},{"first":86,"second":99,"amount":-3},{"first":86,"second":100,"amount":-3},{"first":86,"second":101,"amount":-3},{"first":86,"second":103,"amount":-3},{"first":86,"second":109,"amount":-2},{"first":86,"second":110,"amount":-2},{"first":86,"second":111,"amount":-3},{"first":86,"second":112,"amount":-2},{"first":86,"second":113,"amount":-3},{"first":86,"second":114,"amount":-2},{"first":86,"second":115,"amount":-3},{"first":86,"second":116,"amount":-2},{"first":86,"second":117,"amount":-2},{"first":86,"second":118,"amount":-2},{"first":86,"second":120,"amount":-2},{"first":86,"second":121,"amount":-2},{"first":86,"second":122,"amount":-2},{"first":87,"second":34,"amount":1},{"first":87,"second":38,"amount":-2},{"first":87,"second":39,"amount":1},{"first":87,"second":42,"amount":1},{"first":87,"second":44,"amount":-3},{"first":87,"second":45,"amount":-2},{"first":87,"second":46,"amount":-3},{"first":87,"second":47,"amount":-2},{"first":87,"second":63,"amount":1},{"first":87,"second":65,"amount":-2},{"first":87,"second":74,"amount":-3},{"first":87,"second":97,"amount":-2},{"first":87,"second":99,"amount":-2},{"first":87,"second":100,"amount":-2},{"first":87,"second":101,"amount":-2},{"first":87,"second":103,"amount":-3},{"first":87,"second":111,"amount":-2},{"first":87,"second":113,"amount":-2},{"first":87,"second":115,"amount":-2},{"first":88,"second":45,"amount":-2},{"first":88,"second":99,"amount":-2},{"first":88,"second":100,"amount":-2},{"first":88,"second":101,"amount":-2},{"first":88,"second":102,"amount":-2},{"first":88,"second":111,"amount":-2},{"first":88,"second":113,"amount":-2},{"first":88,"second":116,"amount":-2},{"first":88,"second":118,"amount":-2},{"first":88,"second":119,"amount":-2},{"first":88,"second":121,"amount":-2},{"first":89,"second":38,"amount":-4},{"first":89,"second":44,"amount":-3},{"first":89,"second":45,"amount":-4},{"first":89,"second":46,"amount":-3},{"first":89,"second":47,"amount":-4},{"first":89,"second":58,"amount":-3},{"first":89,"second":59,"amount":-3},{"first":89,"second":63,"amount":1},{"first":89,"second":64,"amount":-2},{"first":89,"second":65,"amount":-4},{"first":89,"second":67,"amount":-2},{"first":89,"second":71,"amount":-2},{"first":89,"second":74,"amount":-4},{"first":89,"second":79,"amount":-2},{"first":89,"second":81,"amount":-2},{"first":89,"second":97,"amount":-3},{"first":89,"second":99,"amount":-4},{"first":89,"second":100,"amount":-4},{"first":89,"second":101,"amount":-4},{"first":89,"second":103,"amount":-4},{"first":89,"second":109,"amount":-3},{"first":89,"second":110,"amount":-3},{"first":89,"second":111,"amount":-4},{"first":89,"second":112,"amount":-3},{"first":89,"second":113,"amount":-4},{"first":89,"second":114,"amount":-3},{"first":89,"second":115,"amount":-3},{"first":89,"second":117,"amount":-3},{"first":89,"second":118,"amount":-3},{"first":89,"second":119,"amount":-2},{"first":89,"second":120,"amount":-3},{"first":89,"second":121,"amount":-3},{"first":90,"second":45,"amount":-2},{"first":90,"second":63,"amount":1},{"first":90,"second":64,"amount":-2},{"first":90,"second":67,"amount":-2},{"first":90,"second":71,"amount":-2},{"first":90,"second":79,"amount":-2},{"first":90,"second":81,"amount":-2},{"first":90,"second":99,"amount":-2},{"first":90,"second":100,"amount":-2},{"first":90,"second":101,"amount":-2},{"first":90,"second":111,"amount":-2},{"first":90,"second":113,"amount":-2},{"first":90,"second":118,"amount":-2},{"first":90,"second":121,"amount":-2},{"first":91,"second":64,"amount":-2},{"first":91,"second":67,"amount":-2},{"first":91,"second":71,"amount":-2},{"first":91,"second":79,"amount":-2},{"first":91,"second":81,"amount":-2},{"first":91,"second":99,"amount":-2},{"first":91,"second":100,"amount":-2},{"first":91,"second":101,"amount":-2},{"first":91,"second":111,"amount":-2},{"first":91,"second":113,"amount":-2},{"first":92,"second":34,"amount":-4},{"first":92,"second":39,"amount":-4},{"first":92,"second":42,"amount":-4},{"first":92,"second":45,"amount":-2},{"first":92,"second":63,"amount":-2},{"first":92,"second":64,"amount":-2},{"first":92,"second":67,"amount":-2},{"first":92,"second":71,"amount":-2},{"first":92,"second":74,"amount":1},{"first":92,"second":79,"amount":-2},{"first":92,"second":81,"amount":-2},{"first":92,"second":84,"amount":-3},{"first":92,"second":85,"amount":-2},{"first":92,"second":86,"amount":-3},{"first":92,"second":87,"amount":-2},{"first":92,"second":89,"amount":-4},{"first":92,"second":92,"amount":-3},{"first":92,"second":118,"amount":-2},{"first":92,"second":121,"amount":-2},{"first":97,"second":34,"amount":-2},{"first":97,"second":39,"amount":-2},{"first":97,"second":42,"amount":-2},{"first":97,"second":118,"amount":-2},{"first":97,"second":121,"amount":-2},{"first":98,"second":34,"amount":-2},{"first":98,"second":39,"amount":-2},{"first":98,"second":41,"amount":-2},{"first":98,"second":42,"amount":-2},{"first":98,"second":86,"amount":-3},{"first":98,"second":87,"amount":-2},{"first":98,"second":92,"amount":-3},{"first":98,"second":93,"amount":-2},{"first":98,"second":120,"amount":-2},{"first":98,"second":125,"amount":-2},{"first":101,"second":34,"amount":-2},{"first":101,"second":39,"amount":-2},{"first":101,"second":41,"amount":-2},{"first":101,"second":42,"amount":-2},{"first":101,"second":86,"amount":-3},{"first":101,"second":87,"amount":-2},{"first":101,"second":92,"amount":-3},{"first":101,"second":93,"amount":-2},{"first":101,"second":120,"amount":-2},{"first":101,"second":125,"amount":-2},{"first":102,"second":34,"amount":1},{"first":102,"second":39,"amount":1},{"first":102,"second":42,"amount":1},{"first":102,"second":44,"amount":-3},{"first":102,"second":46,"amount":-3},{"first":104,"second":34,"amount":-2},{"first":104,"second":39,"amount":-2},{"first":104,"second":42,"amount":-2},{"first":104,"second":118,"amount":-2},{"first":104,"second":121,"amount":-2},{"first":107,"second":99,"amount":-2},{"first":107,"second":100,"amount":-2},{"first":107,"second":101,"amount":-2},{"first":107,"second":111,"amount":-2},{"first":107,"second":113,"amount":-2},{"first":109,"second":34,"amount":-2},{"first":109,"second":39,"amount":-2},{"first":109,"second":42,"amount":-2},{"first":109,"second":118,"amount":-2},{"first":109,"second":121,"amount":-2},{"first":110,"second":34,"amount":-2},{"first":110,"second":39,"amount":-2},{"first":110,"second":42,"amount":-2},{"first":110,"second":118,"amount":-2},{"first":110,"second":121,"amount":-2},{"first":111,"second":34,"amount":-2},{"first":111,"second":39,"amount":-2},{"first":111,"second":41,"amount":-2},{"first":111,"second":42,"amount":-2},{"first":111,"second":86,"amount":-3},{"first":111,"second":87,"amount":-2},{"first":111,"second":92,"amount":-3},{"first":111,"second":93,"amount":-2},{"first":111,"second":120,"amount":-2},{"first":111,"second":125,"amount":-2},{"first":112,"second":34,"amount":-2},{"first":112,"second":39,"amount":-2},{"first":112,"second":41,"amount":-2},{"first":112,"second":42,"amount":-2},{"first":112,"second":86,"amount":-3},{"first":112,"second":87,"amount":-2},{"first":112,"second":92,"amount":-3},{"first":112,"second":93,"amount":-2},{"first":112,"second":120,"amount":-2},{"first":112,"second":125,"amount":-2},{"first":114,"second":44,"amount":-3},{"first":114,"second":46,"amount":-3},{"first":114,"second":97,"amount":-2},{"first":118,"second":38,"amount":-2},{"first":118,"second":44,"amount":-3},{"first":118,"second":46,"amount":-3},{"first":118,"second":47,"amount":-2},{"first":118,"second":65,"amount":-2},{"first":119,"second":44,"amount":-2},{"first":119,"second":46,"amount":-2},{"first":120,"second":99,"amount":-2},{"first":120,"second":100,"amount":-2},{"first":120,"second":101,"amount":-2},{"first":120,"second":111,"amount":-2},{"first":120,"second":113,"amount":-2},{"first":121,"second":38,"amount":-2},{"first":121,"second":44,"amount":-3},{"first":121,"second":46,"amount":-3},{"first":121,"second":47,"amount":-2},{"first":121,"second":65,"amount":-2},{"first":123,"second":64,"amount":-2},{"first":123,"second":67,"amount":-2},{"first":123,"second":71,"amount":-2},{"first":123,"second":79,"amount":-2},{"first":123,"second":81,"amount":-2},{"first":123,"second":99,"amount":-2},{"first":123,"second":100,"amount":-2},{"first":123,"second":101,"amount":-2},{"first":123,"second":111,"amount":-2},{"first":123,"second":113,"amount":-2}],"info":{"face":"Lato-Regular","size":32,"bold":0,"italic":0,"charset":"","unicode":1,"stretchH":100,"smooth":1,"aa":2,"padding":[0,0,0,0],"spacing":[0,0]},"common":{"lineHeight":38,"base":32,"scaleW":512,"scaleH":512,"pages":1,"packed":0,"alphaChnl":0,"redChnl":0,"greenChnl":0,"blueChnl":0}} -------------------------------------------------------------------------------- /fnt/Lato-Regular-32.fnt: -------------------------------------------------------------------------------- 1 | info face="Lato-Regular" size=32 bold=0 italic=0 charset="" unicode=1 stretchH=100 smooth=1 aa=2 padding=0,0,0,0 spacing=0,0 2 | common lineHeight=38 base=32 scaleW=512 scaleH=512 pages=1 packed=0 alphaChnl=0 redChnl=0 greenChnl=0 blueChnl=0 3 | page id=0 file="lato.png" 4 | chars count=96 5 | char id=10 x=185 y=424 width=17 height=24 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 6 | char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 7 | char id=33 x=40 y=438 width=5 height=24 xoffset=3 yoffset=8 xadvance=11 page=0 chnl=0 8 | char id=34 x=71 y=437 width=9 height=8 xoffset=2 yoffset=8 xadvance=13 page=0 chnl=0 9 | char id=35 x=355 y=194 width=18 height=24 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 10 | char id=36 x=247 y=277 width=16 height=31 xoffset=1 yoffset=5 xadvance=19 page=0 chnl=0 11 | char id=37 x=330 y=194 width=23 height=24 xoffset=1 yoffset=8 xadvance=25 page=0 chnl=0 12 | char id=38 x=375 y=194 width=22 height=24 xoffset=1 yoffset=8 xadvance=23 page=0 chnl=0 13 | char id=39 x=40 y=207 width=3 height=8 xoffset=2 yoffset=8 xadvance=7 page=0 chnl=0 14 | char id=40 x=103 y=353 width=7 height=31 xoffset=2 yoffset=6 xadvance=10 page=0 chnl=0 15 | char id=41 x=139 y=480 width=7 height=31 xoffset=1 yoffset=6 xadvance=10 page=0 chnl=0 16 | char id=42 x=82 y=437 width=11 height=11 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0 17 | char id=43 x=204 y=399 width=16 height=16 xoffset=1 yoffset=13 xadvance=19 page=0 chnl=0 18 | char id=44 x=40 y=464 width=5 height=9 xoffset=1 yoffset=28 xadvance=7 page=0 chnl=0 19 | char id=45 x=79 y=277 width=9 height=3 xoffset=1 yoffset=20 xadvance=11 page=0 chnl=0 20 | char id=46 x=40 y=217 width=5 height=4 xoffset=1 yoffset=28 xadvance=7 page=0 chnl=0 21 | char id=47 x=247 y=220 width=14 height=26 xoffset=-1 yoffset=8 xadvance=12 page=0 chnl=0 22 | char id=48 x=310 y=194 width=18 height=24 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 23 | char id=49 x=204 y=424 width=14 height=24 xoffset=3 yoffset=8 xadvance=19 page=0 chnl=0 24 | char id=50 x=185 y=450 width=16 height=24 xoffset=1 yoffset=8 xadvance=19 page=0 chnl=0 25 | char id=51 x=203 y=450 width=17 height=24 xoffset=1 yoffset=8 xadvance=19 page=0 chnl=0 26 | char id=52 x=185 y=476 width=18 height=24 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 27 | char id=53 x=205 y=476 width=16 height=24 xoffset=1 yoffset=8 xadvance=19 page=0 chnl=0 28 | char id=54 x=236 y=194 width=17 height=24 xoffset=1 yoffset=8 xadvance=19 page=0 chnl=0 29 | char id=55 x=255 y=194 width=17 height=24 xoffset=1 yoffset=8 xadvance=19 page=0 chnl=0 30 | char id=56 x=274 y=194 width=16 height=24 xoffset=1 yoffset=8 xadvance=19 page=0 chnl=0 31 | char id=57 x=292 y=194 width=16 height=24 xoffset=2 yoffset=8 xadvance=19 page=0 chnl=0 32 | char id=58 x=449 y=84 width=5 height=17 xoffset=2 yoffset=15 xadvance=8 page=0 chnl=0 33 | char id=59 x=87 y=198 width=5 height=22 xoffset=2 yoffset=15 xadvance=8 page=0 chnl=0 34 | char id=60 x=219 y=336 width=13 height=16 xoffset=2 yoffset=13 xadvance=19 page=0 chnl=0 35 | char id=61 x=147 y=98 width=15 height=8 xoffset=2 yoffset=17 xadvance=19 page=0 chnl=0 36 | char id=62 x=203 y=380 width=14 height=16 xoffset=3 yoffset=13 xadvance=19 page=0 chnl=0 37 | char id=63 x=220 y=424 width=13 height=24 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 38 | char id=64 x=247 y=248 width=25 height=27 xoffset=1 yoffset=9 xadvance=26 page=0 chnl=0 39 | char id=65 x=315 y=108 width=22 height=24 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 40 | char id=66 x=76 y=283 width=17 height=24 xoffset=2 yoffset=8 xadvance=21 page=0 chnl=0 41 | char id=67 x=339 y=108 width=20 height=24 xoffset=1 yoffset=8 xadvance=22 page=0 chnl=0 42 | char id=68 x=361 y=108 width=21 height=24 xoffset=2 yoffset=8 xadvance=24 page=0 chnl=0 43 | char id=69 x=78 y=318 width=15 height=24 xoffset=2 yoffset=8 xadvance=19 page=0 chnl=0 44 | char id=70 x=78 y=367 width=15 height=24 xoffset=2 yoffset=8 xadvance=18 page=0 chnl=0 45 | char id=71 x=384 y=108 width=21 height=24 xoffset=1 yoffset=8 xadvance=23 page=0 chnl=0 46 | char id=72 x=407 y=108 width=20 height=24 xoffset=2 yoffset=8 xadvance=24 page=0 chnl=0 47 | char id=73 x=32 y=262 width=4 height=24 xoffset=3 yoffset=8 xadvance=10 page=0 chnl=0 48 | char id=74 x=498 y=49 width=12 height=24 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 49 | char id=75 x=429 y=108 width=19 height=24 xoffset=3 yoffset=8 xadvance=22 page=0 chnl=0 50 | char id=76 x=96 y=415 width=14 height=24 xoffset=2 yoffset=8 xadvance=16 page=0 chnl=0 51 | char id=77 x=450 y=108 width=25 height=24 xoffset=2 yoffset=8 xadvance=29 page=0 chnl=0 52 | char id=78 x=477 y=108 width=20 height=24 xoffset=2 yoffset=8 xadvance=24 page=0 chnl=0 53 | char id=79 x=113 y=480 width=24 height=24 xoffset=1 yoffset=8 xadvance=26 page=0 chnl=0 54 | char id=80 x=371 y=142 width=16 height=24 xoffset=3 yoffset=8 xadvance=20 page=0 chnl=0 55 | char id=81 x=389 y=142 width=25 height=29 xoffset=1 yoffset=8 xadvance=26 page=0 chnl=0 56 | char id=82 x=416 y=142 width=18 height=24 xoffset=3 yoffset=8 xadvance=21 page=0 chnl=0 57 | char id=83 x=371 y=168 width=16 height=24 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 58 | char id=84 x=436 y=142 width=19 height=24 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 59 | char id=85 x=436 y=168 width=19 height=24 xoffset=2 yoffset=8 xadvance=23 page=0 chnl=0 60 | char id=86 x=457 y=142 width=22 height=24 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 61 | char id=87 x=185 y=310 width=33 height=24 xoffset=0 yoffset=8 xadvance=33 page=0 chnl=0 62 | char id=88 x=457 y=168 width=21 height=24 xoffset=0 yoffset=8 xadvance=21 page=0 chnl=0 63 | char id=89 x=481 y=142 width=21 height=24 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 64 | char id=90 x=416 y=168 width=18 height=24 xoffset=1 yoffset=8 xadvance=20 page=0 chnl=0 65 | char id=91 x=174 y=387 width=7 height=31 xoffset=2 yoffset=6 xadvance=10 page=0 chnl=0 66 | char id=92 x=263 y=220 width=14 height=26 xoffset=-1 yoffset=8 xadvance=12 page=0 chnl=0 67 | char id=93 x=223 y=476 width=7 height=31 xoffset=1 yoffset=6 xadvance=10 page=0 chnl=0 68 | char id=94 x=319 y=95 width=14 height=11 xoffset=2 yoffset=8 xadvance=19 page=0 chnl=0 69 | char id=95 x=76 y=309 width=13 height=3 xoffset=0 yoffset=34 xadvance=13 page=0 chnl=0 70 | char id=96 x=32 y=236 width=7 height=5 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 71 | char id=97 x=78 y=344 width=14 height=17 xoffset=1 yoffset=15 xadvance=16 page=0 chnl=0 72 | char id=98 x=96 y=441 width=15 height=24 xoffset=2 yoffset=8 xadvance=18 page=0 chnl=0 73 | char id=99 x=237 y=84 width=14 height=17 xoffset=1 yoffset=15 xadvance=15 page=0 chnl=0 74 | char id=100 x=96 y=467 width=15 height=24 xoffset=1 yoffset=8 xadvance=18 page=0 chnl=0 75 | char id=101 x=255 y=84 width=15 height=17 xoffset=1 yoffset=15 xadvance=17 page=0 chnl=0 76 | char id=102 x=499 y=108 width=11 height=24 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 77 | char id=103 x=481 y=168 width=16 height=23 xoffset=0 yoffset=15 xadvance=16 page=0 chnl=0 78 | char id=104 x=218 y=247 width=14 height=24 xoffset=2 yoffset=8 xadvance=18 page=0 chnl=0 79 | char id=105 x=38 y=262 width=5 height=24 xoffset=2 yoffset=8 xadvance=8 page=0 chnl=0 80 | char id=106 x=86 y=149 width=8 height=30 xoffset=-1 yoffset=8 xadvance=8 page=0 chnl=0 81 | char id=107 x=218 y=273 width=15 height=24 xoffset=2 yoffset=8 xadvance=17 page=0 chnl=0 82 | char id=108 x=41 y=341 width=4 height=24 xoffset=2 yoffset=8 xadvance=8 page=0 chnl=0 83 | char id=109 x=382 y=85 width=23 height=17 xoffset=2 yoffset=15 xadvance=26 page=0 chnl=0 84 | char id=110 x=433 y=84 width=14 height=17 xoffset=2 yoffset=15 xadvance=18 page=0 chnl=0 85 | char id=111 x=389 y=173 width=16 height=17 xoffset=1 yoffset=15 xadvance=18 page=0 chnl=0 86 | char id=112 x=496 y=83 width=15 height=23 xoffset=2 yoffset=15 xadvance=18 page=0 chnl=0 87 | char id=113 x=185 y=336 width=15 height=23 xoffset=1 yoffset=15 xadvance=18 page=0 chnl=0 88 | char id=114 x=272 y=84 width=11 height=17 xoffset=2 yoffset=15 xadvance=13 page=0 chnl=0 89 | char id=115 x=96 y=493 width=13 height=17 xoffset=0 yoffset=15 xadvance=14 page=0 chnl=0 90 | char id=116 x=499 y=168 width=12 height=23 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 91 | char id=117 x=202 y=336 width=15 height=17 xoffset=1 yoffset=15 xadvance=18 page=0 chnl=0 92 | char id=118 x=185 y=361 width=17 height=17 xoffset=0 yoffset=15 xadvance=16 page=0 chnl=0 93 | char id=119 x=204 y=361 width=25 height=17 xoffset=0 yoffset=15 xadvance=25 page=0 chnl=0 94 | char id=120 x=185 y=380 width=16 height=17 xoffset=0 yoffset=15 xadvance=16 page=0 chnl=0 95 | char id=121 x=185 y=399 width=17 height=23 xoffset=0 yoffset=15 xadvance=16 page=0 chnl=0 96 | char id=122 x=220 y=310 width=13 height=17 xoffset=1 yoffset=15 xadvance=15 page=0 chnl=0 97 | char id=123 x=236 y=220 width=9 height=31 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 98 | char id=124 x=91 y=99 width=3 height=31 xoffset=3 yoffset=7 xadvance=10 page=0 chnl=0 99 | char id=125 x=236 y=253 width=8 height=31 xoffset=1 yoffset=6 xadvance=10 page=0 chnl=0 100 | char id=126 x=78 y=393 width=16 height=6 xoffset=1 yoffset=19 xadvance=19 page=0 chnl=0 101 | kernings count=590 102 | kerning first=34 second=38 amount=-4 103 | kerning first=34 second=44 amount=-5 104 | kerning first=34 second=45 amount=-4 105 | kerning first=34 second=46 amount=-5 106 | kerning first=34 second=47 amount=-4 107 | kerning first=34 second=64 amount=-2 108 | kerning first=34 second=65 amount=-4 109 | kerning first=34 second=67 amount=-2 110 | kerning first=34 second=71 amount=-2 111 | kerning first=34 second=79 amount=-2 112 | kerning first=34 second=81 amount=-2 113 | kerning first=34 second=86 amount=1 114 | kerning first=34 second=87 amount=1 115 | kerning first=34 second=92 amount=1 116 | kerning first=34 second=97 amount=-2 117 | kerning first=34 second=99 amount=-2 118 | kerning first=34 second=100 amount=-2 119 | kerning first=34 second=101 amount=-2 120 | kerning first=34 second=111 amount=-2 121 | kerning first=34 second=113 amount=-2 122 | kerning first=39 second=38 amount=-4 123 | kerning first=39 second=44 amount=-5 124 | kerning first=39 second=45 amount=-4 125 | kerning first=39 second=46 amount=-5 126 | kerning first=39 second=47 amount=-4 127 | kerning first=39 second=64 amount=-2 128 | kerning first=39 second=65 amount=-4 129 | kerning first=39 second=67 amount=-2 130 | kerning first=39 second=71 amount=-2 131 | kerning first=39 second=79 amount=-2 132 | kerning first=39 second=81 amount=-2 133 | kerning first=39 second=86 amount=1 134 | kerning first=39 second=87 amount=1 135 | kerning first=39 second=92 amount=1 136 | kerning first=39 second=97 amount=-2 137 | kerning first=39 second=99 amount=-2 138 | kerning first=39 second=100 amount=-2 139 | kerning first=39 second=101 amount=-2 140 | kerning first=39 second=111 amount=-2 141 | kerning first=39 second=113 amount=-2 142 | kerning first=40 second=64 amount=-2 143 | kerning first=40 second=67 amount=-2 144 | kerning first=40 second=71 amount=-2 145 | kerning first=40 second=79 amount=-2 146 | kerning first=40 second=81 amount=-2 147 | kerning first=40 second=99 amount=-2 148 | kerning first=40 second=100 amount=-2 149 | kerning first=40 second=101 amount=-2 150 | kerning first=40 second=111 amount=-2 151 | kerning first=40 second=113 amount=-2 152 | kerning first=42 second=38 amount=-4 153 | kerning first=42 second=44 amount=-5 154 | kerning first=42 second=45 amount=-4 155 | kerning first=42 second=46 amount=-5 156 | kerning first=42 second=47 amount=-4 157 | kerning first=42 second=64 amount=-2 158 | kerning first=42 second=65 amount=-4 159 | kerning first=42 second=67 amount=-2 160 | kerning first=42 second=71 amount=-2 161 | kerning first=42 second=79 amount=-2 162 | kerning first=42 second=81 amount=-2 163 | kerning first=42 second=86 amount=1 164 | kerning first=42 second=87 amount=1 165 | kerning first=42 second=92 amount=1 166 | kerning first=42 second=97 amount=-2 167 | kerning first=42 second=99 amount=-2 168 | kerning first=42 second=100 amount=-2 169 | kerning first=42 second=101 amount=-2 170 | kerning first=42 second=111 amount=-2 171 | kerning first=42 second=113 amount=-2 172 | kerning first=44 second=34 amount=-5 173 | kerning first=44 second=39 amount=-5 174 | kerning first=44 second=42 amount=-5 175 | kerning first=44 second=45 amount=-3 176 | kerning first=44 second=64 amount=-2 177 | kerning first=44 second=67 amount=-2 178 | kerning first=44 second=71 amount=-2 179 | kerning first=44 second=79 amount=-2 180 | kerning first=44 second=81 amount=-2 181 | kerning first=44 second=84 amount=-4 182 | kerning first=44 second=86 amount=-4 183 | kerning first=44 second=87 amount=-3 184 | kerning first=44 second=89 amount=-3 185 | kerning first=44 second=92 amount=-4 186 | kerning first=44 second=118 amount=-3 187 | kerning first=44 second=119 amount=-2 188 | kerning first=44 second=121 amount=-3 189 | kerning first=45 second=34 amount=-4 190 | kerning first=45 second=38 amount=-2 191 | kerning first=45 second=39 amount=-4 192 | kerning first=45 second=42 amount=-4 193 | kerning first=45 second=44 amount=-3 194 | kerning first=45 second=46 amount=-3 195 | kerning first=45 second=47 amount=-2 196 | kerning first=45 second=65 amount=-2 197 | kerning first=45 second=84 amount=-4 198 | kerning first=45 second=86 amount=-3 199 | kerning first=45 second=87 amount=-2 200 | kerning first=45 second=88 amount=-2 201 | kerning first=45 second=89 amount=-4 202 | kerning first=45 second=90 amount=-2 203 | kerning first=45 second=92 amount=-3 204 | kerning first=46 second=34 amount=-5 205 | kerning first=46 second=39 amount=-5 206 | kerning first=46 second=42 amount=-5 207 | kerning first=46 second=45 amount=-3 208 | kerning first=46 second=64 amount=-2 209 | kerning first=46 second=67 amount=-2 210 | kerning first=46 second=71 amount=-2 211 | kerning first=46 second=79 amount=-2 212 | kerning first=46 second=81 amount=-2 213 | kerning first=46 second=84 amount=-4 214 | kerning first=46 second=86 amount=-4 215 | kerning first=46 second=87 amount=-3 216 | kerning first=46 second=89 amount=-3 217 | kerning first=46 second=92 amount=-4 218 | kerning first=46 second=118 amount=-3 219 | kerning first=46 second=119 amount=-2 220 | kerning first=46 second=121 amount=-3 221 | kerning first=47 second=34 amount=1 222 | kerning first=47 second=38 amount=-3 223 | kerning first=47 second=39 amount=1 224 | kerning first=47 second=42 amount=1 225 | kerning first=47 second=44 amount=-4 226 | kerning first=47 second=45 amount=-3 227 | kerning first=47 second=46 amount=-4 228 | kerning first=47 second=47 amount=-3 229 | kerning first=47 second=58 amount=-2 230 | kerning first=47 second=59 amount=-2 231 | kerning first=47 second=63 amount=1 232 | kerning first=47 second=64 amount=-2 233 | kerning first=47 second=65 amount=-3 234 | kerning first=47 second=67 amount=-2 235 | kerning first=47 second=71 amount=-2 236 | kerning first=47 second=74 amount=-3 237 | kerning first=47 second=79 amount=-2 238 | kerning first=47 second=81 amount=-2 239 | kerning first=47 second=97 amount=-3 240 | kerning first=47 second=99 amount=-3 241 | kerning first=47 second=100 amount=-3 242 | kerning first=47 second=101 amount=-3 243 | kerning first=47 second=103 amount=-3 244 | kerning first=47 second=109 amount=-2 245 | kerning first=47 second=110 amount=-2 246 | kerning first=47 second=111 amount=-3 247 | kerning first=47 second=112 amount=-2 248 | kerning first=47 second=113 amount=-3 249 | kerning first=47 second=114 amount=-2 250 | kerning first=47 second=115 amount=-3 251 | kerning first=47 second=116 amount=-2 252 | kerning first=47 second=117 amount=-2 253 | kerning first=47 second=118 amount=-2 254 | kerning first=47 second=120 amount=-2 255 | kerning first=47 second=121 amount=-2 256 | kerning first=47 second=122 amount=-2 257 | kerning first=64 second=34 amount=-2 258 | kerning first=64 second=38 amount=-2 259 | kerning first=64 second=39 amount=-2 260 | kerning first=64 second=41 amount=-2 261 | kerning first=64 second=42 amount=-2 262 | kerning first=64 second=44 amount=-2 263 | kerning first=64 second=46 amount=-2 264 | kerning first=64 second=47 amount=-2 265 | kerning first=64 second=65 amount=-2 266 | kerning first=64 second=84 amount=-3 267 | kerning first=64 second=86 amount=-2 268 | kerning first=64 second=89 amount=-2 269 | kerning first=64 second=90 amount=-2 270 | kerning first=64 second=92 amount=-2 271 | kerning first=64 second=93 amount=-2 272 | kerning first=64 second=125 amount=-2 273 | kerning first=65 second=34 amount=-4 274 | kerning first=65 second=39 amount=-4 275 | kerning first=65 second=42 amount=-4 276 | kerning first=65 second=45 amount=-2 277 | kerning first=65 second=63 amount=-2 278 | kerning first=65 second=64 amount=-2 279 | kerning first=65 second=67 amount=-2 280 | kerning first=65 second=71 amount=-2 281 | kerning first=65 second=74 amount=1 282 | kerning first=65 second=79 amount=-2 283 | kerning first=65 second=81 amount=-2 284 | kerning first=65 second=84 amount=-3 285 | kerning first=65 second=85 amount=-2 286 | kerning first=65 second=86 amount=-3 287 | kerning first=65 second=87 amount=-2 288 | kerning first=65 second=89 amount=-4 289 | kerning first=65 second=92 amount=-3 290 | kerning first=65 second=118 amount=-2 291 | kerning first=65 second=121 amount=-2 292 | kerning first=67 second=45 amount=-3 293 | kerning first=68 second=34 amount=-2 294 | kerning first=68 second=38 amount=-2 295 | kerning first=68 second=39 amount=-2 296 | kerning first=68 second=41 amount=-2 297 | kerning first=68 second=42 amount=-2 298 | kerning first=68 second=44 amount=-2 299 | kerning first=68 second=46 amount=-2 300 | kerning first=68 second=47 amount=-2 301 | kerning first=68 second=65 amount=-2 302 | kerning first=68 second=84 amount=-3 303 | kerning first=68 second=86 amount=-2 304 | kerning first=68 second=89 amount=-2 305 | kerning first=68 second=90 amount=-2 306 | kerning first=68 second=92 amount=-2 307 | kerning first=68 second=93 amount=-2 308 | kerning first=68 second=125 amount=-2 309 | kerning first=70 second=38 amount=-3 310 | kerning first=70 second=44 amount=-4 311 | kerning first=70 second=46 amount=-4 312 | kerning first=70 second=47 amount=-3 313 | kerning first=70 second=58 amount=-2 314 | kerning first=70 second=59 amount=-2 315 | kerning first=70 second=65 amount=-3 316 | kerning first=70 second=74 amount=-4 317 | kerning first=70 second=99 amount=-2 318 | kerning first=70 second=100 amount=-2 319 | kerning first=70 second=101 amount=-2 320 | kerning first=70 second=109 amount=-2 321 | kerning first=70 second=110 amount=-2 322 | kerning first=70 second=111 amount=-2 323 | kerning first=70 second=112 amount=-2 324 | kerning first=70 second=113 amount=-2 325 | kerning first=70 second=114 amount=-2 326 | kerning first=70 second=117 amount=-2 327 | kerning first=74 second=38 amount=-2 328 | kerning first=74 second=44 amount=-2 329 | kerning first=74 second=46 amount=-2 330 | kerning first=74 second=47 amount=-2 331 | kerning first=74 second=65 amount=-2 332 | kerning first=75 second=45 amount=-2 333 | kerning first=75 second=99 amount=-2 334 | kerning first=75 second=100 amount=-2 335 | kerning first=75 second=101 amount=-2 336 | kerning first=75 second=102 amount=-2 337 | kerning first=75 second=111 amount=-2 338 | kerning first=75 second=113 amount=-2 339 | kerning first=75 second=116 amount=-2 340 | kerning first=75 second=118 amount=-2 341 | kerning first=75 second=119 amount=-2 342 | kerning first=75 second=121 amount=-2 343 | kerning first=76 second=34 amount=-6 344 | kerning first=76 second=39 amount=-6 345 | kerning first=76 second=42 amount=-6 346 | kerning first=76 second=44 amount=1 347 | kerning first=76 second=45 amount=-4 348 | kerning first=76 second=46 amount=1 349 | kerning first=76 second=63 amount=-2 350 | kerning first=76 second=64 amount=-2 351 | kerning first=76 second=67 amount=-2 352 | kerning first=76 second=71 amount=-2 353 | kerning first=76 second=79 amount=-2 354 | kerning first=76 second=81 amount=-2 355 | kerning first=76 second=84 amount=-4 356 | kerning first=76 second=86 amount=-4 357 | kerning first=76 second=87 amount=-3 358 | kerning first=76 second=89 amount=-4 359 | kerning first=76 second=92 amount=-4 360 | kerning first=76 second=99 amount=-2 361 | kerning first=76 second=100 amount=-2 362 | kerning first=76 second=101 amount=-2 363 | kerning first=76 second=111 amount=-2 364 | kerning first=76 second=113 amount=-2 365 | kerning first=76 second=118 amount=-3 366 | kerning first=76 second=119 amount=-2 367 | kerning first=76 second=121 amount=-3 368 | kerning first=79 second=34 amount=-2 369 | kerning first=79 second=38 amount=-2 370 | kerning first=79 second=39 amount=-2 371 | kerning first=79 second=41 amount=-2 372 | kerning first=79 second=42 amount=-2 373 | kerning first=79 second=44 amount=-2 374 | kerning first=79 second=46 amount=-2 375 | kerning first=79 second=47 amount=-2 376 | kerning first=79 second=65 amount=-2 377 | kerning first=79 second=84 amount=-3 378 | kerning first=79 second=86 amount=-2 379 | kerning first=79 second=89 amount=-2 380 | kerning first=79 second=90 amount=-2 381 | kerning first=79 second=92 amount=-2 382 | kerning first=79 second=93 amount=-2 383 | kerning first=79 second=125 amount=-2 384 | kerning first=80 second=38 amount=-3 385 | kerning first=80 second=44 amount=-5 386 | kerning first=80 second=46 amount=-5 387 | kerning first=80 second=47 amount=-3 388 | kerning first=80 second=65 amount=-3 389 | kerning first=80 second=74 amount=-4 390 | kerning first=80 second=97 amount=-2 391 | kerning first=81 second=34 amount=-2 392 | kerning first=81 second=38 amount=-2 393 | kerning first=81 second=39 amount=-2 394 | kerning first=81 second=41 amount=-2 395 | kerning first=81 second=42 amount=-2 396 | kerning first=81 second=44 amount=-2 397 | kerning first=81 second=46 amount=-2 398 | kerning first=81 second=47 amount=-2 399 | kerning first=81 second=65 amount=-2 400 | kerning first=81 second=84 amount=-3 401 | kerning first=81 second=86 amount=-2 402 | kerning first=81 second=89 amount=-2 403 | kerning first=81 second=90 amount=-2 404 | kerning first=81 second=92 amount=-2 405 | kerning first=81 second=93 amount=-2 406 | kerning first=81 second=125 amount=-2 407 | kerning first=82 second=64 amount=-2 408 | kerning first=82 second=67 amount=-2 409 | kerning first=82 second=71 amount=-2 410 | kerning first=82 second=79 amount=-2 411 | kerning first=82 second=81 amount=-2 412 | kerning first=82 second=84 amount=-2 413 | kerning first=82 second=85 amount=-2 414 | kerning first=84 second=38 amount=-3 415 | kerning first=84 second=44 amount=-4 416 | kerning first=84 second=45 amount=-4 417 | kerning first=84 second=46 amount=-4 418 | kerning first=84 second=47 amount=-3 419 | kerning first=84 second=58 amount=-4 420 | kerning first=84 second=59 amount=-4 421 | kerning first=84 second=64 amount=-3 422 | kerning first=84 second=65 amount=-3 423 | kerning first=84 second=67 amount=-3 424 | kerning first=84 second=71 amount=-3 425 | kerning first=84 second=74 amount=-4 426 | kerning first=84 second=79 amount=-3 427 | kerning first=84 second=81 amount=-3 428 | kerning first=84 second=97 amount=-5 429 | kerning first=84 second=99 amount=-4 430 | kerning first=84 second=100 amount=-4 431 | kerning first=84 second=101 amount=-4 432 | kerning first=84 second=103 amount=-4 433 | kerning first=84 second=109 amount=-4 434 | kerning first=84 second=110 amount=-4 435 | kerning first=84 second=111 amount=-4 436 | kerning first=84 second=112 amount=-4 437 | kerning first=84 second=113 amount=-4 438 | kerning first=84 second=114 amount=-4 439 | kerning first=84 second=115 amount=-4 440 | kerning first=84 second=117 amount=-4 441 | kerning first=84 second=118 amount=-4 442 | kerning first=84 second=119 amount=-3 443 | kerning first=84 second=120 amount=-3 444 | kerning first=84 second=121 amount=-4 445 | kerning first=84 second=122 amount=-3 446 | kerning first=85 second=38 amount=-2 447 | kerning first=85 second=44 amount=-2 448 | kerning first=85 second=46 amount=-2 449 | kerning first=85 second=47 amount=-2 450 | kerning first=85 second=65 amount=-2 451 | kerning first=86 second=34 amount=1 452 | kerning first=86 second=38 amount=-3 453 | kerning first=86 second=39 amount=1 454 | kerning first=86 second=42 amount=1 455 | kerning first=86 second=44 amount=-4 456 | kerning first=86 second=45 amount=-3 457 | kerning first=86 second=46 amount=-4 458 | kerning first=86 second=47 amount=-3 459 | kerning first=86 second=58 amount=-2 460 | kerning first=86 second=59 amount=-2 461 | kerning first=86 second=63 amount=1 462 | kerning first=86 second=64 amount=-2 463 | kerning first=86 second=65 amount=-3 464 | kerning first=86 second=67 amount=-2 465 | kerning first=86 second=71 amount=-2 466 | kerning first=86 second=74 amount=-3 467 | kerning first=86 second=79 amount=-2 468 | kerning first=86 second=81 amount=-2 469 | kerning first=86 second=97 amount=-3 470 | kerning first=86 second=99 amount=-3 471 | kerning first=86 second=100 amount=-3 472 | kerning first=86 second=101 amount=-3 473 | kerning first=86 second=103 amount=-3 474 | kerning first=86 second=109 amount=-2 475 | kerning first=86 second=110 amount=-2 476 | kerning first=86 second=111 amount=-3 477 | kerning first=86 second=112 amount=-2 478 | kerning first=86 second=113 amount=-3 479 | kerning first=86 second=114 amount=-2 480 | kerning first=86 second=115 amount=-3 481 | kerning first=86 second=116 amount=-2 482 | kerning first=86 second=117 amount=-2 483 | kerning first=86 second=118 amount=-2 484 | kerning first=86 second=120 amount=-2 485 | kerning first=86 second=121 amount=-2 486 | kerning first=86 second=122 amount=-2 487 | kerning first=87 second=34 amount=1 488 | kerning first=87 second=38 amount=-2 489 | kerning first=87 second=39 amount=1 490 | kerning first=87 second=42 amount=1 491 | kerning first=87 second=44 amount=-3 492 | kerning first=87 second=45 amount=-2 493 | kerning first=87 second=46 amount=-3 494 | kerning first=87 second=47 amount=-2 495 | kerning first=87 second=63 amount=1 496 | kerning first=87 second=65 amount=-2 497 | kerning first=87 second=74 amount=-3 498 | kerning first=87 second=97 amount=-2 499 | kerning first=87 second=99 amount=-2 500 | kerning first=87 second=100 amount=-2 501 | kerning first=87 second=101 amount=-2 502 | kerning first=87 second=103 amount=-3 503 | kerning first=87 second=111 amount=-2 504 | kerning first=87 second=113 amount=-2 505 | kerning first=87 second=115 amount=-2 506 | kerning first=88 second=45 amount=-2 507 | kerning first=88 second=99 amount=-2 508 | kerning first=88 second=100 amount=-2 509 | kerning first=88 second=101 amount=-2 510 | kerning first=88 second=102 amount=-2 511 | kerning first=88 second=111 amount=-2 512 | kerning first=88 second=113 amount=-2 513 | kerning first=88 second=116 amount=-2 514 | kerning first=88 second=118 amount=-2 515 | kerning first=88 second=119 amount=-2 516 | kerning first=88 second=121 amount=-2 517 | kerning first=89 second=38 amount=-4 518 | kerning first=89 second=44 amount=-3 519 | kerning first=89 second=45 amount=-4 520 | kerning first=89 second=46 amount=-3 521 | kerning first=89 second=47 amount=-4 522 | kerning first=89 second=58 amount=-3 523 | kerning first=89 second=59 amount=-3 524 | kerning first=89 second=63 amount=1 525 | kerning first=89 second=64 amount=-2 526 | kerning first=89 second=65 amount=-4 527 | kerning first=89 second=67 amount=-2 528 | kerning first=89 second=71 amount=-2 529 | kerning first=89 second=74 amount=-4 530 | kerning first=89 second=79 amount=-2 531 | kerning first=89 second=81 amount=-2 532 | kerning first=89 second=97 amount=-3 533 | kerning first=89 second=99 amount=-4 534 | kerning first=89 second=100 amount=-4 535 | kerning first=89 second=101 amount=-4 536 | kerning first=89 second=103 amount=-4 537 | kerning first=89 second=109 amount=-3 538 | kerning first=89 second=110 amount=-3 539 | kerning first=89 second=111 amount=-4 540 | kerning first=89 second=112 amount=-3 541 | kerning first=89 second=113 amount=-4 542 | kerning first=89 second=114 amount=-3 543 | kerning first=89 second=115 amount=-3 544 | kerning first=89 second=117 amount=-3 545 | kerning first=89 second=118 amount=-3 546 | kerning first=89 second=119 amount=-2 547 | kerning first=89 second=120 amount=-3 548 | kerning first=89 second=121 amount=-3 549 | kerning first=90 second=45 amount=-2 550 | kerning first=90 second=63 amount=1 551 | kerning first=90 second=64 amount=-2 552 | kerning first=90 second=67 amount=-2 553 | kerning first=90 second=71 amount=-2 554 | kerning first=90 second=79 amount=-2 555 | kerning first=90 second=81 amount=-2 556 | kerning first=90 second=99 amount=-2 557 | kerning first=90 second=100 amount=-2 558 | kerning first=90 second=101 amount=-2 559 | kerning first=90 second=111 amount=-2 560 | kerning first=90 second=113 amount=-2 561 | kerning first=90 second=118 amount=-2 562 | kerning first=90 second=121 amount=-2 563 | kerning first=91 second=64 amount=-2 564 | kerning first=91 second=67 amount=-2 565 | kerning first=91 second=71 amount=-2 566 | kerning first=91 second=79 amount=-2 567 | kerning first=91 second=81 amount=-2 568 | kerning first=91 second=99 amount=-2 569 | kerning first=91 second=100 amount=-2 570 | kerning first=91 second=101 amount=-2 571 | kerning first=91 second=111 amount=-2 572 | kerning first=91 second=113 amount=-2 573 | kerning first=92 second=34 amount=-4 574 | kerning first=92 second=39 amount=-4 575 | kerning first=92 second=42 amount=-4 576 | kerning first=92 second=45 amount=-2 577 | kerning first=92 second=63 amount=-2 578 | kerning first=92 second=64 amount=-2 579 | kerning first=92 second=67 amount=-2 580 | kerning first=92 second=71 amount=-2 581 | kerning first=92 second=74 amount=1 582 | kerning first=92 second=79 amount=-2 583 | kerning first=92 second=81 amount=-2 584 | kerning first=92 second=84 amount=-3 585 | kerning first=92 second=85 amount=-2 586 | kerning first=92 second=86 amount=-3 587 | kerning first=92 second=87 amount=-2 588 | kerning first=92 second=89 amount=-4 589 | kerning first=92 second=92 amount=-3 590 | kerning first=92 second=118 amount=-2 591 | kerning first=92 second=121 amount=-2 592 | kerning first=97 second=34 amount=-2 593 | kerning first=97 second=39 amount=-2 594 | kerning first=97 second=42 amount=-2 595 | kerning first=97 second=118 amount=-2 596 | kerning first=97 second=121 amount=-2 597 | kerning first=98 second=34 amount=-2 598 | kerning first=98 second=39 amount=-2 599 | kerning first=98 second=41 amount=-2 600 | kerning first=98 second=42 amount=-2 601 | kerning first=98 second=86 amount=-3 602 | kerning first=98 second=87 amount=-2 603 | kerning first=98 second=92 amount=-3 604 | kerning first=98 second=93 amount=-2 605 | kerning first=98 second=120 amount=-2 606 | kerning first=98 second=125 amount=-2 607 | kerning first=101 second=34 amount=-2 608 | kerning first=101 second=39 amount=-2 609 | kerning first=101 second=41 amount=-2 610 | kerning first=101 second=42 amount=-2 611 | kerning first=101 second=86 amount=-3 612 | kerning first=101 second=87 amount=-2 613 | kerning first=101 second=92 amount=-3 614 | kerning first=101 second=93 amount=-2 615 | kerning first=101 second=120 amount=-2 616 | kerning first=101 second=125 amount=-2 617 | kerning first=102 second=34 amount=1 618 | kerning first=102 second=39 amount=1 619 | kerning first=102 second=42 amount=1 620 | kerning first=102 second=44 amount=-3 621 | kerning first=102 second=46 amount=-3 622 | kerning first=104 second=34 amount=-2 623 | kerning first=104 second=39 amount=-2 624 | kerning first=104 second=42 amount=-2 625 | kerning first=104 second=118 amount=-2 626 | kerning first=104 second=121 amount=-2 627 | kerning first=107 second=99 amount=-2 628 | kerning first=107 second=100 amount=-2 629 | kerning first=107 second=101 amount=-2 630 | kerning first=107 second=111 amount=-2 631 | kerning first=107 second=113 amount=-2 632 | kerning first=109 second=34 amount=-2 633 | kerning first=109 second=39 amount=-2 634 | kerning first=109 second=42 amount=-2 635 | kerning first=109 second=118 amount=-2 636 | kerning first=109 second=121 amount=-2 637 | kerning first=110 second=34 amount=-2 638 | kerning first=110 second=39 amount=-2 639 | kerning first=110 second=42 amount=-2 640 | kerning first=110 second=118 amount=-2 641 | kerning first=110 second=121 amount=-2 642 | kerning first=111 second=34 amount=-2 643 | kerning first=111 second=39 amount=-2 644 | kerning first=111 second=41 amount=-2 645 | kerning first=111 second=42 amount=-2 646 | kerning first=111 second=86 amount=-3 647 | kerning first=111 second=87 amount=-2 648 | kerning first=111 second=92 amount=-3 649 | kerning first=111 second=93 amount=-2 650 | kerning first=111 second=120 amount=-2 651 | kerning first=111 second=125 amount=-2 652 | kerning first=112 second=34 amount=-2 653 | kerning first=112 second=39 amount=-2 654 | kerning first=112 second=41 amount=-2 655 | kerning first=112 second=42 amount=-2 656 | kerning first=112 second=86 amount=-3 657 | kerning first=112 second=87 amount=-2 658 | kerning first=112 second=92 amount=-3 659 | kerning first=112 second=93 amount=-2 660 | kerning first=112 second=120 amount=-2 661 | kerning first=112 second=125 amount=-2 662 | kerning first=114 second=44 amount=-3 663 | kerning first=114 second=46 amount=-3 664 | kerning first=114 second=97 amount=-2 665 | kerning first=118 second=38 amount=-2 666 | kerning first=118 second=44 amount=-3 667 | kerning first=118 second=46 amount=-3 668 | kerning first=118 second=47 amount=-2 669 | kerning first=118 second=65 amount=-2 670 | kerning first=119 second=44 amount=-2 671 | kerning first=119 second=46 amount=-2 672 | kerning first=120 second=99 amount=-2 673 | kerning first=120 second=100 amount=-2 674 | kerning first=120 second=101 amount=-2 675 | kerning first=120 second=111 amount=-2 676 | kerning first=120 second=113 amount=-2 677 | kerning first=121 second=38 amount=-2 678 | kerning first=121 second=44 amount=-3 679 | kerning first=121 second=46 amount=-3 680 | kerning first=121 second=47 amount=-2 681 | kerning first=121 second=65 amount=-2 682 | kerning first=123 second=64 amount=-2 683 | kerning first=123 second=67 amount=-2 684 | kerning first=123 second=71 amount=-2 685 | kerning first=123 second=79 amount=-2 686 | kerning first=123 second=81 amount=-2 687 | kerning first=123 second=99 amount=-2 688 | kerning first=123 second=100 amount=-2 689 | kerning first=123 second=101 amount=-2 690 | kerning first=123 second=111 amount=-2 691 | kerning first=123 second=113 amount=-2 692 | -------------------------------------------------------------------------------- /fnt/Lato-Regular-32.json: -------------------------------------------------------------------------------- 1 | {"pages":["lato.png"],"chars":[{"id":10,"x":185,"y":424,"width":17,"height":24,"xoffset":0,"yoffset":8,"xadvance":17,"page":0,"chnl":0},{"id":32,"x":0,"y":0,"width":0,"height":0,"xoffset":0,"yoffset":0,"xadvance":6,"page":0,"chnl":0},{"id":33,"x":40,"y":438,"width":5,"height":24,"xoffset":3,"yoffset":8,"xadvance":11,"page":0,"chnl":0},{"id":34,"x":71,"y":437,"width":9,"height":8,"xoffset":2,"yoffset":8,"xadvance":13,"page":0,"chnl":0},{"id":35,"x":355,"y":194,"width":18,"height":24,"xoffset":0,"yoffset":8,"xadvance":19,"page":0,"chnl":0},{"id":36,"x":247,"y":277,"width":16,"height":31,"xoffset":1,"yoffset":5,"xadvance":19,"page":0,"chnl":0},{"id":37,"x":330,"y":194,"width":23,"height":24,"xoffset":1,"yoffset":8,"xadvance":25,"page":0,"chnl":0},{"id":38,"x":375,"y":194,"width":22,"height":24,"xoffset":1,"yoffset":8,"xadvance":23,"page":0,"chnl":0},{"id":39,"x":40,"y":207,"width":3,"height":8,"xoffset":2,"yoffset":8,"xadvance":7,"page":0,"chnl":0},{"id":40,"x":103,"y":353,"width":7,"height":31,"xoffset":2,"yoffset":6,"xadvance":10,"page":0,"chnl":0},{"id":41,"x":139,"y":480,"width":7,"height":31,"xoffset":1,"yoffset":6,"xadvance":10,"page":0,"chnl":0},{"id":42,"x":82,"y":437,"width":11,"height":11,"xoffset":1,"yoffset":7,"xadvance":13,"page":0,"chnl":0},{"id":43,"x":204,"y":399,"width":16,"height":16,"xoffset":1,"yoffset":13,"xadvance":19,"page":0,"chnl":0},{"id":44,"x":40,"y":464,"width":5,"height":9,"xoffset":1,"yoffset":28,"xadvance":7,"page":0,"chnl":0},{"id":45,"x":79,"y":277,"width":9,"height":3,"xoffset":1,"yoffset":20,"xadvance":11,"page":0,"chnl":0},{"id":46,"x":40,"y":217,"width":5,"height":4,"xoffset":1,"yoffset":28,"xadvance":7,"page":0,"chnl":0},{"id":47,"x":247,"y":220,"width":14,"height":26,"xoffset":-1,"yoffset":8,"xadvance":12,"page":0,"chnl":0},{"id":48,"x":310,"y":194,"width":18,"height":24,"xoffset":0,"yoffset":8,"xadvance":19,"page":0,"chnl":0},{"id":49,"x":204,"y":424,"width":14,"height":24,"xoffset":3,"yoffset":8,"xadvance":19,"page":0,"chnl":0},{"id":50,"x":185,"y":450,"width":16,"height":24,"xoffset":1,"yoffset":8,"xadvance":19,"page":0,"chnl":0},{"id":51,"x":203,"y":450,"width":17,"height":24,"xoffset":1,"yoffset":8,"xadvance":19,"page":0,"chnl":0},{"id":52,"x":185,"y":476,"width":18,"height":24,"xoffset":0,"yoffset":8,"xadvance":19,"page":0,"chnl":0},{"id":53,"x":205,"y":476,"width":16,"height":24,"xoffset":1,"yoffset":8,"xadvance":19,"page":0,"chnl":0},{"id":54,"x":236,"y":194,"width":17,"height":24,"xoffset":1,"yoffset":8,"xadvance":19,"page":0,"chnl":0},{"id":55,"x":255,"y":194,"width":17,"height":24,"xoffset":1,"yoffset":8,"xadvance":19,"page":0,"chnl":0},{"id":56,"x":274,"y":194,"width":16,"height":24,"xoffset":1,"yoffset":8,"xadvance":19,"page":0,"chnl":0},{"id":57,"x":292,"y":194,"width":16,"height":24,"xoffset":2,"yoffset":8,"xadvance":19,"page":0,"chnl":0},{"id":58,"x":449,"y":84,"width":5,"height":17,"xoffset":2,"yoffset":15,"xadvance":8,"page":0,"chnl":0},{"id":59,"x":87,"y":198,"width":5,"height":22,"xoffset":2,"yoffset":15,"xadvance":8,"page":0,"chnl":0},{"id":60,"x":219,"y":336,"width":13,"height":16,"xoffset":2,"yoffset":13,"xadvance":19,"page":0,"chnl":0},{"id":61,"x":147,"y":98,"width":15,"height":8,"xoffset":2,"yoffset":17,"xadvance":19,"page":0,"chnl":0},{"id":62,"x":203,"y":380,"width":14,"height":16,"xoffset":3,"yoffset":13,"xadvance":19,"page":0,"chnl":0},{"id":63,"x":220,"y":424,"width":13,"height":24,"xoffset":0,"yoffset":8,"xadvance":13,"page":0,"chnl":0},{"id":64,"x":247,"y":248,"width":25,"height":27,"xoffset":1,"yoffset":9,"xadvance":26,"page":0,"chnl":0},{"id":65,"x":315,"y":108,"width":22,"height":24,"xoffset":0,"yoffset":8,"xadvance":22,"page":0,"chnl":0},{"id":66,"x":76,"y":283,"width":17,"height":24,"xoffset":2,"yoffset":8,"xadvance":21,"page":0,"chnl":0},{"id":67,"x":339,"y":108,"width":20,"height":24,"xoffset":1,"yoffset":8,"xadvance":22,"page":0,"chnl":0},{"id":68,"x":361,"y":108,"width":21,"height":24,"xoffset":2,"yoffset":8,"xadvance":24,"page":0,"chnl":0},{"id":69,"x":78,"y":318,"width":15,"height":24,"xoffset":2,"yoffset":8,"xadvance":19,"page":0,"chnl":0},{"id":70,"x":78,"y":367,"width":15,"height":24,"xoffset":2,"yoffset":8,"xadvance":18,"page":0,"chnl":0},{"id":71,"x":384,"y":108,"width":21,"height":24,"xoffset":1,"yoffset":8,"xadvance":23,"page":0,"chnl":0},{"id":72,"x":407,"y":108,"width":20,"height":24,"xoffset":2,"yoffset":8,"xadvance":24,"page":0,"chnl":0},{"id":73,"x":32,"y":262,"width":4,"height":24,"xoffset":3,"yoffset":8,"xadvance":10,"page":0,"chnl":0},{"id":74,"x":498,"y":49,"width":12,"height":24,"xoffset":0,"yoffset":8,"xadvance":14,"page":0,"chnl":0},{"id":75,"x":429,"y":108,"width":19,"height":24,"xoffset":3,"yoffset":8,"xadvance":22,"page":0,"chnl":0},{"id":76,"x":96,"y":415,"width":14,"height":24,"xoffset":2,"yoffset":8,"xadvance":16,"page":0,"chnl":0},{"id":77,"x":450,"y":108,"width":25,"height":24,"xoffset":2,"yoffset":8,"xadvance":29,"page":0,"chnl":0},{"id":78,"x":477,"y":108,"width":20,"height":24,"xoffset":2,"yoffset":8,"xadvance":24,"page":0,"chnl":0},{"id":79,"x":113,"y":480,"width":24,"height":24,"xoffset":1,"yoffset":8,"xadvance":26,"page":0,"chnl":0},{"id":80,"x":371,"y":142,"width":16,"height":24,"xoffset":3,"yoffset":8,"xadvance":20,"page":0,"chnl":0},{"id":81,"x":389,"y":142,"width":25,"height":29,"xoffset":1,"yoffset":8,"xadvance":26,"page":0,"chnl":0},{"id":82,"x":416,"y":142,"width":18,"height":24,"xoffset":3,"yoffset":8,"xadvance":21,"page":0,"chnl":0},{"id":83,"x":371,"y":168,"width":16,"height":24,"xoffset":0,"yoffset":8,"xadvance":17,"page":0,"chnl":0},{"id":84,"x":436,"y":142,"width":19,"height":24,"xoffset":0,"yoffset":8,"xadvance":19,"page":0,"chnl":0},{"id":85,"x":436,"y":168,"width":19,"height":24,"xoffset":2,"yoffset":8,"xadvance":23,"page":0,"chnl":0},{"id":86,"x":457,"y":142,"width":22,"height":24,"xoffset":0,"yoffset":8,"xadvance":22,"page":0,"chnl":0},{"id":87,"x":185,"y":310,"width":33,"height":24,"xoffset":0,"yoffset":8,"xadvance":33,"page":0,"chnl":0},{"id":88,"x":457,"y":168,"width":21,"height":24,"xoffset":0,"yoffset":8,"xadvance":21,"page":0,"chnl":0},{"id":89,"x":481,"y":142,"width":21,"height":24,"xoffset":0,"yoffset":8,"xadvance":20,"page":0,"chnl":0},{"id":90,"x":416,"y":168,"width":18,"height":24,"xoffset":1,"yoffset":8,"xadvance":20,"page":0,"chnl":0},{"id":91,"x":174,"y":387,"width":7,"height":31,"xoffset":2,"yoffset":6,"xadvance":10,"page":0,"chnl":0},{"id":92,"x":263,"y":220,"width":14,"height":26,"xoffset":-1,"yoffset":8,"xadvance":12,"page":0,"chnl":0},{"id":93,"x":223,"y":476,"width":7,"height":31,"xoffset":1,"yoffset":6,"xadvance":10,"page":0,"chnl":0},{"id":94,"x":319,"y":95,"width":14,"height":11,"xoffset":2,"yoffset":8,"xadvance":19,"page":0,"chnl":0},{"id":95,"x":76,"y":309,"width":13,"height":3,"xoffset":0,"yoffset":34,"xadvance":13,"page":0,"chnl":0},{"id":96,"x":32,"y":236,"width":7,"height":5,"xoffset":0,"yoffset":8,"xadvance":10,"page":0,"chnl":0},{"id":97,"x":78,"y":344,"width":14,"height":17,"xoffset":1,"yoffset":15,"xadvance":16,"page":0,"chnl":0},{"id":98,"x":96,"y":441,"width":15,"height":24,"xoffset":2,"yoffset":8,"xadvance":18,"page":0,"chnl":0},{"id":99,"x":237,"y":84,"width":14,"height":17,"xoffset":1,"yoffset":15,"xadvance":15,"page":0,"chnl":0},{"id":100,"x":96,"y":467,"width":15,"height":24,"xoffset":1,"yoffset":8,"xadvance":18,"page":0,"chnl":0},{"id":101,"x":255,"y":84,"width":15,"height":17,"xoffset":1,"yoffset":15,"xadvance":17,"page":0,"chnl":0},{"id":102,"x":499,"y":108,"width":11,"height":24,"xoffset":0,"yoffset":8,"xadvance":11,"page":0,"chnl":0},{"id":103,"x":481,"y":168,"width":16,"height":23,"xoffset":0,"yoffset":15,"xadvance":16,"page":0,"chnl":0},{"id":104,"x":218,"y":247,"width":14,"height":24,"xoffset":2,"yoffset":8,"xadvance":18,"page":0,"chnl":0},{"id":105,"x":38,"y":262,"width":5,"height":24,"xoffset":2,"yoffset":8,"xadvance":8,"page":0,"chnl":0},{"id":106,"x":86,"y":149,"width":8,"height":30,"xoffset":-1,"yoffset":8,"xadvance":8,"page":0,"chnl":0},{"id":107,"x":218,"y":273,"width":15,"height":24,"xoffset":2,"yoffset":8,"xadvance":17,"page":0,"chnl":0},{"id":108,"x":41,"y":341,"width":4,"height":24,"xoffset":2,"yoffset":8,"xadvance":8,"page":0,"chnl":0},{"id":109,"x":382,"y":85,"width":23,"height":17,"xoffset":2,"yoffset":15,"xadvance":26,"page":0,"chnl":0},{"id":110,"x":433,"y":84,"width":14,"height":17,"xoffset":2,"yoffset":15,"xadvance":18,"page":0,"chnl":0},{"id":111,"x":389,"y":173,"width":16,"height":17,"xoffset":1,"yoffset":15,"xadvance":18,"page":0,"chnl":0},{"id":112,"x":496,"y":83,"width":15,"height":23,"xoffset":2,"yoffset":15,"xadvance":18,"page":0,"chnl":0},{"id":113,"x":185,"y":336,"width":15,"height":23,"xoffset":1,"yoffset":15,"xadvance":18,"page":0,"chnl":0},{"id":114,"x":272,"y":84,"width":11,"height":17,"xoffset":2,"yoffset":15,"xadvance":13,"page":0,"chnl":0},{"id":115,"x":96,"y":493,"width":13,"height":17,"xoffset":0,"yoffset":15,"xadvance":14,"page":0,"chnl":0},{"id":116,"x":499,"y":168,"width":12,"height":23,"xoffset":0,"yoffset":9,"xadvance":12,"page":0,"chnl":0},{"id":117,"x":202,"y":336,"width":15,"height":17,"xoffset":1,"yoffset":15,"xadvance":18,"page":0,"chnl":0},{"id":118,"x":185,"y":361,"width":17,"height":17,"xoffset":0,"yoffset":15,"xadvance":16,"page":0,"chnl":0},{"id":119,"x":204,"y":361,"width":25,"height":17,"xoffset":0,"yoffset":15,"xadvance":25,"page":0,"chnl":0},{"id":120,"x":185,"y":380,"width":16,"height":17,"xoffset":0,"yoffset":15,"xadvance":16,"page":0,"chnl":0},{"id":121,"x":185,"y":399,"width":17,"height":23,"xoffset":0,"yoffset":15,"xadvance":16,"page":0,"chnl":0},{"id":122,"x":220,"y":310,"width":13,"height":17,"xoffset":1,"yoffset":15,"xadvance":15,"page":0,"chnl":0},{"id":123,"x":236,"y":220,"width":9,"height":31,"xoffset":0,"yoffset":6,"xadvance":10,"page":0,"chnl":0},{"id":124,"x":91,"y":99,"width":3,"height":31,"xoffset":3,"yoffset":7,"xadvance":10,"page":0,"chnl":0},{"id":125,"x":236,"y":253,"width":8,"height":31,"xoffset":1,"yoffset":6,"xadvance":10,"page":0,"chnl":0},{"id":126,"x":78,"y":393,"width":16,"height":6,"xoffset":1,"yoffset":19,"xadvance":19,"page":0,"chnl":0}],"kernings":[{"first":34,"second":38,"amount":-4},{"first":34,"second":44,"amount":-5},{"first":34,"second":45,"amount":-4},{"first":34,"second":46,"amount":-5},{"first":34,"second":47,"amount":-4},{"first":34,"second":64,"amount":-2},{"first":34,"second":65,"amount":-4},{"first":34,"second":67,"amount":-2},{"first":34,"second":71,"amount":-2},{"first":34,"second":79,"amount":-2},{"first":34,"second":81,"amount":-2},{"first":34,"second":86,"amount":1},{"first":34,"second":87,"amount":1},{"first":34,"second":92,"amount":1},{"first":34,"second":97,"amount":-2},{"first":34,"second":99,"amount":-2},{"first":34,"second":100,"amount":-2},{"first":34,"second":101,"amount":-2},{"first":34,"second":111,"amount":-2},{"first":34,"second":113,"amount":-2},{"first":39,"second":38,"amount":-4},{"first":39,"second":44,"amount":-5},{"first":39,"second":45,"amount":-4},{"first":39,"second":46,"amount":-5},{"first":39,"second":47,"amount":-4},{"first":39,"second":64,"amount":-2},{"first":39,"second":65,"amount":-4},{"first":39,"second":67,"amount":-2},{"first":39,"second":71,"amount":-2},{"first":39,"second":79,"amount":-2},{"first":39,"second":81,"amount":-2},{"first":39,"second":86,"amount":1},{"first":39,"second":87,"amount":1},{"first":39,"second":92,"amount":1},{"first":39,"second":97,"amount":-2},{"first":39,"second":99,"amount":-2},{"first":39,"second":100,"amount":-2},{"first":39,"second":101,"amount":-2},{"first":39,"second":111,"amount":-2},{"first":39,"second":113,"amount":-2},{"first":40,"second":64,"amount":-2},{"first":40,"second":67,"amount":-2},{"first":40,"second":71,"amount":-2},{"first":40,"second":79,"amount":-2},{"first":40,"second":81,"amount":-2},{"first":40,"second":99,"amount":-2},{"first":40,"second":100,"amount":-2},{"first":40,"second":101,"amount":-2},{"first":40,"second":111,"amount":-2},{"first":40,"second":113,"amount":-2},{"first":42,"second":38,"amount":-4},{"first":42,"second":44,"amount":-5},{"first":42,"second":45,"amount":-4},{"first":42,"second":46,"amount":-5},{"first":42,"second":47,"amount":-4},{"first":42,"second":64,"amount":-2},{"first":42,"second":65,"amount":-4},{"first":42,"second":67,"amount":-2},{"first":42,"second":71,"amount":-2},{"first":42,"second":79,"amount":-2},{"first":42,"second":81,"amount":-2},{"first":42,"second":86,"amount":1},{"first":42,"second":87,"amount":1},{"first":42,"second":92,"amount":1},{"first":42,"second":97,"amount":-2},{"first":42,"second":99,"amount":-2},{"first":42,"second":100,"amount":-2},{"first":42,"second":101,"amount":-2},{"first":42,"second":111,"amount":-2},{"first":42,"second":113,"amount":-2},{"first":44,"second":34,"amount":-5},{"first":44,"second":39,"amount":-5},{"first":44,"second":42,"amount":-5},{"first":44,"second":45,"amount":-3},{"first":44,"second":64,"amount":-2},{"first":44,"second":67,"amount":-2},{"first":44,"second":71,"amount":-2},{"first":44,"second":79,"amount":-2},{"first":44,"second":81,"amount":-2},{"first":44,"second":84,"amount":-4},{"first":44,"second":86,"amount":-4},{"first":44,"second":87,"amount":-3},{"first":44,"second":89,"amount":-3},{"first":44,"second":92,"amount":-4},{"first":44,"second":118,"amount":-3},{"first":44,"second":119,"amount":-2},{"first":44,"second":121,"amount":-3},{"first":45,"second":34,"amount":-4},{"first":45,"second":38,"amount":-2},{"first":45,"second":39,"amount":-4},{"first":45,"second":42,"amount":-4},{"first":45,"second":44,"amount":-3},{"first":45,"second":46,"amount":-3},{"first":45,"second":47,"amount":-2},{"first":45,"second":65,"amount":-2},{"first":45,"second":84,"amount":-4},{"first":45,"second":86,"amount":-3},{"first":45,"second":87,"amount":-2},{"first":45,"second":88,"amount":-2},{"first":45,"second":89,"amount":-4},{"first":45,"second":90,"amount":-2},{"first":45,"second":92,"amount":-3},{"first":46,"second":34,"amount":-5},{"first":46,"second":39,"amount":-5},{"first":46,"second":42,"amount":-5},{"first":46,"second":45,"amount":-3},{"first":46,"second":64,"amount":-2},{"first":46,"second":67,"amount":-2},{"first":46,"second":71,"amount":-2},{"first":46,"second":79,"amount":-2},{"first":46,"second":81,"amount":-2},{"first":46,"second":84,"amount":-4},{"first":46,"second":86,"amount":-4},{"first":46,"second":87,"amount":-3},{"first":46,"second":89,"amount":-3},{"first":46,"second":92,"amount":-4},{"first":46,"second":118,"amount":-3},{"first":46,"second":119,"amount":-2},{"first":46,"second":121,"amount":-3},{"first":47,"second":34,"amount":1},{"first":47,"second":38,"amount":-3},{"first":47,"second":39,"amount":1},{"first":47,"second":42,"amount":1},{"first":47,"second":44,"amount":-4},{"first":47,"second":45,"amount":-3},{"first":47,"second":46,"amount":-4},{"first":47,"second":47,"amount":-3},{"first":47,"second":58,"amount":-2},{"first":47,"second":59,"amount":-2},{"first":47,"second":63,"amount":1},{"first":47,"second":64,"amount":-2},{"first":47,"second":65,"amount":-3},{"first":47,"second":67,"amount":-2},{"first":47,"second":71,"amount":-2},{"first":47,"second":74,"amount":-3},{"first":47,"second":79,"amount":-2},{"first":47,"second":81,"amount":-2},{"first":47,"second":97,"amount":-3},{"first":47,"second":99,"amount":-3},{"first":47,"second":100,"amount":-3},{"first":47,"second":101,"amount":-3},{"first":47,"second":103,"amount":-3},{"first":47,"second":109,"amount":-2},{"first":47,"second":110,"amount":-2},{"first":47,"second":111,"amount":-3},{"first":47,"second":112,"amount":-2},{"first":47,"second":113,"amount":-3},{"first":47,"second":114,"amount":-2},{"first":47,"second":115,"amount":-3},{"first":47,"second":116,"amount":-2},{"first":47,"second":117,"amount":-2},{"first":47,"second":118,"amount":-2},{"first":47,"second":120,"amount":-2},{"first":47,"second":121,"amount":-2},{"first":47,"second":122,"amount":-2},{"first":64,"second":34,"amount":-2},{"first":64,"second":38,"amount":-2},{"first":64,"second":39,"amount":-2},{"first":64,"second":41,"amount":-2},{"first":64,"second":42,"amount":-2},{"first":64,"second":44,"amount":-2},{"first":64,"second":46,"amount":-2},{"first":64,"second":47,"amount":-2},{"first":64,"second":65,"amount":-2},{"first":64,"second":84,"amount":-3},{"first":64,"second":86,"amount":-2},{"first":64,"second":89,"amount":-2},{"first":64,"second":90,"amount":-2},{"first":64,"second":92,"amount":-2},{"first":64,"second":93,"amount":-2},{"first":64,"second":125,"amount":-2},{"first":65,"second":34,"amount":-4},{"first":65,"second":39,"amount":-4},{"first":65,"second":42,"amount":-4},{"first":65,"second":45,"amount":-2},{"first":65,"second":63,"amount":-2},{"first":65,"second":64,"amount":-2},{"first":65,"second":67,"amount":-2},{"first":65,"second":71,"amount":-2},{"first":65,"second":74,"amount":1},{"first":65,"second":79,"amount":-2},{"first":65,"second":81,"amount":-2},{"first":65,"second":84,"amount":-3},{"first":65,"second":85,"amount":-2},{"first":65,"second":86,"amount":-3},{"first":65,"second":87,"amount":-2},{"first":65,"second":89,"amount":-4},{"first":65,"second":92,"amount":-3},{"first":65,"second":118,"amount":-2},{"first":65,"second":121,"amount":-2},{"first":67,"second":45,"amount":-3},{"first":68,"second":34,"amount":-2},{"first":68,"second":38,"amount":-2},{"first":68,"second":39,"amount":-2},{"first":68,"second":41,"amount":-2},{"first":68,"second":42,"amount":-2},{"first":68,"second":44,"amount":-2},{"first":68,"second":46,"amount":-2},{"first":68,"second":47,"amount":-2},{"first":68,"second":65,"amount":-2},{"first":68,"second":84,"amount":-3},{"first":68,"second":86,"amount":-2},{"first":68,"second":89,"amount":-2},{"first":68,"second":90,"amount":-2},{"first":68,"second":92,"amount":-2},{"first":68,"second":93,"amount":-2},{"first":68,"second":125,"amount":-2},{"first":70,"second":38,"amount":-3},{"first":70,"second":44,"amount":-4},{"first":70,"second":46,"amount":-4},{"first":70,"second":47,"amount":-3},{"first":70,"second":58,"amount":-2},{"first":70,"second":59,"amount":-2},{"first":70,"second":65,"amount":-3},{"first":70,"second":74,"amount":-4},{"first":70,"second":99,"amount":-2},{"first":70,"second":100,"amount":-2},{"first":70,"second":101,"amount":-2},{"first":70,"second":109,"amount":-2},{"first":70,"second":110,"amount":-2},{"first":70,"second":111,"amount":-2},{"first":70,"second":112,"amount":-2},{"first":70,"second":113,"amount":-2},{"first":70,"second":114,"amount":-2},{"first":70,"second":117,"amount":-2},{"first":74,"second":38,"amount":-2},{"first":74,"second":44,"amount":-2},{"first":74,"second":46,"amount":-2},{"first":74,"second":47,"amount":-2},{"first":74,"second":65,"amount":-2},{"first":75,"second":45,"amount":-2},{"first":75,"second":99,"amount":-2},{"first":75,"second":100,"amount":-2},{"first":75,"second":101,"amount":-2},{"first":75,"second":102,"amount":-2},{"first":75,"second":111,"amount":-2},{"first":75,"second":113,"amount":-2},{"first":75,"second":116,"amount":-2},{"first":75,"second":118,"amount":-2},{"first":75,"second":119,"amount":-2},{"first":75,"second":121,"amount":-2},{"first":76,"second":34,"amount":-6},{"first":76,"second":39,"amount":-6},{"first":76,"second":42,"amount":-6},{"first":76,"second":44,"amount":1},{"first":76,"second":45,"amount":-4},{"first":76,"second":46,"amount":1},{"first":76,"second":63,"amount":-2},{"first":76,"second":64,"amount":-2},{"first":76,"second":67,"amount":-2},{"first":76,"second":71,"amount":-2},{"first":76,"second":79,"amount":-2},{"first":76,"second":81,"amount":-2},{"first":76,"second":84,"amount":-4},{"first":76,"second":86,"amount":-4},{"first":76,"second":87,"amount":-3},{"first":76,"second":89,"amount":-4},{"first":76,"second":92,"amount":-4},{"first":76,"second":99,"amount":-2},{"first":76,"second":100,"amount":-2},{"first":76,"second":101,"amount":-2},{"first":76,"second":111,"amount":-2},{"first":76,"second":113,"amount":-2},{"first":76,"second":118,"amount":-3},{"first":76,"second":119,"amount":-2},{"first":76,"second":121,"amount":-3},{"first":79,"second":34,"amount":-2},{"first":79,"second":38,"amount":-2},{"first":79,"second":39,"amount":-2},{"first":79,"second":41,"amount":-2},{"first":79,"second":42,"amount":-2},{"first":79,"second":44,"amount":-2},{"first":79,"second":46,"amount":-2},{"first":79,"second":47,"amount":-2},{"first":79,"second":65,"amount":-2},{"first":79,"second":84,"amount":-3},{"first":79,"second":86,"amount":-2},{"first":79,"second":89,"amount":-2},{"first":79,"second":90,"amount":-2},{"first":79,"second":92,"amount":-2},{"first":79,"second":93,"amount":-2},{"first":79,"second":125,"amount":-2},{"first":80,"second":38,"amount":-3},{"first":80,"second":44,"amount":-5},{"first":80,"second":46,"amount":-5},{"first":80,"second":47,"amount":-3},{"first":80,"second":65,"amount":-3},{"first":80,"second":74,"amount":-4},{"first":80,"second":97,"amount":-2},{"first":81,"second":34,"amount":-2},{"first":81,"second":38,"amount":-2},{"first":81,"second":39,"amount":-2},{"first":81,"second":41,"amount":-2},{"first":81,"second":42,"amount":-2},{"first":81,"second":44,"amount":-2},{"first":81,"second":46,"amount":-2},{"first":81,"second":47,"amount":-2},{"first":81,"second":65,"amount":-2},{"first":81,"second":84,"amount":-3},{"first":81,"second":86,"amount":-2},{"first":81,"second":89,"amount":-2},{"first":81,"second":90,"amount":-2},{"first":81,"second":92,"amount":-2},{"first":81,"second":93,"amount":-2},{"first":81,"second":125,"amount":-2},{"first":82,"second":64,"amount":-2},{"first":82,"second":67,"amount":-2},{"first":82,"second":71,"amount":-2},{"first":82,"second":79,"amount":-2},{"first":82,"second":81,"amount":-2},{"first":82,"second":84,"amount":-2},{"first":82,"second":85,"amount":-2},{"first":84,"second":38,"amount":-3},{"first":84,"second":44,"amount":-4},{"first":84,"second":45,"amount":-4},{"first":84,"second":46,"amount":-4},{"first":84,"second":47,"amount":-3},{"first":84,"second":58,"amount":-4},{"first":84,"second":59,"amount":-4},{"first":84,"second":64,"amount":-3},{"first":84,"second":65,"amount":-3},{"first":84,"second":67,"amount":-3},{"first":84,"second":71,"amount":-3},{"first":84,"second":74,"amount":-4},{"first":84,"second":79,"amount":-3},{"first":84,"second":81,"amount":-3},{"first":84,"second":97,"amount":-5},{"first":84,"second":99,"amount":-4},{"first":84,"second":100,"amount":-4},{"first":84,"second":101,"amount":-4},{"first":84,"second":103,"amount":-4},{"first":84,"second":109,"amount":-4},{"first":84,"second":110,"amount":-4},{"first":84,"second":111,"amount":-4},{"first":84,"second":112,"amount":-4},{"first":84,"second":113,"amount":-4},{"first":84,"second":114,"amount":-4},{"first":84,"second":115,"amount":-4},{"first":84,"second":117,"amount":-4},{"first":84,"second":118,"amount":-4},{"first":84,"second":119,"amount":-3},{"first":84,"second":120,"amount":-3},{"first":84,"second":121,"amount":-4},{"first":84,"second":122,"amount":-3},{"first":85,"second":38,"amount":-2},{"first":85,"second":44,"amount":-2},{"first":85,"second":46,"amount":-2},{"first":85,"second":47,"amount":-2},{"first":85,"second":65,"amount":-2},{"first":86,"second":34,"amount":1},{"first":86,"second":38,"amount":-3},{"first":86,"second":39,"amount":1},{"first":86,"second":42,"amount":1},{"first":86,"second":44,"amount":-4},{"first":86,"second":45,"amount":-3},{"first":86,"second":46,"amount":-4},{"first":86,"second":47,"amount":-3},{"first":86,"second":58,"amount":-2},{"first":86,"second":59,"amount":-2},{"first":86,"second":63,"amount":1},{"first":86,"second":64,"amount":-2},{"first":86,"second":65,"amount":-3},{"first":86,"second":67,"amount":-2},{"first":86,"second":71,"amount":-2},{"first":86,"second":74,"amount":-3},{"first":86,"second":79,"amount":-2},{"first":86,"second":81,"amount":-2},{"first":86,"second":97,"amount":-3},{"first":86,"second":99,"amount":-3},{"first":86,"second":100,"amount":-3},{"first":86,"second":101,"amount":-3},{"first":86,"second":103,"amount":-3},{"first":86,"second":109,"amount":-2},{"first":86,"second":110,"amount":-2},{"first":86,"second":111,"amount":-3},{"first":86,"second":112,"amount":-2},{"first":86,"second":113,"amount":-3},{"first":86,"second":114,"amount":-2},{"first":86,"second":115,"amount":-3},{"first":86,"second":116,"amount":-2},{"first":86,"second":117,"amount":-2},{"first":86,"second":118,"amount":-2},{"first":86,"second":120,"amount":-2},{"first":86,"second":121,"amount":-2},{"first":86,"second":122,"amount":-2},{"first":87,"second":34,"amount":1},{"first":87,"second":38,"amount":-2},{"first":87,"second":39,"amount":1},{"first":87,"second":42,"amount":1},{"first":87,"second":44,"amount":-3},{"first":87,"second":45,"amount":-2},{"first":87,"second":46,"amount":-3},{"first":87,"second":47,"amount":-2},{"first":87,"second":63,"amount":1},{"first":87,"second":65,"amount":-2},{"first":87,"second":74,"amount":-3},{"first":87,"second":97,"amount":-2},{"first":87,"second":99,"amount":-2},{"first":87,"second":100,"amount":-2},{"first":87,"second":101,"amount":-2},{"first":87,"second":103,"amount":-3},{"first":87,"second":111,"amount":-2},{"first":87,"second":113,"amount":-2},{"first":87,"second":115,"amount":-2},{"first":88,"second":45,"amount":-2},{"first":88,"second":99,"amount":-2},{"first":88,"second":100,"amount":-2},{"first":88,"second":101,"amount":-2},{"first":88,"second":102,"amount":-2},{"first":88,"second":111,"amount":-2},{"first":88,"second":113,"amount":-2},{"first":88,"second":116,"amount":-2},{"first":88,"second":118,"amount":-2},{"first":88,"second":119,"amount":-2},{"first":88,"second":121,"amount":-2},{"first":89,"second":38,"amount":-4},{"first":89,"second":44,"amount":-3},{"first":89,"second":45,"amount":-4},{"first":89,"second":46,"amount":-3},{"first":89,"second":47,"amount":-4},{"first":89,"second":58,"amount":-3},{"first":89,"second":59,"amount":-3},{"first":89,"second":63,"amount":1},{"first":89,"second":64,"amount":-2},{"first":89,"second":65,"amount":-4},{"first":89,"second":67,"amount":-2},{"first":89,"second":71,"amount":-2},{"first":89,"second":74,"amount":-4},{"first":89,"second":79,"amount":-2},{"first":89,"second":81,"amount":-2},{"first":89,"second":97,"amount":-3},{"first":89,"second":99,"amount":-4},{"first":89,"second":100,"amount":-4},{"first":89,"second":101,"amount":-4},{"first":89,"second":103,"amount":-4},{"first":89,"second":109,"amount":-3},{"first":89,"second":110,"amount":-3},{"first":89,"second":111,"amount":-4},{"first":89,"second":112,"amount":-3},{"first":89,"second":113,"amount":-4},{"first":89,"second":114,"amount":-3},{"first":89,"second":115,"amount":-3},{"first":89,"second":117,"amount":-3},{"first":89,"second":118,"amount":-3},{"first":89,"second":119,"amount":-2},{"first":89,"second":120,"amount":-3},{"first":89,"second":121,"amount":-3},{"first":90,"second":45,"amount":-2},{"first":90,"second":63,"amount":1},{"first":90,"second":64,"amount":-2},{"first":90,"second":67,"amount":-2},{"first":90,"second":71,"amount":-2},{"first":90,"second":79,"amount":-2},{"first":90,"second":81,"amount":-2},{"first":90,"second":99,"amount":-2},{"first":90,"second":100,"amount":-2},{"first":90,"second":101,"amount":-2},{"first":90,"second":111,"amount":-2},{"first":90,"second":113,"amount":-2},{"first":90,"second":118,"amount":-2},{"first":90,"second":121,"amount":-2},{"first":91,"second":64,"amount":-2},{"first":91,"second":67,"amount":-2},{"first":91,"second":71,"amount":-2},{"first":91,"second":79,"amount":-2},{"first":91,"second":81,"amount":-2},{"first":91,"second":99,"amount":-2},{"first":91,"second":100,"amount":-2},{"first":91,"second":101,"amount":-2},{"first":91,"second":111,"amount":-2},{"first":91,"second":113,"amount":-2},{"first":92,"second":34,"amount":-4},{"first":92,"second":39,"amount":-4},{"first":92,"second":42,"amount":-4},{"first":92,"second":45,"amount":-2},{"first":92,"second":63,"amount":-2},{"first":92,"second":64,"amount":-2},{"first":92,"second":67,"amount":-2},{"first":92,"second":71,"amount":-2},{"first":92,"second":74,"amount":1},{"first":92,"second":79,"amount":-2},{"first":92,"second":81,"amount":-2},{"first":92,"second":84,"amount":-3},{"first":92,"second":85,"amount":-2},{"first":92,"second":86,"amount":-3},{"first":92,"second":87,"amount":-2},{"first":92,"second":89,"amount":-4},{"first":92,"second":92,"amount":-3},{"first":92,"second":118,"amount":-2},{"first":92,"second":121,"amount":-2},{"first":97,"second":34,"amount":-2},{"first":97,"second":39,"amount":-2},{"first":97,"second":42,"amount":-2},{"first":97,"second":118,"amount":-2},{"first":97,"second":121,"amount":-2},{"first":98,"second":34,"amount":-2},{"first":98,"second":39,"amount":-2},{"first":98,"second":41,"amount":-2},{"first":98,"second":42,"amount":-2},{"first":98,"second":86,"amount":-3},{"first":98,"second":87,"amount":-2},{"first":98,"second":92,"amount":-3},{"first":98,"second":93,"amount":-2},{"first":98,"second":120,"amount":-2},{"first":98,"second":125,"amount":-2},{"first":101,"second":34,"amount":-2},{"first":101,"second":39,"amount":-2},{"first":101,"second":41,"amount":-2},{"first":101,"second":42,"amount":-2},{"first":101,"second":86,"amount":-3},{"first":101,"second":87,"amount":-2},{"first":101,"second":92,"amount":-3},{"first":101,"second":93,"amount":-2},{"first":101,"second":120,"amount":-2},{"first":101,"second":125,"amount":-2},{"first":102,"second":34,"amount":1},{"first":102,"second":39,"amount":1},{"first":102,"second":42,"amount":1},{"first":102,"second":44,"amount":-3},{"first":102,"second":46,"amount":-3},{"first":104,"second":34,"amount":-2},{"first":104,"second":39,"amount":-2},{"first":104,"second":42,"amount":-2},{"first":104,"second":118,"amount":-2},{"first":104,"second":121,"amount":-2},{"first":107,"second":99,"amount":-2},{"first":107,"second":100,"amount":-2},{"first":107,"second":101,"amount":-2},{"first":107,"second":111,"amount":-2},{"first":107,"second":113,"amount":-2},{"first":109,"second":34,"amount":-2},{"first":109,"second":39,"amount":-2},{"first":109,"second":42,"amount":-2},{"first":109,"second":118,"amount":-2},{"first":109,"second":121,"amount":-2},{"first":110,"second":34,"amount":-2},{"first":110,"second":39,"amount":-2},{"first":110,"second":42,"amount":-2},{"first":110,"second":118,"amount":-2},{"first":110,"second":121,"amount":-2},{"first":111,"second":34,"amount":-2},{"first":111,"second":39,"amount":-2},{"first":111,"second":41,"amount":-2},{"first":111,"second":42,"amount":-2},{"first":111,"second":86,"amount":-3},{"first":111,"second":87,"amount":-2},{"first":111,"second":92,"amount":-3},{"first":111,"second":93,"amount":-2},{"first":111,"second":120,"amount":-2},{"first":111,"second":125,"amount":-2},{"first":112,"second":34,"amount":-2},{"first":112,"second":39,"amount":-2},{"first":112,"second":41,"amount":-2},{"first":112,"second":42,"amount":-2},{"first":112,"second":86,"amount":-3},{"first":112,"second":87,"amount":-2},{"first":112,"second":92,"amount":-3},{"first":112,"second":93,"amount":-2},{"first":112,"second":120,"amount":-2},{"first":112,"second":125,"amount":-2},{"first":114,"second":44,"amount":-3},{"first":114,"second":46,"amount":-3},{"first":114,"second":97,"amount":-2},{"first":118,"second":38,"amount":-2},{"first":118,"second":44,"amount":-3},{"first":118,"second":46,"amount":-3},{"first":118,"second":47,"amount":-2},{"first":118,"second":65,"amount":-2},{"first":119,"second":44,"amount":-2},{"first":119,"second":46,"amount":-2},{"first":120,"second":99,"amount":-2},{"first":120,"second":100,"amount":-2},{"first":120,"second":101,"amount":-2},{"first":120,"second":111,"amount":-2},{"first":120,"second":113,"amount":-2},{"first":121,"second":38,"amount":-2},{"first":121,"second":44,"amount":-3},{"first":121,"second":46,"amount":-3},{"first":121,"second":47,"amount":-2},{"first":121,"second":65,"amount":-2},{"first":123,"second":64,"amount":-2},{"first":123,"second":67,"amount":-2},{"first":123,"second":71,"amount":-2},{"first":123,"second":79,"amount":-2},{"first":123,"second":81,"amount":-2},{"first":123,"second":99,"amount":-2},{"first":123,"second":100,"amount":-2},{"first":123,"second":101,"amount":-2},{"first":123,"second":111,"amount":-2},{"first":123,"second":113,"amount":-2}],"info":{"face":"Lato-Regular","size":32,"bold":0,"italic":0,"charset":"","unicode":1,"stretchH":100,"smooth":1,"aa":2,"padding":[0,0,0,0],"spacing":[0,0]},"common":{"lineHeight":38,"base":32,"scaleW":512,"scaleH":512,"pages":1,"packed":0,"alphaChnl":0,"redChnl":0,"greenChnl":0,"blueChnl":0}} -------------------------------------------------------------------------------- /fnt/NexaLight32.fnt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | 424 | 425 | 426 | 427 | 428 | 429 | 430 | 431 | 432 | 433 | 434 | 435 | 436 | 437 | 438 | 439 | 440 | 441 | 442 | 443 | 444 | 445 | 446 | 447 | 448 | 449 | 450 | 451 | 452 | 453 | 454 | 455 | 456 | 457 | 458 | 459 | 460 | 461 | 462 | 463 | 464 | 465 | 466 | 467 | 468 | 469 | 470 | 471 | 472 | 473 | 474 | 475 | 476 | 477 | 478 | 479 | 480 | 481 | 482 | 483 | 484 | 485 | 486 | 487 | 488 | 489 | 490 | 491 | 492 | 493 | 494 | 495 | 496 | 497 | 498 | 499 | 500 | 501 | 502 | 503 | 504 | 505 | 506 | 507 | 508 | 509 | 510 | 511 | 512 | 513 | 514 | 515 | 516 | 517 | 518 | 519 | 520 | 521 | 522 | 523 | 524 | 525 | 526 | 527 | 528 | 529 | 530 | 531 | 532 | 533 | 534 | 535 | 536 | 537 | 538 | 539 | 540 | 541 | 542 | 543 | 544 | 545 | 546 | 547 | 548 | 549 | 550 | 551 | 552 | 553 | 554 | 555 | 556 | 557 | 558 | 559 | 560 | 561 | 562 | 563 | 564 | 565 | 566 | 567 | 568 | 569 | 570 | 571 | 572 | 573 | 574 | 575 | 576 | 577 | 578 | 579 | 580 | 581 | 582 | 583 | 584 | 585 | 586 | 587 | 588 | 589 | 590 | 591 | 592 | 593 | 594 | 595 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | var fs = require('fs') 2 | var url = require('url') 3 | var path = require('path') 4 | var request = require('phin') 5 | var parseASCII = require('parse-bmfont-ascii') 6 | var parseXML = require('parse-bmfont-xml') 7 | var readBinary = require('parse-bmfont-binary') 8 | var mime = require('mime') 9 | var noop = function() {} 10 | var isBinary = require('./lib/is-binary') 11 | 12 | function parseFont(file, data, cb) { 13 | var result, binary 14 | 15 | if (isBinary(data)) { 16 | if (typeof data === 'string') data = Buffer.from(data, 'binary') 17 | binary = true 18 | } else data = data.toString().trim() 19 | 20 | try { 21 | if (binary) result = readBinary(data) 22 | else if (/json/.test(mime.lookup(file)) || data.charAt(0) === '{') 23 | result = JSON.parse(data) 24 | else if (/xml/.test(mime.lookup(file)) || data.charAt(0) === '<') 25 | result = parseXML(data) 26 | else result = parseASCII(data) 27 | } catch (e) { 28 | cb(e) 29 | cb = noop 30 | } 31 | 32 | cb(null, result) 33 | } 34 | 35 | module.exports = function loadFont(opt, cb) { 36 | cb = typeof cb === 'function' ? cb : noop 37 | 38 | if (typeof opt === 'string') opt = { uri: opt, url: opt } 39 | else if (!opt) opt = {} 40 | 41 | var file = opt.uri || opt.url 42 | 43 | function handleData(err, data) { 44 | if (err) return cb(err) 45 | parseFont(file, data.body || data, cb) 46 | } 47 | 48 | if (url.parse(file).host) { 49 | request(opt).then(function (res) { 50 | handleData(null, res) 51 | }).catch(function (err) { 52 | handleData(err) 53 | }) 54 | } else { 55 | fs.readFile(file, opt, handleData) 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /json-spec.md: -------------------------------------------------------------------------------- 1 | The spec for the JSON output is consistent with the rest of the [BMFont file spec](http://www.angelcode.com/products/bmfont/doc/file_format.html). 2 | 3 | Here is what a typical output looks like, omitting the full list of glyphs/kernings for brevity. 4 | 5 | ```json 6 | { 7 | "pages": [ 8 | "sheet.png" 9 | ], 10 | "chars": [ 11 | { 12 | "id": 10, 13 | "x": 281, 14 | "y": 9, 15 | "width": 0, 16 | "height": 0, 17 | "xoffset": 0, 18 | "yoffset": 24, 19 | "xadvance": 8, 20 | "page": 0, 21 | "chnl": 0 22 | }, 23 | { 24 | "id": 32, 25 | "x": 0, 26 | "y": 0, 27 | "width": 0, 28 | "height": 0, 29 | "xoffset": 0, 30 | "yoffset": 0, 31 | "xadvance": 9, 32 | "page": 0, 33 | "chnl": 0 34 | }, 35 | ... 36 | ], 37 | "kernings": [ 38 | { 39 | "first": 34, 40 | "second": 65, 41 | "amount": -2 42 | }, 43 | { 44 | "first": 34, 45 | "second": 67, 46 | "amount": 1 47 | }, 48 | ... 49 | ], 50 | "info": { 51 | "face": "Nexa Light", 52 | "size": 32, 53 | "bold": 0, 54 | "italic": 0, 55 | "charset": "", 56 | "unicode": 1, 57 | "stretchH": 100, 58 | "smooth": 1, 59 | "aa": 2, 60 | "padding": [ 61 | 0, 62 | 0, 63 | 0, 64 | 0 65 | ], 66 | "spacing": [ 67 | 0, 68 | 0 69 | ] 70 | }, 71 | "common": { 72 | "lineHeight": 32, 73 | "base": 24, 74 | "scaleW": 1024, 75 | "scaleH": 2048, 76 | "pages": 1, 77 | "packed": 0, 78 | "alphaChnl": 0, 79 | "redChnl": 0, 80 | "greenChnl": 0, 81 | "blueChnl": 0 82 | } 83 | } 84 | ``` -------------------------------------------------------------------------------- /lib/is-binary.js: -------------------------------------------------------------------------------- 1 | var equal = require('buffer-equal') 2 | var HEADER = Buffer.from([66, 77, 70, 3]) 3 | 4 | module.exports = function(buf) { 5 | if (typeof buf === 'string') 6 | return buf.substring(0, 3) === 'BMF' 7 | return buf.length > 4 && equal(buf.slice(0, 4), HEADER) 8 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "load-bmfont", 3 | "version": "1.4.1", 4 | "description": "loads a BMFont file in Node and the browser", 5 | "main": "index.js", 6 | "browser": "browser.js", 7 | "license": "MIT", 8 | "author": { 9 | "name": "Matt DesLauriers", 10 | "email": "dave.des@gmail.com", 11 | "url": "https://github.com/mattdesl" 12 | }, 13 | "dependencies": { 14 | "buffer-equal": "0.0.1", 15 | "mime": "^1.3.4", 16 | "parse-bmfont-ascii": "^1.0.3", 17 | "parse-bmfont-binary": "^1.0.5", 18 | "parse-bmfont-xml": "^1.1.4", 19 | "phin": "^3.7.1", 20 | "xhr": "^2.0.1", 21 | "xtend": "^4.0.0" 22 | }, 23 | "devDependencies": { 24 | "browserify": "^9.0.3", 25 | "tap-spec": "^2.2.2", 26 | "tape": "^3.5.0", 27 | "testling": "^1.7.1" 28 | }, 29 | "scripts": { 30 | "test-node": "(node test.js; node test-server.js) | tap-spec", 31 | "test-browser": "browserify test.js | testling | tap-spec", 32 | "test": "npm run test-node && npm run test-browser" 33 | }, 34 | "keywords": [ 35 | "bmfont", 36 | "bitmap", 37 | "font", 38 | "angel", 39 | "code", 40 | "angelcode", 41 | "parse", 42 | "ascii", 43 | "xml", 44 | "text", 45 | "json" 46 | ], 47 | "repository": { 48 | "type": "git", 49 | "url": "git://github.com/Jam3/load-bmfont.git" 50 | }, 51 | "homepage": "https://github.com/Jam3/load-bmfont", 52 | "bugs": { 53 | "url": "https://github.com/Jam3/load-bmfont/issues" 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /test-server.js: -------------------------------------------------------------------------------- 1 | var test = require('tape') 2 | var load = require('./') 3 | var expectedArial = require('./fnt/Arial.json') 4 | var fs = require('fs') 5 | var http = require('http') 6 | 7 | var arialBin = fs.readFileSync('fnt/Arial.bin') 8 | 9 | test('should load from server URL', function (t) { 10 | t.plan(1) 11 | 12 | const server = http.createServer((req,res) => { 13 | res.end(arialBin) 14 | }) 15 | 16 | server.listen(8003, () => { 17 | load({ 18 | url: 'http://localhost:8003', 19 | binary: true 20 | }, (err, res) => { 21 | if (err) t.fail(err) 22 | else t.deepEqual(res, expectedArial) 23 | server.close() 24 | }) 25 | }) 26 | }) 27 | -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- 1 | var test = require('tape') 2 | var load = require('./') 3 | var expectedLato = require('./fnt/Lato-Regular-32.json') 4 | var expectedNexa = require('./fnt/NexaLight32.json') 5 | var expectedArial = require('./fnt/Arial.json') 6 | 7 | function run(opt, expected) { 8 | return function(t) { 9 | t.plan(1) 10 | load(opt, function(err, font) { 11 | if (err) 12 | t.fail(err) 13 | t.deepEqual(font, expected, 'matches expected JSON') 14 | }) 15 | } 16 | } 17 | 18 | test('should load ASCII font', run('fnt/Lato-Regular-32.fnt', expectedLato)) 19 | test('should load JSON font', run('fnt/Lato-Regular-32.json', expectedLato)) 20 | test('should load XML font', run('fnt/NexaLight32.fnt', expectedNexa)) 21 | 22 | test('should load binary font', run({ 23 | uri: 'fnt/Arial.bin', 24 | binary: true 25 | }, expectedArial)) 26 | 27 | test('should load JSON/ASCII even with binary true', run({ 28 | uri: 'fnt/Lato-Regular-32.json', 29 | binary: true 30 | }, expectedLato)) 31 | 32 | test('should load JSON/ASCII even with arraybuffer response', run({ 33 | uri: 'fnt/Lato-Regular-32.json', 34 | responseType: 'arraybuffer' 35 | }, expectedLato)) 36 | 37 | test('should accept Node options and support "url" alias', run({ 38 | encoding: 'ascii', 39 | url: 'fnt/Lato-Regular-32.fnt' 40 | }, expectedLato)) 41 | 42 | test('should error malformed font', function(t) { 43 | t.plan(1) 44 | load('fnt/Lato-Error.fnt', function(err, font) { 45 | if (err) 46 | t.ok(err, 'fails with malformed json') 47 | else 48 | t.fail('was expecting this font to fail') 49 | }) 50 | }) --------------------------------------------------------------------------------