This commit is contained in:
Yamozha
2021-04-02 02:24:13 +03:00
parent c23950b545
commit 7256d79e2c
31493 changed files with 3036630 additions and 0 deletions

76
node_modules/jimp/CHANGELOG.md generated vendored Normal file
View File

@ -0,0 +1,76 @@
# v0.11.0 (Fri May 15 2020)
#### 🚀 Enhancement
- Removed Core-JS as a dependency. [#882](https://github.com/oliver-moran/jimp/pull/882) ([@EricRabil](https://github.com/EricRabil))
#### Authors: 1
- Eric Rabil ([@EricRabil](https://github.com/EricRabil))
---
# v0.10.2 (Tue Apr 14 2020)
#### 🐛 Bug Fix
- Rewrite handling EXIF orientation — add tests, make it plugin-independent [#875](https://github.com/oliver-moran/jimp/pull/875) ([@skalee](https://github.com/skalee))
#### Authors: 1
- Sebastian Skałacki ([@skalee](https://github.com/skalee))
---
# v0.10.0 (Mon Mar 30 2020)
#### 🚀 Enhancement
- Properly split constructor and instance types [#867](https://github.com/oliver-moran/jimp/pull/867) ([@forivall](https://github.com/forivall))
#### Authors: 1
- Emily Marigold Klassen ([@forivall](https://github.com/forivall))
---
# v0.9.7 (Fri Mar 27 2020)
#### 🐛 Bug Fix
- Added missing plugins to the types [#863](https://github.com/oliver-moran/jimp/pull/863) ([@crutchcorn](https://github.com/crutchcorn))
#### Authors: 1
- Corbin Crutchley ([@crutchcorn](https://github.com/crutchcorn))
---
# v0.9.6 (Wed Mar 18 2020)
#### 🐛 Bug Fix
- upgrade auto [#860](https://github.com/oliver-moran/jimp/pull/860) ([@hipstersmoothie](https://github.com/hipstersmoothie))
#### 🏠 Internal
- Fix TypeScript error on 'next' [#858](https://github.com/oliver-moran/jimp/pull/858) ([@crutchcorn](https://github.com/crutchcorn))
#### Authors: 2
- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
- Corbin Crutchley ([@crutchcorn](https://github.com/crutchcorn))
---
# v0.9.3 (Tue Nov 26 2019)
#### 🐛 Bug Fix
- `@jimp/cli`, `@jimp/core`, `@jimp/custom`, `jimp`, `@jimp/plugin-blit`, `@jimp/plugin-blur`, `@jimp/plugin-circle`, `@jimp/plugin-color`, `@jimp/plugin-contain`, `@jimp/plugin-cover`, `@jimp/plugin-crop`, `@jimp/plugin-displace`, `@jimp/plugin-dither`, `@jimp/plugin-fisheye`, `@jimp/plugin-flip`, `@jimp/plugin-gaussian`, `@jimp/plugin-invert`, `@jimp/plugin-mask`, `@jimp/plugin-normalize`, `@jimp/plugin-print`, `@jimp/plugin-resize`, `@jimp/plugin-rotate`, `@jimp/plugin-scale`, `@jimp/plugin-shadow`, `@jimp/plugin-threshold`, `@jimp/plugins`, `@jimp/test-utils`, `@jimp/bmp`, `@jimp/gif`, `@jimp/jpeg`, `@jimp/png`, `@jimp/tiff`, `@jimp/types`, `@jimp/utils`
- Fix regeneratorRuntime errors [#815](https://github.com/oliver-moran/jimp/pull/815) ([@crutchcorn](https://github.com/crutchcorn) [@hipstersmoothie](https://github.com/hipstersmoothie))
#### Authors: 2
- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
- Corbin Crutchley ([@crutchcorn](https://github.com/crutchcorn))

21
node_modules/jimp/LICENSE generated vendored Normal file
View File

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2018 Oliver Moran
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

788
node_modules/jimp/README.md generated vendored Normal file
View File

@ -0,0 +1,788 @@
<div align="center">
<img width="200" height="200"
src="https://s3.amazonaws.com/pix.iemoji.com/images/emoji/apple/ios-11/256/crayon.png">
<h1>Jimp</h1>
<p>JavaScript Image Manipulation Program</p>
</div>
The "JavaScript Image Manipulation Program" :-)
An image processing library for Node written entirely in JavaScript, with zero native dependencies.
The default jimp configuration.
Supported types:
- `@jimp/jpeg`
- `@jimp/png`
- `@jimp/bmp`
- `@jimp/tiff`
- `@jimp/gif`
## Installation
`npm install --save jimp`
Example usage (Promise will never resolve if callback is passed):
```js
var Jimp = require('jimp');
// open a file called "lenna.png"
Jimp.read('lenna.png', (err, lenna) => {
if (err) throw err;
lenna
.resize(256, 256) // resize
.quality(60) // set JPEG quality
.greyscale() // set greyscale
.write('lena-small-bw.jpg'); // save
});
```
Using promises:
```js
Jimp.read('lenna.png')
.then(lenna => {
return lenna
.resize(256, 256) // resize
.quality(60) // set JPEG quality
.greyscale() // set greyscale
.write('lena-small-bw.jpg'); // save
})
.catch(err => {
console.error(err);
});
```
## TypeScript Usage
If you're using this library with TypeScript the method of importing slightly differs from JavaScript. Instead of using require, you must import it with ES6 default import scheme
```ts
import Jimp from 'jimp';
```
This requires setting the `allowSyntheticDefaultImports` compiler option to `true` in your `tsconfig`
**Note 1**: `esModuleInterop` implicitly sets `allowSyntheticDefaultImports` to `true`
**Note 2**: `allowSyntheticDefaultImports` nor `esModuleInterop` change the runtime behavior of your code at all. They are just flags that tells TypeScript you need the compatibility they offer.
## Module Build
If you're using a web bundles (webpack, rollup, parcel) you can benefit from using the `module` build of jimp. Using the module build will allow your bundler to understand your code better and exclude things you aren't using.
```js
import Jimp from 'jimp/es';
```
### WebPack
If you're using webpack you can set `process.browser` to true and your build of jimp will exclude certain parts, making it load faster.
```js
{
plugins: [
new webpack.DefinePlugin({
'process.browser': 'true'
}),
...
],
}
```
## Basic usage
The static `Jimp.read` method takes the path to a file, URL, dimensions, a Jimp instance or a buffer and returns a Promise:
```js
Jimp.read('./path/to/image.jpg')
.then(image => {
// Do stuff with the image.
})
.catch(err => {
// Handle an exception.
});
Jimp.read('http://www.example.com/path/to/lenna.jpg')
.then(image => {
// Do stuff with the image.
})
.catch(err => {
// Handle an exception.
});
Jimp.read(jimpInstance)
.then(image => {
// Do stuff with the image.
})
.catch(err => {
// Handle an exception.
});
Jimp.read(buffer)
.then(image => {
// Do stuff with the image.
})
.catch(err => {
// Handle an exception.
});
```
In some cases, you need to pass additional parameters with an image's URL. You can pass an object to the `Jimp.read` method:
```js
Jimp.read({
url: 'http://www.example.com/path/to/lenna.jpg', // Required!
headers: {},
...
})
.then(image => {
// Do stuff with the image.
})
.catch(err => {
// Handle an exception.
});
```
Jimp uses [phin](https://github.com/ethanent/phin) as it's HTTP client. Phin uses [`http.request(options[, callback])`](https://nodejs.org/dist/latest-v8.x/docs/api/http.html#http_http_request_options_callback) or [`https.request(options[, callback])`](https://nodejs.org/dist/latest-v8.x/docs/api/https.html#https_https_request_options_callback) methods for making HTTP requests. Phin parses a `url` with the `url.parse(...)` method and passes it with all the other parameters as an `options` to the [`http.request(options[, callback])`](https://nodejs.org/dist/latest-v8.x/docs/api/http.html#http_http_request_options_callback) or [`https.request(options[, callback])`](https://nodejs.org/dist/latest-v8.x/docs/api/https.html#https_https_request_options_callback) methods.
Briefly speaking, you can pass any options from [`http.request(options[, callback])`](https://nodejs.org/dist/latest-v8.x/docs/api/http.html#http_http_request_options_callback), [`https.request(options[, callback])`](https://nodejs.org/dist/latest-v8.x/docs/api/https.html#https_https_request_options_callback) or even [`tls.connect(options[, callback])`](https://nodejs.org/dist/latest-v8.x/docs/api/tls.html#tls_tls_connect_options_callback).
Phin parses a `url` and combines it with any options you want. This behavior can be very useful when you need to pass some additional `headers`. Also, you can pass `rejectUnauthorized: false` if you don't require an SSL certificate to be valid (it helps to prevent `unable to verify the first certificate` error).
The convenience method `Jimp.create` also exists. It is just a wrapper around `Jimp.read`.
### Custom Constructor
You might want to initialize jimp in so custom way. To do this Jimp exposes the static function `appendConstructorOption`. The appended constructor options run after all the defaults.
To define a custom constructor provide a name for it, a function to call to determine if the arguments provided to jimp match your constructor, and a function called where you can construct the image however you want.
```js
Jimp.appendConstructorOption(
'Name of Option',
args => arg.hasSomeCustomThing,
function(resolve, reject, args) {
this.bitmap = customParser(args);
resolve();
}
);
```
If you don't want to handle parsing the bitmap. For example if you want to do some sort of authentication for URL request. Jimp exposes `parseBitmap` so you can fall back to jimp to do the heavy lifting.
Parse bitmap takes the raw image data in a Buffer, a path (optional), and a node style callback.
```js
Jimp.appendConstructorOption('Custom Url', options => options.url, function(
resolve,
reject,
options
) {
phin(options, (err, res) => {
if (err) {
return reject(err);
}
this.parseBitmap(res.body, options.url, err => {
if (err) {
return reject(err);
}
resolve();
});
});
});
```
### Methods
Once the promise is fulfilled, the following methods can be called on the image:
```js
/* Resize */
image.contain( w, h[, alignBits || mode, mode] ); // scale the image to the given width and height, some parts of the image may be letter boxed
image.cover( w, h[, alignBits || mode, mode] ); // scale the image to the given width and height, some parts of the image may be clipped
image.resize( w, h[, mode] ); // resize the image. Jimp.AUTO can be passed as one of the values.
image.scale( f[, mode] ); // scale the image by the factor f
image.scaleToFit( w, h[, mode] ); // scale the image to the largest size that fits inside the given width and height
// An optional resize mode can be passed with all resize methods.
/* Crop */
image.autocrop([tolerance, frames]); // automatically crop same-color borders from image (if any), frames must be a Boolean
image.autocrop(options); // automatically crop same-color borders from image (if any), options may contain tolerance, cropOnlyFrames, cropSymmetric, leaveBorder
image.crop( x, y, w, h ); // crop to the given region
/* Composing */
image.blit( src, x, y, [srcx, srcy, srcw, srch] );
// blit the image with another Jimp image at x, y, optionally cropped.
image.composite( src, x, y, [{ mode, opacitySource, opacityDest }] ); // composites another Jimp image over this image at x, y
image.mask( src, x, y ); // masks the image with another Jimp image at x, y using average pixel value
image.convolute( kernel ); // applies a convolution kernel matrix to the image or a region
/* Flip and rotate */
image.flip( horz, vert ); // flip the image horizontally or vertically
image.mirror( horz, vert ); // an alias for flip
image.rotate( deg[, mode] ); // rotate the image clockwise by a number of degrees. Optionally, a resize mode can be passed. If `false` is passed as the second parameter, the image width and height will not be resized.
/* Colour */
image.brightness( val ); // adjust the brighness by a value -1 to +1
image.contrast( val ); // adjust the contrast by a value -1 to +1
image.dither565(); // ordered dithering of the image and reduce color space to 16-bits (RGB565)
image.greyscale(); // remove colour from the image
image.invert(); // invert the image colours
image.normalize(); // normalize the channels in an image
/* Alpha channel */
image.hasAlpha(); // determines if an image contains opaque pixels
image.fade( f ); // an alternative to opacity, fades the image by a factor 0 - 1. 0 will haven no effect. 1 will turn the image
image.opacity( f ); // multiply the alpha channel by each pixel by the factor f, 0 - 1
image.opaque(); // set the alpha channel on every pixel to fully opaque
image.background( hex ); // set the default new pixel colour (e.g. 0xFFFFFFFF or 0x00000000) for by some operations (e.g. image.contain and
/* Blurs */
image.gaussian( r ); // Gaussian blur the image by r pixels (VERY slow)
image.blur( r ); // fast blur the image by r pixels
/* Effects */
image.posterize( n ); // apply a posterization effect with n level
image.sepia(); // apply a sepia wash to the image
image.pixelate( size[, x, y, w, h ]); // apply a pixelation effect to the image or a region
/* 3D */
image.displace( map, offset ); // displaces the image pixels based on the provided displacement map. Useful for making stereoscopic 3D images.
```
Some of these methods are irreversible, so it can be useful to perform them on a clone of the original image:
```js
image.clone(); // returns a clone of the image
```
(Contributions of more methods are welcome!)
### Resize modes
The default resizing algorithm uses a bilinear method as follows:
```js
image.resize(250, 250); // resize the image to 250 x 250
image.resize(Jimp.AUTO, 250); // resize the height to 250 and scale the width accordingly
image.resize(250, Jimp.AUTO); // resize the width to 250 and scale the height accordingly
```
Optionally, the following constants can be passed to choose a particular resizing algorithm:
```js
Jimp.RESIZE_NEAREST_NEIGHBOR;
Jimp.RESIZE_BILINEAR;
Jimp.RESIZE_BICUBIC;
Jimp.RESIZE_HERMITE;
Jimp.RESIZE_BEZIER;
```
For example:
```js
image.resize(250, 250, Jimp.RESIZE_BEZIER);
```
### Align modes
The following constants can be passed to the `image.cover`, `image.contain` and `image.print` methods:
```js
Jimp.HORIZONTAL_ALIGN_LEFT;
Jimp.HORIZONTAL_ALIGN_CENTER;
Jimp.HORIZONTAL_ALIGN_RIGHT;
Jimp.VERTICAL_ALIGN_TOP;
Jimp.VERTICAL_ALIGN_MIDDLE;
Jimp.VERTICAL_ALIGN_BOTTOM;
```
Where the align mode changes the position of the associated axis as described in the table below.
| Align Mode | Axis Point |
| ------------------------------ | ----------------------------------------------- |
| `Jimp.HORIZONTAL_ALIGN_LEFT` | Positions the x-axis at the left of the image |
| `Jimp.HORIZONTAL_ALIGN_CENTER` | Positions the x-axis at the center of the image |
| `Jimp.HORIZONTAL_ALIGN_RIGHT` | Positions the x-axis at the right of the image |
| `Jimp.VERTICAL_ALIGN_TOP` | Positions the y-axis at the top of the image |
| `Jimp.VERTICAL_ALIGN_MIDDLE` | Positions the y-axis at the center of the image |
| `Jimp.VERTICAL_ALIGN_BOTTOM` | Positions the y-axis at the bottom of the image |
For example:
```js
image.contain(250, 250, Jimp.HORIZONTAL_ALIGN_LEFT | Jimp.VERTICAL_ALIGN_TOP);
```
Default align modes for `image.cover` and `image.contain` are:
```js
Jimp.HORIZONTAL_ALIGN_CENTER | Jimp.VERTICAL_ALIGN_MIDDLE;
```
Default align modes for `image.print` are:
```js
{
alignmentX: Jimp.HORIZONTAL_ALIGN_LEFT,
alignmentY: Jimp.VERTICAL_ALIGN_TOP
}
```
### Compositing and blend modes
The following modes can be used for compositing two images together. mode defaults to Jimp.BLEND_SOURCE_OVER.
```js
Jimp.BLEND_SOURCE_OVER;
Jimp.BLEND_DESTINATION_OVER;
Jimp.BLEND_MULTIPLY;
Jimp.BLEND_SCREEN;
Jimp.BLEND_OVERLAY;
Jimp.BLEND_DARKEN;
Jimp.BLEND_LIGHTEN;
Jimp.BLEND_HARDLIGHT;
Jimp.BLEND_DIFFERENCE;
Jimp.BLEND_EXCLUSION;
```
```js
image.composite(srcImage, 100, 0, {
mode: Jimp.BLEND_MULTIPLY,
opacitySource: 0.5,
opacityDest: 0.9
});
```
### Writing text
Jimp supports basic typography using BMFont format (.fnt) even ones in different languages! Just find a bitmap font that is suitable [bitmap fonts](https://en.wikipedia.org/wiki/Bitmap_fonts):
```js
Jimp.loadFont(pathOrURL).then(font => {
// load font from .fnt file
image.print(font, x, y, message); // print a message on an image. message can be a any type
image.print(font, x, y, message, maxWidth); // print a message on an image with text wrapped at maxWidth
});
```
Alignment modes are supported by replacing the `str` argument with an object containing `text`, `alignmentX` and `alignmentY`. `alignmentX` defaults to `Jimp.HORIZONTAL_ALIGN_LEFT` and `alignmentY` defaults to `Jimp.VERTICAL_ALIGN_TOP`.
```js
Jimp.loadFont(pathOrURL).then(font => {
image.print(
font,
x,
y,
{
text: 'Hello world!',
alignmentX: Jimp.HORIZONTAL_ALIGN_CENTER,
alignmentY: Jimp.VERTICAL_ALIGN_MIDDLE
},
maxWidth,
maxHeight
); // prints 'Hello world!' on an image, middle and center-aligned, when x = 0 and y = 0
});
```
```js
Jimp.loadFont(path, cb); // using a callback pattern
```
BMFont fonts are raster based and fixed in size and colour. Jimp comes with a set of fonts that can be used on images:
```js
Jimp.FONT_SANS_8_BLACK; // Open Sans, 8px, black
Jimp.FONT_SANS_10_BLACK; // Open Sans, 10px, black
Jimp.FONT_SANS_12_BLACK; // Open Sans, 12px, black
Jimp.FONT_SANS_14_BLACK; // Open Sans, 14px, black
Jimp.FONT_SANS_16_BLACK; // Open Sans, 16px, black
Jimp.FONT_SANS_32_BLACK; // Open Sans, 32px, black
Jimp.FONT_SANS_64_BLACK; // Open Sans, 64px, black
Jimp.FONT_SANS_128_BLACK; // Open Sans, 128px, black
Jimp.FONT_SANS_8_WHITE; // Open Sans, 8px, white
Jimp.FONT_SANS_16_WHITE; // Open Sans, 16px, white
Jimp.FONT_SANS_32_WHITE; // Open Sans, 32px, white
Jimp.FONT_SANS_64_WHITE; // Open Sans, 64px, white
Jimp.FONT_SANS_128_WHITE; // Open Sans, 128px, white
```
These can be used as follows:
```js
Jimp.loadFont(Jimp.FONT_SANS_32_BLACK).then(font => {
image.print(font, 10, 10, 'Hello world!');
});
```
#### Measuring text
If you need to do calculations on where to place your text jimp provides two methods that measure how wide and how tall a piece of text will be. You can use these methods to lay out multiple pieces of text in relation to each other
```js
Jimp.measureText(Jimp.FONT_SANS_32_BLACK, 'Some string'); // width of text
Jimp.measureTextHeight(Jimp.FONT_SANS_32_BLACK, 'Some string', 100); // height of text
```
#### Staggering Text
If you need to stagger text position along the x or y-axis the print method also returns the final coordinates as an argument to the callback.
```js
Jimp.loadFont(Jimp.FONT_SANS_32_BLACK).then(font => {
image.print(
font,
10,
10,
'Hello world that wraps!',
50,
(err, image, { x, y }) => {
image.print(font, x, y + 20, 'More text on another line', 50);
}
);
});
```
Online tools are also available to convert TTF fonts to BMFont format. They can be used to create color font or sprite packs.
:star: [Littera](http://kvazars.com/littera/)
:star: [Hiero](https://github.com/libgdx/libgdx/wiki/Hiero)
## Writing to files and buffers
### Writing to files
The image can be written to disk in PNG, JPEG or BMP format (based on the save path extension or if no extension is provided the original image's MIME type which, if not available, defaults to PNG) using:
```js
image.write(path, cb); // Node-style callback will be fired when write is successful
image.writeAsync(path); // Returns Promise
```
The original extension for an image (or "png") can accessed as using `image.getExtension()`. The following will save an image using its original format:
```js
var file = 'new_name.' + image.getExtension();
//or
var file = 'new_name'; // with no extension
image.write(file);
```
### Writing to Buffers
A PNG, JPEG or BMP binary Buffer of an image (e.g. for storage in a database) can be generated using:
```js
image.getBuffer(mime, cb); // Node-style callback will be fired with result
image.getBufferAsync(mime); // Returns Promise
```
For convenience, supported MIME types are available as static properties:
```js
Jimp.MIME_PNG; // "image/png"
Jimp.MIME_JPEG; // "image/jpeg"
Jimp.MIME_BMP; // "image/bmp"
```
If `Jimp.AUTO` is passed as the MIME type then the original MIME type for the image (or "image/png") will be used. Alternatively, `image.getMIME()` will return the original MIME type of the image (or "image/png").
### Data URI
A Base64 data URI can be generated in the same way as a Buffer, using:
```js
image.getBase64(mime, cb); // Node-style callback will be fired with result
image.getBase64Async(mime); // Returns Promise
```
### PNG and JPEG quality
The quality of JPEGs can be set with:
```js
image.quality(n); // set the quality of saved JPEG, 0 - 100
```
The format of PNGs can be set with:
```js
image.rgba(bool); // set whether PNGs are saved as RGBA (true, default) or RGB (false)
image.filterType(number); // set the filter type for the saved PNG
image.deflateLevel(number); // set the deflate level for the saved PNG
Jimp.deflateStrategy(number); // set the deflate for the saved PNG (0-3)
```
For convenience, supported filter types are available as static properties:
```js
Jimp.PNG_FILTER_AUTO; // -1
Jimp.PNG_FILTER_NONE; // 0
Jimp.PNG_FILTER_SUB; // 1
Jimp.PNG_FILTER_UP; // 2
Jimp.PNG_FILTER_AVERAGE; // 3
Jimp.PNG_FILTER_PATH; // 4
```
## Advanced usage
### Colour manipulation
Jimp supports advanced colour manipulation using a single method as follows:
```js
image.color([
{ apply: 'hue', params: [-90] },
{ apply: 'lighten', params: [50] },
{ apply: 'xor', params: ['#06D'] }
]);
```
The method supports the following modifiers:
| Modifier | Description |
| ----------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **lighten** {amount} | Lighten the color a given amount, from 0 to 100. Providing 100 will always return white (works through [TinyColor](https://github.com/bgrins/TinyColor)) |
| **brighten** {amount} | Brighten the color a given amount, from 0 to 100 (works through [TinyColor](https://github.com/bgrins/TinyColor)) |
| **darken** {amount} | Darken the color a given amount, from 0 to 100. Providing 100 will always return black (works through [TinyColor](https://github.com/bgrins/TinyColor)) |
| **desaturate** {amount} | Desaturate the color a given amount, from 0 to 100. Providing 100 will is the same as calling greyscale (works through [TinyColor](https://github.com/bgrins/TinyColor)) |
| **saturate** {amount} | Saturate the color a given amount, from 0 to 100 (works through [TinyColor](https://github.com/bgrins/TinyColor)) |
| **greyscale** {amount} | Completely desaturates a color into greyscale (works through [TinyColor](https://github.com/bgrins/TinyColor)) |
| **spin** {degree} | Spin the hue a given amount, from -360 to 360. Calling with 0, 360, or -360 will do nothing - since it sets the hue back to what it was before. (works through [TinyColor](https://github.com/bgrins/TinyColor)) |
| **hue** {degree} | Alias for **spin** |
| **mix** {color, amount} | Mixes colors by their RGB component values. Amount is opacity of overlaying color |
| **tint** {amount} | Same as applying **mix** with white color |
| **shade** {amount} | Same as applying **mix** with black color |
| **xor** {color} | Treats the two colors as bitfields and applies an XOR operation to the red, green, and blue components |
| **red** {amount} | Modify Red component by a given amount |
| **green** {amount} | Modify Green component by a given amount |
| **blue** {amount} | Modify Blue component by a given amount |
### Convolution matrix
Sum neighbor pixels weighted by the kernel matrix. You can find a nice explanation with examples at [GIMP's Convolution Matrix plugin](https://docs.gimp.org/2.6/en/plug-in-convmatrix.html)
Implement emboss effect:
```js
image.convolute([[-2, -1, 0], [-1, 1, 1], [0, 1, 2]]);
```
### Low-level manipulation
Jimp enables low-level manipulation of images in memory through the bitmap property of each Jimp object:
```js
image.bitmap.data; // a Buffer of the raw bitmap data
image.bitmap.width; // the width of the image
image.bitmap.height; // the height of the image
```
This data can be manipulated directly, but remember: garbage in, garbage out.
A helper method is available to scan a region of the bitmap:
```js
image.scan(x, y, w, h, f); // scan a given region of the bitmap and call the function f on every pixel
```
Example usage:
```js
image.scan(0, 0, image.bitmap.width, image.bitmap.height, function(x, y, idx) {
// x, y is the position of this pixel on the image
// idx is the position start position of this rgba tuple in the bitmap Buffer
// this is the image
var red = this.bitmap.data[idx + 0];
var green = this.bitmap.data[idx + 1];
var blue = this.bitmap.data[idx + 2];
var alpha = this.bitmap.data[idx + 3];
// rgba values run from 0 - 255
// e.g. this.bitmap.data[idx] = 0; // removes red from this pixel
});
```
If you need to do something with the image at the end of the scan:
```js
image.scan(0, 0, image.bitmap.width, image.bitmap.height, function(x, y, idx) {
// do your stuff..
if (x == image.bitmap.width - 1 && y == image.bitmap.height - 1) {
// image scan finished, do your stuff
}
});
```
It's possible to make an iterator scan with a `for ... of`, if you want to `break` the scan before it reaches the end, but note, that this iterator has a huge performance implication:
```js
for (const { x, y, idx, image } of image.scanIterator(
0,
0,
image.bitmap.width,
image.bitmap.height
)) {
}
```
A helper to locate a particular pixel within the raw bitmap buffer:
```js
image.getPixelIndex(x, y); // returns the index within image.bitmap.data
```
One of the following may be optionally passed as a third parameter to indicate a strategy for x, y positions that are outside of boundaries of the image:
```js
Jimp.EDGE_EXTEND = 1;
Jimp.EDGE_WRAP = 2;
Jimp.EDGE_CROP = 3;
```
Alternatively, you can manipulate individual pixels using the following these functions:
```js
image.getPixelColor(x, y); // returns the colour of that pixel e.g. 0xFFFFFFFF
image.setPixelColor(hex, x, y); // sets the colour of that pixel
```
Two static helper functions exist to convert RGBA values into single integer (hex) values:
```js
Jimp.rgbaToInt(r, g, b, a); // e.g. converts 255, 255, 255, 255 to 0xFFFFFFFF
Jimp.intToRGBA(hex); // e.g. converts 0xFFFFFFFF to {r: 255, g: 255, b: 255, a:255}
```
You can convert a css color (Hex, RGB, RGBA, HSL, HSLA, HSV, HSVA, Named) to its hexadecimal equivalent:
```js
Jimp.cssColorToHex(cssColor); // e.g. converts #FF00FF to 0xFF00FFFF
```
### Creating new images
If you want to begin with an empty Jimp image, you can call the Jimp constructor passing the width and height of the image to create and a Node-style callback:
```js
new Jimp(256, 256, (err, image) => {
// this image is 256 x 256, every pixel is set to 0x00000000
});
```
You can optionally set the pixel colour as follows:
```js
new Jimp(256, 256, 0xff0000ff, (err, image) => {
// this image is 256 x 256, every pixel is set to 0xFF0000FF
});
```
Or you can use a css color format:
```js
new Jimp(256, 256, '#FF00FF', (err, image) => {
// this image is 256 x 256, every pixel is set to #FF00FF
});
```
You can also initialize a new Jimp image with a raw image buffer:
```js
new Jimp({ data: buffer, width: 1280, height: 768 }, (err, image) => {
// this image is 1280 x 768, pixels are loaded from the given buffer.
});
```
This can be useful for interoperating with other image processing libraries. `buffer` is expected to be four-channel (rgba) image data.
## Comparing images
To generate a [perceptual hash](https://en.wikipedia.org/wiki/Perceptual_hashing) of a Jimp image, based on the [pHash](http://phash.org/) algorithm, use:
```js
image.hash(); // aHgG4GgoFjA
```
By default the hash is returned as base 64. The hash can be returned at another base by passing a number from 2 to 64 to the method:
```js
image.hash(2); // 1010101011010000101010000100101010010000011001001001010011100100
```
There are 18,446,744,073,709,551,615 unique hashes. The hamming distance between the binary representation of these hashes can be used to find similar-looking images.
To calculate the hamming distance between two Jimp images based on their perceptual hash use:
```js
Jimp.distance(image1, image2); // returns a number 0-1, where 0 means the two images are perceived to be identical
```
Jimp also allows the diffing of two Jimp images using [PixelMatch](https://github.com/mapbox/pixelmatch) as follows:
```js
var diff = Jimp.diff(image1, image2, threshold); // threshold ranges 0-1 (default: 0.1)
diff.image; // a Jimp image showing differences
diff.percent; // the proportion of different pixels (0-1), where 0 means the images are pixel identical
```
Using a mix of hamming distance and pixel diffing to compare images, the following code has a 99% success rate of detecting the same image from a random sample (with 1% false positives). The test this figure is drawn from attempts to match each image from a sample of 120 PNGs against 120 corresponding JPEGs saved at a quality setting of 60.
```js
var distance = Jimp.distance(png, jpeg); // perceived distance
var diff = Jimp.diff(png, jpeg); // pixel difference
if (distance < 0.15 || diff.percent < 0.15) {
// images match
} else {
// not a match
}
```
You can also calculate the raw pHash (no padding or custom base). You can then use this in `distanceFromHash` to calculate the hash distance from a loaded image.
```js
const hash1 = image1.pHash();
const hash2 = image2.pHash();
image2.distanceFromHash(hash1);
Jimp.compareHashes(hash1, hash2); // same result as above
```
## Chaining or callbacks
Most instance methods can be chained together, for example as follows:
```js
Jimp.read('lenna.png').then(image => {
image
.greyscale()
.scale(0.5)
.write('lena-half-bw.png');
});
```
Alternatively, methods can be passed Node-style callbacks:
```js
Jimp.read('lenna.png').then(image => {
image.greyscale((err, image) => {
image.scale(0.5, (err, image) => {
image.write('lena-half-bw.png');
});
});
});
```
The Node-style callback pattern allows Jimp to be used with frameworks that expect or build on the Node-style callback pattern.

2
node_modules/jimp/browser/.editorconfig generated vendored Normal file
View File

@ -0,0 +1,2 @@
# Exclude this directory
root = true

64
node_modules/jimp/browser/README.md generated vendored Normal file
View File

@ -0,0 +1,64 @@
# Jimp ... in a browser
Browser support for Jimp was added by Phil Seaton. This enabled Jimp to be used in [Electron](http://electron.atom.io/) applications as well as web browsers.
Example usage:
```html
<script src="jimp.min.js"></script>
<script>
Jimp.read("lenna.png").then(function (lenna) {
lenna.resize(256, 256) // resize
.quality(60) // set JPEG quality
.greyscale() // set greyscale
.getBase64(Jimp.MIME_JPEG, function (err, src) {
var img = document.createElement("img");
img.setAttribute("src", src);
document.body.appendChild(img);
});
}).catch(function (err) {
console.error(err);
});
</script>
```
See the [main documentation](https://github.com/oliver-moran/jimp) for the full API documenatinon.
## WebWorkers
For better performance, it recommended that Jimp methods are run on a separate thread using [`WebWorkers`](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Using_web_workers). The following shows how using two files (`index.html` and `jimp-worker.js`):
```js
// index.html
var worker = new Worker('jimp-worker.js');
worker.onmessage = function(e) {
// append a new img element using the base 64 image
var img = document.createElement('img');
img.setAttribute('src', e.data);
document.body.appendChild(img);
};
worker.postMessage('lenna.png'); // message the worker thread
```
```js
// jimp-worker.js
importScripts('jimp.min.js');
self.addEventListener('message', function(e) {
Jimp.read(e.data).then(function(lenna) {
lenna
.resize(256, 256) // resize
.quality(60) // set JPEG quality
.greyscale() // set greyscale
.getBase64(Jimp.MIME_JPEG, function(err, src) {
self.postMessage(src); // message the main thread
});
});
});
```
## License
Jimp is licensed under the MIT license.

BIN
node_modules/jimp/browser/examples/dice.png generated vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 213 KiB

24
node_modules/jimp/browser/examples/example1.html generated vendored Normal file
View File

@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<title>Jimp browser example 1</title>
</head>
<body>
<h1> Demonstrates loading a local file using Jimp on the main thread </h1>
<script src="../lib/jimp.min.js"></script>
<script>
Jimp.read("https://upload.wikimedia.org/wikipedia/commons/0/01/Bot-Test.jpg").then(function (lenna) {
lenna.resize(256, Jimp.AUTO) // resize
.quality(60) // set JPEG quality
.greyscale() // set greyscale
.getBase64(Jimp.AUTO, function (err, src) {
var img = document.createElement("img");
img.setAttribute("src", src);
document.body.appendChild(img);
});
});
</script>
</body>
</html>

20
node_modules/jimp/browser/examples/example2.html generated vendored Normal file
View File

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<title>Jimp browser example 2</title>
</head>
<body>
<h1> Demonstrates loading a relative file using Jimp on a WebWorker thread </h1>
<script>
var worker = new Worker("jimp-worker.js");
worker.onmessage = function (e) {
var img = document.createElement("img");
img.setAttribute("src", e.data);
document.body.appendChild(img);
};
worker.postMessage("lenna.png");
</script>
</body>
</html>

35
node_modules/jimp/browser/examples/example3.html generated vendored Normal file
View File

@ -0,0 +1,35 @@
<!DOCTYPE html>
<html>
<head>
<title>Jimp browser example 3</title>
</head>
<body>
<h1> Demonstrates loading a local file using Jimp on a WebWorker thread </h1>
<p><input type="file" onchange="newFiles(this);" /></p>
<script>
function newFiles(element){
for (var i=0; i<element.files.length; i++) {
readFileAndProcess(element.files[i]);
}
function readFileAndProcess(readfile){
var reader = new FileReader();
reader.addEventListener("load", function(){
var worker = new Worker("jimp-worker.js");
worker.onmessage = function (e) {
var img = document.createElement("img");
img.setAttribute("src", e.data);
document.body.appendChild(img);
};
worker.postMessage(this.result);
});
reader.readAsArrayBuffer(readfile);
}
}
</script>
</body>
</html>

57
node_modules/jimp/browser/examples/example4.html generated vendored Normal file
View File

@ -0,0 +1,57 @@
<!DOCTYPE html>
<html>
<head>
<title>Jimp browser example 4</title>
</head>
<body>
<h1> Demonstrates how to write a text over an image </h1>
<script src="../lib/jimp.js"></script>
<img id="pic" style="float: left; margin: 0px 20px 5px 0px;">
<script>
function writePic() {
Jimp.read("lenna.png")
.then(function (lenna) {
var fntName = "FONT_SANS_"+fntSize.value+"_"+txtColor.value;
var x = parseInt(txtX.value);
var y = parseInt(txtY.value);
var w = parseInt(txtW.value);
console.log()
Jimp.loadFont(Jimp[fntName]).then(function (font) {
lenna.print(font, x, y, txtField.value, w)
.getBase64(Jimp.AUTO, function (err, src) {
if (err) {
alert(err.message);
throw err;
}
pic.setAttribute("src", src);
});
}).catch(function (err) { throw err });
})
.catch(function (err) {
alert("Image load fail.\n"+err.message)
throw err;
});
return false;
}
writePic();
</script>
<textarea rows="4" cols="80" id="txtField">Hi! I'm Lenna.</textarea>
<br> <label>Size: <select id="fntSize">
<option>8</option>
<option>16</option>
<option>32</option>
<option>64</option>
<option>128</option>
</select></label>
<br> <label>Color: <select id="txtColor">
<option>BLACK</option>
<option>WHITE</option>
</select></label>
<br> <label>pos X: <input id="txtX" value="0" size="3">px</label>
<br> <label>pos Y: <input id="txtY" value="0" size="3">px</label>
<br> <label>max Width: <input id="txtW" value="400" size="3">px</label>
<br> <input type="button" id="btWrite" onclick="writePic(); return false" value="Write">
</body>
</html>

18
node_modules/jimp/browser/examples/jimp-worker.js generated vendored Normal file
View File

@ -0,0 +1,18 @@
/* eslint-env worker */
/* global Jimp */
importScripts('../lib/jimp.min.js');
self.addEventListener('message', e => {
Jimp.read(e.data).then(lenna => {
lenna
.resize(256, Jimp.AUTO) // resize
.quality(60) // set JPEG quality
.greyscale() // set greyscale
.getBase64(Jimp.AUTO, (err, src) => {
if (err) throw err;
self.postMessage(src);
self.close();
});
});
});

BIN
node_modules/jimp/browser/examples/lenna.png generated vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 463 KiB

43
node_modules/jimp/browser/examples/test.html generated vendored Normal file
View File

@ -0,0 +1,43 @@
<!DOCTYPE html>
<html>
<head>
<title>Jimp browser example 1</title>
</head>
<body>
<!-- Demonstrates loading a local file using Jimp on the main thread -->
<script src="../lib/jimp.min.js"></script>
<script>
function dropShadow(x, y, b, a) {
var img = new Jimp(this.bitmap.width + Math.abs(x*2) + (b*2), this.bitmap.height + Math.abs(y*2) + (b*2));
var orig = this.clone();
this.scan(0, 0, this.bitmap.width, this.bitmap.height, function (x, y, idx) {
this.bitmap.data[ idx + 0 ] = 0;
this.bitmap.data[ idx + 1 ] = 0;
this.bitmap.data[ idx + 2 ] = 0;
this.bitmap.data[ idx + 3 ] = this.bitmap.data[ idx + 3 ] * a;
});
// this.resize(this.bitmap.width + Math.abs(x) + b, this.bitmap.height + Math.abs(y) + b);
var x1 = Math.max(x * -1, 0) + b;
var y1 = Math.max(y * -1, 0) + b;
img.composite(this, x1, y1);
img.blur(b);
img.composite(orig, x1 - x, y1 - y);
//img.autocrop();
return img;
}
Jimp.read("dice.png").then(function (img) {
console.log(img.getMIME(), img.getExtension());
var img = dropShadow.call(img, 20, 20, 20, 0.3)
img.getBase64(Jimp.AUTO, function (err, src) {
var img = document.createElement("img");
img.setAttribute("src", src);
document.body.appendChild(img);
});
});
</script>
</body>
</html>

43222
node_modules/jimp/browser/lib/jimp.js generated vendored Normal file

File diff suppressed because it is too large Load Diff

27
node_modules/jimp/browser/lib/jimp.min.js generated vendored Normal file
View File

@ -0,0 +1,27 @@
/*
Jimp v0.12.0
https://github.com/oliver-moran/jimp
Ported for the Web by Phil Seaton
MIT License
Copyright (c) 2018 Oliver Moran
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
undefined

23
node_modules/jimp/dist/index.js generated vendored Normal file
View File

@ -0,0 +1,23 @@
"use strict";
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = void 0;
var _custom = _interopRequireDefault(require("@jimp/custom"));
var _types = _interopRequireDefault(require("@jimp/types"));
var _plugins = _interopRequireDefault(require("@jimp/plugins"));
var _default = (0, _custom["default"])({
types: [_types["default"]],
plugins: [_plugins["default"]]
});
exports["default"] = _default;
module.exports = exports.default;
//# sourceMappingURL=index.js.map

1
node_modules/jimp/dist/index.js.map generated vendored Normal file
View File

@ -0,0 +1 @@
{"version":3,"sources":["../src/index.js"],"names":["types","plugins"],"mappings":";;;;;;;;;AAAA;;AAEA;;AACA;;eAEe,wBAAU;AACvBA,EAAAA,KAAK,EAAE,CAACA,iBAAD,CADgB;AAEvBC,EAAAA,OAAO,EAAE,CAACA,mBAAD;AAFc,CAAV,C","sourcesContent":["import configure from '@jimp/custom';\n\nimport types from '@jimp/types';\nimport plugins from '@jimp/plugins';\n\nexport default configure({\n types: [types],\n plugins: [plugins]\n});\n"],"file":"index.js"}

22
node_modules/jimp/es/index.js generated vendored Normal file
View File

@ -0,0 +1,22 @@
"use strict";
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = void 0;
var _custom = _interopRequireDefault(require("@jimp/custom"));
var _types = _interopRequireDefault(require("@jimp/types"));
var _plugins = _interopRequireDefault(require("@jimp/plugins"));
var _default = (0, _custom["default"])({
types: [_types["default"]],
plugins: [_plugins["default"]]
});
exports["default"] = _default;
//# sourceMappingURL=index.js.map

1
node_modules/jimp/es/index.js.map generated vendored Normal file
View File

@ -0,0 +1 @@
{"version":3,"sources":["../src/index.js"],"names":["types","plugins"],"mappings":";;;;;;;;;AAAA;;AAEA;;AACA;;eAEe,wBAAU;AACvBA,EAAAA,KAAK,EAAE,CAACA,iBAAD,CADgB;AAEvBC,EAAAA,OAAO,EAAE,CAACA,mBAAD;AAFc,CAAV,C","sourcesContent":["import configure from '@jimp/custom';\n\nimport types from '@jimp/types';\nimport plugins from '@jimp/plugins';\n\nexport default configure({\n types: [types],\n plugins: [plugins]\n});\n"],"file":"index.js"}

201
node_modules/jimp/fonts/open-sans/Apache License.txt generated vendored Executable file
View File

@ -0,0 +1,201 @@
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

View File

@ -0,0 +1,160 @@
<?xml version="1.0" encoding="UTF-8"?>
<font>
<info face="Open Sans Regular" size="10" bold="0" italic="0" charset="" unicode="0" stretchH="100" smooth="1" aa="1" padding="1,1,1,1" spacing="-2,-2" />
<common lineHeight="14" base="11" scaleW="512" scaleH="512" pages="1" packed="0" />
<pages>
<page id="0" file="open-sans-10-black.png" />
</pages>
<chars count="97">
<char id="0" x="487" y="0" width="8" height="9" xoffset="-1" yoffset="3" xadvance="6" page="0" chnl="0" />
<char id="10" x="0" y="0" width="0" height="0" xoffset="-1" yoffset="0" xadvance="0" page="0" chnl="0" />
<char id="32" x="0" y="0" width="0" height="0" xoffset="-1" yoffset="0" xadvance="3" page="0" chnl="0" />
<char id="33" x="435" y="0" width="4" height="9" xoffset="-1" yoffset="3" xadvance="3" page="0" chnl="0" />
<char id="34" x="141" y="12" width="6" height="5" xoffset="-1" yoffset="3" xadvance="4" page="0" chnl="0" />
<char id="35" x="468" y="0" width="9" height="9" xoffset="-1" yoffset="3" xadvance="6" page="0" chnl="0" />
<char id="36" x="57" y="0" width="8" height="11" xoffset="-1" yoffset="2" xadvance="6" page="0" chnl="0" />
<char id="37" x="458" y="0" width="10" height="9" xoffset="-1" yoffset="3" xadvance="8" page="0" chnl="0" />
<char id="38" x="477" y="0" width="10" height="9" xoffset="-1" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="39" x="147" y="12" width="4" height="5" xoffset="-1" yoffset="3" xadvance="2" page="0" chnl="0" />
<char id="40" x="20" y="0" width="5" height="11" xoffset="-1" yoffset="3" xadvance="3" page="0" chnl="0" />
<char id="41" x="25" y="0" width="5" height="11" xoffset="-1" yoffset="3" xadvance="3" page="0" chnl="0" />
<char id="42" x="133" y="12" width="8" height="6" xoffset="-1" yoffset="3" xadvance="6" page="0" chnl="0" />
<char id="43" x="0" y="12" width="8" height="8" xoffset="-1" yoffset="3" xadvance="6" page="0" chnl="0" />
<char id="44" x="168" y="12" width="4" height="4" xoffset="-1" yoffset="9" xadvance="2" page="0" chnl="0" />
<char id="45" x="172" y="12" width="5" height="3" xoffset="-1" yoffset="7" xadvance="3" page="0" chnl="0" />
<char id="46" x="164" y="12" width="4" height="4" xoffset="-1" yoffset="8" xadvance="3" page="0" chnl="0" />
<char id="47" x="446" y="0" width="6" height="9" xoffset="-1" yoffset="3" xadvance="4" page="0" chnl="0" />
<char id="48" x="427" y="0" width="8" height="9" xoffset="-1" yoffset="3" xadvance="6" page="0" chnl="0" />
<char id="49" x="357" y="0" width="6" height="9" xoffset="-1" yoffset="3" xadvance="6" page="0" chnl="0" />
<char id="50" x="363" y="0" width="8" height="9" xoffset="-1" yoffset="3" xadvance="6" page="0" chnl="0" />
<char id="51" x="371" y="0" width="8" height="9" xoffset="-1" yoffset="3" xadvance="6" page="0" chnl="0" />
<char id="52" x="379" y="0" width="8" height="9" xoffset="-1" yoffset="3" xadvance="6" page="0" chnl="0" />
<char id="53" x="387" y="0" width="8" height="9" xoffset="-1" yoffset="3" xadvance="6" page="0" chnl="0" />
<char id="54" x="395" y="0" width="8" height="9" xoffset="-1" yoffset="3" xadvance="6" page="0" chnl="0" />
<char id="55" x="403" y="0" width="8" height="9" xoffset="-1" yoffset="3" xadvance="6" page="0" chnl="0" />
<char id="56" x="411" y="0" width="8" height="9" xoffset="-1" yoffset="3" xadvance="6" page="0" chnl="0" />
<char id="57" x="419" y="0" width="8" height="9" xoffset="-1" yoffset="3" xadvance="6" page="0" chnl="0" />
<char id="58" x="105" y="12" width="4" height="7" xoffset="-1" yoffset="5" xadvance="3" page="0" chnl="0" />
<char id="59" x="501" y="0" width="4" height="8" xoffset="-1" yoffset="5" xadvance="3" page="0" chnl="0" />
<char id="60" x="109" y="12" width="8" height="7" xoffset="-1" yoffset="4" xadvance="6" page="0" chnl="0" />
<char id="61" x="151" y="12" width="8" height="5" xoffset="-1" yoffset="5" xadvance="6" page="0" chnl="0" />
<char id="62" x="117" y="12" width="8" height="7" xoffset="-1" yoffset="4" xadvance="6" page="0" chnl="0" />
<char id="63" x="439" y="0" width="7" height="9" xoffset="-1" yoffset="3" xadvance="4" page="0" chnl="0" />
<char id="64" x="69" y="0" width="11" height="10" xoffset="-1" yoffset="3" xadvance="9" page="0" chnl="0" />
<char id="65" x="80" y="0" width="9" height="9" xoffset="-1" yoffset="3" xadvance="6" page="0" chnl="0" />
<char id="66" x="89" y="0" width="8" height="9" xoffset="-1" yoffset="3" xadvance="6" page="0" chnl="0" />
<char id="67" x="97" y="0" width="9" height="9" xoffset="-1" yoffset="3" xadvance="6" page="0" chnl="0" />
<char id="68" x="106" y="0" width="9" height="9" xoffset="-1" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="69" x="115" y="0" width="7" height="9" xoffset="-1" yoffset="3" xadvance="6" page="0" chnl="0" />
<char id="70" x="122" y="0" width="7" height="9" xoffset="-1" yoffset="3" xadvance="5" page="0" chnl="0" />
<char id="71" x="129" y="0" width="9" height="9" xoffset="-1" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="72" x="138" y="0" width="9" height="9" xoffset="-1" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="73" x="147" y="0" width="4" height="9" xoffset="-1" yoffset="3" xadvance="3" page="0" chnl="0" />
<char id="74" x="5" y="0" width="5" height="11" xoffset="-2" yoffset="3" xadvance="3" page="0" chnl="0" />
<char id="75" x="151" y="0" width="9" height="9" xoffset="-1" yoffset="3" xadvance="6" page="0" chnl="0" />
<char id="76" x="160" y="0" width="7" height="9" xoffset="-1" yoffset="3" xadvance="5" page="0" chnl="0" />
<char id="77" x="167" y="0" width="11" height="9" xoffset="-1" yoffset="3" xadvance="9" page="0" chnl="0" />
<char id="78" x="178" y="0" width="9" height="9" xoffset="-1" yoffset="3" xadvance="8" page="0" chnl="0" />
<char id="79" x="187" y="0" width="10" height="9" xoffset="-1" yoffset="3" xadvance="8" page="0" chnl="0" />
<char id="80" x="197" y="0" width="8" height="9" xoffset="-1" yoffset="3" xadvance="6" page="0" chnl="0" />
<char id="81" x="10" y="0" width="10" height="11" xoffset="-1" yoffset="3" xadvance="8" page="0" chnl="0" />
<char id="82" x="205" y="0" width="9" height="9" xoffset="-1" yoffset="3" xadvance="6" page="0" chnl="0" />
<char id="83" x="214" y="0" width="8" height="9" xoffset="-1" yoffset="3" xadvance="5" page="0" chnl="0" />
<char id="84" x="222" y="0" width="8" height="9" xoffset="-1" yoffset="3" xadvance="6" page="0" chnl="0" />
<char id="85" x="230" y="0" width="9" height="9" xoffset="-1" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="86" x="239" y="0" width="8" height="9" xoffset="-1" yoffset="3" xadvance="6" page="0" chnl="0" />
<char id="87" x="247" y="0" width="12" height="9" xoffset="-1" yoffset="3" xadvance="9" page="0" chnl="0" />
<char id="88" x="259" y="0" width="8" height="9" xoffset="-1" yoffset="3" xadvance="6" page="0" chnl="0" />
<char id="89" x="267" y="0" width="8" height="9" xoffset="-1" yoffset="3" xadvance="6" page="0" chnl="0" />
<char id="90" x="275" y="0" width="8" height="9" xoffset="-1" yoffset="3" xadvance="6" page="0" chnl="0" />
<char id="91" x="30" y="0" width="6" height="11" xoffset="-1" yoffset="3" xadvance="3" page="0" chnl="0" />
<char id="92" x="452" y="0" width="6" height="9" xoffset="-1" yoffset="3" xadvance="4" page="0" chnl="0" />
<char id="93" x="36" y="0" width="5" height="11" xoffset="-1" yoffset="3" xadvance="3" page="0" chnl="0" />
<char id="94" x="125" y="12" width="8" height="6" xoffset="-1" yoffset="3" xadvance="5" page="0" chnl="0" />
<char id="95" x="177" y="12" width="8" height="3" xoffset="-2" yoffset="11" xadvance="4" page="0" chnl="0" />
<char id="96" x="159" y="12" width="5" height="4" xoffset="0" yoffset="2" xadvance="6" page="0" chnl="0" />
<char id="97" x="8" y="12" width="7" height="7" xoffset="-1" yoffset="5" xadvance="6" page="0" chnl="0" />
<char id="98" x="283" y="0" width="8" height="9" xoffset="-1" yoffset="3" xadvance="6" page="0" chnl="0" />
<char id="99" x="15" y="12" width="7" height="7" xoffset="-1" yoffset="5" xadvance="5" page="0" chnl="0" />
<char id="100" x="291" y="0" width="8" height="9" xoffset="-1" yoffset="3" xadvance="6" page="0" chnl="0" />
<char id="101" x="22" y="12" width="8" height="7" xoffset="-1" yoffset="5" xadvance="6" page="0" chnl="0" />
<char id="102" x="299" y="0" width="6" height="9" xoffset="-1" yoffset="3" xadvance="3" page="0" chnl="0" />
<char id="103" x="305" y="0" width="8" height="9" xoffset="-1" yoffset="5" xadvance="5" page="0" chnl="0" />
<char id="104" x="313" y="0" width="8" height="9" xoffset="-1" yoffset="3" xadvance="6" page="0" chnl="0" />
<char id="105" x="65" y="0" width="4" height="10" xoffset="-1" yoffset="2" xadvance="3" page="0" chnl="0" />
<char id="106" x="0" y="0" width="5" height="12" xoffset="-2" yoffset="2" xadvance="3" page="0" chnl="0" />
<char id="107" x="321" y="0" width="8" height="9" xoffset="-1" yoffset="3" xadvance="5" page="0" chnl="0" />
<char id="108" x="329" y="0" width="4" height="9" xoffset="-1" yoffset="3" xadvance="3" page="0" chnl="0" />
<char id="109" x="30" y="12" width="11" height="7" xoffset="-1" yoffset="5" xadvance="9" page="0" chnl="0" />
<char id="110" x="41" y="12" width="8" height="7" xoffset="-1" yoffset="5" xadvance="6" page="0" chnl="0" />
<char id="111" x="49" y="12" width="8" height="7" xoffset="-1" yoffset="5" xadvance="6" page="0" chnl="0" />
<char id="112" x="333" y="0" width="8" height="9" xoffset="-1" yoffset="5" xadvance="6" page="0" chnl="0" />
<char id="113" x="341" y="0" width="8" height="9" xoffset="-1" yoffset="5" xadvance="6" page="0" chnl="0" />
<char id="114" x="505" y="0" width="6" height="7" xoffset="-1" yoffset="5" xadvance="4" page="0" chnl="0" />
<char id="115" x="57" y="12" width="7" height="7" xoffset="-1" yoffset="5" xadvance="5" page="0" chnl="0" />
<char id="116" x="495" y="0" width="6" height="8" xoffset="-1" yoffset="4" xadvance="4" page="0" chnl="0" />
<char id="117" x="64" y="12" width="8" height="7" xoffset="-1" yoffset="5" xadvance="6" page="0" chnl="0" />
<char id="118" x="72" y="12" width="8" height="7" xoffset="-1" yoffset="5" xadvance="5" page="0" chnl="0" />
<char id="119" x="80" y="12" width="10" height="7" xoffset="-1" yoffset="5" xadvance="8" page="0" chnl="0" />
<char id="120" x="90" y="12" width="8" height="7" xoffset="-1" yoffset="5" xadvance="5" page="0" chnl="0" />
<char id="121" x="349" y="0" width="8" height="9" xoffset="-1" yoffset="5" xadvance="5" page="0" chnl="0" />
<char id="122" x="98" y="12" width="7" height="7" xoffset="-1" yoffset="5" xadvance="5" page="0" chnl="0" />
<char id="123" x="41" y="0" width="6" height="11" xoffset="-1" yoffset="3" xadvance="4" page="0" chnl="0" />
<char id="124" x="53" y="0" width="4" height="11" xoffset="1" yoffset="3" xadvance="6" page="0" chnl="0" />
<char id="125" x="47" y="0" width="6" height="11" xoffset="-1" yoffset="3" xadvance="4" page="0" chnl="0" />
<char id="126" x="185" y="12" width="8" height="3" xoffset="-1" yoffset="6" xadvance="6" page="0" chnl="0" />
</chars>
<kernings count="51">
<kerning first="34" second="65" amount="-1" />
<kerning first="46" second="86" amount="-1" />
<kerning first="84" second="100" amount="-1" />
<kerning first="39" second="101" amount="-1" />
<kerning first="84" second="103" amount="-1" />
<kerning first="34" second="113" amount="-1" />
<kerning first="102" second="39" amount="1" />
<kerning first="65" second="89" amount="-1" />
<kerning first="84" second="113" amount="-1" />
<kerning first="89" second="46" amount="-1" />
<kerning first="76" second="34" amount="-1" />
<kerning first="80" second="44" amount="-1" />
<kerning first="65" second="34" amount="-1" />
<kerning first="70" second="44" amount="-1" />
<kerning first="84" second="46" amount="-1" />
<kerning first="102" second="34" amount="1" />
<kerning first="39" second="100" amount="-1" />
<kerning first="65" second="84" amount="-1" />
<kerning first="44" second="84" amount="-1" />
<kerning first="39" second="113" amount="-1" />
<kerning first="84" second="115" amount="-1" />
<kerning first="76" second="39" amount="-1" />
<kerning first="39" second="99" amount="-1" />
<kerning first="39" second="111" amount="-1" />
<kerning first="44" second="87" amount="-1" />
<kerning first="65" second="39" amount="-1" />
<kerning first="39" second="65" amount="-1" />
<kerning first="89" second="44" amount="-1" />
<kerning first="46" second="89" amount="-1" />
<kerning first="34" second="101" amount="-1" />
<kerning first="123" second="74" amount="1" />
<kerning first="89" second="65" amount="-1" />
<kerning first="40" second="74" amount="1" />
<kerning first="34" second="100" amount="-1" />
<kerning first="70" second="46" amount="-1" />
<kerning first="84" second="101" amount="-1" />
<kerning first="65" second="74" amount="1" />
<kerning first="44" second="89" amount="-1" />
<kerning first="84" second="99" amount="-1" />
<kerning first="84" second="65" amount="-1" />
<kerning first="44" second="86" amount="-1" />
<kerning first="84" second="44" amount="-1" />
<kerning first="46" second="84" amount="-1" />
<kerning first="34" second="99" amount="-1" />
<kerning first="46" second="87" amount="-1" />
<kerning first="84" second="111" amount="-1" />
<kerning first="80" second="46" amount="-1" />
<kerning first="34" second="111" amount="-1" />
<kerning first="84" second="97" amount="-1" />
<kerning first="91" second="74" amount="1" />
<kerning first="69" second="74" amount="1" />
</kernings>
</font>

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

View File

@ -0,0 +1,183 @@
<font>
<info face="Open Sans Regular" size="12" bold="0" italic="0" charset="" unicode="0" stretchH="100" smooth="1" aa="1" padding="1,1,1,1" spacing="-2,-2" />
<common lineHeight="17" base="13" scaleW="512" scaleH="512" pages="1" packed="0" />
<pages>
<page id="0" file="open-sans-12-black.png" />
</pages>
<chars count="97">
<char id="0" x="21" y="14" width="8" height="11" xoffset="0" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="10" x="0" y="0" width="0" height="0" xoffset="-1" yoffset="0" xadvance="0" page="0" chnl="0" />
<char id="32" x="0" y="0" width="0" height="0" xoffset="-1" yoffset="0" xadvance="3" page="0" chnl="0" />
<char id="33" x="473" y="0" width="5" height="11" xoffset="-1" yoffset="3" xadvance="3" page="0" chnl="0" />
<char id="34" x="205" y="14" width="7" height="5" xoffset="-1" yoffset="3" xadvance="5" page="0" chnl="0" />
<char id="35" x="0" y="14" width="10" height="11" xoffset="-1" yoffset="3" xadvance="8" page="0" chnl="0" />
<char id="36" x="77" y="0" width="9" height="12" xoffset="-1" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="37" x="499" y="0" width="12" height="11" xoffset="-1" yoffset="3" xadvance="10" page="0" chnl="0" />
<char id="38" x="10" y="14" width="11" height="11" xoffset="-1" yoffset="3" xadvance="9" page="0" chnl="0" />
<char id="39" x="212" y="14" width="4" height="5" xoffset="-1" yoffset="3" xadvance="3" page="0" chnl="0" />
<char id="40" x="27" y="0" width="6" height="13" xoffset="-1" yoffset="3" xadvance="4" page="0" chnl="0" />
<char id="41" x="33" y="0" width="6" height="13" xoffset="-1" yoffset="3" xadvance="4" page="0" chnl="0" />
<char id="42" x="196" y="14" width="9" height="7" xoffset="-1" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="43" x="40" y="14" width="9" height="9" xoffset="-1" yoffset="4" xadvance="7" page="0" chnl="0" />
<char id="44" x="216" y="14" width="5" height="5" xoffset="-1" yoffset="11" xadvance="3" page="0" chnl="0" />
<char id="45" x="249" y="14" width="6" height="3" xoffset="-1" yoffset="8" xadvance="4" page="0" chnl="0" />
<char id="46" x="235" y="14" width="5" height="4" xoffset="-1" yoffset="10" xadvance="3" page="0" chnl="0" />
<char id="47" x="485" y="0" width="7" height="11" xoffset="-1" yoffset="3" xadvance="4" page="0" chnl="0" />
<char id="48" x="464" y="0" width="9" height="11" xoffset="-1" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="49" x="386" y="0" width="6" height="11" xoffset="0" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="50" x="392" y="0" width="9" height="11" xoffset="-1" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="51" x="401" y="0" width="9" height="11" xoffset="-1" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="52" x="410" y="0" width="9" height="11" xoffset="-1" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="53" x="419" y="0" width="9" height="11" xoffset="-1" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="54" x="428" y="0" width="9" height="11" xoffset="-1" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="55" x="437" y="0" width="9" height="11" xoffset="-1" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="56" x="446" y="0" width="9" height="11" xoffset="-1" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="57" x="455" y="0" width="9" height="11" xoffset="-1" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="58" x="164" y="14" width="5" height="8" xoffset="-1" yoffset="6" xadvance="3" page="0" chnl="0" />
<char id="59" x="29" y="14" width="5" height="10" xoffset="-1" yoffset="6" xadvance="3" page="0" chnl="0" />
<char id="60" x="169" y="14" width="9" height="8" xoffset="-1" yoffset="5" xadvance="7" page="0" chnl="0" />
<char id="61" x="221" y="14" width="9" height="5" xoffset="-1" yoffset="6" xadvance="7" page="0" chnl="0" />
<char id="62" x="178" y="14" width="9" height="8" xoffset="-1" yoffset="5" xadvance="7" page="0" chnl="0" />
<char id="63" x="478" y="0" width="7" height="11" xoffset="-1" yoffset="3" xadvance="5" page="0" chnl="0" />
<char id="64" x="64" y="0" width="13" height="12" xoffset="-1" yoffset="3" xadvance="11" page="0" chnl="0" />
<char id="65" x="86" y="0" width="10" height="11" xoffset="-1" yoffset="3" xadvance="8" page="0" chnl="0" />
<char id="66" x="96" y="0" width="9" height="11" xoffset="0" yoffset="3" xadvance="8" page="0" chnl="0" />
<char id="67" x="105" y="0" width="10" height="11" xoffset="-1" yoffset="3" xadvance="8" page="0" chnl="0" />
<char id="68" x="115" y="0" width="10" height="11" xoffset="0" yoffset="3" xadvance="9" page="0" chnl="0" />
<char id="69" x="125" y="0" width="7" height="11" xoffset="0" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="70" x="132" y="0" width="7" height="11" xoffset="0" yoffset="3" xadvance="6" page="0" chnl="0" />
<char id="71" x="139" y="0" width="10" height="11" xoffset="-1" yoffset="3" xadvance="9" page="0" chnl="0" />
<char id="72" x="149" y="0" width="9" height="11" xoffset="0" yoffset="3" xadvance="9" page="0" chnl="0" />
<char id="73" x="158" y="0" width="4" height="11" xoffset="0" yoffset="3" xadvance="3" page="0" chnl="0" />
<char id="74" x="10" y="0" width="6" height="13" xoffset="-2" yoffset="3" xadvance="3" page="0" chnl="0" />
<char id="75" x="162" y="0" width="9" height="11" xoffset="0" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="76" x="171" y="0" width="7" height="11" xoffset="0" yoffset="3" xadvance="6" page="0" chnl="0" />
<char id="77" x="178" y="0" width="11" height="11" xoffset="0" yoffset="3" xadvance="11" page="0" chnl="0" />
<char id="78" x="189" y="0" width="9" height="11" xoffset="0" yoffset="3" xadvance="9" page="0" chnl="0" />
<char id="79" x="198" y="0" width="11" height="11" xoffset="-1" yoffset="3" xadvance="9" page="0" chnl="0" />
<char id="80" x="209" y="0" width="8" height="11" xoffset="0" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="81" x="16" y="0" width="11" height="13" xoffset="-1" yoffset="3" xadvance="9" page="0" chnl="0" />
<char id="82" x="217" y="0" width="9" height="11" xoffset="0" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="83" x="226" y="0" width="9" height="11" xoffset="-1" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="84" x="235" y="0" width="9" height="11" xoffset="-1" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="85" x="244" y="0" width="9" height="11" xoffset="0" yoffset="3" xadvance="9" page="0" chnl="0" />
<char id="86" x="253" y="0" width="10" height="11" xoffset="-1" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="87" x="263" y="0" width="13" height="11" xoffset="-1" yoffset="3" xadvance="11" page="0" chnl="0" />
<char id="88" x="276" y="0" width="9" height="11" xoffset="-1" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="89" x="285" y="0" width="9" height="11" xoffset="-1" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="90" x="294" y="0" width="9" height="11" xoffset="-1" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="91" x="39" y="0" width="6" height="13" xoffset="-1" yoffset="3" xadvance="4" page="0" chnl="0" />
<char id="92" x="492" y="0" width="7" height="11" xoffset="-1" yoffset="3" xadvance="4" page="0" chnl="0" />
<char id="93" x="45" y="0" width="5" height="13" xoffset="-1" yoffset="3" xadvance="4" page="0" chnl="0" />
<char id="94" x="187" y="14" width="9" height="8" xoffset="-1" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="95" x="255" y="14" width="9" height="3" xoffset="-2" yoffset="13" xadvance="5" page="0" chnl="0" />
<char id="96" x="230" y="14" width="5" height="4" xoffset="1" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="97" x="49" y="14" width="8" height="8" xoffset="-1" yoffset="6" xadvance="7" page="0" chnl="0" />
<char id="98" x="303" y="0" width="8" height="11" xoffset="0" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="99" x="57" y="14" width="8" height="8" xoffset="-1" yoffset="6" xadvance="6" page="0" chnl="0" />
<char id="100" x="311" y="0" width="9" height="11" xoffset="-1" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="101" x="65" y="14" width="9" height="8" xoffset="-1" yoffset="6" xadvance="7" page="0" chnl="0" />
<char id="102" x="320" y="0" width="7" height="11" xoffset="-1" yoffset="3" xadvance="4" page="0" chnl="0" />
<char id="103" x="327" y="0" width="9" height="11" xoffset="-1" yoffset="6" xadvance="7" page="0" chnl="0" />
<char id="104" x="336" y="0" width="8" height="11" xoffset="0" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="105" x="344" y="0" width="5" height="11" xoffset="-1" yoffset="3" xadvance="3" page="0" chnl="0" />
<char id="106" x="0" y="0" width="6" height="14" xoffset="-2" yoffset="3" xadvance="3" page="0" chnl="0" />
<char id="107" x="349" y="0" width="8" height="11" xoffset="0" yoffset="3" xadvance="6" page="0" chnl="0" />
<char id="108" x="357" y="0" width="3" height="11" xoffset="0" yoffset="3" xadvance="3" page="0" chnl="0" />
<char id="109" x="74" y="14" width="12" height="8" xoffset="0" yoffset="6" xadvance="11" page="0" chnl="0" />
<char id="110" x="86" y="14" width="8" height="8" xoffset="0" yoffset="6" xadvance="7" page="0" chnl="0" />
<char id="111" x="94" y="14" width="9" height="8" xoffset="-1" yoffset="6" xadvance="7" page="0" chnl="0" />
<char id="112" x="360" y="0" width="8" height="11" xoffset="0" yoffset="6" xadvance="7" page="0" chnl="0" />
<char id="113" x="368" y="0" width="9" height="11" xoffset="-1" yoffset="6" xadvance="7" page="0" chnl="0" />
<char id="114" x="103" y="14" width="6" height="8" xoffset="0" yoffset="6" xadvance="5" page="0" chnl="0" />
<char id="115" x="109" y="14" width="8" height="8" xoffset="-1" yoffset="6" xadvance="6" page="0" chnl="0" />
<char id="116" x="34" y="14" width="6" height="9" xoffset="-1" yoffset="5" xadvance="4" page="0" chnl="0" />
<char id="117" x="117" y="14" width="9" height="8" xoffset="-1" yoffset="6" xadvance="7" page="0" chnl="0" />
<char id="118" x="126" y="14" width="9" height="8" xoffset="-1" yoffset="6" xadvance="6" page="0" chnl="0" />
<char id="119" x="135" y="14" width="12" height="8" xoffset="-1" yoffset="6" xadvance="9" page="0" chnl="0" />
<char id="120" x="147" y="14" width="9" height="8" xoffset="-1" yoffset="6" xadvance="6" page="0" chnl="0" />
<char id="121" x="377" y="0" width="9" height="11" xoffset="-1" yoffset="6" xadvance="6" page="0" chnl="0" />
<char id="122" x="156" y="14" width="8" height="8" xoffset="-1" yoffset="6" xadvance="6" page="0" chnl="0" />
<char id="123" x="50" y="0" width="7" height="13" xoffset="-1" yoffset="3" xadvance="5" page="0" chnl="0" />
<char id="124" x="6" y="0" width="4" height="14" xoffset="1" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="125" x="57" y="0" width="7" height="13" xoffset="-1" yoffset="3" xadvance="5" page="0" chnl="0" />
<char id="126" x="240" y="14" width="9" height="4" xoffset="-1" yoffset="7" xadvance="7" page="0" chnl="0" />
</chars>
<kernings count="75">
<kerning first="44" second="67" amount="-1" />
<kerning first="44" second="71" amount="-1" />
<kerning first="46" second="79" amount="-1" />
<kerning first="46" second="81" amount="-1" />
<kerning first="46" second="84" amount="-1" />
<kerning first="44" second="86" amount="-1" />
<kerning first="89" second="100" amount="-1" />
<kerning first="39" second="101" amount="-1" />
<kerning first="84" second="103" amount="-1" />
<kerning first="84" second="110" amount="-1" />
<kerning first="39" second="111" amount="-1" />
<kerning first="89" second="113" amount="-1" />
<kerning first="84" second="115" amount="-1" />
<kerning first="40" second="74" amount="1" />
<kerning first="84" second="109" amount="-1" />
<kerning first="65" second="74" amount="2" />
<kerning first="86" second="44" amount="-1" />
<kerning first="44" second="81" amount="-1" />
<kerning first="44" second="79" amount="-1" />
<kerning first="46" second="71" amount="-1" />
<kerning first="65" second="39" amount="-1" />
<kerning first="80" second="46" amount="-2" />
<kerning first="34" second="99" amount="-1" />
<kerning first="70" second="44" amount="-1" />
<kerning first="76" second="39" amount="-1" />
<kerning first="80" second="65" amount="-1" />
<kerning first="84" second="99" amount="-1" />
<kerning first="102" second="39" amount="1" />
<kerning first="89" second="111" amount="-1" />
<kerning first="34" second="100" amount="-1" />
<kerning first="80" second="44" amount="-2" />
<kerning first="44" second="84" amount="-1" />
<kerning first="89" second="101" amount="-1" />
<kerning first="84" second="100" amount="-1" />
<kerning first="91" second="74" amount="1" />
<kerning first="65" second="84" amount="-1" />
<kerning first="39" second="65" amount="-1" />
<kerning first="44" second="89" amount="-1" />
<kerning first="34" second="101" amount="-1" />
<kerning first="89" second="65" amount="-1" />
<kerning first="84" second="101" amount="-1" />
<kerning first="70" second="46" amount="-1" />
<kerning first="46" second="89" amount="-1" />
<kerning first="65" second="34" amount="-1" />
<kerning first="76" second="34" amount="-1" />
<kerning first="84" second="117" amount="-1" />
<kerning first="84" second="111" amount="-1" />
<kerning first="84" second="46" amount="-1" />
<kerning first="39" second="100" amount="-1" />
<kerning first="39" second="113" amount="-1" />
<kerning first="34" second="65" amount="-1" />
<kerning first="34" second="111" amount="-1" />
<kerning first="44" second="87" amount="-1" />
<kerning first="89" second="97" amount="-1" />
<kerning first="87" second="46" amount="-1" />
<kerning first="46" second="67" amount="-1" />
<kerning first="84" second="114" amount="-1" />
<kerning first="84" second="97" amount="-1" />
<kerning first="87" second="44" amount="-1" />
<kerning first="89" second="44" amount="-1" />
<kerning first="34" second="113" amount="-1" />
<kerning first="86" second="46" amount="-1" />
<kerning first="84" second="44" amount="-1" />
<kerning first="84" second="113" amount="-1" />
<kerning first="65" second="89" amount="-1" />
<kerning first="46" second="87" amount="-1" />
<kerning first="84" second="65" amount="-1" />
<kerning first="46" second="86" amount="-1" />
<kerning first="89" second="46" amount="-1" />
<kerning first="89" second="99" amount="-1" />
<kerning first="102" second="34" amount="1" />
<kerning first="84" second="112" amount="-1" />
<kerning first="123" second="74" amount="1" />
<kerning first="39" second="99" amount="-1" />
<kerning first="69" second="74" amount="1" />
</kernings>
</font>

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

View File

@ -0,0 +1,297 @@
<font>
<info face="open-sans-128-black" size="128" bold="0" italic="0" charset="" unicode="" stretchH="100" smooth="1" aa="1" padding="2,2,2,2" spacing="0,0" outline="0"/>
<common lineHeight="143" base="115" scaleW="4096" scaleH="431" pages="1" packed="0"/>
<pages>
<page id="0" file="open-sans-128-black.png"/>
</pages>
<chars count="188">
<char id="33" x="2" y="25" width="14" height="92" xoffset="11" yoffset="23" xadvance="36" page="0" chnl="15"/>
<char id="34" x="18" y="25" width="34" height="33" xoffset="6" yoffset="23" xadvance="45" page="0" chnl="15"/>
<char id="35" x="54" y="23" width="69" height="95" xoffset="1" yoffset="22" xadvance="71" page="0" chnl="15"/>
<char id="36" x="125" y="16" width="61" height="114" xoffset="5" yoffset="15" xadvance="71" page="0" chnl="15"/>
<char id="37" x="188" y="23" width="99" height="97" xoffset="7" yoffset="22" xadvance="114" page="0" chnl="15"/>
<char id="38" x="289" y="23" width="77" height="96" xoffset="6" yoffset="22" xadvance="85" page="0" chnl="15"/>
<char id="39" x="368" y="25" width="13" height="33" xoffset="6" yoffset="23" xadvance="24" page="0" chnl="15"/>
<char id="40" x="383" y="23" width="31" height="120" xoffset="8" yoffset="22" xadvance="43" page="0" chnl="15"/>
<char id="41" x="416" y="23" width="31" height="120" xoffset="8" yoffset="22" xadvance="43" page="0" chnl="15"/>
<char id="42" x="449" y="23" width="42" height="39" xoffset="4" yoffset="22" xadvance="50" page="0" chnl="15"/>
<char id="43" x="493" y="41" width="61" height="61" xoffset="7" yoffset="39" xadvance="75" page="0" chnl="15"/>
<char id="44" x="556" y="103" width="14" height="31" xoffset="11" yoffset="102" xadvance="36" page="0" chnl="15"/>
<char id="45" x="572" y="77" width="35" height="12" xoffset="4" yoffset="76" xadvance="43" page="0" chnl="15"/>
<char id="46" x="609" y="103" width="13" height="13" xoffset="12" yoffset="102" xadvance="36" page="0" chnl="15"/>
<char id="47" x="624" y="23" width="36" height="95" xoffset="0" yoffset="22" xadvance="36" page="0" chnl="15"/>
<char id="48" x="662" y="24" width="60" height="94" xoffset="5" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="49" x="724" y="24" width="34" height="92" xoffset="14" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="50" x="760" y="24" width="61" height="92" xoffset="4" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="51" x="823" y="24" width="60" height="94" xoffset="5" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="52" x="885" y="25" width="64" height="92" xoffset="2" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="53" x="951" y="26" width="61" height="92" xoffset="5" yoffset="24" xadvance="71" page="0" chnl="15"/>
<char id="54" x="1014" y="24" width="61" height="94" xoffset="5" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="55" x="1077" y="26" width="60" height="91" xoffset="6" yoffset="24" xadvance="71" page="0" chnl="15"/>
<char id="56" x="1139" y="24" width="61" height="94" xoffset="5" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="57" x="1202" y="24" width="61" height="94" xoffset="5" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="58" x="1265" y="50" width="13" height="67" xoffset="12" yoffset="48" xadvance="36" page="0" chnl="15"/>
<char id="59" x="1280" y="50" width="14" height="85" xoffset="11" yoffset="48" xadvance="36" page="0" chnl="15"/>
<char id="60" x="1296" y="40" width="61" height="62" xoffset="7" yoffset="39" xadvance="75" page="0" chnl="15"/>
<char id="61" x="1359" y="52" width="61" height="39" xoffset="7" yoffset="50" xadvance="75" page="0" chnl="15"/>
<char id="62" x="1422" y="40" width="61" height="62" xoffset="7" yoffset="39" xadvance="75" page="0" chnl="15"/>
<char id="63" x="1485" y="23" width="59" height="94" xoffset="6" yoffset="22" xadvance="71" page="0" chnl="15"/>
<char id="64" x="1546" y="23" width="119" height="121" xoffset="7" yoffset="21" xadvance="130" page="0" chnl="15"/>
<char id="65" x="1667" y="25" width="86" height="92" xoffset="0" yoffset="23" xadvance="85" page="0" chnl="15"/>
<char id="66" x="1755" y="25" width="70" height="92" xoffset="9" yoffset="23" xadvance="85" page="0" chnl="15"/>
<char id="67" x="1827" y="23" width="81" height="95" xoffset="6" yoffset="22" xadvance="92" page="0" chnl="15"/>
<char id="68" x="1910" y="25" width="76" height="92" xoffset="10" yoffset="23" xadvance="92" page="0" chnl="15"/>
<char id="69" x="1988" y="25" width="69" height="92" xoffset="10" yoffset="23" xadvance="85" page="0" chnl="15"/>
<char id="70" x="2059" y="25" width="62" height="92" xoffset="11" yoffset="23" xadvance="78" page="0" chnl="15"/>
<char id="71" x="2123" y="23" width="85" height="95" xoffset="7" yoffset="22" xadvance="100" page="0" chnl="15"/>
<char id="72" x="2210" y="25" width="72" height="92" xoffset="10" yoffset="23" xadvance="92" page="0" chnl="15"/>
<char id="73" x="2284" y="25" width="12" height="92" xoffset="12" yoffset="23" xadvance="36" page="0" chnl="15"/>
<char id="74" x="2298" y="25" width="51" height="94" xoffset="3" yoffset="23" xadvance="64" page="0" chnl="15"/>
<char id="75" x="2351" y="25" width="76" height="92" xoffset="9" yoffset="23" xadvance="85" page="0" chnl="15"/>
<char id="76" x="2429" y="25" width="58" height="92" xoffset="9" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="77" x="2489" y="25" width="88" height="92" xoffset="10" yoffset="23" xadvance="107" page="0" chnl="15"/>
<char id="78" x="2579" y="25" width="73" height="92" xoffset="10" yoffset="23" xadvance="92" page="0" chnl="15"/>
<char id="79" x="2654" y="23" width="88" height="95" xoffset="6" yoffset="22" xadvance="100" page="0" chnl="15"/>
<char id="80" x="2744" y="25" width="70" height="92" xoffset="10" yoffset="23" xadvance="85" page="0" chnl="15"/>
<char id="81" x="2816" y="23" width="90" height="101" xoffset="6" yoffset="22" xadvance="100" page="0" chnl="15"/>
<char id="82" x="2908" y="25" width="81" height="92" xoffset="10" yoffset="23" xadvance="92" page="0" chnl="15"/>
<char id="83" x="2991" y="23" width="73" height="95" xoffset="6" yoffset="22" xadvance="85" page="0" chnl="15"/>
<char id="84" x="3066" y="25" width="73" height="92" xoffset="3" yoffset="23" xadvance="78" page="0" chnl="15"/>
<char id="85" x="3141" y="25" width="72" height="94" xoffset="10" yoffset="23" xadvance="92" page="0" chnl="15"/>
<char id="86" x="3215" y="25" width="84" height="92" xoffset="1" yoffset="23" xadvance="85" page="0" chnl="15"/>
<char id="87" x="3301" y="25" width="118" height="92" xoffset="2" yoffset="23" xadvance="121" page="0" chnl="15"/>
<char id="88" x="3421" y="25" width="84" height="92" xoffset="1" yoffset="23" xadvance="85" page="0" chnl="15"/>
<char id="89" x="3507" y="25" width="84" height="92" xoffset="0" yoffset="23" xadvance="85" page="0" chnl="15"/>
<char id="90" x="3593" y="25" width="73" height="92" xoffset="3" yoffset="23" xadvance="78" page="0" chnl="15"/>
<char id="91" x="3668" y="25" width="25" height="117" xoffset="9" yoffset="23" xadvance="36" page="0" chnl="15"/>
<char id="92" x="3695" y="23" width="36" height="95" xoffset="0" yoffset="22" xadvance="36" page="0" chnl="15"/>
<char id="93" x="3733" y="25" width="25" height="117" xoffset="2" yoffset="23" xadvance="36" page="0" chnl="15"/>
<char id="94" x="3760" y="23" width="54" height="50" xoffset="3" yoffset="22" xadvance="60" page="0" chnl="15"/>
<char id="95" x="3816" y="134" width="75" height="8" xoffset="-2" yoffset="132" xadvance="71" page="0" chnl="15"/>
<char id="97" x="3893" y="48" width="61" height="70" xoffset="5" yoffset="47" xadvance="71" page="0" chnl="15"/>
<char id="98" x="3956" y="25" width="58" height="93" xoffset="8" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="99" x="4016" y="48" width="58" height="70" xoffset="5" yoffset="47" xadvance="64" page="0" chnl="15"/>
<char id="100" x="2" y="169" width="58" height="93" xoffset="4" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="101" x="62" y="192" width="62" height="70" xoffset="5" yoffset="47" xadvance="71" page="0" chnl="15"/>
<char id="102" x="126" y="167" width="39" height="94" xoffset="1" yoffset="22" xadvance="36" page="0" chnl="15"/>
<char id="103" x="167" y="192" width="59" height="95" xoffset="4" yoffset="47" xadvance="71" page="0" chnl="15"/>
<char id="104" x="228" y="169" width="54" height="92" xoffset="8" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="105" x="284" y="169" width="12" height="92" xoffset="9" yoffset="23" xadvance="28" page="0" chnl="15"/>
<char id="106" x="298" y="169" width="26" height="119" xoffset="-6" yoffset="23" xadvance="28" page="0" chnl="15"/>
<char id="107" x="326" y="169" width="55" height="92" xoffset="9" yoffset="23" xadvance="64" page="0" chnl="15"/>
<char id="108" x="383" y="169" width="12" height="92" xoffset="8" yoffset="23" xadvance="28" page="0" chnl="15"/>
<char id="109" x="397" y="192" width="90" height="68" xoffset="8" yoffset="47" xadvance="107" page="0" chnl="15"/>
<char id="110" x="489" y="192" width="54" height="68" xoffset="8" yoffset="47" xadvance="71" page="0" chnl="15"/>
<char id="111" x="545" y="192" width="63" height="70" xoffset="4" yoffset="47" xadvance="71" page="0" chnl="15"/>
<char id="112" x="610" y="192" width="58" height="94" xoffset="8" yoffset="47" xadvance="71" page="0" chnl="15"/>
<char id="113" x="670" y="192" width="58" height="94" xoffset="5" yoffset="47" xadvance="71" page="0" chnl="15"/>
<char id="114" x="730" y="192" width="36" height="68" xoffset="8" yoffset="47" xadvance="43" page="0" chnl="15"/>
<char id="115" x="768" y="192" width="55" height="70" xoffset="4" yoffset="47" xadvance="64" page="0" chnl="15"/>
<char id="116" x="825" y="171" width="33" height="91" xoffset="2" yoffset="25" xadvance="36" page="0" chnl="15"/>
<char id="117" x="860" y="194" width="54" height="68" xoffset="8" yoffset="48" xadvance="71" page="0" chnl="15"/>
<char id="118" x="916" y="194" width="61" height="67" xoffset="2" yoffset="48" xadvance="64" page="0" chnl="15"/>
<char id="119" x="979" y="194" width="91" height="67" xoffset="0" yoffset="48" xadvance="92" page="0" chnl="15"/>
<char id="120" x="1072" y="194" width="62" height="67" xoffset="1" yoffset="48" xadvance="64" page="0" chnl="15"/>
<char id="121" x="1136" y="194" width="61" height="94" xoffset="2" yoffset="48" xadvance="64" page="0" chnl="15"/>
<char id="122" x="1199" y="194" width="59" height="67" xoffset="3" yoffset="48" xadvance="64" page="0" chnl="15"/>
<char id="123" x="1260" y="167" width="37" height="120" xoffset="4" yoffset="22" xadvance="43" page="0" chnl="15"/>
<char id="124" x="1299" y="167" width="10" height="120" xoffset="12" yoffset="22" xadvance="33" page="0" chnl="15"/>
<char id="125" x="1311" y="167" width="37" height="120" xoffset="3" yoffset="22" xadvance="43" page="0" chnl="15"/>
<char id="126" x="1350" y="205" width="64" height="21" xoffset="5" yoffset="59" xadvance="75" page="0" chnl="15"/>
<char id="161" x="1416" y="194" width="14" height="92" xoffset="15" yoffset="48" xadvance="43" page="0" chnl="15"/>
<char id="162" x="1432" y="169" width="58" height="118" xoffset="7" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="163" x="1492" y="167" width="66" height="95" xoffset="2" yoffset="22" xadvance="71" page="0" chnl="15"/>
<char id="164" x="1560" y="184" width="62" height="62" xoffset="5" yoffset="39" xadvance="71" page="0" chnl="15"/>
<char id="165" x="1624" y="169" width="71" height="92" xoffset="0" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="166" x="1697" y="167" width="10" height="120" xoffset="12" yoffset="22" xadvance="33" page="0" chnl="15"/>
<char id="167" x="1709" y="167" width="61" height="120" xoffset="5" yoffset="22" xadvance="71" page="0" chnl="15"/>
<char id="168" x="1772" y="168" width="35" height="13" xoffset="4" yoffset="23" xadvance="43" page="0" chnl="15"/>
<char id="169" x="1809" y="167" width="95" height="95" xoffset="0" yoffset="22" xadvance="94" page="0" chnl="15"/>
<char id="170" x="1906" y="167" width="42" height="47" xoffset="3" yoffset="22" xadvance="47" page="0" chnl="15"/>
<char id="171" x="1950" y="199" width="54" height="57" xoffset="8" yoffset="53" xadvance="71" page="0" chnl="15"/>
<char id="172" x="2006" y="196" width="61" height="38" xoffset="7" yoffset="50" xadvance="75" page="0" chnl="15"/>
<char id="173" x="2069" y="221" width="35" height="12" xoffset="4" yoffset="76" xadvance="43" page="0" chnl="15"/>
<char id="174" x="2106" y="167" width="95" height="95" xoffset="0" yoffset="22" xadvance="94" page="0" chnl="15"/>
<char id="175" x="2203" y="154" width="75" height="8" xoffset="-2" yoffset="9" xadvance="71" page="0" chnl="15"/>
<char id="176" x="2280" y="167" width="35" height="35" xoffset="8" yoffset="22" xadvance="51" page="0" chnl="15"/>
<char id="177" x="2317" y="183" width="61" height="77" xoffset="5" yoffset="38" xadvance="70" page="0" chnl="15"/>
<char id="178" x="2380" y="168" width="39" height="47" xoffset="2" yoffset="22" xadvance="43" page="0" chnl="15"/>
<char id="179" x="2421" y="168" width="39" height="48" xoffset="2" yoffset="22" xadvance="43" page="0" chnl="15"/>
<char id="180" x="2462" y="168" width="23" height="18" xoffset="14" yoffset="23" xadvance="43" page="0" chnl="15"/>
<char id="181" x="2487" y="194" width="54" height="92" xoffset="10" yoffset="48" xadvance="74" page="0" chnl="15"/>
<char id="182" x="2543" y="169" width="69" height="117" xoffset="0" yoffset="23" xadvance="69" page="0" chnl="15"/>
<char id="183" x="2614" y="208" width="13" height="13" xoffset="15" yoffset="62" xadvance="43" page="0" chnl="15"/>
<char id="184" x="2629" y="259" width="27" height="28" xoffset="7" yoffset="113" xadvance="43" page="0" chnl="15"/>
<char id="185" x="2658" y="168" width="23" height="47" xoffset="7" yoffset="22" xadvance="43" page="0" chnl="15"/>
<char id="186" x="2683" y="167" width="41" height="47" xoffset="3" yoffset="22" xadvance="47" page="0" chnl="15"/>
<char id="187" x="2726" y="199" width="54" height="57" xoffset="9" yoffset="53" xadvance="71" page="0" chnl="15"/>
<char id="188" x="2782" y="167" width="99" height="97" xoffset="7" yoffset="22" xadvance="107" page="0" chnl="15"/>
<char id="189" x="2883" y="167" width="98" height="97" xoffset="7" yoffset="22" xadvance="107" page="0" chnl="15"/>
<char id="190" x="2983" y="167" width="103" height="97" xoffset="2" yoffset="22" xadvance="107" page="0" chnl="15"/>
<char id="191" x="3088" y="194" width="59" height="94" xoffset="10" yoffset="48" xadvance="78" page="0" chnl="15"/>
<char id="192" x="3149" y="146" width="86" height="115" xoffset="0" yoffset="0" xadvance="85" page="0" chnl="15"/>
<char id="193" x="3237" y="146" width="86" height="115" xoffset="0" yoffset="0" xadvance="85" page="0" chnl="15"/>
<char id="194" x="3325" y="146" width="86" height="115" xoffset="0" yoffset="0" xadvance="85" page="0" chnl="15"/>
<char id="195" x="3413" y="149" width="86" height="112" xoffset="0" yoffset="3" xadvance="85" page="0" chnl="15"/>
<char id="196" x="3501" y="150" width="86" height="110" xoffset="0" yoffset="5" xadvance="85" page="0" chnl="15"/>
<char id="197" x="3589" y="149" width="86" height="112" xoffset="0" yoffset="4" xadvance="85" page="0" chnl="15"/>
<char id="198" x="3677" y="169" width="121" height="92" xoffset="0" yoffset="23" xadvance="128" page="0" chnl="15"/>
<char id="199" x="3800" y="167" width="81" height="120" xoffset="6" yoffset="22" xadvance="92" page="0" chnl="15"/>
<char id="200" x="3883" y="146" width="69" height="115" xoffset="10" yoffset="0" xadvance="85" page="0" chnl="15"/>
<char id="201" x="3954" y="146" width="69" height="115" xoffset="10" yoffset="0" xadvance="85" page="0" chnl="15"/>
<char id="202" x="4025" y="146" width="69" height="115" xoffset="10" yoffset="0" xadvance="85" page="0" chnl="15"/>
<char id="203" x="2" y="294" width="69" height="110" xoffset="10" yoffset="5" xadvance="85" page="0" chnl="15"/>
<char id="204" x="73" y="290" width="24" height="115" xoffset="3" yoffset="0" xadvance="36" page="0" chnl="15"/>
<char id="205" x="99" y="290" width="23" height="115" xoffset="9" yoffset="0" xadvance="36" page="0" chnl="15"/>
<char id="206" x="124" y="290" width="40" height="115" xoffset="-2" yoffset="0" xadvance="36" page="0" chnl="15"/>
<char id="207" x="166" y="294" width="35" height="110" xoffset="0" yoffset="5" xadvance="36" page="0" chnl="15"/>
<char id="208" x="203" y="313" width="86" height="92" xoffset="0" yoffset="23" xadvance="92" page="0" chnl="15"/>
<char id="209" x="291" y="293" width="73" height="112" xoffset="10" yoffset="3" xadvance="92" page="0" chnl="15"/>
<char id="210" x="366" y="290" width="88" height="117" xoffset="6" yoffset="0" xadvance="100" page="0" chnl="15"/>
<char id="211" x="456" y="290" width="88" height="117" xoffset="6" yoffset="0" xadvance="100" page="0" chnl="15"/>
<char id="212" x="546" y="290" width="88" height="117" xoffset="6" yoffset="0" xadvance="100" page="0" chnl="15"/>
<char id="213" x="636" y="293" width="88" height="114" xoffset="6" yoffset="3" xadvance="100" page="0" chnl="15"/>
<char id="214" x="726" y="294" width="88" height="112" xoffset="6" yoffset="5" xadvance="100" page="0" chnl="15"/>
<char id="215" x="816" y="332" width="55" height="55" xoffset="10" yoffset="42" xadvance="75" page="0" chnl="15"/>
<char id="216" x="873" y="309" width="90" height="99" xoffset="5" yoffset="20" xadvance="100" page="0" chnl="15"/>
<char id="217" x="965" y="290" width="72" height="117" xoffset="10" yoffset="0" xadvance="92" page="0" chnl="15"/>
<char id="218" x="1039" y="290" width="72" height="117" xoffset="10" yoffset="0" xadvance="92" page="0" chnl="15"/>
<char id="219" x="1113" y="290" width="72" height="117" xoffset="10" yoffset="0" xadvance="92" page="0" chnl="15"/>
<char id="220" x="1187" y="294" width="72" height="112" xoffset="10" yoffset="5" xadvance="92" page="0" chnl="15"/>
<char id="221" x="1261" y="290" width="84" height="115" xoffset="0" yoffset="0" xadvance="85" page="0" chnl="15"/>
<char id="222" x="1347" y="313" width="70" height="92" xoffset="10" yoffset="23" xadvance="85" page="0" chnl="15"/>
<char id="223" x="1419" y="311" width="65" height="95" xoffset="10" yoffset="22" xadvance="78" page="0" chnl="15"/>
<char id="224" x="1486" y="312" width="61" height="94" xoffset="5" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="225" x="1549" y="312" width="61" height="94" xoffset="5" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="226" x="1612" y="312" width="61" height="94" xoffset="5" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="227" x="1675" y="314" width="61" height="92" xoffset="5" yoffset="24" xadvance="71" page="0" chnl="15"/>
<char id="228" x="1738" y="312" width="61" height="94" xoffset="5" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="229" x="1801" y="309" width="61" height="97" xoffset="5" yoffset="20" xadvance="71" page="0" chnl="15"/>
<char id="230" x="1864" y="336" width="105" height="70" xoffset="4" yoffset="47" xadvance="114" page="0" chnl="15"/>
<char id="231" x="1971" y="336" width="58" height="93" xoffset="5" yoffset="47" xadvance="64" page="0" chnl="15"/>
<char id="232" x="2031" y="312" width="62" height="94" xoffset="5" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="233" x="2095" y="312" width="62" height="94" xoffset="5" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="234" x="2159" y="312" width="62" height="94" xoffset="5" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="235" x="2223" y="312" width="62" height="94" xoffset="5" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="236" x="2287" y="312" width="24" height="92" xoffset="2" yoffset="23" xadvance="36" page="0" chnl="15"/>
<char id="237" x="2313" y="312" width="23" height="92" xoffset="12" yoffset="23" xadvance="36" page="0" chnl="15"/>
<char id="238" x="2338" y="312" width="40" height="92" xoffset="-1" yoffset="23" xadvance="36" page="0" chnl="15"/>
<char id="239" x="2380" y="312" width="35" height="93" xoffset="1" yoffset="23" xadvance="36" page="0" chnl="15"/>
<char id="240" x="2417" y="313" width="62" height="94" xoffset="5" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="241" x="2481" y="314" width="54" height="91" xoffset="8" yoffset="24" xadvance="71" page="0" chnl="15"/>
<char id="242" x="2537" y="312" width="63" height="94" xoffset="4" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="243" x="2602" y="312" width="63" height="94" xoffset="4" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="244" x="2667" y="312" width="63" height="94" xoffset="4" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="245" x="2732" y="314" width="63" height="92" xoffset="4" yoffset="24" xadvance="71" page="0" chnl="15"/>
<char id="246" x="2797" y="312" width="63" height="94" xoffset="4" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="247" x="2862" y="334" width="61" height="51" xoffset="5" yoffset="44" xadvance="70" page="0" chnl="15"/>
<char id="248" x="2925" y="334" width="63" height="76" xoffset="8" yoffset="44" xadvance="78" page="0" chnl="15"/>
<char id="249" x="2990" y="312" width="54" height="94" xoffset="8" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="250" x="3046" y="312" width="54" height="94" xoffset="8" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="251" x="3102" y="312" width="54" height="94" xoffset="8" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="252" x="3158" y="312" width="54" height="94" xoffset="8" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="253" x="3214" y="312" width="61" height="119" xoffset="2" yoffset="23" xadvance="64" page="0" chnl="15"/>
<char id="254" x="3277" y="313" width="58" height="117" xoffset="8" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="255" x="3337" y="312" width="61" height="119" xoffset="2" yoffset="23" xadvance="64" page="0" chnl="15"/>
<char id="32" x="0" y="0" width="0" height="0" xoffset="2" yoffset="23" xadvance="36" page="0" chnl="15"/>
</chars>
<kernings count="97">
<kerning first="32" second="65" amount="-7"/>
<kerning first="32" second="84" amount="-2"/>
<kerning first="32" second="89" amount="-2"/>
<kerning first="49" second="49" amount="-9"/>
<kerning first="65" second="32" amount="-7"/>
<kerning first="65" second="84" amount="-9"/>
<kerning first="65" second="86" amount="-9"/>
<kerning first="65" second="87" amount="-5"/>
<kerning first="65" second="89" amount="-9"/>
<kerning first="65" second="118" amount="-2"/>
<kerning first="65" second="119" amount="-2"/>
<kerning first="65" second="121" amount="-2"/>
<kerning first="70" second="44" amount="-14"/>
<kerning first="70" second="46" amount="-14"/>
<kerning first="70" second="65" amount="-7"/>
<kerning first="76" second="32" amount="-5"/>
<kerning first="76" second="84" amount="-9"/>
<kerning first="76" second="86" amount="-9"/>
<kerning first="76" second="87" amount="-9"/>
<kerning first="76" second="89" amount="-9"/>
<kerning first="76" second="121" amount="-5"/>
<kerning first="80" second="32" amount="-2"/>
<kerning first="80" second="44" amount="-16"/>
<kerning first="80" second="46" amount="-16"/>
<kerning first="80" second="65" amount="-9"/>
<kerning first="82" second="84" amount="-2"/>
<kerning first="82" second="86" amount="-2"/>
<kerning first="82" second="87" amount="-2"/>
<kerning first="82" second="89" amount="-2"/>
<kerning first="84" second="32" amount="-2"/>
<kerning first="84" second="44" amount="-14"/>
<kerning first="84" second="173" amount="-7"/>
<kerning first="84" second="46" amount="-14"/>
<kerning first="84" second="58" amount="-14"/>
<kerning first="84" second="59" amount="-14"/>
<kerning first="84" second="65" amount="-9"/>
<kerning first="84" second="79" amount="-2"/>
<kerning first="84" second="97" amount="-14"/>
<kerning first="84" second="99" amount="-14"/>
<kerning first="84" second="101" amount="-14"/>
<kerning first="84" second="105" amount="-5"/>
<kerning first="84" second="111" amount="-14"/>
<kerning first="84" second="114" amount="-5"/>
<kerning first="84" second="115" amount="-14"/>
<kerning first="84" second="117" amount="-5"/>
<kerning first="84" second="119" amount="-7"/>
<kerning first="84" second="121" amount="-7"/>
<kerning first="86" second="44" amount="-12"/>
<kerning first="86" second="173" amount="-7"/>
<kerning first="86" second="46" amount="-12"/>
<kerning first="86" second="58" amount="-5"/>
<kerning first="86" second="59" amount="-5"/>
<kerning first="86" second="65" amount="-9"/>
<kerning first="86" second="97" amount="-9"/>
<kerning first="86" second="101" amount="-7"/>
<kerning first="86" second="105" amount="-2"/>
<kerning first="86" second="111" amount="-7"/>
<kerning first="86" second="114" amount="-5"/>
<kerning first="86" second="117" amount="-5"/>
<kerning first="86" second="121" amount="-5"/>
<kerning first="87" second="44" amount="-7"/>
<kerning first="87" second="173" amount="-2"/>
<kerning first="87" second="46" amount="-7"/>
<kerning first="87" second="58" amount="-2"/>
<kerning first="87" second="59" amount="-2"/>
<kerning first="87" second="65" amount="-5"/>
<kerning first="87" second="97" amount="-5"/>
<kerning first="87" second="101" amount="-2"/>
<kerning first="87" second="105" amount="0"/>
<kerning first="87" second="111" amount="-2"/>
<kerning first="87" second="114" amount="-2"/>
<kerning first="87" second="117" amount="-2"/>
<kerning first="87" second="121" amount="-1"/>
<kerning first="89" second="32" amount="-2"/>
<kerning first="89" second="44" amount="-16"/>
<kerning first="89" second="173" amount="-12"/>
<kerning first="89" second="46" amount="-16"/>
<kerning first="89" second="58" amount="-7"/>
<kerning first="89" second="59" amount="-8"/>
<kerning first="89" second="65" amount="-9"/>
<kerning first="89" second="97" amount="-9"/>
<kerning first="89" second="101" amount="-12"/>
<kerning first="89" second="105" amount="-5"/>
<kerning first="89" second="111" amount="-12"/>
<kerning first="89" second="112" amount="-9"/>
<kerning first="89" second="113" amount="-12"/>
<kerning first="89" second="117" amount="-7"/>
<kerning first="89" second="118" amount="-7"/>
<kerning first="102" second="102" amount="-2"/>
<kerning first="114" second="44" amount="-7"/>
<kerning first="114" second="46" amount="-7"/>
<kerning first="118" second="44" amount="-9"/>
<kerning first="118" second="46" amount="-9"/>
<kerning first="119" second="44" amount="-7"/>
<kerning first="119" second="46" amount="-7"/>
<kerning first="121" second="44" amount="-9"/>
<kerning first="121" second="46" amount="-9"/>
</kernings>
</font>

Binary file not shown.

After

Width:  |  Height:  |  Size: 111 KiB

View File

@ -0,0 +1,297 @@
<font>
<info face="open-sans-128-white" size="128" bold="0" italic="0" charset="" unicode="" stretchH="100" smooth="1" aa="1" padding="2,2,2,2" spacing="0,0" outline="0"/>
<common lineHeight="143" base="115" scaleW="4096" scaleH="431" pages="1" packed="0"/>
<pages>
<page id="0" file="open-sans-128-white.png"/>
</pages>
<chars count="188">
<char id="33" x="2" y="25" width="14" height="92" xoffset="11" yoffset="23" xadvance="36" page="0" chnl="15"/>
<char id="34" x="18" y="25" width="34" height="33" xoffset="6" yoffset="23" xadvance="45" page="0" chnl="15"/>
<char id="35" x="54" y="23" width="69" height="95" xoffset="1" yoffset="22" xadvance="71" page="0" chnl="15"/>
<char id="36" x="125" y="16" width="61" height="114" xoffset="5" yoffset="15" xadvance="71" page="0" chnl="15"/>
<char id="37" x="188" y="23" width="99" height="97" xoffset="7" yoffset="22" xadvance="114" page="0" chnl="15"/>
<char id="38" x="289" y="23" width="77" height="96" xoffset="6" yoffset="22" xadvance="85" page="0" chnl="15"/>
<char id="39" x="368" y="25" width="13" height="33" xoffset="6" yoffset="23" xadvance="24" page="0" chnl="15"/>
<char id="40" x="383" y="23" width="31" height="120" xoffset="8" yoffset="22" xadvance="43" page="0" chnl="15"/>
<char id="41" x="416" y="23" width="31" height="120" xoffset="8" yoffset="22" xadvance="43" page="0" chnl="15"/>
<char id="42" x="449" y="23" width="42" height="39" xoffset="4" yoffset="22" xadvance="50" page="0" chnl="15"/>
<char id="43" x="493" y="41" width="61" height="61" xoffset="7" yoffset="39" xadvance="75" page="0" chnl="15"/>
<char id="44" x="556" y="103" width="14" height="31" xoffset="11" yoffset="102" xadvance="36" page="0" chnl="15"/>
<char id="45" x="572" y="77" width="35" height="12" xoffset="4" yoffset="76" xadvance="43" page="0" chnl="15"/>
<char id="46" x="609" y="103" width="13" height="13" xoffset="12" yoffset="102" xadvance="36" page="0" chnl="15"/>
<char id="47" x="624" y="23" width="36" height="95" xoffset="0" yoffset="22" xadvance="36" page="0" chnl="15"/>
<char id="48" x="662" y="24" width="60" height="94" xoffset="5" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="49" x="724" y="24" width="34" height="92" xoffset="14" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="50" x="760" y="24" width="61" height="92" xoffset="4" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="51" x="823" y="24" width="60" height="94" xoffset="5" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="52" x="885" y="25" width="64" height="92" xoffset="2" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="53" x="951" y="26" width="61" height="92" xoffset="5" yoffset="24" xadvance="71" page="0" chnl="15"/>
<char id="54" x="1014" y="24" width="61" height="94" xoffset="5" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="55" x="1077" y="26" width="60" height="91" xoffset="6" yoffset="24" xadvance="71" page="0" chnl="15"/>
<char id="56" x="1139" y="24" width="61" height="94" xoffset="5" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="57" x="1202" y="24" width="61" height="94" xoffset="5" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="58" x="1265" y="50" width="13" height="67" xoffset="12" yoffset="48" xadvance="36" page="0" chnl="15"/>
<char id="59" x="1280" y="50" width="14" height="85" xoffset="11" yoffset="48" xadvance="36" page="0" chnl="15"/>
<char id="60" x="1296" y="40" width="61" height="62" xoffset="7" yoffset="39" xadvance="75" page="0" chnl="15"/>
<char id="61" x="1359" y="52" width="61" height="39" xoffset="7" yoffset="50" xadvance="75" page="0" chnl="15"/>
<char id="62" x="1422" y="40" width="61" height="62" xoffset="7" yoffset="39" xadvance="75" page="0" chnl="15"/>
<char id="63" x="1485" y="23" width="59" height="94" xoffset="6" yoffset="22" xadvance="71" page="0" chnl="15"/>
<char id="64" x="1546" y="23" width="119" height="121" xoffset="7" yoffset="21" xadvance="130" page="0" chnl="15"/>
<char id="65" x="1667" y="25" width="86" height="92" xoffset="0" yoffset="23" xadvance="85" page="0" chnl="15"/>
<char id="66" x="1755" y="25" width="70" height="92" xoffset="9" yoffset="23" xadvance="85" page="0" chnl="15"/>
<char id="67" x="1827" y="23" width="81" height="95" xoffset="6" yoffset="22" xadvance="92" page="0" chnl="15"/>
<char id="68" x="1910" y="25" width="76" height="92" xoffset="10" yoffset="23" xadvance="92" page="0" chnl="15"/>
<char id="69" x="1988" y="25" width="69" height="92" xoffset="10" yoffset="23" xadvance="85" page="0" chnl="15"/>
<char id="70" x="2059" y="25" width="62" height="92" xoffset="11" yoffset="23" xadvance="78" page="0" chnl="15"/>
<char id="71" x="2123" y="23" width="85" height="95" xoffset="7" yoffset="22" xadvance="100" page="0" chnl="15"/>
<char id="72" x="2210" y="25" width="72" height="92" xoffset="10" yoffset="23" xadvance="92" page="0" chnl="15"/>
<char id="73" x="2284" y="25" width="12" height="92" xoffset="12" yoffset="23" xadvance="36" page="0" chnl="15"/>
<char id="74" x="2298" y="25" width="51" height="94" xoffset="3" yoffset="23" xadvance="64" page="0" chnl="15"/>
<char id="75" x="2351" y="25" width="76" height="92" xoffset="9" yoffset="23" xadvance="85" page="0" chnl="15"/>
<char id="76" x="2429" y="25" width="58" height="92" xoffset="9" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="77" x="2489" y="25" width="88" height="92" xoffset="10" yoffset="23" xadvance="107" page="0" chnl="15"/>
<char id="78" x="2579" y="25" width="73" height="92" xoffset="10" yoffset="23" xadvance="92" page="0" chnl="15"/>
<char id="79" x="2654" y="23" width="88" height="95" xoffset="6" yoffset="22" xadvance="100" page="0" chnl="15"/>
<char id="80" x="2744" y="25" width="70" height="92" xoffset="10" yoffset="23" xadvance="85" page="0" chnl="15"/>
<char id="81" x="2816" y="23" width="90" height="101" xoffset="6" yoffset="22" xadvance="100" page="0" chnl="15"/>
<char id="82" x="2908" y="25" width="81" height="92" xoffset="10" yoffset="23" xadvance="92" page="0" chnl="15"/>
<char id="83" x="2991" y="23" width="73" height="95" xoffset="6" yoffset="22" xadvance="85" page="0" chnl="15"/>
<char id="84" x="3066" y="25" width="73" height="92" xoffset="3" yoffset="23" xadvance="78" page="0" chnl="15"/>
<char id="85" x="3141" y="25" width="72" height="94" xoffset="10" yoffset="23" xadvance="92" page="0" chnl="15"/>
<char id="86" x="3215" y="25" width="84" height="92" xoffset="1" yoffset="23" xadvance="85" page="0" chnl="15"/>
<char id="87" x="3301" y="25" width="118" height="92" xoffset="2" yoffset="23" xadvance="121" page="0" chnl="15"/>
<char id="88" x="3421" y="25" width="84" height="92" xoffset="1" yoffset="23" xadvance="85" page="0" chnl="15"/>
<char id="89" x="3507" y="25" width="84" height="92" xoffset="0" yoffset="23" xadvance="85" page="0" chnl="15"/>
<char id="90" x="3593" y="25" width="73" height="92" xoffset="3" yoffset="23" xadvance="78" page="0" chnl="15"/>
<char id="91" x="3668" y="25" width="25" height="117" xoffset="9" yoffset="23" xadvance="36" page="0" chnl="15"/>
<char id="92" x="3695" y="23" width="36" height="95" xoffset="0" yoffset="22" xadvance="36" page="0" chnl="15"/>
<char id="93" x="3733" y="25" width="25" height="117" xoffset="2" yoffset="23" xadvance="36" page="0" chnl="15"/>
<char id="94" x="3760" y="23" width="54" height="50" xoffset="3" yoffset="22" xadvance="60" page="0" chnl="15"/>
<char id="95" x="3816" y="134" width="75" height="8" xoffset="-2" yoffset="132" xadvance="71" page="0" chnl="15"/>
<char id="97" x="3893" y="48" width="61" height="70" xoffset="5" yoffset="47" xadvance="71" page="0" chnl="15"/>
<char id="98" x="3956" y="25" width="58" height="93" xoffset="8" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="99" x="4016" y="48" width="58" height="70" xoffset="5" yoffset="47" xadvance="64" page="0" chnl="15"/>
<char id="100" x="2" y="169" width="58" height="93" xoffset="4" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="101" x="62" y="192" width="62" height="70" xoffset="5" yoffset="47" xadvance="71" page="0" chnl="15"/>
<char id="102" x="126" y="167" width="39" height="94" xoffset="1" yoffset="22" xadvance="36" page="0" chnl="15"/>
<char id="103" x="167" y="192" width="59" height="95" xoffset="4" yoffset="47" xadvance="71" page="0" chnl="15"/>
<char id="104" x="228" y="169" width="54" height="92" xoffset="8" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="105" x="284" y="169" width="12" height="92" xoffset="9" yoffset="23" xadvance="28" page="0" chnl="15"/>
<char id="106" x="298" y="169" width="26" height="119" xoffset="-6" yoffset="23" xadvance="28" page="0" chnl="15"/>
<char id="107" x="326" y="169" width="55" height="92" xoffset="9" yoffset="23" xadvance="64" page="0" chnl="15"/>
<char id="108" x="383" y="169" width="12" height="92" xoffset="8" yoffset="23" xadvance="28" page="0" chnl="15"/>
<char id="109" x="397" y="192" width="90" height="68" xoffset="8" yoffset="47" xadvance="107" page="0" chnl="15"/>
<char id="110" x="489" y="192" width="54" height="68" xoffset="8" yoffset="47" xadvance="71" page="0" chnl="15"/>
<char id="111" x="545" y="192" width="63" height="70" xoffset="4" yoffset="47" xadvance="71" page="0" chnl="15"/>
<char id="112" x="610" y="192" width="58" height="94" xoffset="8" yoffset="47" xadvance="71" page="0" chnl="15"/>
<char id="113" x="670" y="192" width="58" height="94" xoffset="5" yoffset="47" xadvance="71" page="0" chnl="15"/>
<char id="114" x="730" y="192" width="36" height="68" xoffset="8" yoffset="47" xadvance="43" page="0" chnl="15"/>
<char id="115" x="768" y="192" width="55" height="70" xoffset="4" yoffset="47" xadvance="64" page="0" chnl="15"/>
<char id="116" x="825" y="171" width="33" height="91" xoffset="2" yoffset="25" xadvance="36" page="0" chnl="15"/>
<char id="117" x="860" y="194" width="54" height="68" xoffset="8" yoffset="48" xadvance="71" page="0" chnl="15"/>
<char id="118" x="916" y="194" width="61" height="67" xoffset="2" yoffset="48" xadvance="64" page="0" chnl="15"/>
<char id="119" x="979" y="194" width="91" height="67" xoffset="0" yoffset="48" xadvance="92" page="0" chnl="15"/>
<char id="120" x="1072" y="194" width="62" height="67" xoffset="1" yoffset="48" xadvance="64" page="0" chnl="15"/>
<char id="121" x="1136" y="194" width="61" height="94" xoffset="2" yoffset="48" xadvance="64" page="0" chnl="15"/>
<char id="122" x="1199" y="194" width="59" height="67" xoffset="3" yoffset="48" xadvance="64" page="0" chnl="15"/>
<char id="123" x="1260" y="167" width="37" height="120" xoffset="4" yoffset="22" xadvance="43" page="0" chnl="15"/>
<char id="124" x="1299" y="167" width="10" height="120" xoffset="12" yoffset="22" xadvance="33" page="0" chnl="15"/>
<char id="125" x="1311" y="167" width="37" height="120" xoffset="3" yoffset="22" xadvance="43" page="0" chnl="15"/>
<char id="126" x="1350" y="205" width="64" height="21" xoffset="5" yoffset="59" xadvance="75" page="0" chnl="15"/>
<char id="161" x="1416" y="194" width="14" height="92" xoffset="15" yoffset="48" xadvance="43" page="0" chnl="15"/>
<char id="162" x="1432" y="169" width="58" height="118" xoffset="7" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="163" x="1492" y="167" width="66" height="95" xoffset="2" yoffset="22" xadvance="71" page="0" chnl="15"/>
<char id="164" x="1560" y="184" width="62" height="62" xoffset="5" yoffset="39" xadvance="71" page="0" chnl="15"/>
<char id="165" x="1624" y="169" width="71" height="92" xoffset="0" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="166" x="1697" y="167" width="10" height="120" xoffset="12" yoffset="22" xadvance="33" page="0" chnl="15"/>
<char id="167" x="1709" y="167" width="61" height="120" xoffset="5" yoffset="22" xadvance="71" page="0" chnl="15"/>
<char id="168" x="1772" y="168" width="35" height="13" xoffset="4" yoffset="23" xadvance="43" page="0" chnl="15"/>
<char id="169" x="1809" y="167" width="95" height="95" xoffset="0" yoffset="22" xadvance="94" page="0" chnl="15"/>
<char id="170" x="1906" y="167" width="42" height="47" xoffset="3" yoffset="22" xadvance="47" page="0" chnl="15"/>
<char id="171" x="1950" y="199" width="54" height="57" xoffset="8" yoffset="53" xadvance="71" page="0" chnl="15"/>
<char id="172" x="2006" y="196" width="61" height="38" xoffset="7" yoffset="50" xadvance="75" page="0" chnl="15"/>
<char id="173" x="2069" y="221" width="35" height="12" xoffset="4" yoffset="76" xadvance="43" page="0" chnl="15"/>
<char id="174" x="2106" y="167" width="95" height="95" xoffset="0" yoffset="22" xadvance="94" page="0" chnl="15"/>
<char id="175" x="2203" y="154" width="75" height="8" xoffset="-2" yoffset="9" xadvance="71" page="0" chnl="15"/>
<char id="176" x="2280" y="167" width="35" height="35" xoffset="8" yoffset="22" xadvance="51" page="0" chnl="15"/>
<char id="177" x="2317" y="183" width="61" height="77" xoffset="5" yoffset="38" xadvance="70" page="0" chnl="15"/>
<char id="178" x="2380" y="168" width="39" height="47" xoffset="2" yoffset="22" xadvance="43" page="0" chnl="15"/>
<char id="179" x="2421" y="168" width="39" height="48" xoffset="2" yoffset="22" xadvance="43" page="0" chnl="15"/>
<char id="180" x="2462" y="168" width="23" height="18" xoffset="14" yoffset="23" xadvance="43" page="0" chnl="15"/>
<char id="181" x="2487" y="194" width="54" height="92" xoffset="10" yoffset="48" xadvance="74" page="0" chnl="15"/>
<char id="182" x="2543" y="169" width="69" height="117" xoffset="0" yoffset="23" xadvance="69" page="0" chnl="15"/>
<char id="183" x="2614" y="208" width="13" height="13" xoffset="15" yoffset="62" xadvance="43" page="0" chnl="15"/>
<char id="184" x="2629" y="259" width="27" height="28" xoffset="7" yoffset="113" xadvance="43" page="0" chnl="15"/>
<char id="185" x="2658" y="168" width="23" height="47" xoffset="7" yoffset="22" xadvance="43" page="0" chnl="15"/>
<char id="186" x="2683" y="167" width="41" height="47" xoffset="3" yoffset="22" xadvance="47" page="0" chnl="15"/>
<char id="187" x="2726" y="199" width="54" height="57" xoffset="9" yoffset="53" xadvance="71" page="0" chnl="15"/>
<char id="188" x="2782" y="167" width="99" height="97" xoffset="7" yoffset="22" xadvance="107" page="0" chnl="15"/>
<char id="189" x="2883" y="167" width="98" height="97" xoffset="7" yoffset="22" xadvance="107" page="0" chnl="15"/>
<char id="190" x="2983" y="167" width="103" height="97" xoffset="2" yoffset="22" xadvance="107" page="0" chnl="15"/>
<char id="191" x="3088" y="194" width="59" height="94" xoffset="10" yoffset="48" xadvance="78" page="0" chnl="15"/>
<char id="192" x="3149" y="146" width="86" height="115" xoffset="0" yoffset="0" xadvance="85" page="0" chnl="15"/>
<char id="193" x="3237" y="146" width="86" height="115" xoffset="0" yoffset="0" xadvance="85" page="0" chnl="15"/>
<char id="194" x="3325" y="146" width="86" height="115" xoffset="0" yoffset="0" xadvance="85" page="0" chnl="15"/>
<char id="195" x="3413" y="149" width="86" height="112" xoffset="0" yoffset="3" xadvance="85" page="0" chnl="15"/>
<char id="196" x="3501" y="150" width="86" height="110" xoffset="0" yoffset="5" xadvance="85" page="0" chnl="15"/>
<char id="197" x="3589" y="149" width="86" height="112" xoffset="0" yoffset="4" xadvance="85" page="0" chnl="15"/>
<char id="198" x="3677" y="169" width="121" height="92" xoffset="0" yoffset="23" xadvance="128" page="0" chnl="15"/>
<char id="199" x="3800" y="167" width="81" height="120" xoffset="6" yoffset="22" xadvance="92" page="0" chnl="15"/>
<char id="200" x="3883" y="146" width="69" height="115" xoffset="10" yoffset="0" xadvance="85" page="0" chnl="15"/>
<char id="201" x="3954" y="146" width="69" height="115" xoffset="10" yoffset="0" xadvance="85" page="0" chnl="15"/>
<char id="202" x="4025" y="146" width="69" height="115" xoffset="10" yoffset="0" xadvance="85" page="0" chnl="15"/>
<char id="203" x="2" y="294" width="69" height="110" xoffset="10" yoffset="5" xadvance="85" page="0" chnl="15"/>
<char id="204" x="73" y="290" width="24" height="115" xoffset="3" yoffset="0" xadvance="36" page="0" chnl="15"/>
<char id="205" x="99" y="290" width="23" height="115" xoffset="9" yoffset="0" xadvance="36" page="0" chnl="15"/>
<char id="206" x="124" y="290" width="40" height="115" xoffset="-2" yoffset="0" xadvance="36" page="0" chnl="15"/>
<char id="207" x="166" y="294" width="35" height="110" xoffset="0" yoffset="5" xadvance="36" page="0" chnl="15"/>
<char id="208" x="203" y="313" width="86" height="92" xoffset="0" yoffset="23" xadvance="92" page="0" chnl="15"/>
<char id="209" x="291" y="293" width="73" height="112" xoffset="10" yoffset="3" xadvance="92" page="0" chnl="15"/>
<char id="210" x="366" y="290" width="88" height="117" xoffset="6" yoffset="0" xadvance="100" page="0" chnl="15"/>
<char id="211" x="456" y="290" width="88" height="117" xoffset="6" yoffset="0" xadvance="100" page="0" chnl="15"/>
<char id="212" x="546" y="290" width="88" height="117" xoffset="6" yoffset="0" xadvance="100" page="0" chnl="15"/>
<char id="213" x="636" y="293" width="88" height="114" xoffset="6" yoffset="3" xadvance="100" page="0" chnl="15"/>
<char id="214" x="726" y="294" width="88" height="112" xoffset="6" yoffset="5" xadvance="100" page="0" chnl="15"/>
<char id="215" x="816" y="332" width="55" height="55" xoffset="10" yoffset="42" xadvance="75" page="0" chnl="15"/>
<char id="216" x="873" y="309" width="90" height="99" xoffset="5" yoffset="20" xadvance="100" page="0" chnl="15"/>
<char id="217" x="965" y="290" width="72" height="117" xoffset="10" yoffset="0" xadvance="92" page="0" chnl="15"/>
<char id="218" x="1039" y="290" width="72" height="117" xoffset="10" yoffset="0" xadvance="92" page="0" chnl="15"/>
<char id="219" x="1113" y="290" width="72" height="117" xoffset="10" yoffset="0" xadvance="92" page="0" chnl="15"/>
<char id="220" x="1187" y="294" width="72" height="112" xoffset="10" yoffset="5" xadvance="92" page="0" chnl="15"/>
<char id="221" x="1261" y="290" width="84" height="115" xoffset="0" yoffset="0" xadvance="85" page="0" chnl="15"/>
<char id="222" x="1347" y="313" width="70" height="92" xoffset="10" yoffset="23" xadvance="85" page="0" chnl="15"/>
<char id="223" x="1419" y="311" width="65" height="95" xoffset="10" yoffset="22" xadvance="78" page="0" chnl="15"/>
<char id="224" x="1486" y="312" width="61" height="94" xoffset="5" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="225" x="1549" y="312" width="61" height="94" xoffset="5" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="226" x="1612" y="312" width="61" height="94" xoffset="5" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="227" x="1675" y="314" width="61" height="92" xoffset="5" yoffset="24" xadvance="71" page="0" chnl="15"/>
<char id="228" x="1738" y="312" width="61" height="94" xoffset="5" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="229" x="1801" y="309" width="61" height="97" xoffset="5" yoffset="20" xadvance="71" page="0" chnl="15"/>
<char id="230" x="1864" y="336" width="105" height="70" xoffset="4" yoffset="47" xadvance="114" page="0" chnl="15"/>
<char id="231" x="1971" y="336" width="58" height="93" xoffset="5" yoffset="47" xadvance="64" page="0" chnl="15"/>
<char id="232" x="2031" y="312" width="62" height="94" xoffset="5" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="233" x="2095" y="312" width="62" height="94" xoffset="5" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="234" x="2159" y="312" width="62" height="94" xoffset="5" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="235" x="2223" y="312" width="62" height="94" xoffset="5" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="236" x="2287" y="312" width="24" height="92" xoffset="2" yoffset="23" xadvance="36" page="0" chnl="15"/>
<char id="237" x="2313" y="312" width="23" height="92" xoffset="12" yoffset="23" xadvance="36" page="0" chnl="15"/>
<char id="238" x="2338" y="312" width="40" height="92" xoffset="-1" yoffset="23" xadvance="36" page="0" chnl="15"/>
<char id="239" x="2380" y="312" width="35" height="93" xoffset="1" yoffset="23" xadvance="36" page="0" chnl="15"/>
<char id="240" x="2417" y="313" width="62" height="94" xoffset="5" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="241" x="2481" y="314" width="54" height="91" xoffset="8" yoffset="24" xadvance="71" page="0" chnl="15"/>
<char id="242" x="2537" y="312" width="63" height="94" xoffset="4" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="243" x="2602" y="312" width="63" height="94" xoffset="4" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="244" x="2667" y="312" width="63" height="94" xoffset="4" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="245" x="2732" y="314" width="63" height="92" xoffset="4" yoffset="24" xadvance="71" page="0" chnl="15"/>
<char id="246" x="2797" y="312" width="63" height="94" xoffset="4" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="247" x="2862" y="334" width="61" height="51" xoffset="5" yoffset="44" xadvance="70" page="0" chnl="15"/>
<char id="248" x="2925" y="334" width="63" height="76" xoffset="8" yoffset="44" xadvance="78" page="0" chnl="15"/>
<char id="249" x="2990" y="312" width="54" height="94" xoffset="8" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="250" x="3046" y="312" width="54" height="94" xoffset="8" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="251" x="3102" y="312" width="54" height="94" xoffset="8" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="252" x="3158" y="312" width="54" height="94" xoffset="8" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="253" x="3214" y="312" width="61" height="119" xoffset="2" yoffset="23" xadvance="64" page="0" chnl="15"/>
<char id="254" x="3277" y="313" width="58" height="117" xoffset="8" yoffset="23" xadvance="71" page="0" chnl="15"/>
<char id="255" x="3337" y="312" width="61" height="119" xoffset="2" yoffset="23" xadvance="64" page="0" chnl="15"/>
<char id="32" x="0" y="0" width="0" height="0" xoffset="2" yoffset="23" xadvance="36" page="0" chnl="15"/>
</chars>
<kernings count="97">
<kerning first="32" second="65" amount="-7"/>
<kerning first="32" second="84" amount="-2"/>
<kerning first="32" second="89" amount="-2"/>
<kerning first="49" second="49" amount="-9"/>
<kerning first="65" second="32" amount="-7"/>
<kerning first="65" second="84" amount="-9"/>
<kerning first="65" second="86" amount="-9"/>
<kerning first="65" second="87" amount="-5"/>
<kerning first="65" second="89" amount="-9"/>
<kerning first="65" second="118" amount="-2"/>
<kerning first="65" second="119" amount="-2"/>
<kerning first="65" second="121" amount="-2"/>
<kerning first="70" second="44" amount="-14"/>
<kerning first="70" second="46" amount="-14"/>
<kerning first="70" second="65" amount="-7"/>
<kerning first="76" second="32" amount="-5"/>
<kerning first="76" second="84" amount="-9"/>
<kerning first="76" second="86" amount="-9"/>
<kerning first="76" second="87" amount="-9"/>
<kerning first="76" second="89" amount="-9"/>
<kerning first="76" second="121" amount="-5"/>
<kerning first="80" second="32" amount="-2"/>
<kerning first="80" second="44" amount="-16"/>
<kerning first="80" second="46" amount="-16"/>
<kerning first="80" second="65" amount="-9"/>
<kerning first="82" second="84" amount="-2"/>
<kerning first="82" second="86" amount="-2"/>
<kerning first="82" second="87" amount="-2"/>
<kerning first="82" second="89" amount="-2"/>
<kerning first="84" second="32" amount="-2"/>
<kerning first="84" second="44" amount="-14"/>
<kerning first="84" second="173" amount="-7"/>
<kerning first="84" second="46" amount="-14"/>
<kerning first="84" second="58" amount="-14"/>
<kerning first="84" second="59" amount="-14"/>
<kerning first="84" second="65" amount="-9"/>
<kerning first="84" second="79" amount="-2"/>
<kerning first="84" second="97" amount="-14"/>
<kerning first="84" second="99" amount="-14"/>
<kerning first="84" second="101" amount="-14"/>
<kerning first="84" second="105" amount="-5"/>
<kerning first="84" second="111" amount="-14"/>
<kerning first="84" second="114" amount="-5"/>
<kerning first="84" second="115" amount="-14"/>
<kerning first="84" second="117" amount="-5"/>
<kerning first="84" second="119" amount="-7"/>
<kerning first="84" second="121" amount="-7"/>
<kerning first="86" second="44" amount="-12"/>
<kerning first="86" second="173" amount="-7"/>
<kerning first="86" second="46" amount="-12"/>
<kerning first="86" second="58" amount="-5"/>
<kerning first="86" second="59" amount="-5"/>
<kerning first="86" second="65" amount="-9"/>
<kerning first="86" second="97" amount="-9"/>
<kerning first="86" second="101" amount="-7"/>
<kerning first="86" second="105" amount="-2"/>
<kerning first="86" second="111" amount="-7"/>
<kerning first="86" second="114" amount="-5"/>
<kerning first="86" second="117" amount="-5"/>
<kerning first="86" second="121" amount="-5"/>
<kerning first="87" second="44" amount="-7"/>
<kerning first="87" second="173" amount="-2"/>
<kerning first="87" second="46" amount="-7"/>
<kerning first="87" second="58" amount="-2"/>
<kerning first="87" second="59" amount="-2"/>
<kerning first="87" second="65" amount="-5"/>
<kerning first="87" second="97" amount="-5"/>
<kerning first="87" second="101" amount="-2"/>
<kerning first="87" second="105" amount="0"/>
<kerning first="87" second="111" amount="-2"/>
<kerning first="87" second="114" amount="-2"/>
<kerning first="87" second="117" amount="-2"/>
<kerning first="87" second="121" amount="-1"/>
<kerning first="89" second="32" amount="-2"/>
<kerning first="89" second="44" amount="-16"/>
<kerning first="89" second="173" amount="-12"/>
<kerning first="89" second="46" amount="-16"/>
<kerning first="89" second="58" amount="-7"/>
<kerning first="89" second="59" amount="-8"/>
<kerning first="89" second="65" amount="-9"/>
<kerning first="89" second="97" amount="-9"/>
<kerning first="89" second="101" amount="-12"/>
<kerning first="89" second="105" amount="-5"/>
<kerning first="89" second="111" amount="-12"/>
<kerning first="89" second="112" amount="-9"/>
<kerning first="89" second="113" amount="-12"/>
<kerning first="89" second="117" amount="-7"/>
<kerning first="89" second="118" amount="-7"/>
<kerning first="102" second="102" amount="-2"/>
<kerning first="114" second="44" amount="-7"/>
<kerning first="114" second="46" amount="-7"/>
<kerning first="118" second="44" amount="-9"/>
<kerning first="118" second="46" amount="-9"/>
<kerning first="119" second="44" amount="-7"/>
<kerning first="119" second="46" amount="-7"/>
<kerning first="121" second="44" amount="-9"/>
<kerning first="121" second="46" amount="-9"/>
</kernings>
</font>

Binary file not shown.

After

Width:  |  Height:  |  Size: 119 KiB

View File

@ -0,0 +1,215 @@
<font>
<info face="Open Sans Regular" size="14" bold="0" italic="0" charset="" unicode="0" stretchH="100" smooth="1" aa="1" padding="1,1,1,1" spacing="-2,-2" />
<common lineHeight="20" base="15" scaleW="512" scaleH="512" pages="1" packed="0" />
<pages>
<page id="0" file="open-sans-14-black.png" />
</pages>
<chars count="97">
<char id="0" x="90" y="16" width="9" height="12" xoffset="0" yoffset="4" xadvance="8" page="0" chnl="0" />
<char id="10" x="0" y="0" width="0" height="0" xoffset="-1" yoffset="0" xadvance="0" page="0" chnl="0" />
<char id="32" x="0" y="0" width="0" height="0" xoffset="-1" yoffset="0" xadvance="4" page="0" chnl="0" />
<char id="33" x="504" y="0" width="4" height="12" xoffset="0" yoffset="4" xadvance="4" page="0" chnl="0" />
<char id="34" x="284" y="16" width="7" height="6" xoffset="-1" yoffset="4" xadvance="6" page="0" chnl="0" />
<char id="35" x="66" y="16" width="11" height="12" xoffset="-1" yoffset="4" xadvance="9" page="0" chnl="0" />
<char id="36" x="69" y="0" width="10" height="14" xoffset="-1" yoffset="3" xadvance="8" page="0" chnl="0" />
<char id="37" x="53" y="16" width="13" height="12" xoffset="-1" yoffset="4" xadvance="12" page="0" chnl="0" />
<char id="38" x="77" y="16" width="13" height="12" xoffset="-1" yoffset="4" xadvance="10" page="0" chnl="0" />
<char id="39" x="291" y="16" width="5" height="6" xoffset="-1" yoffset="4" xadvance="3" page="0" chnl="0" />
<char id="40" x="31" y="0" width="6" height="14" xoffset="-1" yoffset="4" xadvance="4" page="0" chnl="0" />
<char id="41" x="37" y="0" width="6" height="14" xoffset="-1" yoffset="4" xadvance="4" page="0" chnl="0" />
<char id="42" x="274" y="16" width="10" height="8" xoffset="-1" yoffset="3" xadvance="8" page="0" chnl="0" />
<char id="43" x="234" y="16" width="10" height="9" xoffset="-1" yoffset="6" xadvance="8" page="0" chnl="0" />
<char id="44" x="306" y="16" width="5" height="5" xoffset="-1" yoffset="12" xadvance="3" page="0" chnl="0" />
<char id="45" x="321" y="16" width="6" height="4" xoffset="-1" yoffset="10" xadvance="5" page="0" chnl="0" />
<char id="46" x="317" y="16" width="4" height="4" xoffset="0" yoffset="12" xadvance="4" page="0" chnl="0" />
<char id="47" x="38" y="16" width="7" height="12" xoffset="-1" yoffset="4" xadvance="5" page="0" chnl="0" />
<char id="48" x="20" y="16" width="10" height="12" xoffset="-1" yoffset="4" xadvance="8" page="0" chnl="0" />
<char id="49" x="438" y="0" width="6" height="12" xoffset="0" yoffset="4" xadvance="8" page="0" chnl="0" />
<char id="50" x="444" y="0" width="10" height="12" xoffset="-1" yoffset="4" xadvance="8" page="0" chnl="0" />
<char id="51" x="454" y="0" width="10" height="12" xoffset="-1" yoffset="4" xadvance="8" page="0" chnl="0" />
<char id="52" x="464" y="0" width="10" height="12" xoffset="-1" yoffset="4" xadvance="8" page="0" chnl="0" />
<char id="53" x="474" y="0" width="10" height="12" xoffset="-1" yoffset="4" xadvance="8" page="0" chnl="0" />
<char id="54" x="484" y="0" width="10" height="12" xoffset="-1" yoffset="4" xadvance="8" page="0" chnl="0" />
<char id="55" x="494" y="0" width="10" height="12" xoffset="-1" yoffset="4" xadvance="8" page="0" chnl="0" />
<char id="56" x="0" y="16" width="10" height="12" xoffset="-1" yoffset="4" xadvance="8" page="0" chnl="0" />
<char id="57" x="10" y="16" width="10" height="12" xoffset="-1" yoffset="4" xadvance="8" page="0" chnl="0" />
<char id="58" x="230" y="16" width="4" height="10" xoffset="0" yoffset="6" xadvance="4" page="0" chnl="0" />
<char id="59" x="99" y="16" width="5" height="11" xoffset="-1" yoffset="6" xadvance="4" page="0" chnl="0" />
<char id="60" x="244" y="16" width="10" height="8" xoffset="-1" yoffset="6" xadvance="8" page="0" chnl="0" />
<char id="61" x="296" y="16" width="10" height="6" xoffset="-1" yoffset="7" xadvance="8" page="0" chnl="0" />
<char id="62" x="254" y="16" width="10" height="8" xoffset="-1" yoffset="6" xadvance="8" page="0" chnl="0" />
<char id="63" x="30" y="16" width="8" height="12" xoffset="-1" yoffset="4" xadvance="6" page="0" chnl="0" />
<char id="64" x="171" y="0" width="14" height="13" xoffset="-1" yoffset="4" xadvance="13" page="0" chnl="0" />
<char id="65" x="185" y="0" width="11" height="12" xoffset="-1" yoffset="4" xadvance="9" page="0" chnl="0" />
<char id="66" x="196" y="0" width="10" height="12" xoffset="0" yoffset="4" xadvance="9" page="0" chnl="0" />
<char id="67" x="206" y="0" width="11" height="12" xoffset="-1" yoffset="4" xadvance="9" page="0" chnl="0" />
<char id="68" x="217" y="0" width="11" height="12" xoffset="0" yoffset="4" xadvance="10" page="0" chnl="0" />
<char id="69" x="228" y="0" width="8" height="12" xoffset="0" yoffset="4" xadvance="8" page="0" chnl="0" />
<char id="70" x="236" y="0" width="8" height="12" xoffset="0" yoffset="4" xadvance="7" page="0" chnl="0" />
<char id="71" x="244" y="0" width="12" height="12" xoffset="-1" yoffset="4" xadvance="10" page="0" chnl="0" />
<char id="72" x="256" y="0" width="10" height="12" xoffset="0" yoffset="4" xadvance="10" page="0" chnl="0" />
<char id="73" x="266" y="0" width="4" height="12" xoffset="0" yoffset="4" xadvance="4" page="0" chnl="0" />
<char id="74" x="10" y="0" width="8" height="15" xoffset="-3" yoffset="4" xadvance="4" page="0" chnl="0" />
<char id="75" x="270" y="0" width="10" height="12" xoffset="0" yoffset="4" xadvance="9" page="0" chnl="0" />
<char id="76" x="280" y="0" width="8" height="12" xoffset="0" yoffset="4" xadvance="7" page="0" chnl="0" />
<char id="77" x="288" y="0" width="13" height="12" xoffset="0" yoffset="4" xadvance="13" page="0" chnl="0" />
<char id="78" x="301" y="0" width="11" height="12" xoffset="0" yoffset="4" xadvance="11" page="0" chnl="0" />
<char id="79" x="312" y="0" width="13" height="12" xoffset="-1" yoffset="4" xadvance="11" page="0" chnl="0" />
<char id="80" x="325" y="0" width="9" height="12" xoffset="0" yoffset="4" xadvance="8" page="0" chnl="0" />
<char id="81" x="18" y="0" width="13" height="14" xoffset="-1" yoffset="4" xadvance="11" page="0" chnl="0" />
<char id="82" x="334" y="0" width="10" height="12" xoffset="0" yoffset="4" xadvance="9" page="0" chnl="0" />
<char id="83" x="344" y="0" width="10" height="12" xoffset="-1" yoffset="4" xadvance="8" page="0" chnl="0" />
<char id="84" x="354" y="0" width="10" height="12" xoffset="-1" yoffset="4" xadvance="8" page="0" chnl="0" />
<char id="85" x="364" y="0" width="10" height="12" xoffset="0" yoffset="4" xadvance="10" page="0" chnl="0" />
<char id="86" x="374" y="0" width="11" height="12" xoffset="-1" yoffset="4" xadvance="8" page="0" chnl="0" />
<char id="87" x="385" y="0" width="15" height="12" xoffset="-1" yoffset="4" xadvance="13" page="0" chnl="0" />
<char id="88" x="400" y="0" width="11" height="12" xoffset="-1" yoffset="4" xadvance="8" page="0" chnl="0" />
<char id="89" x="411" y="0" width="10" height="12" xoffset="-1" yoffset="4" xadvance="8" page="0" chnl="0" />
<char id="90" x="421" y="0" width="10" height="12" xoffset="-1" yoffset="4" xadvance="8" page="0" chnl="0" />
<char id="91" x="43" y="0" width="6" height="14" xoffset="0" yoffset="4" xadvance="5" page="0" chnl="0" />
<char id="92" x="45" y="16" width="8" height="12" xoffset="-1" yoffset="4" xadvance="5" page="0" chnl="0" />
<char id="93" x="49" y="0" width="6" height="14" xoffset="-1" yoffset="4" xadvance="5" page="0" chnl="0" />
<char id="94" x="264" y="16" width="10" height="8" xoffset="-1" yoffset="4" xadvance="8" page="0" chnl="0" />
<char id="95" x="337" y="16" width="10" height="3" xoffset="-2" yoffset="15" xadvance="6" page="0" chnl="0" />
<char id="96" x="311" y="16" width="6" height="4" xoffset="1" yoffset="4" xadvance="8" page="0" chnl="0" />
<char id="97" x="104" y="16" width="9" height="10" xoffset="-1" yoffset="6" xadvance="8" page="0" chnl="0" />
<char id="98" x="79" y="0" width="9" height="13" xoffset="0" yoffset="3" xadvance="9" page="0" chnl="0" />
<char id="99" x="113" y="16" width="9" height="10" xoffset="-1" yoffset="6" xadvance="7" page="0" chnl="0" />
<char id="100" x="88" y="0" width="10" height="13" xoffset="-1" yoffset="3" xadvance="9" page="0" chnl="0" />
<char id="101" x="122" y="16" width="10" height="10" xoffset="-1" yoffset="6" xadvance="8" page="0" chnl="0" />
<char id="102" x="98" y="0" width="8" height="13" xoffset="-1" yoffset="3" xadvance="5" page="0" chnl="0" />
<char id="103" x="106" y="0" width="10" height="13" xoffset="-1" yoffset="6" xadvance="8" page="0" chnl="0" />
<char id="104" x="116" y="0" width="9" height="13" xoffset="0" yoffset="3" xadvance="9" page="0" chnl="0" />
<char id="105" x="125" y="0" width="4" height="13" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="0" />
<char id="106" x="0" y="0" width="6" height="16" xoffset="-2" yoffset="3" xadvance="4" page="0" chnl="0" />
<char id="107" x="129" y="0" width="9" height="13" xoffset="0" yoffset="3" xadvance="7" page="0" chnl="0" />
<char id="108" x="138" y="0" width="4" height="13" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="0" />
<char id="109" x="132" y="16" width="13" height="10" xoffset="0" yoffset="6" xadvance="13" page="0" chnl="0" />
<char id="110" x="145" y="16" width="9" height="10" xoffset="0" yoffset="6" xadvance="9" page="0" chnl="0" />
<char id="111" x="154" y="16" width="10" height="10" xoffset="-1" yoffset="6" xadvance="8" page="0" chnl="0" />
<char id="112" x="142" y="0" width="9" height="13" xoffset="0" yoffset="6" xadvance="9" page="0" chnl="0" />
<char id="113" x="151" y="0" width="10" height="13" xoffset="-1" yoffset="6" xadvance="9" page="0" chnl="0" />
<char id="114" x="164" y="16" width="7" height="10" xoffset="0" yoffset="6" xadvance="6" page="0" chnl="0" />
<char id="115" x="171" y="16" width="9" height="10" xoffset="-1" yoffset="6" xadvance="7" page="0" chnl="0" />
<char id="116" x="431" y="0" width="7" height="12" xoffset="-1" yoffset="4" xadvance="5" page="0" chnl="0" />
<char id="117" x="180" y="16" width="9" height="10" xoffset="0" yoffset="6" xadvance="9" page="0" chnl="0" />
<char id="118" x="189" y="16" width="10" height="10" xoffset="-1" yoffset="6" xadvance="7" page="0" chnl="0" />
<char id="119" x="199" y="16" width="13" height="10" xoffset="-1" yoffset="6" xadvance="11" page="0" chnl="0" />
<char id="120" x="212" y="16" width="10" height="10" xoffset="-1" yoffset="6" xadvance="7" page="0" chnl="0" />
<char id="121" x="161" y="0" width="10" height="13" xoffset="-1" yoffset="6" xadvance="7" page="0" chnl="0" />
<char id="122" x="222" y="16" width="8" height="10" xoffset="-1" yoffset="6" xadvance="7" page="0" chnl="0" />
<char id="123" x="55" y="0" width="7" height="14" xoffset="-1" yoffset="4" xadvance="5" page="0" chnl="0" />
<char id="124" x="6" y="0" width="4" height="16" xoffset="2" yoffset="3" xadvance="8" page="0" chnl="0" />
<char id="125" x="62" y="0" width="7" height="14" xoffset="-1" yoffset="4" xadvance="5" page="0" chnl="0" />
<char id="126" x="327" y="16" width="10" height="4" xoffset="-1" yoffset="8" xadvance="8" page="0" chnl="0" />
</chars>
<kernings count="107">
<kerning first="46" second="81" amount="-1" />
<kerning first="44" second="67" amount="-1" />
<kerning first="46" second="71" amount="-1" />
<kerning first="44" second="79" amount="-1" />
<kerning first="44" second="81" amount="-1" />
<kerning first="65" second="87" amount="-1" />
<kerning first="84" second="103" amount="-1" />
<kerning first="84" second="110" amount="-1" />
<kerning first="84" second="114" amount="-1" />
<kerning first="84" second="115" amount="-1" />
<kerning first="40" second="74" amount="1" />
<kerning first="84" second="109" amount="-1" />
<kerning first="65" second="74" amount="2" />
<kerning first="89" second="115" amount="-1" />
<kerning first="119" second="34" amount="1" />
<kerning first="86" second="44" amount="-1" />
<kerning first="66" second="46" amount="-1" />
<kerning first="81" second="44" amount="-1" />
<kerning first="65" second="39" amount="-1" />
<kerning first="80" second="46" amount="-2" />
<kerning first="34" second="99" amount="-1" />
<kerning first="70" second="44" amount="-1" />
<kerning first="76" second="39" amount="-1" />
<kerning first="80" second="65" amount="-1" />
<kerning first="84" second="99" amount="-1" />
<kerning first="102" second="39" amount="1" />
<kerning first="39" second="101" amount="-1" />
<kerning first="46" second="84" amount="-1" />
<kerning first="89" second="100" amount="-1" />
<kerning first="39" second="111" amount="-1" />
<kerning first="79" second="46" amount="-1" />
<kerning first="89" second="111" amount="-1" />
<kerning first="80" second="44" amount="-2" />
<kerning first="44" second="84" amount="-1" />
<kerning first="89" second="101" amount="-1" />
<kerning first="68" second="46" amount="-1" />
<kerning first="121" second="44" amount="-1" />
<kerning first="114" second="34" amount="1" />
<kerning first="84" second="100" amount="-1" />
<kerning first="66" second="44" amount="-1" />
<kerning first="118" second="46" amount="-1" />
<kerning first="46" second="67" amount="-1" />
<kerning first="34" second="101" amount="-1" />
<kerning first="86" second="65" amount="-1" />
<kerning first="91" second="74" amount="1" />
<kerning first="121" second="39" amount="1" />
<kerning first="65" second="84" amount="-1" />
<kerning first="39" second="65" amount="-1" />
<kerning first="44" second="89" amount="-1" />
<kerning first="119" second="44" amount="-1" />
<kerning first="118" second="39" amount="1" />
<kerning first="89" second="65" amount="-1" />
<kerning first="81" second="46" amount="-1" />
<kerning first="39" second="97" amount="-1" />
<kerning first="84" second="101" amount="-1" />
<kerning first="118" second="44" amount="-1" />
<kerning first="70" second="46" amount="-1" />
<kerning first="46" second="89" amount="-1" />
<kerning first="121" second="46" amount="-1" />
<kerning first="65" second="34" amount="-1" />
<kerning first="76" second="34" amount="-1" />
<kerning first="84" second="117" amount="-1" />
<kerning first="68" second="44" amount="-1" />
<kerning first="84" second="111" amount="-1" />
<kerning first="84" second="46" amount="-1" />
<kerning first="39" second="100" amount="-1" />
<kerning first="39" second="113" amount="-1" />
<kerning first="34" second="65" amount="-1" />
<kerning first="119" second="39" amount="1" />
<kerning first="46" second="79" amount="-1" />
<kerning first="34" second="111" amount="-1" />
<kerning first="44" second="87" amount="-1" />
<kerning first="118" second="34" amount="1" />
<kerning first="89" second="97" amount="-1" />
<kerning first="87" second="46" amount="-1" />
<kerning first="46" second="86" amount="-1" />
<kerning first="65" second="86" amount="-1" />
<kerning first="84" second="97" amount="-1" />
<kerning first="87" second="65" amount="-1" />
<kerning first="119" second="46" amount="-1" />
<kerning first="87" second="44" amount="-1" />
<kerning first="89" second="44" amount="-1" />
<kerning first="34" second="97" amount="-1" />
<kerning first="34" second="113" amount="-1" />
<kerning first="44" second="86" amount="-1" />
<kerning first="34" second="100" amount="-1" />
<kerning first="86" second="46" amount="-1" />
<kerning first="121" second="34" amount="1" />
<kerning first="45" second="84" amount="-1" />
<kerning first="84" second="44" amount="-1" />
<kerning first="84" second="113" amount="-1" />
<kerning first="44" second="71" amount="-1" />
<kerning first="65" second="89" amount="-1" />
<kerning first="46" second="87" amount="-1" />
<kerning first="84" second="65" amount="-1" />
<kerning first="114" second="39" amount="1" />
<kerning first="89" second="113" amount="-1" />
<kerning first="89" second="46" amount="-1" />
<kerning first="79" second="44" amount="-1" />
<kerning first="89" second="99" amount="-1" />
<kerning first="102" second="34" amount="1" />
<kerning first="84" second="112" amount="-1" />
<kerning first="84" second="122" amount="-1" />
<kerning first="123" second="74" amount="1" />
<kerning first="84" second="45" amount="-1" />
<kerning first="39" second="99" amount="-1" />
<kerning first="69" second="74" amount="1" />
</kernings>
</font>

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

View File

@ -0,0 +1,297 @@
<font>
<info face="open-sans-16-black" size="16" bold="0" italic="0" charset="" unicode="" stretchH="100" smooth="1" aa="1" padding="2,2,2,2" spacing="0,0" outline="0"/>
<common lineHeight="18" base="15" scaleW="1836" scaleH="20" pages="1" packed="0"/>
<pages>
<page id="0" file="open-sans-16-black.png"/>
</pages>
<chars count="188">
<char id="33" x="2" y="4" width="2" height="12" xoffset="1" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="34" x="6" y="4" width="5" height="4" xoffset="1" yoffset="3" xadvance="6" page="0" chnl="15"/>
<char id="35" x="13" y="4" width="9" height="12" xoffset="0" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="36" x="24" y="3" width="8" height="15" xoffset="1" yoffset="2" xadvance="9" page="0" chnl="15"/>
<char id="37" x="34" y="4" width="13" height="12" xoffset="1" yoffset="3" xadvance="14" page="0" chnl="15"/>
<char id="38" x="49" y="4" width="10" height="12" xoffset="1" yoffset="3" xadvance="11" page="0" chnl="15"/>
<char id="39" x="61" y="4" width="2" height="4" xoffset="1" yoffset="3" xadvance="3" page="0" chnl="15"/>
<char id="40" x="65" y="4" width="4" height="15" xoffset="1" yoffset="3" xadvance="5" page="0" chnl="15"/>
<char id="41" x="71" y="4" width="4" height="15" xoffset="1" yoffset="3" xadvance="5" page="0" chnl="15"/>
<char id="42" x="77" y="4" width="6" height="5" xoffset="1" yoffset="3" xadvance="6" page="0" chnl="15"/>
<char id="43" x="85" y="6" width="8" height="8" xoffset="1" yoffset="5" xadvance="9" page="0" chnl="15"/>
<char id="44" x="95" y="14" width="2" height="4" xoffset="1" yoffset="13" xadvance="4" page="0" chnl="15"/>
<char id="45" x="99" y="11" width="5" height="2" xoffset="1" yoffset="9" xadvance="5" page="0" chnl="15"/>
<char id="46" x="106" y="14" width="2" height="2" xoffset="1" yoffset="13" xadvance="4" page="0" chnl="15"/>
<char id="47" x="110" y="4" width="5" height="12" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="48" x="117" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="49" x="127" y="4" width="5" height="12" xoffset="2" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="50" x="134" y="4" width="8" height="12" xoffset="0" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="51" x="144" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="52" x="154" y="4" width="8" height="12" xoffset="0" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="53" x="164" y="5" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="54" x="174" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="55" x="184" y="5" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="56" x="194" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="57" x="204" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="58" x="214" y="8" width="2" height="9" xoffset="1" yoffset="6" xadvance="4" page="0" chnl="15"/>
<char id="59" x="218" y="8" width="2" height="11" xoffset="1" yoffset="6" xadvance="4" page="0" chnl="15"/>
<char id="60" x="222" y="6" width="8" height="8" xoffset="1" yoffset="5" xadvance="9" page="0" chnl="15"/>
<char id="61" x="232" y="8" width="8" height="5" xoffset="1" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="62" x="242" y="6" width="8" height="8" xoffset="1" yoffset="5" xadvance="9" page="0" chnl="15"/>
<char id="63" x="252" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="64" x="262" y="4" width="15" height="15" xoffset="1" yoffset="3" xadvance="16" page="0" chnl="15"/>
<char id="65" x="279" y="4" width="11" height="12" xoffset="0" yoffset="3" xadvance="11" page="0" chnl="15"/>
<char id="66" x="292" y="4" width="9" height="12" xoffset="1" yoffset="3" xadvance="11" page="0" chnl="15"/>
<char id="67" x="303" y="4" width="10" height="12" xoffset="1" yoffset="3" xadvance="12" page="0" chnl="15"/>
<char id="68" x="315" y="4" width="10" height="12" xoffset="1" yoffset="3" xadvance="12" page="0" chnl="15"/>
<char id="69" x="327" y="4" width="9" height="12" xoffset="1" yoffset="3" xadvance="11" page="0" chnl="15"/>
<char id="70" x="338" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="10" page="0" chnl="15"/>
<char id="71" x="348" y="4" width="11" height="12" xoffset="1" yoffset="3" xadvance="12" page="0" chnl="15"/>
<char id="72" x="361" y="4" width="9" height="12" xoffset="1" yoffset="3" xadvance="12" page="0" chnl="15"/>
<char id="73" x="372" y="4" width="2" height="12" xoffset="1" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="74" x="376" y="4" width="7" height="12" xoffset="0" yoffset="3" xadvance="8" page="0" chnl="15"/>
<char id="75" x="385" y="4" width="10" height="12" xoffset="1" yoffset="3" xadvance="11" page="0" chnl="15"/>
<char id="76" x="397" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="77" x="407" y="4" width="11" height="12" xoffset="1" yoffset="3" xadvance="13" page="0" chnl="15"/>
<char id="78" x="420" y="4" width="9" height="12" xoffset="1" yoffset="3" xadvance="12" page="0" chnl="15"/>
<char id="79" x="431" y="4" width="11" height="12" xoffset="1" yoffset="3" xadvance="12" page="0" chnl="15"/>
<char id="80" x="444" y="4" width="9" height="12" xoffset="1" yoffset="3" xadvance="11" page="0" chnl="15"/>
<char id="81" x="455" y="4" width="12" height="13" xoffset="1" yoffset="3" xadvance="12" page="0" chnl="15"/>
<char id="82" x="469" y="4" width="10" height="12" xoffset="1" yoffset="3" xadvance="12" page="0" chnl="15"/>
<char id="83" x="481" y="4" width="9" height="12" xoffset="1" yoffset="3" xadvance="11" page="0" chnl="15"/>
<char id="84" x="492" y="4" width="9" height="12" xoffset="0" yoffset="3" xadvance="10" page="0" chnl="15"/>
<char id="85" x="503" y="4" width="9" height="12" xoffset="1" yoffset="3" xadvance="12" page="0" chnl="15"/>
<char id="86" x="514" y="4" width="11" height="12" xoffset="0" yoffset="3" xadvance="11" page="0" chnl="15"/>
<char id="87" x="527" y="4" width="15" height="12" xoffset="0" yoffset="3" xadvance="15" page="0" chnl="15"/>
<char id="88" x="544" y="4" width="11" height="12" xoffset="0" yoffset="3" xadvance="11" page="0" chnl="15"/>
<char id="89" x="557" y="4" width="11" height="12" xoffset="0" yoffset="3" xadvance="11" page="0" chnl="15"/>
<char id="90" x="570" y="4" width="9" height="12" xoffset="0" yoffset="3" xadvance="10" page="0" chnl="15"/>
<char id="91" x="581" y="4" width="3" height="15" xoffset="1" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="92" x="586" y="4" width="5" height="12" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="93" x="593" y="4" width="3" height="15" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="94" x="598" y="4" width="7" height="7" xoffset="0" yoffset="3" xadvance="8" page="0" chnl="15"/>
<char id="95" x="607" y="18" width="10" height="1" xoffset="0" yoffset="17" xadvance="9" page="0" chnl="15"/>
<char id="97" x="619" y="7" width="8" height="9" xoffset="1" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="98" x="629" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="99" x="639" y="7" width="8" height="9" xoffset="1" yoffset="6" xadvance="8" page="0" chnl="15"/>
<char id="100" x="649" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="101" x="659" y="7" width="8" height="9" xoffset="1" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="102" x="669" y="4" width="5" height="12" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="103" x="676" y="7" width="8" height="12" xoffset="1" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="104" x="686" y="4" width="7" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="105" x="695" y="4" width="2" height="12" xoffset="1" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="106" x="699" y="4" width="4" height="15" xoffset="-1" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="107" x="705" y="4" width="7" height="12" xoffset="1" yoffset="3" xadvance="8" page="0" chnl="15"/>
<char id="108" x="714" y="4" width="2" height="12" xoffset="1" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="109" x="718" y="7" width="12" height="9" xoffset="1" yoffset="6" xadvance="13" page="0" chnl="15"/>
<char id="110" x="732" y="7" width="7" height="9" xoffset="1" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="111" x="741" y="7" width="8" height="9" xoffset="1" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="112" x="751" y="7" width="8" height="12" xoffset="1" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="113" x="761" y="7" width="8" height="12" xoffset="1" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="114" x="771" y="7" width="5" height="9" xoffset="1" yoffset="6" xadvance="5" page="0" chnl="15"/>
<char id="115" x="778" y="7" width="7" height="9" xoffset="0" yoffset="6" xadvance="8" page="0" chnl="15"/>
<char id="116" x="787" y="5" width="4" height="12" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="117" x="793" y="8" width="7" height="9" xoffset="1" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="118" x="802" y="8" width="8" height="9" xoffset="0" yoffset="6" xadvance="8" page="0" chnl="15"/>
<char id="119" x="812" y="8" width="12" height="9" xoffset="0" yoffset="6" xadvance="12" page="0" chnl="15"/>
<char id="120" x="826" y="8" width="8" height="9" xoffset="0" yoffset="6" xadvance="8" page="0" chnl="15"/>
<char id="121" x="836" y="8" width="8" height="12" xoffset="0" yoffset="6" xadvance="8" page="0" chnl="15"/>
<char id="122" x="846" y="8" width="8" height="9" xoffset="0" yoffset="6" xadvance="8" page="0" chnl="15"/>
<char id="123" x="856" y="4" width="5" height="15" xoffset="0" yoffset="3" xadvance="5" page="0" chnl="15"/>
<char id="124" x="863" y="4" width="2" height="15" xoffset="1" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="125" x="867" y="4" width="5" height="15" xoffset="0" yoffset="3" xadvance="5" page="0" chnl="15"/>
<char id="126" x="874" y="9" width="8" height="3" xoffset="1" yoffset="7" xadvance="9" page="0" chnl="15"/>
<char id="161" x="884" y="8" width="2" height="12" xoffset="2" yoffset="6" xadvance="5" page="0" chnl="15"/>
<char id="162" x="888" y="4" width="8" height="15" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="163" x="898" y="4" width="9" height="12" xoffset="0" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="164" x="909" y="6" width="8" height="8" xoffset="1" yoffset="5" xadvance="9" page="0" chnl="15"/>
<char id="165" x="919" y="4" width="9" height="12" xoffset="0" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="166" x="930" y="4" width="2" height="15" xoffset="1" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="167" x="934" y="4" width="8" height="15" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="168" x="944" y="4" width="5" height="2" xoffset="0" yoffset="3" xadvance="5" page="0" chnl="15"/>
<char id="169" x="951" y="4" width="12" height="12" xoffset="0" yoffset="3" xadvance="12" page="0" chnl="15"/>
<char id="170" x="965" y="4" width="6" height="6" xoffset="0" yoffset="3" xadvance="6" page="0" chnl="15"/>
<char id="171" x="973" y="8" width="7" height="7" xoffset="1" yoffset="7" xadvance="9" page="0" chnl="15"/>
<char id="172" x="982" y="8" width="8" height="5" xoffset="1" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="173" x="992" y="11" width="5" height="2" xoffset="1" yoffset="9" xadvance="5" page="0" chnl="15"/>
<char id="174" x="999" y="4" width="12" height="12" xoffset="0" yoffset="3" xadvance="12" page="0" chnl="15"/>
<char id="175" x="1013" y="3" width="10" height="1" xoffset="0" yoffset="1" xadvance="9" page="0" chnl="15"/>
<char id="176" x="1025" y="4" width="5" height="5" xoffset="1" yoffset="3" xadvance="6" page="0" chnl="15"/>
<char id="177" x="1032" y="6" width="8" height="10" xoffset="1" yoffset="5" xadvance="9" page="0" chnl="15"/>
<char id="178" x="1042" y="4" width="5" height="6" xoffset="0" yoffset="3" xadvance="5" page="0" chnl="15"/>
<char id="179" x="1049" y="4" width="5" height="6" xoffset="0" yoffset="3" xadvance="5" page="0" chnl="15"/>
<char id="180" x="1056" y="4" width="3" height="3" xoffset="2" yoffset="3" xadvance="5" page="0" chnl="15"/>
<char id="181" x="1061" y="8" width="7" height="12" xoffset="1" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="182" x="1070" y="4" width="9" height="15" xoffset="0" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="183" x="1081" y="9" width="2" height="2" xoffset="2" yoffset="8" xadvance="5" page="0" chnl="15"/>
<char id="184" x="1085" y="16" width="4" height="4" xoffset="1" yoffset="14" xadvance="5" page="0" chnl="15"/>
<char id="185" x="1091" y="4" width="3" height="6" xoffset="1" yoffset="3" xadvance="5" page="0" chnl="15"/>
<char id="186" x="1096" y="4" width="5" height="6" xoffset="0" yoffset="3" xadvance="6" page="0" chnl="15"/>
<char id="187" x="1103" y="8" width="7" height="7" xoffset="1" yoffset="7" xadvance="9" page="0" chnl="15"/>
<char id="188" x="1112" y="4" width="13" height="12" xoffset="1" yoffset="3" xadvance="13" page="0" chnl="15"/>
<char id="189" x="1127" y="4" width="13" height="12" xoffset="1" yoffset="3" xadvance="13" page="0" chnl="15"/>
<char id="190" x="1142" y="4" width="13" height="12" xoffset="0" yoffset="3" xadvance="13" page="0" chnl="15"/>
<char id="191" x="1157" y="8" width="8" height="12" xoffset="1" yoffset="6" xadvance="10" page="0" chnl="15"/>
<char id="192" x="1167" y="2" width="11" height="15" xoffset="0" yoffset="0" xadvance="11" page="0" chnl="15"/>
<char id="193" x="1180" y="2" width="11" height="15" xoffset="0" yoffset="0" xadvance="11" page="0" chnl="15"/>
<char id="194" x="1193" y="2" width="11" height="15" xoffset="0" yoffset="0" xadvance="11" page="0" chnl="15"/>
<char id="195" x="1206" y="2" width="11" height="14" xoffset="0" yoffset="0" xadvance="11" page="0" chnl="15"/>
<char id="196" x="1219" y="2" width="11" height="14" xoffset="0" yoffset="1" xadvance="11" page="0" chnl="15"/>
<char id="197" x="1232" y="2" width="11" height="14" xoffset="0" yoffset="0" xadvance="11" page="0" chnl="15"/>
<char id="198" x="1245" y="4" width="15" height="12" xoffset="0" yoffset="3" xadvance="16" page="0" chnl="15"/>
<char id="199" x="1262" y="4" width="10" height="15" xoffset="1" yoffset="3" xadvance="12" page="0" chnl="15"/>
<char id="200" x="1274" y="2" width="9" height="15" xoffset="1" yoffset="0" xadvance="11" page="0" chnl="15"/>
<char id="201" x="1285" y="2" width="9" height="15" xoffset="1" yoffset="0" xadvance="11" page="0" chnl="15"/>
<char id="202" x="1296" y="2" width="9" height="15" xoffset="1" yoffset="0" xadvance="11" page="0" chnl="15"/>
<char id="203" x="1307" y="2" width="9" height="14" xoffset="1" yoffset="1" xadvance="11" page="0" chnl="15"/>
<char id="204" x="1318" y="2" width="3" height="15" xoffset="0" yoffset="0" xadvance="4" page="0" chnl="15"/>
<char id="205" x="1323" y="2" width="3" height="15" xoffset="1" yoffset="0" xadvance="4" page="0" chnl="15"/>
<char id="206" x="1328" y="2" width="5" height="15" xoffset="0" yoffset="0" xadvance="4" page="0" chnl="15"/>
<char id="207" x="1335" y="2" width="5" height="14" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="208" x="1342" y="4" width="11" height="12" xoffset="0" yoffset="3" xadvance="12" page="0" chnl="15"/>
<char id="209" x="1355" y="2" width="9" height="14" xoffset="1" yoffset="0" xadvance="12" page="0" chnl="15"/>
<char id="210" x="1366" y="2" width="11" height="15" xoffset="1" yoffset="0" xadvance="12" page="0" chnl="15"/>
<char id="211" x="1379" y="2" width="11" height="15" xoffset="1" yoffset="0" xadvance="12" page="0" chnl="15"/>
<char id="212" x="1392" y="2" width="11" height="15" xoffset="1" yoffset="0" xadvance="12" page="0" chnl="15"/>
<char id="213" x="1405" y="2" width="11" height="15" xoffset="1" yoffset="0" xadvance="12" page="0" chnl="15"/>
<char id="214" x="1418" y="2" width="11" height="14" xoffset="1" yoffset="1" xadvance="12" page="0" chnl="15"/>
<char id="215" x="1431" y="7" width="7" height="7" xoffset="1" yoffset="5" xadvance="9" page="0" chnl="15"/>
<char id="216" x="1440" y="4" width="12" height="13" xoffset="1" yoffset="2" xadvance="12" page="0" chnl="15"/>
<char id="217" x="1454" y="2" width="9" height="15" xoffset="1" yoffset="0" xadvance="12" page="0" chnl="15"/>
<char id="218" x="1465" y="2" width="9" height="15" xoffset="1" yoffset="0" xadvance="12" page="0" chnl="15"/>
<char id="219" x="1476" y="2" width="9" height="15" xoffset="1" yoffset="0" xadvance="12" page="0" chnl="15"/>
<char id="220" x="1487" y="2" width="9" height="14" xoffset="1" yoffset="1" xadvance="12" page="0" chnl="15"/>
<char id="221" x="1498" y="2" width="11" height="15" xoffset="0" yoffset="0" xadvance="11" page="0" chnl="15"/>
<char id="222" x="1511" y="4" width="9" height="12" xoffset="1" yoffset="3" xadvance="11" page="0" chnl="15"/>
<char id="223" x="1522" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="10" page="0" chnl="15"/>
<char id="224" x="1532" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="225" x="1542" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="226" x="1552" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="227" x="1562" y="5" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="228" x="1572" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="229" x="1582" y="4" width="8" height="12" xoffset="1" yoffset="2" xadvance="9" page="0" chnl="15"/>
<char id="230" x="1592" y="7" width="13" height="9" xoffset="1" yoffset="6" xadvance="14" page="0" chnl="15"/>
<char id="231" x="1607" y="7" width="8" height="12" xoffset="1" yoffset="6" xadvance="8" page="0" chnl="15"/>
<char id="232" x="1617" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="233" x="1627" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="234" x="1637" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="235" x="1647" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="236" x="1657" y="4" width="3" height="12" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="237" x="1662" y="4" width="3" height="12" xoffset="1" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="238" x="1667" y="4" width="5" height="12" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="239" x="1674" y="4" width="5" height="12" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="240" x="1681" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="241" x="1691" y="5" width="7" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="242" x="1700" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="243" x="1710" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="244" x="1720" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="245" x="1730" y="5" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="246" x="1740" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="247" x="1750" y="7" width="8" height="7" xoffset="1" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="248" x="1760" y="7" width="8" height="10" xoffset="1" yoffset="6" xadvance="10" page="0" chnl="15"/>
<char id="249" x="1770" y="4" width="7" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="250" x="1779" y="4" width="7" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="251" x="1788" y="4" width="7" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="252" x="1797" y="4" width="7" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="253" x="1806" y="4" width="8" height="15" xoffset="0" yoffset="3" xadvance="8" page="0" chnl="15"/>
<char id="254" x="1816" y="4" width="8" height="15" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="255" x="1826" y="4" width="8" height="15" xoffset="0" yoffset="3" xadvance="8" page="0" chnl="15"/>
<char id="32" x="0" y="0" width="0" height="0" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
</chars>
<kernings count="97">
<kerning first="32" second="65" amount="-1"/>
<kerning first="32" second="84" amount="0"/>
<kerning first="32" second="89" amount="0"/>
<kerning first="49" second="49" amount="-1"/>
<kerning first="65" second="32" amount="-1"/>
<kerning first="65" second="84" amount="-1"/>
<kerning first="65" second="86" amount="-1"/>
<kerning first="65" second="87" amount="-1"/>
<kerning first="65" second="89" amount="-1"/>
<kerning first="65" second="118" amount="0"/>
<kerning first="65" second="119" amount="0"/>
<kerning first="65" second="121" amount="0"/>
<kerning first="70" second="44" amount="-2"/>
<kerning first="70" second="46" amount="-2"/>
<kerning first="70" second="65" amount="-1"/>
<kerning first="76" second="32" amount="-1"/>
<kerning first="76" second="84" amount="-1"/>
<kerning first="76" second="86" amount="-1"/>
<kerning first="76" second="87" amount="-1"/>
<kerning first="76" second="89" amount="-1"/>
<kerning first="76" second="121" amount="-1"/>
<kerning first="80" second="32" amount="0"/>
<kerning first="80" second="44" amount="-2"/>
<kerning first="80" second="46" amount="-2"/>
<kerning first="80" second="65" amount="-1"/>
<kerning first="82" second="84" amount="0"/>
<kerning first="82" second="86" amount="0"/>
<kerning first="82" second="87" amount="0"/>
<kerning first="82" second="89" amount="0"/>
<kerning first="84" second="32" amount="0"/>
<kerning first="84" second="44" amount="-2"/>
<kerning first="84" second="173" amount="-1"/>
<kerning first="84" second="46" amount="-2"/>
<kerning first="84" second="58" amount="-2"/>
<kerning first="84" second="59" amount="-2"/>
<kerning first="84" second="65" amount="-1"/>
<kerning first="84" second="79" amount="0"/>
<kerning first="84" second="97" amount="-2"/>
<kerning first="84" second="99" amount="-2"/>
<kerning first="84" second="101" amount="-2"/>
<kerning first="84" second="105" amount="-1"/>
<kerning first="84" second="111" amount="-2"/>
<kerning first="84" second="114" amount="-1"/>
<kerning first="84" second="115" amount="-2"/>
<kerning first="84" second="117" amount="-1"/>
<kerning first="84" second="119" amount="-1"/>
<kerning first="84" second="121" amount="-1"/>
<kerning first="86" second="44" amount="-1"/>
<kerning first="86" second="173" amount="-1"/>
<kerning first="86" second="46" amount="-1"/>
<kerning first="86" second="58" amount="-1"/>
<kerning first="86" second="59" amount="-1"/>
<kerning first="86" second="65" amount="-1"/>
<kerning first="86" second="97" amount="-1"/>
<kerning first="86" second="101" amount="-1"/>
<kerning first="86" second="105" amount="0"/>
<kerning first="86" second="111" amount="-1"/>
<kerning first="86" second="114" amount="-1"/>
<kerning first="86" second="117" amount="-1"/>
<kerning first="86" second="121" amount="-1"/>
<kerning first="87" second="44" amount="-1"/>
<kerning first="87" second="173" amount="0"/>
<kerning first="87" second="46" amount="-1"/>
<kerning first="87" second="58" amount="0"/>
<kerning first="87" second="59" amount="0"/>
<kerning first="87" second="65" amount="-1"/>
<kerning first="87" second="97" amount="-1"/>
<kerning first="87" second="101" amount="0"/>
<kerning first="87" second="105" amount="0"/>
<kerning first="87" second="111" amount="0"/>
<kerning first="87" second="114" amount="0"/>
<kerning first="87" second="117" amount="0"/>
<kerning first="87" second="121" amount="0"/>
<kerning first="89" second="32" amount="0"/>
<kerning first="89" second="44" amount="-2"/>
<kerning first="89" second="173" amount="-1"/>
<kerning first="89" second="46" amount="-2"/>
<kerning first="89" second="58" amount="-1"/>
<kerning first="89" second="59" amount="-1"/>
<kerning first="89" second="65" amount="-1"/>
<kerning first="89" second="97" amount="-1"/>
<kerning first="89" second="101" amount="-1"/>
<kerning first="89" second="105" amount="-1"/>
<kerning first="89" second="111" amount="-1"/>
<kerning first="89" second="112" amount="-1"/>
<kerning first="89" second="113" amount="-1"/>
<kerning first="89" second="117" amount="-1"/>
<kerning first="89" second="118" amount="-1"/>
<kerning first="102" second="102" amount="0"/>
<kerning first="114" second="44" amount="-1"/>
<kerning first="114" second="46" amount="-1"/>
<kerning first="118" second="44" amount="-1"/>
<kerning first="118" second="46" amount="-1"/>
<kerning first="119" second="44" amount="-1"/>
<kerning first="119" second="46" amount="-1"/>
<kerning first="121" second="44" amount="-1"/>
<kerning first="121" second="46" amount="-1"/>
</kernings>
</font>

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

View File

@ -0,0 +1,297 @@
<font>
<info face="open-sans-16-white" size="16" bold="0" italic="0" charset="" unicode="" stretchH="100" smooth="1" aa="1" padding="2,2,2,2" spacing="0,0" outline="0"/>
<common lineHeight="18" base="15" scaleW="1836" scaleH="20" pages="1" packed="0"/>
<pages>
<page id="0" file="open-sans-16-white.png"/>
</pages>
<chars count="188">
<char id="33" x="2" y="4" width="2" height="12" xoffset="1" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="34" x="6" y="4" width="5" height="4" xoffset="1" yoffset="3" xadvance="6" page="0" chnl="15"/>
<char id="35" x="13" y="4" width="9" height="12" xoffset="0" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="36" x="24" y="3" width="8" height="15" xoffset="1" yoffset="2" xadvance="9" page="0" chnl="15"/>
<char id="37" x="34" y="4" width="13" height="12" xoffset="1" yoffset="3" xadvance="14" page="0" chnl="15"/>
<char id="38" x="49" y="4" width="10" height="12" xoffset="1" yoffset="3" xadvance="11" page="0" chnl="15"/>
<char id="39" x="61" y="4" width="2" height="4" xoffset="1" yoffset="3" xadvance="3" page="0" chnl="15"/>
<char id="40" x="65" y="4" width="4" height="15" xoffset="1" yoffset="3" xadvance="5" page="0" chnl="15"/>
<char id="41" x="71" y="4" width="4" height="15" xoffset="1" yoffset="3" xadvance="5" page="0" chnl="15"/>
<char id="42" x="77" y="4" width="6" height="5" xoffset="1" yoffset="3" xadvance="6" page="0" chnl="15"/>
<char id="43" x="85" y="6" width="8" height="8" xoffset="1" yoffset="5" xadvance="9" page="0" chnl="15"/>
<char id="44" x="95" y="14" width="2" height="4" xoffset="1" yoffset="13" xadvance="4" page="0" chnl="15"/>
<char id="45" x="99" y="11" width="5" height="2" xoffset="1" yoffset="9" xadvance="5" page="0" chnl="15"/>
<char id="46" x="106" y="14" width="2" height="2" xoffset="1" yoffset="13" xadvance="4" page="0" chnl="15"/>
<char id="47" x="110" y="4" width="5" height="12" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="48" x="117" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="49" x="127" y="4" width="5" height="12" xoffset="2" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="50" x="134" y="4" width="8" height="12" xoffset="0" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="51" x="144" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="52" x="154" y="4" width="8" height="12" xoffset="0" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="53" x="164" y="5" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="54" x="174" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="55" x="184" y="5" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="56" x="194" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="57" x="204" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="58" x="214" y="8" width="2" height="9" xoffset="1" yoffset="6" xadvance="4" page="0" chnl="15"/>
<char id="59" x="218" y="8" width="2" height="11" xoffset="1" yoffset="6" xadvance="4" page="0" chnl="15"/>
<char id="60" x="222" y="6" width="8" height="8" xoffset="1" yoffset="5" xadvance="9" page="0" chnl="15"/>
<char id="61" x="232" y="8" width="8" height="5" xoffset="1" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="62" x="242" y="6" width="8" height="8" xoffset="1" yoffset="5" xadvance="9" page="0" chnl="15"/>
<char id="63" x="252" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="64" x="262" y="4" width="15" height="15" xoffset="1" yoffset="3" xadvance="16" page="0" chnl="15"/>
<char id="65" x="279" y="4" width="11" height="12" xoffset="0" yoffset="3" xadvance="11" page="0" chnl="15"/>
<char id="66" x="292" y="4" width="9" height="12" xoffset="1" yoffset="3" xadvance="11" page="0" chnl="15"/>
<char id="67" x="303" y="4" width="10" height="12" xoffset="1" yoffset="3" xadvance="12" page="0" chnl="15"/>
<char id="68" x="315" y="4" width="10" height="12" xoffset="1" yoffset="3" xadvance="12" page="0" chnl="15"/>
<char id="69" x="327" y="4" width="9" height="12" xoffset="1" yoffset="3" xadvance="11" page="0" chnl="15"/>
<char id="70" x="338" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="10" page="0" chnl="15"/>
<char id="71" x="348" y="4" width="11" height="12" xoffset="1" yoffset="3" xadvance="12" page="0" chnl="15"/>
<char id="72" x="361" y="4" width="9" height="12" xoffset="1" yoffset="3" xadvance="12" page="0" chnl="15"/>
<char id="73" x="372" y="4" width="2" height="12" xoffset="1" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="74" x="376" y="4" width="7" height="12" xoffset="0" yoffset="3" xadvance="8" page="0" chnl="15"/>
<char id="75" x="385" y="4" width="10" height="12" xoffset="1" yoffset="3" xadvance="11" page="0" chnl="15"/>
<char id="76" x="397" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="77" x="407" y="4" width="11" height="12" xoffset="1" yoffset="3" xadvance="13" page="0" chnl="15"/>
<char id="78" x="420" y="4" width="9" height="12" xoffset="1" yoffset="3" xadvance="12" page="0" chnl="15"/>
<char id="79" x="431" y="4" width="11" height="12" xoffset="1" yoffset="3" xadvance="12" page="0" chnl="15"/>
<char id="80" x="444" y="4" width="9" height="12" xoffset="1" yoffset="3" xadvance="11" page="0" chnl="15"/>
<char id="81" x="455" y="4" width="12" height="13" xoffset="1" yoffset="3" xadvance="12" page="0" chnl="15"/>
<char id="82" x="469" y="4" width="10" height="12" xoffset="1" yoffset="3" xadvance="12" page="0" chnl="15"/>
<char id="83" x="481" y="4" width="9" height="12" xoffset="1" yoffset="3" xadvance="11" page="0" chnl="15"/>
<char id="84" x="492" y="4" width="9" height="12" xoffset="0" yoffset="3" xadvance="10" page="0" chnl="15"/>
<char id="85" x="503" y="4" width="9" height="12" xoffset="1" yoffset="3" xadvance="12" page="0" chnl="15"/>
<char id="86" x="514" y="4" width="11" height="12" xoffset="0" yoffset="3" xadvance="11" page="0" chnl="15"/>
<char id="87" x="527" y="4" width="15" height="12" xoffset="0" yoffset="3" xadvance="15" page="0" chnl="15"/>
<char id="88" x="544" y="4" width="11" height="12" xoffset="0" yoffset="3" xadvance="11" page="0" chnl="15"/>
<char id="89" x="557" y="4" width="11" height="12" xoffset="0" yoffset="3" xadvance="11" page="0" chnl="15"/>
<char id="90" x="570" y="4" width="9" height="12" xoffset="0" yoffset="3" xadvance="10" page="0" chnl="15"/>
<char id="91" x="581" y="4" width="3" height="15" xoffset="1" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="92" x="586" y="4" width="5" height="12" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="93" x="593" y="4" width="3" height="15" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="94" x="598" y="4" width="7" height="7" xoffset="0" yoffset="3" xadvance="8" page="0" chnl="15"/>
<char id="95" x="607" y="18" width="10" height="1" xoffset="0" yoffset="17" xadvance="9" page="0" chnl="15"/>
<char id="97" x="619" y="7" width="8" height="9" xoffset="1" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="98" x="629" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="99" x="639" y="7" width="8" height="9" xoffset="1" yoffset="6" xadvance="8" page="0" chnl="15"/>
<char id="100" x="649" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="101" x="659" y="7" width="8" height="9" xoffset="1" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="102" x="669" y="4" width="5" height="12" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="103" x="676" y="7" width="8" height="12" xoffset="1" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="104" x="686" y="4" width="7" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="105" x="695" y="4" width="2" height="12" xoffset="1" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="106" x="699" y="4" width="4" height="15" xoffset="-1" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="107" x="705" y="4" width="7" height="12" xoffset="1" yoffset="3" xadvance="8" page="0" chnl="15"/>
<char id="108" x="714" y="4" width="2" height="12" xoffset="1" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="109" x="718" y="7" width="12" height="9" xoffset="1" yoffset="6" xadvance="13" page="0" chnl="15"/>
<char id="110" x="732" y="7" width="7" height="9" xoffset="1" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="111" x="741" y="7" width="8" height="9" xoffset="1" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="112" x="751" y="7" width="8" height="12" xoffset="1" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="113" x="761" y="7" width="8" height="12" xoffset="1" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="114" x="771" y="7" width="5" height="9" xoffset="1" yoffset="6" xadvance="5" page="0" chnl="15"/>
<char id="115" x="778" y="7" width="7" height="9" xoffset="0" yoffset="6" xadvance="8" page="0" chnl="15"/>
<char id="116" x="787" y="5" width="4" height="12" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="117" x="793" y="8" width="7" height="9" xoffset="1" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="118" x="802" y="8" width="8" height="9" xoffset="0" yoffset="6" xadvance="8" page="0" chnl="15"/>
<char id="119" x="812" y="8" width="12" height="9" xoffset="0" yoffset="6" xadvance="12" page="0" chnl="15"/>
<char id="120" x="826" y="8" width="8" height="9" xoffset="0" yoffset="6" xadvance="8" page="0" chnl="15"/>
<char id="121" x="836" y="8" width="8" height="12" xoffset="0" yoffset="6" xadvance="8" page="0" chnl="15"/>
<char id="122" x="846" y="8" width="8" height="9" xoffset="0" yoffset="6" xadvance="8" page="0" chnl="15"/>
<char id="123" x="856" y="4" width="5" height="15" xoffset="0" yoffset="3" xadvance="5" page="0" chnl="15"/>
<char id="124" x="863" y="4" width="2" height="15" xoffset="1" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="125" x="867" y="4" width="5" height="15" xoffset="0" yoffset="3" xadvance="5" page="0" chnl="15"/>
<char id="126" x="874" y="9" width="8" height="3" xoffset="1" yoffset="7" xadvance="9" page="0" chnl="15"/>
<char id="161" x="884" y="8" width="2" height="12" xoffset="2" yoffset="6" xadvance="5" page="0" chnl="15"/>
<char id="162" x="888" y="4" width="8" height="15" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="163" x="898" y="4" width="9" height="12" xoffset="0" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="164" x="909" y="6" width="8" height="8" xoffset="1" yoffset="5" xadvance="9" page="0" chnl="15"/>
<char id="165" x="919" y="4" width="9" height="12" xoffset="0" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="166" x="930" y="4" width="2" height="15" xoffset="1" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="167" x="934" y="4" width="8" height="15" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="168" x="944" y="4" width="5" height="2" xoffset="0" yoffset="3" xadvance="5" page="0" chnl="15"/>
<char id="169" x="951" y="4" width="12" height="12" xoffset="0" yoffset="3" xadvance="12" page="0" chnl="15"/>
<char id="170" x="965" y="4" width="6" height="6" xoffset="0" yoffset="3" xadvance="6" page="0" chnl="15"/>
<char id="171" x="973" y="8" width="7" height="7" xoffset="1" yoffset="7" xadvance="9" page="0" chnl="15"/>
<char id="172" x="982" y="8" width="8" height="5" xoffset="1" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="173" x="992" y="11" width="5" height="2" xoffset="1" yoffset="9" xadvance="5" page="0" chnl="15"/>
<char id="174" x="999" y="4" width="12" height="12" xoffset="0" yoffset="3" xadvance="12" page="0" chnl="15"/>
<char id="175" x="1013" y="3" width="10" height="1" xoffset="0" yoffset="1" xadvance="9" page="0" chnl="15"/>
<char id="176" x="1025" y="4" width="5" height="5" xoffset="1" yoffset="3" xadvance="6" page="0" chnl="15"/>
<char id="177" x="1032" y="6" width="8" height="10" xoffset="1" yoffset="5" xadvance="9" page="0" chnl="15"/>
<char id="178" x="1042" y="4" width="5" height="6" xoffset="0" yoffset="3" xadvance="5" page="0" chnl="15"/>
<char id="179" x="1049" y="4" width="5" height="6" xoffset="0" yoffset="3" xadvance="5" page="0" chnl="15"/>
<char id="180" x="1056" y="4" width="3" height="3" xoffset="2" yoffset="3" xadvance="5" page="0" chnl="15"/>
<char id="181" x="1061" y="8" width="7" height="12" xoffset="1" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="182" x="1070" y="4" width="9" height="15" xoffset="0" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="183" x="1081" y="9" width="2" height="2" xoffset="2" yoffset="8" xadvance="5" page="0" chnl="15"/>
<char id="184" x="1085" y="16" width="4" height="4" xoffset="1" yoffset="14" xadvance="5" page="0" chnl="15"/>
<char id="185" x="1091" y="4" width="3" height="6" xoffset="1" yoffset="3" xadvance="5" page="0" chnl="15"/>
<char id="186" x="1096" y="4" width="5" height="6" xoffset="0" yoffset="3" xadvance="6" page="0" chnl="15"/>
<char id="187" x="1103" y="8" width="7" height="7" xoffset="1" yoffset="7" xadvance="9" page="0" chnl="15"/>
<char id="188" x="1112" y="4" width="13" height="12" xoffset="1" yoffset="3" xadvance="13" page="0" chnl="15"/>
<char id="189" x="1127" y="4" width="13" height="12" xoffset="1" yoffset="3" xadvance="13" page="0" chnl="15"/>
<char id="190" x="1142" y="4" width="13" height="12" xoffset="0" yoffset="3" xadvance="13" page="0" chnl="15"/>
<char id="191" x="1157" y="8" width="8" height="12" xoffset="1" yoffset="6" xadvance="10" page="0" chnl="15"/>
<char id="192" x="1167" y="2" width="11" height="15" xoffset="0" yoffset="0" xadvance="11" page="0" chnl="15"/>
<char id="193" x="1180" y="2" width="11" height="15" xoffset="0" yoffset="0" xadvance="11" page="0" chnl="15"/>
<char id="194" x="1193" y="2" width="11" height="15" xoffset="0" yoffset="0" xadvance="11" page="0" chnl="15"/>
<char id="195" x="1206" y="2" width="11" height="14" xoffset="0" yoffset="0" xadvance="11" page="0" chnl="15"/>
<char id="196" x="1219" y="2" width="11" height="14" xoffset="0" yoffset="1" xadvance="11" page="0" chnl="15"/>
<char id="197" x="1232" y="2" width="11" height="14" xoffset="0" yoffset="0" xadvance="11" page="0" chnl="15"/>
<char id="198" x="1245" y="4" width="15" height="12" xoffset="0" yoffset="3" xadvance="16" page="0" chnl="15"/>
<char id="199" x="1262" y="4" width="10" height="15" xoffset="1" yoffset="3" xadvance="12" page="0" chnl="15"/>
<char id="200" x="1274" y="2" width="9" height="15" xoffset="1" yoffset="0" xadvance="11" page="0" chnl="15"/>
<char id="201" x="1285" y="2" width="9" height="15" xoffset="1" yoffset="0" xadvance="11" page="0" chnl="15"/>
<char id="202" x="1296" y="2" width="9" height="15" xoffset="1" yoffset="0" xadvance="11" page="0" chnl="15"/>
<char id="203" x="1307" y="2" width="9" height="14" xoffset="1" yoffset="1" xadvance="11" page="0" chnl="15"/>
<char id="204" x="1318" y="2" width="3" height="15" xoffset="0" yoffset="0" xadvance="4" page="0" chnl="15"/>
<char id="205" x="1323" y="2" width="3" height="15" xoffset="1" yoffset="0" xadvance="4" page="0" chnl="15"/>
<char id="206" x="1328" y="2" width="5" height="15" xoffset="0" yoffset="0" xadvance="4" page="0" chnl="15"/>
<char id="207" x="1335" y="2" width="5" height="14" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="208" x="1342" y="4" width="11" height="12" xoffset="0" yoffset="3" xadvance="12" page="0" chnl="15"/>
<char id="209" x="1355" y="2" width="9" height="14" xoffset="1" yoffset="0" xadvance="12" page="0" chnl="15"/>
<char id="210" x="1366" y="2" width="11" height="15" xoffset="1" yoffset="0" xadvance="12" page="0" chnl="15"/>
<char id="211" x="1379" y="2" width="11" height="15" xoffset="1" yoffset="0" xadvance="12" page="0" chnl="15"/>
<char id="212" x="1392" y="2" width="11" height="15" xoffset="1" yoffset="0" xadvance="12" page="0" chnl="15"/>
<char id="213" x="1405" y="2" width="11" height="15" xoffset="1" yoffset="0" xadvance="12" page="0" chnl="15"/>
<char id="214" x="1418" y="2" width="11" height="14" xoffset="1" yoffset="1" xadvance="12" page="0" chnl="15"/>
<char id="215" x="1431" y="7" width="7" height="7" xoffset="1" yoffset="5" xadvance="9" page="0" chnl="15"/>
<char id="216" x="1440" y="4" width="12" height="13" xoffset="1" yoffset="2" xadvance="12" page="0" chnl="15"/>
<char id="217" x="1454" y="2" width="9" height="15" xoffset="1" yoffset="0" xadvance="12" page="0" chnl="15"/>
<char id="218" x="1465" y="2" width="9" height="15" xoffset="1" yoffset="0" xadvance="12" page="0" chnl="15"/>
<char id="219" x="1476" y="2" width="9" height="15" xoffset="1" yoffset="0" xadvance="12" page="0" chnl="15"/>
<char id="220" x="1487" y="2" width="9" height="14" xoffset="1" yoffset="1" xadvance="12" page="0" chnl="15"/>
<char id="221" x="1498" y="2" width="11" height="15" xoffset="0" yoffset="0" xadvance="11" page="0" chnl="15"/>
<char id="222" x="1511" y="4" width="9" height="12" xoffset="1" yoffset="3" xadvance="11" page="0" chnl="15"/>
<char id="223" x="1522" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="10" page="0" chnl="15"/>
<char id="224" x="1532" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="225" x="1542" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="226" x="1552" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="227" x="1562" y="5" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="228" x="1572" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="229" x="1582" y="4" width="8" height="12" xoffset="1" yoffset="2" xadvance="9" page="0" chnl="15"/>
<char id="230" x="1592" y="7" width="13" height="9" xoffset="1" yoffset="6" xadvance="14" page="0" chnl="15"/>
<char id="231" x="1607" y="7" width="8" height="12" xoffset="1" yoffset="6" xadvance="8" page="0" chnl="15"/>
<char id="232" x="1617" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="233" x="1627" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="234" x="1637" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="235" x="1647" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="236" x="1657" y="4" width="3" height="12" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="237" x="1662" y="4" width="3" height="12" xoffset="1" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="238" x="1667" y="4" width="5" height="12" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="239" x="1674" y="4" width="5" height="12" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="240" x="1681" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="241" x="1691" y="5" width="7" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="242" x="1700" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="243" x="1710" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="244" x="1720" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="245" x="1730" y="5" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="246" x="1740" y="4" width="8" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="247" x="1750" y="7" width="8" height="7" xoffset="1" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="248" x="1760" y="7" width="8" height="10" xoffset="1" yoffset="6" xadvance="10" page="0" chnl="15"/>
<char id="249" x="1770" y="4" width="7" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="250" x="1779" y="4" width="7" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="251" x="1788" y="4" width="7" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="252" x="1797" y="4" width="7" height="12" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="253" x="1806" y="4" width="8" height="15" xoffset="0" yoffset="3" xadvance="8" page="0" chnl="15"/>
<char id="254" x="1816" y="4" width="8" height="15" xoffset="1" yoffset="3" xadvance="9" page="0" chnl="15"/>
<char id="255" x="1826" y="4" width="8" height="15" xoffset="0" yoffset="3" xadvance="8" page="0" chnl="15"/>
<char id="32" x="0" y="0" width="0" height="0" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
</chars>
<kernings count="97">
<kerning first="32" second="65" amount="-1"/>
<kerning first="32" second="84" amount="0"/>
<kerning first="32" second="89" amount="0"/>
<kerning first="49" second="49" amount="-1"/>
<kerning first="65" second="32" amount="-1"/>
<kerning first="65" second="84" amount="-1"/>
<kerning first="65" second="86" amount="-1"/>
<kerning first="65" second="87" amount="-1"/>
<kerning first="65" second="89" amount="-1"/>
<kerning first="65" second="118" amount="0"/>
<kerning first="65" second="119" amount="0"/>
<kerning first="65" second="121" amount="0"/>
<kerning first="70" second="44" amount="-2"/>
<kerning first="70" second="46" amount="-2"/>
<kerning first="70" second="65" amount="-1"/>
<kerning first="76" second="32" amount="-1"/>
<kerning first="76" second="84" amount="-1"/>
<kerning first="76" second="86" amount="-1"/>
<kerning first="76" second="87" amount="-1"/>
<kerning first="76" second="89" amount="-1"/>
<kerning first="76" second="121" amount="-1"/>
<kerning first="80" second="32" amount="0"/>
<kerning first="80" second="44" amount="-2"/>
<kerning first="80" second="46" amount="-2"/>
<kerning first="80" second="65" amount="-1"/>
<kerning first="82" second="84" amount="0"/>
<kerning first="82" second="86" amount="0"/>
<kerning first="82" second="87" amount="0"/>
<kerning first="82" second="89" amount="0"/>
<kerning first="84" second="32" amount="0"/>
<kerning first="84" second="44" amount="-2"/>
<kerning first="84" second="173" amount="-1"/>
<kerning first="84" second="46" amount="-2"/>
<kerning first="84" second="58" amount="-2"/>
<kerning first="84" second="59" amount="-2"/>
<kerning first="84" second="65" amount="-1"/>
<kerning first="84" second="79" amount="0"/>
<kerning first="84" second="97" amount="-2"/>
<kerning first="84" second="99" amount="-2"/>
<kerning first="84" second="101" amount="-2"/>
<kerning first="84" second="105" amount="-1"/>
<kerning first="84" second="111" amount="-2"/>
<kerning first="84" second="114" amount="-1"/>
<kerning first="84" second="115" amount="-2"/>
<kerning first="84" second="117" amount="-1"/>
<kerning first="84" second="119" amount="-1"/>
<kerning first="84" second="121" amount="-1"/>
<kerning first="86" second="44" amount="-1"/>
<kerning first="86" second="173" amount="-1"/>
<kerning first="86" second="46" amount="-1"/>
<kerning first="86" second="58" amount="-1"/>
<kerning first="86" second="59" amount="-1"/>
<kerning first="86" second="65" amount="-1"/>
<kerning first="86" second="97" amount="-1"/>
<kerning first="86" second="101" amount="-1"/>
<kerning first="86" second="105" amount="0"/>
<kerning first="86" second="111" amount="-1"/>
<kerning first="86" second="114" amount="-1"/>
<kerning first="86" second="117" amount="-1"/>
<kerning first="86" second="121" amount="-1"/>
<kerning first="87" second="44" amount="-1"/>
<kerning first="87" second="173" amount="0"/>
<kerning first="87" second="46" amount="-1"/>
<kerning first="87" second="58" amount="0"/>
<kerning first="87" second="59" amount="0"/>
<kerning first="87" second="65" amount="-1"/>
<kerning first="87" second="97" amount="-1"/>
<kerning first="87" second="101" amount="0"/>
<kerning first="87" second="105" amount="0"/>
<kerning first="87" second="111" amount="0"/>
<kerning first="87" second="114" amount="0"/>
<kerning first="87" second="117" amount="0"/>
<kerning first="87" second="121" amount="0"/>
<kerning first="89" second="32" amount="0"/>
<kerning first="89" second="44" amount="-2"/>
<kerning first="89" second="173" amount="-1"/>
<kerning first="89" second="46" amount="-2"/>
<kerning first="89" second="58" amount="-1"/>
<kerning first="89" second="59" amount="-1"/>
<kerning first="89" second="65" amount="-1"/>
<kerning first="89" second="97" amount="-1"/>
<kerning first="89" second="101" amount="-1"/>
<kerning first="89" second="105" amount="-1"/>
<kerning first="89" second="111" amount="-1"/>
<kerning first="89" second="112" amount="-1"/>
<kerning first="89" second="113" amount="-1"/>
<kerning first="89" second="117" amount="-1"/>
<kerning first="89" second="118" amount="-1"/>
<kerning first="102" second="102" amount="0"/>
<kerning first="114" second="44" amount="-1"/>
<kerning first="114" second="46" amount="-1"/>
<kerning first="118" second="44" amount="-1"/>
<kerning first="118" second="46" amount="-1"/>
<kerning first="119" second="44" amount="-1"/>
<kerning first="119" second="46" amount="-1"/>
<kerning first="121" second="44" amount="-1"/>
<kerning first="121" second="46" amount="-1"/>
</kernings>
</font>

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

View File

@ -0,0 +1,297 @@
<font>
<info face="open-sans-32-black" size="32" bold="0" italic="0" charset="" unicode="" stretchH="100" smooth="1" aa="1" padding="2,2,2,2" spacing="0,0" outline="0"/>
<common lineHeight="36" base="29" scaleW="3233" scaleH="38" pages="1" packed="0"/>
<pages>
<page id="0" file="open-sans-32-black.png"/>
</pages>
<chars count="188">
<char id="33" x="2" y="7" width="4" height="23" xoffset="3" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="34" x="8" y="7" width="9" height="8" xoffset="1" yoffset="6" xadvance="11" page="0" chnl="15"/>
<char id="35" x="19" y="7" width="17" height="24" xoffset="0" yoffset="5" xadvance="18" page="0" chnl="15"/>
<char id="36" x="38" y="5" width="16" height="29" xoffset="1" yoffset="4" xadvance="18" page="0" chnl="15"/>
<char id="37" x="56" y="7" width="25" height="24" xoffset="2" yoffset="5" xadvance="28" page="0" chnl="15"/>
<char id="38" x="83" y="7" width="20" height="24" xoffset="1" yoffset="5" xadvance="21" page="0" chnl="15"/>
<char id="39" x="105" y="7" width="4" height="8" xoffset="1" yoffset="6" xadvance="6" page="0" chnl="15"/>
<char id="40" x="111" y="7" width="8" height="30" xoffset="2" yoffset="5" xadvance="11" page="0" chnl="15"/>
<char id="41" x="121" y="7" width="8" height="30" xoffset="2" yoffset="5" xadvance="11" page="0" chnl="15"/>
<char id="42" x="131" y="7" width="11" height="10" xoffset="1" yoffset="5" xadvance="12" page="0" chnl="15"/>
<char id="43" x="144" y="11" width="15" height="15" xoffset="2" yoffset="10" xadvance="19" page="0" chnl="15"/>
<char id="44" x="161" y="27" width="4" height="8" xoffset="3" yoffset="25" xadvance="9" page="0" chnl="15"/>
<char id="45" x="167" y="20" width="9" height="3" xoffset="1" yoffset="19" xadvance="11" page="0" chnl="15"/>
<char id="46" x="178" y="27" width="4" height="4" xoffset="3" yoffset="25" xadvance="9" page="0" chnl="15"/>
<char id="47" x="184" y="7" width="9" height="24" xoffset="0" yoffset="5" xadvance="9" page="0" chnl="15"/>
<char id="48" x="195" y="7" width="15" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="49" x="212" y="7" width="9" height="23" xoffset="3" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="50" x="223" y="7" width="16" height="23" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="51" x="241" y="7" width="15" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="52" x="258" y="7" width="16" height="23" xoffset="0" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="53" x="276" y="8" width="16" height="23" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="54" x="294" y="7" width="15" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="55" x="311" y="8" width="15" height="23" xoffset="2" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="56" x="328" y="7" width="15" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="57" x="345" y="7" width="15" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="58" x="362" y="14" width="4" height="17" xoffset="3" yoffset="12" xadvance="9" page="0" chnl="15"/>
<char id="59" x="368" y="14" width="4" height="21" xoffset="3" yoffset="12" xadvance="9" page="0" chnl="15"/>
<char id="60" x="374" y="11" width="16" height="16" xoffset="2" yoffset="10" xadvance="19" page="0" chnl="15"/>
<char id="61" x="392" y="14" width="15" height="10" xoffset="2" yoffset="13" xadvance="19" page="0" chnl="15"/>
<char id="62" x="409" y="11" width="16" height="16" xoffset="2" yoffset="10" xadvance="19" page="0" chnl="15"/>
<char id="63" x="427" y="7" width="15" height="24" xoffset="1" yoffset="5" xadvance="18" page="0" chnl="15"/>
<char id="64" x="444" y="7" width="30" height="30" xoffset="2" yoffset="5" xadvance="32" page="0" chnl="15"/>
<char id="65" x="476" y="7" width="22" height="23" xoffset="0" yoffset="6" xadvance="21" page="0" chnl="15"/>
<char id="66" x="500" y="7" width="18" height="23" xoffset="2" yoffset="6" xadvance="21" page="0" chnl="15"/>
<char id="67" x="520" y="7" width="21" height="24" xoffset="2" yoffset="5" xadvance="23" page="0" chnl="15"/>
<char id="68" x="543" y="7" width="19" height="23" xoffset="2" yoffset="6" xadvance="23" page="0" chnl="15"/>
<char id="69" x="564" y="7" width="17" height="23" xoffset="3" yoffset="6" xadvance="21" page="0" chnl="15"/>
<char id="70" x="583" y="7" width="16" height="23" xoffset="3" yoffset="6" xadvance="20" page="0" chnl="15"/>
<char id="71" x="601" y="7" width="22" height="24" xoffset="2" yoffset="5" xadvance="25" page="0" chnl="15"/>
<char id="72" x="625" y="7" width="18" height="23" xoffset="3" yoffset="6" xadvance="23" page="0" chnl="15"/>
<char id="73" x="645" y="7" width="3" height="23" xoffset="3" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="74" x="650" y="7" width="13" height="24" xoffset="1" yoffset="6" xadvance="16" page="0" chnl="15"/>
<char id="75" x="665" y="7" width="19" height="23" xoffset="2" yoffset="6" xadvance="21" page="0" chnl="15"/>
<char id="76" x="686" y="7" width="15" height="23" xoffset="2" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="77" x="703" y="7" width="22" height="23" xoffset="2" yoffset="6" xadvance="27" page="0" chnl="15"/>
<char id="78" x="727" y="7" width="18" height="23" xoffset="2" yoffset="6" xadvance="23" page="0" chnl="15"/>
<char id="79" x="747" y="7" width="22" height="24" xoffset="2" yoffset="5" xadvance="25" page="0" chnl="15"/>
<char id="80" x="771" y="7" width="18" height="23" xoffset="2" yoffset="6" xadvance="21" page="0" chnl="15"/>
<char id="81" x="791" y="7" width="23" height="25" xoffset="1" yoffset="5" xadvance="25" page="0" chnl="15"/>
<char id="82" x="816" y="7" width="20" height="23" xoffset="3" yoffset="6" xadvance="23" page="0" chnl="15"/>
<char id="83" x="838" y="7" width="19" height="24" xoffset="1" yoffset="5" xadvance="21" page="0" chnl="15"/>
<char id="84" x="859" y="7" width="19" height="23" xoffset="1" yoffset="6" xadvance="20" page="0" chnl="15"/>
<char id="85" x="880" y="7" width="18" height="24" xoffset="3" yoffset="6" xadvance="23" page="0" chnl="15"/>
<char id="86" x="900" y="7" width="21" height="23" xoffset="0" yoffset="6" xadvance="21" page="0" chnl="15"/>
<char id="87" x="923" y="7" width="30" height="23" xoffset="0" yoffset="6" xadvance="30" page="0" chnl="15"/>
<char id="88" x="955" y="7" width="21" height="23" xoffset="0" yoffset="6" xadvance="21" page="0" chnl="15"/>
<char id="89" x="978" y="7" width="21" height="23" xoffset="0" yoffset="6" xadvance="21" page="0" chnl="15"/>
<char id="90" x="1001" y="7" width="18" height="23" xoffset="1" yoffset="6" xadvance="20" page="0" chnl="15"/>
<char id="91" x="1021" y="7" width="7" height="30" xoffset="2" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="92" x="1030" y="7" width="9" height="24" xoffset="0" yoffset="5" xadvance="9" page="0" chnl="15"/>
<char id="93" x="1041" y="7" width="7" height="30" xoffset="1" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="94" x="1050" y="7" width="14" height="13" xoffset="1" yoffset="5" xadvance="15" page="0" chnl="15"/>
<char id="95" x="1066" y="35" width="19" height="2" xoffset="0" yoffset="33" xadvance="18" page="0" chnl="15"/>
<char id="97" x="1087" y="13" width="16" height="18" xoffset="1" yoffset="12" xadvance="18" page="0" chnl="15"/>
<char id="98" x="1105" y="7" width="15" height="24" xoffset="2" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="99" x="1122" y="13" width="15" height="18" xoffset="1" yoffset="12" xadvance="16" page="0" chnl="15"/>
<char id="100" x="1139" y="7" width="15" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="101" x="1156" y="13" width="16" height="18" xoffset="1" yoffset="12" xadvance="18" page="0" chnl="15"/>
<char id="102" x="1174" y="7" width="10" height="24" xoffset="0" yoffset="5" xadvance="9" page="0" chnl="15"/>
<char id="103" x="1186" y="13" width="15" height="24" xoffset="1" yoffset="12" xadvance="18" page="0" chnl="15"/>
<char id="104" x="1203" y="7" width="14" height="23" xoffset="2" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="105" x="1219" y="7" width="3" height="23" xoffset="2" yoffset="6" xadvance="7" page="0" chnl="15"/>
<char id="106" x="1224" y="7" width="7" height="30" xoffset="-1" yoffset="6" xadvance="7" page="0" chnl="15"/>
<char id="107" x="1233" y="7" width="14" height="23" xoffset="2" yoffset="6" xadvance="16" page="0" chnl="15"/>
<char id="108" x="1249" y="7" width="3" height="23" xoffset="2" yoffset="6" xadvance="7" page="0" chnl="15"/>
<char id="109" x="1254" y="13" width="23" height="17" xoffset="2" yoffset="12" xadvance="27" page="0" chnl="15"/>
<char id="110" x="1279" y="13" width="14" height="17" xoffset="2" yoffset="12" xadvance="18" page="0" chnl="15"/>
<char id="111" x="1295" y="13" width="16" height="18" xoffset="1" yoffset="12" xadvance="18" page="0" chnl="15"/>
<char id="112" x="1313" y="13" width="15" height="24" xoffset="2" yoffset="12" xadvance="18" page="0" chnl="15"/>
<char id="113" x="1330" y="13" width="15" height="24" xoffset="1" yoffset="12" xadvance="18" page="0" chnl="15"/>
<char id="114" x="1347" y="13" width="9" height="17" xoffset="2" yoffset="12" xadvance="11" page="0" chnl="15"/>
<char id="115" x="1358" y="13" width="14" height="18" xoffset="1" yoffset="12" xadvance="16" page="0" chnl="15"/>
<char id="116" x="1374" y="8" width="8" height="23" xoffset="1" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="117" x="1384" y="14" width="14" height="17" xoffset="2" yoffset="12" xadvance="18" page="0" chnl="15"/>
<char id="118" x="1400" y="14" width="16" height="17" xoffset="0" yoffset="12" xadvance="16" page="0" chnl="15"/>
<char id="119" x="1418" y="14" width="23" height="17" xoffset="0" yoffset="12" xadvance="23" page="0" chnl="15"/>
<char id="120" x="1443" y="14" width="16" height="17" xoffset="0" yoffset="12" xadvance="16" page="0" chnl="15"/>
<char id="121" x="1461" y="14" width="16" height="24" xoffset="1" yoffset="12" xadvance="16" page="0" chnl="15"/>
<char id="122" x="1479" y="14" width="15" height="17" xoffset="1" yoffset="12" xadvance="16" page="0" chnl="15"/>
<char id="123" x="1496" y="7" width="9" height="30" xoffset="1" yoffset="5" xadvance="11" page="0" chnl="15"/>
<char id="124" x="1507" y="7" width="3" height="30" xoffset="3" yoffset="5" xadvance="8" page="0" chnl="15"/>
<char id="125" x="1512" y="7" width="9" height="30" xoffset="1" yoffset="5" xadvance="11" page="0" chnl="15"/>
<char id="126" x="1523" y="16" width="16" height="5" xoffset="1" yoffset="15" xadvance="19" page="0" chnl="15"/>
<char id="161" x="1541" y="14" width="4" height="23" xoffset="4" yoffset="12" xadvance="11" page="0" chnl="15"/>
<char id="162" x="1547" y="7" width="15" height="30" xoffset="2" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="163" x="1564" y="7" width="17" height="24" xoffset="0" yoffset="5" xadvance="18" page="0" chnl="15"/>
<char id="164" x="1583" y="11" width="16" height="16" xoffset="1" yoffset="10" xadvance="18" page="0" chnl="15"/>
<char id="165" x="1601" y="7" width="18" height="23" xoffset="0" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="166" x="1621" y="7" width="3" height="30" xoffset="3" yoffset="5" xadvance="8" page="0" chnl="15"/>
<char id="167" x="1626" y="7" width="15" height="30" xoffset="1" yoffset="5" xadvance="18" page="0" chnl="15"/>
<char id="168" x="1643" y="7" width="9" height="4" xoffset="1" yoffset="6" xadvance="11" page="0" chnl="15"/>
<char id="169" x="1654" y="7" width="24" height="24" xoffset="0" yoffset="5" xadvance="24" page="0" chnl="15"/>
<char id="170" x="1680" y="7" width="11" height="12" xoffset="1" yoffset="5" xadvance="12" page="0" chnl="15"/>
<char id="171" x="1693" y="15" width="14" height="15" xoffset="2" yoffset="13" xadvance="18" page="0" chnl="15"/>
<char id="172" x="1709" y="14" width="15" height="10" xoffset="2" yoffset="13" xadvance="19" page="0" chnl="15"/>
<char id="173" x="1726" y="20" width="9" height="3" xoffset="1" yoffset="19" xadvance="11" page="0" chnl="15"/>
<char id="174" x="1737" y="7" width="24" height="24" xoffset="0" yoffset="5" xadvance="24" page="0" chnl="15"/>
<char id="175" x="1763" y="4" width="19" height="2" xoffset="0" yoffset="2" xadvance="18" page="0" chnl="15"/>
<char id="176" x="1784" y="7" width="9" height="9" xoffset="2" yoffset="5" xadvance="13" page="0" chnl="15"/>
<char id="177" x="1795" y="11" width="15" height="20" xoffset="1" yoffset="9" xadvance="18" page="0" chnl="15"/>
<char id="178" x="1812" y="7" width="10" height="12" xoffset="0" yoffset="6" xadvance="11" page="0" chnl="15"/>
<char id="179" x="1824" y="7" width="10" height="12" xoffset="1" yoffset="6" xadvance="11" page="0" chnl="15"/>
<char id="180" x="1836" y="7" width="6" height="5" xoffset="3" yoffset="6" xadvance="11" page="0" chnl="15"/>
<char id="181" x="1844" y="14" width="14" height="23" xoffset="3" yoffset="12" xadvance="18" page="0" chnl="15"/>
<char id="182" x="1860" y="7" width="18" height="30" xoffset="0" yoffset="6" xadvance="17" page="0" chnl="15"/>
<char id="183" x="1880" y="17" width="4" height="4" xoffset="4" yoffset="16" xadvance="11" page="0" chnl="15"/>
<char id="184" x="1886" y="30" width="7" height="7" xoffset="2" yoffset="28" xadvance="11" page="0" chnl="15"/>
<char id="185" x="1895" y="7" width="6" height="12" xoffset="2" yoffset="6" xadvance="11" page="0" chnl="15"/>
<char id="186" x="1903" y="7" width="11" height="12" xoffset="1" yoffset="5" xadvance="12" page="0" chnl="15"/>
<char id="187" x="1916" y="15" width="14" height="15" xoffset="2" yoffset="13" xadvance="18" page="0" chnl="15"/>
<char id="188" x="1932" y="7" width="25" height="25" xoffset="2" yoffset="5" xadvance="27" page="0" chnl="15"/>
<char id="189" x="1959" y="7" width="25" height="25" xoffset="2" yoffset="5" xadvance="27" page="0" chnl="15"/>
<char id="190" x="1986" y="7" width="26" height="25" xoffset="1" yoffset="5" xadvance="27" page="0" chnl="15"/>
<char id="191" x="2014" y="14" width="15" height="24" xoffset="2" yoffset="12" xadvance="20" page="0" chnl="15"/>
<char id="192" x="2031" y="2" width="22" height="29" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15"/>
<char id="193" x="2055" y="2" width="22" height="29" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15"/>
<char id="194" x="2079" y="2" width="22" height="29" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15"/>
<char id="195" x="2103" y="2" width="22" height="28" xoffset="0" yoffset="1" xadvance="21" page="0" chnl="15"/>
<char id="196" x="2127" y="3" width="22" height="28" xoffset="0" yoffset="1" xadvance="21" page="0" chnl="15"/>
<char id="197" x="2151" y="2" width="22" height="28" xoffset="0" yoffset="1" xadvance="21" page="0" chnl="15"/>
<char id="198" x="2175" y="7" width="31" height="23" xoffset="0" yoffset="6" xadvance="32" page="0" chnl="15"/>
<char id="199" x="2208" y="7" width="21" height="30" xoffset="2" yoffset="5" xadvance="23" page="0" chnl="15"/>
<char id="200" x="2231" y="2" width="17" height="29" xoffset="3" yoffset="0" xadvance="21" page="0" chnl="15"/>
<char id="201" x="2250" y="2" width="17" height="29" xoffset="3" yoffset="0" xadvance="21" page="0" chnl="15"/>
<char id="202" x="2269" y="2" width="17" height="29" xoffset="3" yoffset="0" xadvance="21" page="0" chnl="15"/>
<char id="203" x="2288" y="3" width="17" height="28" xoffset="3" yoffset="1" xadvance="21" page="0" chnl="15"/>
<char id="204" x="2307" y="2" width="6" height="29" xoffset="1" yoffset="0" xadvance="9" page="0" chnl="15"/>
<char id="205" x="2315" y="2" width="6" height="29" xoffset="2" yoffset="0" xadvance="9" page="0" chnl="15"/>
<char id="206" x="2323" y="2" width="10" height="29" xoffset="0" yoffset="0" xadvance="9" page="0" chnl="15"/>
<char id="207" x="2335" y="3" width="9" height="28" xoffset="0" yoffset="1" xadvance="9" page="0" chnl="15"/>
<char id="208" x="2346" y="7" width="22" height="23" xoffset="0" yoffset="6" xadvance="23" page="0" chnl="15"/>
<char id="209" x="2370" y="2" width="18" height="28" xoffset="2" yoffset="1" xadvance="23" page="0" chnl="15"/>
<char id="210" x="2390" y="2" width="22" height="29" xoffset="2" yoffset="0" xadvance="25" page="0" chnl="15"/>
<char id="211" x="2414" y="2" width="22" height="29" xoffset="2" yoffset="0" xadvance="25" page="0" chnl="15"/>
<char id="212" x="2438" y="2" width="22" height="29" xoffset="2" yoffset="0" xadvance="25" page="0" chnl="15"/>
<char id="213" x="2462" y="2" width="22" height="29" xoffset="2" yoffset="1" xadvance="25" page="0" chnl="15"/>
<char id="214" x="2486" y="3" width="22" height="28" xoffset="2" yoffset="1" xadvance="25" page="0" chnl="15"/>
<char id="215" x="2510" y="12" width="14" height="14" xoffset="3" yoffset="11" xadvance="19" page="0" chnl="15"/>
<char id="216" x="2526" y="6" width="23" height="25" xoffset="1" yoffset="5" xadvance="25" page="0" chnl="15"/>
<char id="217" x="2551" y="2" width="18" height="29" xoffset="3" yoffset="0" xadvance="23" page="0" chnl="15"/>
<char id="218" x="2571" y="2" width="18" height="29" xoffset="3" yoffset="0" xadvance="23" page="0" chnl="15"/>
<char id="219" x="2591" y="2" width="18" height="29" xoffset="3" yoffset="0" xadvance="23" page="0" chnl="15"/>
<char id="220" x="2611" y="3" width="18" height="28" xoffset="3" yoffset="1" xadvance="23" page="0" chnl="15"/>
<char id="221" x="2631" y="2" width="21" height="29" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15"/>
<char id="222" x="2654" y="7" width="18" height="23" xoffset="2" yoffset="6" xadvance="21" page="0" chnl="15"/>
<char id="223" x="2674" y="7" width="17" height="24" xoffset="2" yoffset="5" xadvance="20" page="0" chnl="15"/>
<char id="224" x="2693" y="7" width="16" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="225" x="2711" y="7" width="16" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="226" x="2729" y="7" width="16" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="227" x="2747" y="8" width="16" height="23" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="228" x="2765" y="7" width="16" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="229" x="2783" y="6" width="16" height="24" xoffset="1" yoffset="5" xadvance="18" page="0" chnl="15"/>
<char id="230" x="2801" y="13" width="26" height="18" xoffset="1" yoffset="12" xadvance="28" page="0" chnl="15"/>
<char id="231" x="2829" y="13" width="15" height="24" xoffset="1" yoffset="12" xadvance="16" page="0" chnl="15"/>
<char id="232" x="2846" y="7" width="16" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="233" x="2864" y="7" width="16" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="234" x="2882" y="7" width="16" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="235" x="2900" y="7" width="16" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="236" x="2918" y="7" width="6" height="23" xoffset="1" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="237" x="2926" y="7" width="6" height="23" xoffset="3" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="238" x="2934" y="7" width="10" height="23" xoffset="0" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="239" x="2946" y="7" width="9" height="23" xoffset="0" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="240" x="2957" y="7" width="16" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="241" x="2975" y="8" width="14" height="23" xoffset="2" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="242" x="2991" y="7" width="16" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="243" x="3009" y="7" width="16" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="244" x="3027" y="7" width="16" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="245" x="3045" y="8" width="16" height="23" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="246" x="3063" y="7" width="16" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="247" x="3081" y="13" width="15" height="13" xoffset="1" yoffset="11" xadvance="18" page="0" chnl="15"/>
<char id="248" x="3098" y="13" width="16" height="19" xoffset="2" yoffset="11" xadvance="20" page="0" chnl="15"/>
<char id="249" x="3116" y="7" width="14" height="24" xoffset="2" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="250" x="3132" y="7" width="14" height="24" xoffset="2" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="251" x="3148" y="7" width="14" height="24" xoffset="2" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="252" x="3164" y="7" width="14" height="24" xoffset="2" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="253" x="3180" y="7" width="16" height="30" xoffset="1" yoffset="6" xadvance="16" page="0" chnl="15"/>
<char id="254" x="3198" y="7" width="15" height="30" xoffset="2" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="255" x="3215" y="7" width="16" height="30" xoffset="1" yoffset="6" xadvance="16" page="0" chnl="15"/>
<char id="32" x="0" y="0" width="0" height="0" xoffset="1" yoffset="6" xadvance="9" page="0" chnl="15"/>
</chars>
<kernings count="97">
<kerning first="32" second="65" amount="-2"/>
<kerning first="32" second="84" amount="-1"/>
<kerning first="32" second="89" amount="-1"/>
<kerning first="49" second="49" amount="-2"/>
<kerning first="65" second="32" amount="-2"/>
<kerning first="65" second="84" amount="-2"/>
<kerning first="65" second="86" amount="-2"/>
<kerning first="65" second="87" amount="-1"/>
<kerning first="65" second="89" amount="-2"/>
<kerning first="65" second="118" amount="-1"/>
<kerning first="65" second="119" amount="-1"/>
<kerning first="65" second="121" amount="-1"/>
<kerning first="70" second="44" amount="-4"/>
<kerning first="70" second="46" amount="-4"/>
<kerning first="70" second="65" amount="-2"/>
<kerning first="76" second="32" amount="-1"/>
<kerning first="76" second="84" amount="-2"/>
<kerning first="76" second="86" amount="-2"/>
<kerning first="76" second="87" amount="-2"/>
<kerning first="76" second="89" amount="-2"/>
<kerning first="76" second="121" amount="-1"/>
<kerning first="80" second="32" amount="-1"/>
<kerning first="80" second="44" amount="-4"/>
<kerning first="80" second="46" amount="-4"/>
<kerning first="80" second="65" amount="-2"/>
<kerning first="82" second="84" amount="-1"/>
<kerning first="82" second="86" amount="-1"/>
<kerning first="82" second="87" amount="-1"/>
<kerning first="82" second="89" amount="-1"/>
<kerning first="84" second="32" amount="-1"/>
<kerning first="84" second="44" amount="-4"/>
<kerning first="84" second="173" amount="-2"/>
<kerning first="84" second="46" amount="-4"/>
<kerning first="84" second="58" amount="-4"/>
<kerning first="84" second="59" amount="-4"/>
<kerning first="84" second="65" amount="-2"/>
<kerning first="84" second="79" amount="-1"/>
<kerning first="84" second="97" amount="-4"/>
<kerning first="84" second="99" amount="-4"/>
<kerning first="84" second="101" amount="-4"/>
<kerning first="84" second="105" amount="-1"/>
<kerning first="84" second="111" amount="-4"/>
<kerning first="84" second="114" amount="-1"/>
<kerning first="84" second="115" amount="-4"/>
<kerning first="84" second="117" amount="-1"/>
<kerning first="84" second="119" amount="-2"/>
<kerning first="84" second="121" amount="-2"/>
<kerning first="86" second="44" amount="-3"/>
<kerning first="86" second="173" amount="-2"/>
<kerning first="86" second="46" amount="-3"/>
<kerning first="86" second="58" amount="-1"/>
<kerning first="86" second="59" amount="-1"/>
<kerning first="86" second="65" amount="-2"/>
<kerning first="86" second="97" amount="-2"/>
<kerning first="86" second="101" amount="-2"/>
<kerning first="86" second="105" amount="-1"/>
<kerning first="86" second="111" amount="-2"/>
<kerning first="86" second="114" amount="-1"/>
<kerning first="86" second="117" amount="-1"/>
<kerning first="86" second="121" amount="-1"/>
<kerning first="87" second="44" amount="-2"/>
<kerning first="87" second="173" amount="-1"/>
<kerning first="87" second="46" amount="-2"/>
<kerning first="87" second="58" amount="-1"/>
<kerning first="87" second="59" amount="-1"/>
<kerning first="87" second="65" amount="-1"/>
<kerning first="87" second="97" amount="-1"/>
<kerning first="87" second="101" amount="-1"/>
<kerning first="87" second="105" amount="0"/>
<kerning first="87" second="111" amount="-1"/>
<kerning first="87" second="114" amount="-1"/>
<kerning first="87" second="117" amount="-1"/>
<kerning first="87" second="121" amount="0"/>
<kerning first="89" second="32" amount="-1"/>
<kerning first="89" second="44" amount="-4"/>
<kerning first="89" second="173" amount="-3"/>
<kerning first="89" second="46" amount="-4"/>
<kerning first="89" second="58" amount="-2"/>
<kerning first="89" second="59" amount="-2"/>
<kerning first="89" second="65" amount="-2"/>
<kerning first="89" second="97" amount="-2"/>
<kerning first="89" second="101" amount="-3"/>
<kerning first="89" second="105" amount="-1"/>
<kerning first="89" second="111" amount="-3"/>
<kerning first="89" second="112" amount="-2"/>
<kerning first="89" second="113" amount="-3"/>
<kerning first="89" second="117" amount="-2"/>
<kerning first="89" second="118" amount="-2"/>
<kerning first="102" second="102" amount="-1"/>
<kerning first="114" second="44" amount="-2"/>
<kerning first="114" second="46" amount="-2"/>
<kerning first="118" second="44" amount="-2"/>
<kerning first="118" second="46" amount="-2"/>
<kerning first="119" second="44" amount="-2"/>
<kerning first="119" second="46" amount="-2"/>
<kerning first="121" second="44" amount="-2"/>
<kerning first="121" second="46" amount="-2"/>
</kernings>
</font>

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -0,0 +1,297 @@
<font>
<info face="open-sans-32-white" size="32" bold="0" italic="0" charset="" unicode="" stretchH="100" smooth="1" aa="1" padding="2,2,2,2" spacing="0,0" outline="0"/>
<common lineHeight="36" base="29" scaleW="3233" scaleH="38" pages="1" packed="0"/>
<pages>
<page id="0" file="open-sans-32-white.png"/>
</pages>
<chars count="188">
<char id="33" x="2" y="7" width="4" height="23" xoffset="3" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="34" x="8" y="7" width="9" height="8" xoffset="1" yoffset="6" xadvance="11" page="0" chnl="15"/>
<char id="35" x="19" y="7" width="17" height="24" xoffset="0" yoffset="5" xadvance="18" page="0" chnl="15"/>
<char id="36" x="38" y="5" width="16" height="29" xoffset="1" yoffset="4" xadvance="18" page="0" chnl="15"/>
<char id="37" x="56" y="7" width="25" height="24" xoffset="2" yoffset="5" xadvance="28" page="0" chnl="15"/>
<char id="38" x="83" y="7" width="20" height="24" xoffset="1" yoffset="5" xadvance="21" page="0" chnl="15"/>
<char id="39" x="105" y="7" width="4" height="8" xoffset="1" yoffset="6" xadvance="6" page="0" chnl="15"/>
<char id="40" x="111" y="7" width="8" height="30" xoffset="2" yoffset="5" xadvance="11" page="0" chnl="15"/>
<char id="41" x="121" y="7" width="8" height="30" xoffset="2" yoffset="5" xadvance="11" page="0" chnl="15"/>
<char id="42" x="131" y="7" width="11" height="10" xoffset="1" yoffset="5" xadvance="12" page="0" chnl="15"/>
<char id="43" x="144" y="11" width="15" height="15" xoffset="2" yoffset="10" xadvance="19" page="0" chnl="15"/>
<char id="44" x="161" y="27" width="4" height="8" xoffset="3" yoffset="25" xadvance="9" page="0" chnl="15"/>
<char id="45" x="167" y="20" width="9" height="3" xoffset="1" yoffset="19" xadvance="11" page="0" chnl="15"/>
<char id="46" x="178" y="27" width="4" height="4" xoffset="3" yoffset="25" xadvance="9" page="0" chnl="15"/>
<char id="47" x="184" y="7" width="9" height="24" xoffset="0" yoffset="5" xadvance="9" page="0" chnl="15"/>
<char id="48" x="195" y="7" width="15" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="49" x="212" y="7" width="9" height="23" xoffset="3" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="50" x="223" y="7" width="16" height="23" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="51" x="241" y="7" width="15" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="52" x="258" y="7" width="16" height="23" xoffset="0" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="53" x="276" y="8" width="16" height="23" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="54" x="294" y="7" width="15" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="55" x="311" y="8" width="15" height="23" xoffset="2" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="56" x="328" y="7" width="15" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="57" x="345" y="7" width="15" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="58" x="362" y="14" width="4" height="17" xoffset="3" yoffset="12" xadvance="9" page="0" chnl="15"/>
<char id="59" x="368" y="14" width="4" height="21" xoffset="3" yoffset="12" xadvance="9" page="0" chnl="15"/>
<char id="60" x="374" y="11" width="16" height="16" xoffset="2" yoffset="10" xadvance="19" page="0" chnl="15"/>
<char id="61" x="392" y="14" width="15" height="10" xoffset="2" yoffset="13" xadvance="19" page="0" chnl="15"/>
<char id="62" x="409" y="11" width="16" height="16" xoffset="2" yoffset="10" xadvance="19" page="0" chnl="15"/>
<char id="63" x="427" y="7" width="15" height="24" xoffset="1" yoffset="5" xadvance="18" page="0" chnl="15"/>
<char id="64" x="444" y="7" width="30" height="30" xoffset="2" yoffset="5" xadvance="32" page="0" chnl="15"/>
<char id="65" x="476" y="7" width="22" height="23" xoffset="0" yoffset="6" xadvance="21" page="0" chnl="15"/>
<char id="66" x="500" y="7" width="18" height="23" xoffset="2" yoffset="6" xadvance="21" page="0" chnl="15"/>
<char id="67" x="520" y="7" width="21" height="24" xoffset="2" yoffset="5" xadvance="23" page="0" chnl="15"/>
<char id="68" x="543" y="7" width="19" height="23" xoffset="2" yoffset="6" xadvance="23" page="0" chnl="15"/>
<char id="69" x="564" y="7" width="17" height="23" xoffset="3" yoffset="6" xadvance="21" page="0" chnl="15"/>
<char id="70" x="583" y="7" width="16" height="23" xoffset="3" yoffset="6" xadvance="20" page="0" chnl="15"/>
<char id="71" x="601" y="7" width="22" height="24" xoffset="2" yoffset="5" xadvance="25" page="0" chnl="15"/>
<char id="72" x="625" y="7" width="18" height="23" xoffset="3" yoffset="6" xadvance="23" page="0" chnl="15"/>
<char id="73" x="645" y="7" width="3" height="23" xoffset="3" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="74" x="650" y="7" width="13" height="24" xoffset="1" yoffset="6" xadvance="16" page="0" chnl="15"/>
<char id="75" x="665" y="7" width="19" height="23" xoffset="2" yoffset="6" xadvance="21" page="0" chnl="15"/>
<char id="76" x="686" y="7" width="15" height="23" xoffset="2" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="77" x="703" y="7" width="22" height="23" xoffset="2" yoffset="6" xadvance="27" page="0" chnl="15"/>
<char id="78" x="727" y="7" width="18" height="23" xoffset="2" yoffset="6" xadvance="23" page="0" chnl="15"/>
<char id="79" x="747" y="7" width="22" height="24" xoffset="2" yoffset="5" xadvance="25" page="0" chnl="15"/>
<char id="80" x="771" y="7" width="18" height="23" xoffset="2" yoffset="6" xadvance="21" page="0" chnl="15"/>
<char id="81" x="791" y="7" width="23" height="25" xoffset="1" yoffset="5" xadvance="25" page="0" chnl="15"/>
<char id="82" x="816" y="7" width="20" height="23" xoffset="3" yoffset="6" xadvance="23" page="0" chnl="15"/>
<char id="83" x="838" y="7" width="19" height="24" xoffset="1" yoffset="5" xadvance="21" page="0" chnl="15"/>
<char id="84" x="859" y="7" width="19" height="23" xoffset="1" yoffset="6" xadvance="20" page="0" chnl="15"/>
<char id="85" x="880" y="7" width="18" height="24" xoffset="3" yoffset="6" xadvance="23" page="0" chnl="15"/>
<char id="86" x="900" y="7" width="21" height="23" xoffset="0" yoffset="6" xadvance="21" page="0" chnl="15"/>
<char id="87" x="923" y="7" width="30" height="23" xoffset="0" yoffset="6" xadvance="30" page="0" chnl="15"/>
<char id="88" x="955" y="7" width="21" height="23" xoffset="0" yoffset="6" xadvance="21" page="0" chnl="15"/>
<char id="89" x="978" y="7" width="21" height="23" xoffset="0" yoffset="6" xadvance="21" page="0" chnl="15"/>
<char id="90" x="1001" y="7" width="18" height="23" xoffset="1" yoffset="6" xadvance="20" page="0" chnl="15"/>
<char id="91" x="1021" y="7" width="7" height="30" xoffset="2" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="92" x="1030" y="7" width="9" height="24" xoffset="0" yoffset="5" xadvance="9" page="0" chnl="15"/>
<char id="93" x="1041" y="7" width="7" height="30" xoffset="1" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="94" x="1050" y="7" width="14" height="13" xoffset="1" yoffset="5" xadvance="15" page="0" chnl="15"/>
<char id="95" x="1066" y="35" width="19" height="2" xoffset="0" yoffset="33" xadvance="18" page="0" chnl="15"/>
<char id="97" x="1087" y="13" width="16" height="18" xoffset="1" yoffset="12" xadvance="18" page="0" chnl="15"/>
<char id="98" x="1105" y="7" width="15" height="24" xoffset="2" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="99" x="1122" y="13" width="15" height="18" xoffset="1" yoffset="12" xadvance="16" page="0" chnl="15"/>
<char id="100" x="1139" y="7" width="15" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="101" x="1156" y="13" width="16" height="18" xoffset="1" yoffset="12" xadvance="18" page="0" chnl="15"/>
<char id="102" x="1174" y="7" width="10" height="24" xoffset="0" yoffset="5" xadvance="9" page="0" chnl="15"/>
<char id="103" x="1186" y="13" width="15" height="24" xoffset="1" yoffset="12" xadvance="18" page="0" chnl="15"/>
<char id="104" x="1203" y="7" width="14" height="23" xoffset="2" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="105" x="1219" y="7" width="3" height="23" xoffset="2" yoffset="6" xadvance="7" page="0" chnl="15"/>
<char id="106" x="1224" y="7" width="7" height="30" xoffset="-1" yoffset="6" xadvance="7" page="0" chnl="15"/>
<char id="107" x="1233" y="7" width="14" height="23" xoffset="2" yoffset="6" xadvance="16" page="0" chnl="15"/>
<char id="108" x="1249" y="7" width="3" height="23" xoffset="2" yoffset="6" xadvance="7" page="0" chnl="15"/>
<char id="109" x="1254" y="13" width="23" height="17" xoffset="2" yoffset="12" xadvance="27" page="0" chnl="15"/>
<char id="110" x="1279" y="13" width="14" height="17" xoffset="2" yoffset="12" xadvance="18" page="0" chnl="15"/>
<char id="111" x="1295" y="13" width="16" height="18" xoffset="1" yoffset="12" xadvance="18" page="0" chnl="15"/>
<char id="112" x="1313" y="13" width="15" height="24" xoffset="2" yoffset="12" xadvance="18" page="0" chnl="15"/>
<char id="113" x="1330" y="13" width="15" height="24" xoffset="1" yoffset="12" xadvance="18" page="0" chnl="15"/>
<char id="114" x="1347" y="13" width="9" height="17" xoffset="2" yoffset="12" xadvance="11" page="0" chnl="15"/>
<char id="115" x="1358" y="13" width="14" height="18" xoffset="1" yoffset="12" xadvance="16" page="0" chnl="15"/>
<char id="116" x="1374" y="8" width="8" height="23" xoffset="1" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="117" x="1384" y="14" width="14" height="17" xoffset="2" yoffset="12" xadvance="18" page="0" chnl="15"/>
<char id="118" x="1400" y="14" width="16" height="17" xoffset="0" yoffset="12" xadvance="16" page="0" chnl="15"/>
<char id="119" x="1418" y="14" width="23" height="17" xoffset="0" yoffset="12" xadvance="23" page="0" chnl="15"/>
<char id="120" x="1443" y="14" width="16" height="17" xoffset="0" yoffset="12" xadvance="16" page="0" chnl="15"/>
<char id="121" x="1461" y="14" width="16" height="24" xoffset="1" yoffset="12" xadvance="16" page="0" chnl="15"/>
<char id="122" x="1479" y="14" width="15" height="17" xoffset="1" yoffset="12" xadvance="16" page="0" chnl="15"/>
<char id="123" x="1496" y="7" width="9" height="30" xoffset="1" yoffset="5" xadvance="11" page="0" chnl="15"/>
<char id="124" x="1507" y="7" width="3" height="30" xoffset="3" yoffset="5" xadvance="8" page="0" chnl="15"/>
<char id="125" x="1512" y="7" width="9" height="30" xoffset="1" yoffset="5" xadvance="11" page="0" chnl="15"/>
<char id="126" x="1523" y="16" width="16" height="5" xoffset="1" yoffset="15" xadvance="19" page="0" chnl="15"/>
<char id="161" x="1541" y="14" width="4" height="23" xoffset="4" yoffset="12" xadvance="11" page="0" chnl="15"/>
<char id="162" x="1547" y="7" width="15" height="30" xoffset="2" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="163" x="1564" y="7" width="17" height="24" xoffset="0" yoffset="5" xadvance="18" page="0" chnl="15"/>
<char id="164" x="1583" y="11" width="16" height="16" xoffset="1" yoffset="10" xadvance="18" page="0" chnl="15"/>
<char id="165" x="1601" y="7" width="18" height="23" xoffset="0" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="166" x="1621" y="7" width="3" height="30" xoffset="3" yoffset="5" xadvance="8" page="0" chnl="15"/>
<char id="167" x="1626" y="7" width="15" height="30" xoffset="1" yoffset="5" xadvance="18" page="0" chnl="15"/>
<char id="168" x="1643" y="7" width="9" height="4" xoffset="1" yoffset="6" xadvance="11" page="0" chnl="15"/>
<char id="169" x="1654" y="7" width="24" height="24" xoffset="0" yoffset="5" xadvance="24" page="0" chnl="15"/>
<char id="170" x="1680" y="7" width="11" height="12" xoffset="1" yoffset="5" xadvance="12" page="0" chnl="15"/>
<char id="171" x="1693" y="15" width="14" height="15" xoffset="2" yoffset="13" xadvance="18" page="0" chnl="15"/>
<char id="172" x="1709" y="14" width="15" height="10" xoffset="2" yoffset="13" xadvance="19" page="0" chnl="15"/>
<char id="173" x="1726" y="20" width="9" height="3" xoffset="1" yoffset="19" xadvance="11" page="0" chnl="15"/>
<char id="174" x="1737" y="7" width="24" height="24" xoffset="0" yoffset="5" xadvance="24" page="0" chnl="15"/>
<char id="175" x="1763" y="4" width="19" height="2" xoffset="0" yoffset="2" xadvance="18" page="0" chnl="15"/>
<char id="176" x="1784" y="7" width="9" height="9" xoffset="2" yoffset="5" xadvance="13" page="0" chnl="15"/>
<char id="177" x="1795" y="11" width="15" height="20" xoffset="1" yoffset="9" xadvance="18" page="0" chnl="15"/>
<char id="178" x="1812" y="7" width="10" height="12" xoffset="0" yoffset="6" xadvance="11" page="0" chnl="15"/>
<char id="179" x="1824" y="7" width="10" height="12" xoffset="1" yoffset="6" xadvance="11" page="0" chnl="15"/>
<char id="180" x="1836" y="7" width="6" height="5" xoffset="3" yoffset="6" xadvance="11" page="0" chnl="15"/>
<char id="181" x="1844" y="14" width="14" height="23" xoffset="3" yoffset="12" xadvance="18" page="0" chnl="15"/>
<char id="182" x="1860" y="7" width="18" height="30" xoffset="0" yoffset="6" xadvance="17" page="0" chnl="15"/>
<char id="183" x="1880" y="17" width="4" height="4" xoffset="4" yoffset="16" xadvance="11" page="0" chnl="15"/>
<char id="184" x="1886" y="30" width="7" height="7" xoffset="2" yoffset="28" xadvance="11" page="0" chnl="15"/>
<char id="185" x="1895" y="7" width="6" height="12" xoffset="2" yoffset="6" xadvance="11" page="0" chnl="15"/>
<char id="186" x="1903" y="7" width="11" height="12" xoffset="1" yoffset="5" xadvance="12" page="0" chnl="15"/>
<char id="187" x="1916" y="15" width="14" height="15" xoffset="2" yoffset="13" xadvance="18" page="0" chnl="15"/>
<char id="188" x="1932" y="7" width="25" height="25" xoffset="2" yoffset="5" xadvance="27" page="0" chnl="15"/>
<char id="189" x="1959" y="7" width="25" height="25" xoffset="2" yoffset="5" xadvance="27" page="0" chnl="15"/>
<char id="190" x="1986" y="7" width="26" height="25" xoffset="1" yoffset="5" xadvance="27" page="0" chnl="15"/>
<char id="191" x="2014" y="14" width="15" height="24" xoffset="2" yoffset="12" xadvance="20" page="0" chnl="15"/>
<char id="192" x="2031" y="2" width="22" height="29" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15"/>
<char id="193" x="2055" y="2" width="22" height="29" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15"/>
<char id="194" x="2079" y="2" width="22" height="29" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15"/>
<char id="195" x="2103" y="2" width="22" height="28" xoffset="0" yoffset="1" xadvance="21" page="0" chnl="15"/>
<char id="196" x="2127" y="3" width="22" height="28" xoffset="0" yoffset="1" xadvance="21" page="0" chnl="15"/>
<char id="197" x="2151" y="2" width="22" height="28" xoffset="0" yoffset="1" xadvance="21" page="0" chnl="15"/>
<char id="198" x="2175" y="7" width="31" height="23" xoffset="0" yoffset="6" xadvance="32" page="0" chnl="15"/>
<char id="199" x="2208" y="7" width="21" height="30" xoffset="2" yoffset="5" xadvance="23" page="0" chnl="15"/>
<char id="200" x="2231" y="2" width="17" height="29" xoffset="3" yoffset="0" xadvance="21" page="0" chnl="15"/>
<char id="201" x="2250" y="2" width="17" height="29" xoffset="3" yoffset="0" xadvance="21" page="0" chnl="15"/>
<char id="202" x="2269" y="2" width="17" height="29" xoffset="3" yoffset="0" xadvance="21" page="0" chnl="15"/>
<char id="203" x="2288" y="3" width="17" height="28" xoffset="3" yoffset="1" xadvance="21" page="0" chnl="15"/>
<char id="204" x="2307" y="2" width="6" height="29" xoffset="1" yoffset="0" xadvance="9" page="0" chnl="15"/>
<char id="205" x="2315" y="2" width="6" height="29" xoffset="2" yoffset="0" xadvance="9" page="0" chnl="15"/>
<char id="206" x="2323" y="2" width="10" height="29" xoffset="0" yoffset="0" xadvance="9" page="0" chnl="15"/>
<char id="207" x="2335" y="3" width="9" height="28" xoffset="0" yoffset="1" xadvance="9" page="0" chnl="15"/>
<char id="208" x="2346" y="7" width="22" height="23" xoffset="0" yoffset="6" xadvance="23" page="0" chnl="15"/>
<char id="209" x="2370" y="2" width="18" height="28" xoffset="2" yoffset="1" xadvance="23" page="0" chnl="15"/>
<char id="210" x="2390" y="2" width="22" height="29" xoffset="2" yoffset="0" xadvance="25" page="0" chnl="15"/>
<char id="211" x="2414" y="2" width="22" height="29" xoffset="2" yoffset="0" xadvance="25" page="0" chnl="15"/>
<char id="212" x="2438" y="2" width="22" height="29" xoffset="2" yoffset="0" xadvance="25" page="0" chnl="15"/>
<char id="213" x="2462" y="2" width="22" height="29" xoffset="2" yoffset="1" xadvance="25" page="0" chnl="15"/>
<char id="214" x="2486" y="3" width="22" height="28" xoffset="2" yoffset="1" xadvance="25" page="0" chnl="15"/>
<char id="215" x="2510" y="12" width="14" height="14" xoffset="3" yoffset="11" xadvance="19" page="0" chnl="15"/>
<char id="216" x="2526" y="6" width="23" height="25" xoffset="1" yoffset="5" xadvance="25" page="0" chnl="15"/>
<char id="217" x="2551" y="2" width="18" height="29" xoffset="3" yoffset="0" xadvance="23" page="0" chnl="15"/>
<char id="218" x="2571" y="2" width="18" height="29" xoffset="3" yoffset="0" xadvance="23" page="0" chnl="15"/>
<char id="219" x="2591" y="2" width="18" height="29" xoffset="3" yoffset="0" xadvance="23" page="0" chnl="15"/>
<char id="220" x="2611" y="3" width="18" height="28" xoffset="3" yoffset="1" xadvance="23" page="0" chnl="15"/>
<char id="221" x="2631" y="2" width="21" height="29" xoffset="0" yoffset="0" xadvance="21" page="0" chnl="15"/>
<char id="222" x="2654" y="7" width="18" height="23" xoffset="2" yoffset="6" xadvance="21" page="0" chnl="15"/>
<char id="223" x="2674" y="7" width="17" height="24" xoffset="2" yoffset="5" xadvance="20" page="0" chnl="15"/>
<char id="224" x="2693" y="7" width="16" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="225" x="2711" y="7" width="16" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="226" x="2729" y="7" width="16" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="227" x="2747" y="8" width="16" height="23" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="228" x="2765" y="7" width="16" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="229" x="2783" y="6" width="16" height="24" xoffset="1" yoffset="5" xadvance="18" page="0" chnl="15"/>
<char id="230" x="2801" y="13" width="26" height="18" xoffset="1" yoffset="12" xadvance="28" page="0" chnl="15"/>
<char id="231" x="2829" y="13" width="15" height="24" xoffset="1" yoffset="12" xadvance="16" page="0" chnl="15"/>
<char id="232" x="2846" y="7" width="16" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="233" x="2864" y="7" width="16" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="234" x="2882" y="7" width="16" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="235" x="2900" y="7" width="16" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="236" x="2918" y="7" width="6" height="23" xoffset="1" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="237" x="2926" y="7" width="6" height="23" xoffset="3" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="238" x="2934" y="7" width="10" height="23" xoffset="0" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="239" x="2946" y="7" width="9" height="23" xoffset="0" yoffset="6" xadvance="9" page="0" chnl="15"/>
<char id="240" x="2957" y="7" width="16" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="241" x="2975" y="8" width="14" height="23" xoffset="2" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="242" x="2991" y="7" width="16" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="243" x="3009" y="7" width="16" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="244" x="3027" y="7" width="16" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="245" x="3045" y="8" width="16" height="23" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="246" x="3063" y="7" width="16" height="24" xoffset="1" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="247" x="3081" y="13" width="15" height="13" xoffset="1" yoffset="11" xadvance="18" page="0" chnl="15"/>
<char id="248" x="3098" y="13" width="16" height="19" xoffset="2" yoffset="11" xadvance="20" page="0" chnl="15"/>
<char id="249" x="3116" y="7" width="14" height="24" xoffset="2" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="250" x="3132" y="7" width="14" height="24" xoffset="2" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="251" x="3148" y="7" width="14" height="24" xoffset="2" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="252" x="3164" y="7" width="14" height="24" xoffset="2" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="253" x="3180" y="7" width="16" height="30" xoffset="1" yoffset="6" xadvance="16" page="0" chnl="15"/>
<char id="254" x="3198" y="7" width="15" height="30" xoffset="2" yoffset="6" xadvance="18" page="0" chnl="15"/>
<char id="255" x="3215" y="7" width="16" height="30" xoffset="1" yoffset="6" xadvance="16" page="0" chnl="15"/>
<char id="32" x="0" y="0" width="0" height="0" xoffset="1" yoffset="6" xadvance="9" page="0" chnl="15"/>
</chars>
<kernings count="97">
<kerning first="32" second="65" amount="-2"/>
<kerning first="32" second="84" amount="-1"/>
<kerning first="32" second="89" amount="-1"/>
<kerning first="49" second="49" amount="-2"/>
<kerning first="65" second="32" amount="-2"/>
<kerning first="65" second="84" amount="-2"/>
<kerning first="65" second="86" amount="-2"/>
<kerning first="65" second="87" amount="-1"/>
<kerning first="65" second="89" amount="-2"/>
<kerning first="65" second="118" amount="-1"/>
<kerning first="65" second="119" amount="-1"/>
<kerning first="65" second="121" amount="-1"/>
<kerning first="70" second="44" amount="-4"/>
<kerning first="70" second="46" amount="-4"/>
<kerning first="70" second="65" amount="-2"/>
<kerning first="76" second="32" amount="-1"/>
<kerning first="76" second="84" amount="-2"/>
<kerning first="76" second="86" amount="-2"/>
<kerning first="76" second="87" amount="-2"/>
<kerning first="76" second="89" amount="-2"/>
<kerning first="76" second="121" amount="-1"/>
<kerning first="80" second="32" amount="-1"/>
<kerning first="80" second="44" amount="-4"/>
<kerning first="80" second="46" amount="-4"/>
<kerning first="80" second="65" amount="-2"/>
<kerning first="82" second="84" amount="-1"/>
<kerning first="82" second="86" amount="-1"/>
<kerning first="82" second="87" amount="-1"/>
<kerning first="82" second="89" amount="-1"/>
<kerning first="84" second="32" amount="-1"/>
<kerning first="84" second="44" amount="-4"/>
<kerning first="84" second="173" amount="-2"/>
<kerning first="84" second="46" amount="-4"/>
<kerning first="84" second="58" amount="-4"/>
<kerning first="84" second="59" amount="-4"/>
<kerning first="84" second="65" amount="-2"/>
<kerning first="84" second="79" amount="-1"/>
<kerning first="84" second="97" amount="-4"/>
<kerning first="84" second="99" amount="-4"/>
<kerning first="84" second="101" amount="-4"/>
<kerning first="84" second="105" amount="-1"/>
<kerning first="84" second="111" amount="-4"/>
<kerning first="84" second="114" amount="-1"/>
<kerning first="84" second="115" amount="-4"/>
<kerning first="84" second="117" amount="-1"/>
<kerning first="84" second="119" amount="-2"/>
<kerning first="84" second="121" amount="-2"/>
<kerning first="86" second="44" amount="-3"/>
<kerning first="86" second="173" amount="-2"/>
<kerning first="86" second="46" amount="-3"/>
<kerning first="86" second="58" amount="-1"/>
<kerning first="86" second="59" amount="-1"/>
<kerning first="86" second="65" amount="-2"/>
<kerning first="86" second="97" amount="-2"/>
<kerning first="86" second="101" amount="-2"/>
<kerning first="86" second="105" amount="-1"/>
<kerning first="86" second="111" amount="-2"/>
<kerning first="86" second="114" amount="-1"/>
<kerning first="86" second="117" amount="-1"/>
<kerning first="86" second="121" amount="-1"/>
<kerning first="87" second="44" amount="-2"/>
<kerning first="87" second="173" amount="-1"/>
<kerning first="87" second="46" amount="-2"/>
<kerning first="87" second="58" amount="-1"/>
<kerning first="87" second="59" amount="-1"/>
<kerning first="87" second="65" amount="-1"/>
<kerning first="87" second="97" amount="-1"/>
<kerning first="87" second="101" amount="-1"/>
<kerning first="87" second="105" amount="0"/>
<kerning first="87" second="111" amount="-1"/>
<kerning first="87" second="114" amount="-1"/>
<kerning first="87" second="117" amount="-1"/>
<kerning first="87" second="121" amount="0"/>
<kerning first="89" second="32" amount="-1"/>
<kerning first="89" second="44" amount="-4"/>
<kerning first="89" second="173" amount="-3"/>
<kerning first="89" second="46" amount="-4"/>
<kerning first="89" second="58" amount="-2"/>
<kerning first="89" second="59" amount="-2"/>
<kerning first="89" second="65" amount="-2"/>
<kerning first="89" second="97" amount="-2"/>
<kerning first="89" second="101" amount="-3"/>
<kerning first="89" second="105" amount="-1"/>
<kerning first="89" second="111" amount="-3"/>
<kerning first="89" second="112" amount="-2"/>
<kerning first="89" second="113" amount="-3"/>
<kerning first="89" second="117" amount="-2"/>
<kerning first="89" second="118" amount="-2"/>
<kerning first="102" second="102" amount="-1"/>
<kerning first="114" second="44" amount="-2"/>
<kerning first="114" second="46" amount="-2"/>
<kerning first="118" second="44" amount="-2"/>
<kerning first="118" second="46" amount="-2"/>
<kerning first="119" second="44" amount="-2"/>
<kerning first="119" second="46" amount="-2"/>
<kerning first="121" second="44" amount="-2"/>
<kerning first="121" second="46" amount="-2"/>
</kernings>
</font>

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

View File

@ -0,0 +1,297 @@
<font>
<info face="open-sans-64-black" size="64" bold="0" italic="0" charset="" unicode="" stretchH="100" smooth="1" aa="1" padding="2,2,2,2" spacing="0,0" outline="0"/>
<common lineHeight="72" base="58" scaleW="4093" scaleH="146" pages="1" packed="0"/>
<pages>
<page id="0" file="open-sans-64-black.png"/>
</pages>
<chars count="188">
<char id="33" x="2" y="13" width="7" height="46" xoffset="6" yoffset="12" xadvance="18" page="0" chnl="15"/>
<char id="34" x="11" y="13" width="17" height="17" xoffset="3" yoffset="12" xadvance="23" page="0" chnl="15"/>
<char id="35" x="30" y="12" width="34" height="48" xoffset="1" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="36" x="66" y="9" width="31" height="57" xoffset="2" yoffset="7" xadvance="36" page="0" chnl="15"/>
<char id="37" x="99" y="12" width="50" height="49" xoffset="4" yoffset="11" xadvance="57" page="0" chnl="15"/>
<char id="38" x="151" y="12" width="39" height="48" xoffset="3" yoffset="11" xadvance="43" page="0" chnl="15"/>
<char id="39" x="192" y="13" width="7" height="17" xoffset="3" yoffset="12" xadvance="12" page="0" chnl="15"/>
<char id="40" x="201" y="12" width="15" height="60" xoffset="4" yoffset="11" xadvance="21" page="0" chnl="15"/>
<char id="41" x="218" y="12" width="15" height="60" xoffset="4" yoffset="11" xadvance="21" page="0" chnl="15"/>
<char id="42" x="235" y="12" width="21" height="20" xoffset="2" yoffset="11" xadvance="25" page="0" chnl="15"/>
<char id="43" x="258" y="21" width="31" height="31" xoffset="4" yoffset="20" xadvance="37" page="0" chnl="15"/>
<char id="44" x="291" y="52" width="7" height="16" xoffset="5" yoffset="51" xadvance="18" page="0" chnl="15"/>
<char id="45" x="300" y="39" width="18" height="6" xoffset="2" yoffset="38" xadvance="21" page="0" chnl="15"/>
<char id="46" x="320" y="52" width="7" height="7" xoffset="6" yoffset="51" xadvance="18" page="0" chnl="15"/>
<char id="47" x="329" y="12" width="18" height="48" xoffset="0" yoffset="11" xadvance="18" page="0" chnl="15"/>
<char id="48" x="349" y="13" width="30" height="47" xoffset="3" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="49" x="381" y="13" width="17" height="46" xoffset="7" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="50" x="400" y="13" width="31" height="46" xoffset="2" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="51" x="433" y="13" width="30" height="47" xoffset="3" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="52" x="465" y="13" width="32" height="46" xoffset="1" yoffset="12" xadvance="36" page="0" chnl="15"/>
<char id="53" x="499" y="14" width="31" height="46" xoffset="3" yoffset="12" xadvance="36" page="0" chnl="15"/>
<char id="54" x="532" y="13" width="31" height="47" xoffset="2" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="55" x="565" y="14" width="30" height="46" xoffset="3" yoffset="12" xadvance="36" page="0" chnl="15"/>
<char id="56" x="597" y="13" width="31" height="47" xoffset="3" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="57" x="630" y="13" width="30" height="47" xoffset="3" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="58" x="662" y="26" width="7" height="34" xoffset="6" yoffset="24" xadvance="18" page="0" chnl="15"/>
<char id="59" x="671" y="26" width="7" height="43" xoffset="5" yoffset="24" xadvance="18" page="0" chnl="15"/>
<char id="60" x="680" y="21" width="31" height="31" xoffset="4" yoffset="19" xadvance="37" page="0" chnl="15"/>
<char id="61" x="713" y="27" width="31" height="20" xoffset="4" yoffset="25" xadvance="37" page="0" chnl="15"/>
<char id="62" x="746" y="21" width="31" height="31" xoffset="4" yoffset="19" xadvance="37" page="0" chnl="15"/>
<char id="63" x="779" y="12" width="30" height="47" xoffset="3" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="64" x="811" y="12" width="60" height="60" xoffset="3" yoffset="11" xadvance="65" page="0" chnl="15"/>
<char id="65" x="873" y="13" width="43" height="46" xoffset="0" yoffset="12" xadvance="43" page="0" chnl="15"/>
<char id="66" x="918" y="13" width="35" height="46" xoffset="5" yoffset="12" xadvance="43" page="0" chnl="15"/>
<char id="67" x="955" y="12" width="41" height="48" xoffset="3" yoffset="11" xadvance="46" page="0" chnl="15"/>
<char id="68" x="998" y="13" width="38" height="46" xoffset="5" yoffset="12" xadvance="46" page="0" chnl="15"/>
<char id="69" x="1038" y="13" width="35" height="46" xoffset="5" yoffset="12" xadvance="43" page="0" chnl="15"/>
<char id="70" x="1075" y="13" width="31" height="46" xoffset="5" yoffset="12" xadvance="39" page="0" chnl="15"/>
<char id="71" x="1108" y="12" width="43" height="48" xoffset="3" yoffset="11" xadvance="50" page="0" chnl="15"/>
<char id="72" x="1153" y="13" width="36" height="46" xoffset="5" yoffset="12" xadvance="46" page="0" chnl="15"/>
<char id="73" x="1191" y="13" width="6" height="46" xoffset="6" yoffset="12" xadvance="18" page="0" chnl="15"/>
<char id="74" x="1199" y="13" width="26" height="47" xoffset="2" yoffset="12" xadvance="32" page="0" chnl="15"/>
<char id="75" x="1227" y="13" width="38" height="46" xoffset="5" yoffset="12" xadvance="43" page="0" chnl="15"/>
<char id="76" x="1267" y="13" width="29" height="46" xoffset="5" yoffset="12" xadvance="36" page="0" chnl="15"/>
<char id="77" x="1298" y="13" width="44" height="46" xoffset="5" yoffset="12" xadvance="53" page="0" chnl="15"/>
<char id="78" x="1344" y="13" width="36" height="46" xoffset="5" yoffset="12" xadvance="46" page="0" chnl="15"/>
<char id="79" x="1382" y="12" width="44" height="48" xoffset="3" yoffset="11" xadvance="50" page="0" chnl="15"/>
<char id="80" x="1428" y="13" width="35" height="46" xoffset="5" yoffset="12" xadvance="43" page="0" chnl="15"/>
<char id="81" x="1465" y="12" width="45" height="51" xoffset="3" yoffset="11" xadvance="50" page="0" chnl="15"/>
<char id="82" x="1512" y="13" width="41" height="46" xoffset="5" yoffset="12" xadvance="46" page="0" chnl="15"/>
<char id="83" x="1555" y="12" width="37" height="48" xoffset="3" yoffset="11" xadvance="43" page="0" chnl="15"/>
<char id="84" x="1594" y="13" width="37" height="46" xoffset="2" yoffset="12" xadvance="39" page="0" chnl="15"/>
<char id="85" x="1633" y="13" width="36" height="47" xoffset="5" yoffset="12" xadvance="46" page="0" chnl="15"/>
<char id="86" x="1671" y="13" width="42" height="46" xoffset="0" yoffset="12" xadvance="43" page="0" chnl="15"/>
<char id="87" x="1715" y="13" width="59" height="46" xoffset="1" yoffset="12" xadvance="60" page="0" chnl="15"/>
<char id="88" x="1776" y="13" width="42" height="46" xoffset="0" yoffset="12" xadvance="43" page="0" chnl="15"/>
<char id="89" x="1820" y="13" width="42" height="46" xoffset="0" yoffset="12" xadvance="43" page="0" chnl="15"/>
<char id="90" x="1864" y="13" width="37" height="46" xoffset="1" yoffset="12" xadvance="39" page="0" chnl="15"/>
<char id="91" x="1903" y="13" width="13" height="59" xoffset="4" yoffset="12" xadvance="18" page="0" chnl="15"/>
<char id="92" x="1918" y="12" width="18" height="48" xoffset="0" yoffset="11" xadvance="18" page="0" chnl="15"/>
<char id="93" x="1938" y="13" width="13" height="59" xoffset="1" yoffset="12" xadvance="18" page="0" chnl="15"/>
<char id="94" x="1953" y="12" width="27" height="25" xoffset="2" yoffset="11" xadvance="30" page="0" chnl="15"/>
<char id="95" x="1982" y="68" width="38" height="4" xoffset="-1" yoffset="66" xadvance="36" page="0" chnl="15"/>
<char id="97" x="2022" y="25" width="31" height="35" xoffset="2" yoffset="23" xadvance="36" page="0" chnl="15"/>
<char id="98" x="2055" y="13" width="29" height="47" xoffset="4" yoffset="12" xadvance="36" page="0" chnl="15"/>
<char id="99" x="2086" y="25" width="29" height="35" xoffset="3" yoffset="23" xadvance="32" page="0" chnl="15"/>
<char id="100" x="2117" y="13" width="29" height="47" xoffset="2" yoffset="12" xadvance="36" page="0" chnl="15"/>
<char id="101" x="2148" y="25" width="31" height="35" xoffset="2" yoffset="23" xadvance="36" page="0" chnl="15"/>
<char id="102" x="2181" y="12" width="20" height="47" xoffset="1" yoffset="11" xadvance="18" page="0" chnl="15"/>
<char id="103" x="2203" y="25" width="30" height="48" xoffset="2" yoffset="23" xadvance="36" page="0" chnl="15"/>
<char id="104" x="2235" y="13" width="27" height="46" xoffset="4" yoffset="12" xadvance="36" page="0" chnl="15"/>
<char id="105" x="2264" y="13" width="6" height="46" xoffset="4" yoffset="12" xadvance="14" page="0" chnl="15"/>
<char id="106" x="2272" y="13" width="13" height="60" xoffset="-3" yoffset="12" xadvance="14" page="0" chnl="15"/>
<char id="107" x="2287" y="13" width="28" height="46" xoffset="4" yoffset="12" xadvance="32" page="0" chnl="15"/>
<char id="108" x="2317" y="13" width="6" height="46" xoffset="4" yoffset="12" xadvance="14" page="0" chnl="15"/>
<char id="109" x="2325" y="25" width="45" height="34" xoffset="4" yoffset="23" xadvance="53" page="0" chnl="15"/>
<char id="110" x="2372" y="25" width="27" height="34" xoffset="4" yoffset="23" xadvance="36" page="0" chnl="15"/>
<char id="111" x="2401" y="25" width="31" height="35" xoffset="2" yoffset="23" xadvance="36" page="0" chnl="15"/>
<char id="112" x="2434" y="25" width="29" height="47" xoffset="4" yoffset="23" xadvance="36" page="0" chnl="15"/>
<char id="113" x="2465" y="25" width="29" height="47" xoffset="2" yoffset="23" xadvance="36" page="0" chnl="15"/>
<char id="114" x="2496" y="25" width="18" height="34" xoffset="4" yoffset="23" xadvance="21" page="0" chnl="15"/>
<char id="115" x="2516" y="25" width="28" height="35" xoffset="2" yoffset="23" xadvance="32" page="0" chnl="15"/>
<char id="116" x="2546" y="14" width="17" height="46" xoffset="1" yoffset="13" xadvance="18" page="0" chnl="15"/>
<char id="117" x="2565" y="26" width="27" height="34" xoffset="4" yoffset="24" xadvance="36" page="0" chnl="15"/>
<char id="118" x="2594" y="26" width="31" height="34" xoffset="1" yoffset="24" xadvance="32" page="0" chnl="15"/>
<char id="119" x="2627" y="26" width="46" height="34" xoffset="0" yoffset="24" xadvance="46" page="0" chnl="15"/>
<char id="120" x="2675" y="26" width="31" height="34" xoffset="0" yoffset="24" xadvance="32" page="0" chnl="15"/>
<char id="121" x="2708" y="26" width="31" height="47" xoffset="1" yoffset="24" xadvance="32" page="0" chnl="15"/>
<char id="122" x="2741" y="26" width="30" height="34" xoffset="1" yoffset="24" xadvance="32" page="0" chnl="15"/>
<char id="123" x="2773" y="12" width="18" height="60" xoffset="2" yoffset="11" xadvance="21" page="0" chnl="15"/>
<char id="124" x="2793" y="12" width="5" height="60" xoffset="6" yoffset="11" xadvance="17" page="0" chnl="15"/>
<char id="125" x="2800" y="12" width="18" height="60" xoffset="1" yoffset="11" xadvance="21" page="0" chnl="15"/>
<char id="126" x="2820" y="31" width="32" height="11" xoffset="3" yoffset="30" xadvance="37" page="0" chnl="15"/>
<char id="161" x="2854" y="26" width="7" height="46" xoffset="7" yoffset="24" xadvance="21" page="0" chnl="15"/>
<char id="162" x="2863" y="13" width="29" height="59" xoffset="3" yoffset="12" xadvance="36" page="0" chnl="15"/>
<char id="163" x="2894" y="12" width="33" height="48" xoffset="1" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="164" x="2929" y="21" width="31" height="31" xoffset="2" yoffset="19" xadvance="36" page="0" chnl="15"/>
<char id="165" x="2962" y="13" width="36" height="46" xoffset="0" yoffset="12" xadvance="36" page="0" chnl="15"/>
<char id="166" x="3000" y="12" width="5" height="60" xoffset="6" yoffset="11" xadvance="17" page="0" chnl="15"/>
<char id="167" x="3007" y="12" width="30" height="60" xoffset="3" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="168" x="3039" y="13" width="18" height="7" xoffset="2" yoffset="11" xadvance="21" page="0" chnl="15"/>
<char id="169" x="3059" y="12" width="48" height="48" xoffset="0" yoffset="11" xadvance="47" page="0" chnl="15"/>
<char id="170" x="3109" y="12" width="21" height="24" xoffset="1" yoffset="11" xadvance="24" page="0" chnl="15"/>
<char id="171" x="3132" y="28" width="27" height="29" xoffset="4" yoffset="27" xadvance="36" page="0" chnl="15"/>
<char id="172" x="3161" y="27" width="31" height="19" xoffset="4" yoffset="25" xadvance="37" page="0" chnl="15"/>
<char id="173" x="3194" y="39" width="18" height="6" xoffset="2" yoffset="38" xadvance="21" page="0" chnl="15"/>
<char id="174" x="3214" y="12" width="48" height="48" xoffset="0" yoffset="11" xadvance="47" page="0" chnl="15"/>
<char id="175" x="3264" y="6" width="38" height="4" xoffset="-1" yoffset="4" xadvance="35" page="0" chnl="15"/>
<char id="176" x="3304" y="12" width="18" height="18" xoffset="4" yoffset="11" xadvance="26" page="0" chnl="15"/>
<char id="177" x="3324" y="20" width="31" height="39" xoffset="2" yoffset="19" xadvance="35" page="0" chnl="15"/>
<char id="178" x="3357" y="13" width="20" height="24" xoffset="1" yoffset="11" xadvance="21" page="0" chnl="15"/>
<char id="179" x="3379" y="13" width="20" height="24" xoffset="1" yoffset="11" xadvance="21" page="0" chnl="15"/>
<char id="180" x="3401" y="13" width="12" height="9" xoffset="7" yoffset="11" xadvance="21" page="0" chnl="15"/>
<char id="181" x="3415" y="26" width="27" height="46" xoffset="5" yoffset="24" xadvance="37" page="0" chnl="15"/>
<char id="182" x="3444" y="13" width="35" height="59" xoffset="0" yoffset="12" xadvance="34" page="0" chnl="15"/>
<char id="183" x="3481" y="33" width="7" height="7" xoffset="7" yoffset="31" xadvance="21" page="0" chnl="15"/>
<char id="184" x="3490" y="58" width="14" height="14" xoffset="3" yoffset="57" xadvance="21" page="0" chnl="15"/>
<char id="185" x="3506" y="13" width="12" height="24" xoffset="3" yoffset="11" xadvance="21" page="0" chnl="15"/>
<char id="186" x="3520" y="12" width="21" height="24" xoffset="1" yoffset="11" xadvance="23" page="0" chnl="15"/>
<char id="187" x="3543" y="28" width="27" height="29" xoffset="4" yoffset="27" xadvance="36" page="0" chnl="15"/>
<char id="188" x="3572" y="12" width="49" height="49" xoffset="3" yoffset="11" xadvance="53" page="0" chnl="15"/>
<char id="189" x="3623" y="12" width="49" height="49" xoffset="3" yoffset="11" xadvance="53" page="0" chnl="15"/>
<char id="190" x="3674" y="12" width="52" height="49" xoffset="1" yoffset="11" xadvance="53" page="0" chnl="15"/>
<char id="191" x="3728" y="26" width="30" height="47" xoffset="5" yoffset="24" xadvance="39" page="0" chnl="15"/>
<char id="192" x="3760" y="2" width="43" height="58" xoffset="0" yoffset="0" xadvance="43" page="0" chnl="15"/>
<char id="193" x="3805" y="2" width="43" height="58" xoffset="0" yoffset="0" xadvance="43" page="0" chnl="15"/>
<char id="194" x="3850" y="2" width="43" height="58" xoffset="0" yoffset="0" xadvance="43" page="0" chnl="15"/>
<char id="195" x="3895" y="3" width="43" height="56" xoffset="0" yoffset="2" xadvance="43" page="0" chnl="15"/>
<char id="196" x="3940" y="4" width="43" height="55" xoffset="0" yoffset="2" xadvance="43" page="0" chnl="15"/>
<char id="197" x="3985" y="3" width="43" height="56" xoffset="0" yoffset="2" xadvance="43" page="0" chnl="15"/>
<char id="198" x="4030" y="13" width="61" height="46" xoffset="0" yoffset="12" xadvance="64" page="0" chnl="15"/>
<char id="199" x="2" y="85" width="41" height="60" xoffset="3" yoffset="11" xadvance="46" page="0" chnl="15"/>
<char id="200" x="45" y="75" width="35" height="58" xoffset="5" yoffset="0" xadvance="43" page="0" chnl="15"/>
<char id="201" x="82" y="75" width="35" height="58" xoffset="5" yoffset="0" xadvance="43" page="0" chnl="15"/>
<char id="202" x="119" y="75" width="35" height="58" xoffset="5" yoffset="0" xadvance="43" page="0" chnl="15"/>
<char id="203" x="156" y="77" width="35" height="55" xoffset="5" yoffset="2" xadvance="43" page="0" chnl="15"/>
<char id="204" x="193" y="75" width="12" height="58" xoffset="2" yoffset="0" xadvance="18" page="0" chnl="15"/>
<char id="205" x="207" y="75" width="12" height="58" xoffset="4" yoffset="0" xadvance="18" page="0" chnl="15"/>
<char id="206" x="221" y="75" width="20" height="58" xoffset="-1" yoffset="0" xadvance="18" page="0" chnl="15"/>
<char id="207" x="243" y="77" width="18" height="55" xoffset="0" yoffset="2" xadvance="18" page="0" chnl="15"/>
<char id="208" x="263" y="86" width="43" height="46" xoffset="0" yoffset="12" xadvance="46" page="0" chnl="15"/>
<char id="209" x="308" y="76" width="36" height="56" xoffset="5" yoffset="2" xadvance="46" page="0" chnl="15"/>
<char id="210" x="346" y="75" width="44" height="59" xoffset="3" yoffset="0" xadvance="50" page="0" chnl="15"/>
<char id="211" x="392" y="75" width="44" height="59" xoffset="3" yoffset="0" xadvance="50" page="0" chnl="15"/>
<char id="212" x="438" y="75" width="44" height="59" xoffset="3" yoffset="0" xadvance="50" page="0" chnl="15"/>
<char id="213" x="484" y="76" width="44" height="57" xoffset="3" yoffset="2" xadvance="50" page="0" chnl="15"/>
<char id="214" x="530" y="77" width="44" height="56" xoffset="3" yoffset="2" xadvance="50" page="0" chnl="15"/>
<char id="215" x="576" y="96" width="28" height="28" xoffset="5" yoffset="21" xadvance="37" page="0" chnl="15"/>
<char id="216" x="606" y="84" width="45" height="50" xoffset="3" yoffset="10" xadvance="50" page="0" chnl="15"/>
<char id="217" x="653" y="75" width="36" height="59" xoffset="5" yoffset="0" xadvance="46" page="0" chnl="15"/>
<char id="218" x="691" y="75" width="36" height="59" xoffset="5" yoffset="0" xadvance="46" page="0" chnl="15"/>
<char id="219" x="729" y="75" width="36" height="59" xoffset="5" yoffset="0" xadvance="46" page="0" chnl="15"/>
<char id="220" x="767" y="77" width="36" height="56" xoffset="5" yoffset="2" xadvance="46" page="0" chnl="15"/>
<char id="221" x="805" y="75" width="42" height="58" xoffset="0" yoffset="0" xadvance="43" page="0" chnl="15"/>
<char id="222" x="849" y="86" width="35" height="46" xoffset="5" yoffset="12" xadvance="43" page="0" chnl="15"/>
<char id="223" x="886" y="85" width="33" height="48" xoffset="5" yoffset="11" xadvance="39" page="0" chnl="15"/>
<char id="224" x="921" y="86" width="31" height="47" xoffset="2" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="225" x="954" y="86" width="31" height="47" xoffset="2" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="226" x="987" y="86" width="31" height="47" xoffset="2" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="227" x="1020" y="87" width="31" height="46" xoffset="2" yoffset="12" xadvance="36" page="0" chnl="15"/>
<char id="228" x="1053" y="86" width="31" height="47" xoffset="2" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="229" x="1086" y="84" width="31" height="49" xoffset="2" yoffset="10" xadvance="36" page="0" chnl="15"/>
<char id="230" x="1119" y="98" width="53" height="35" xoffset="2" yoffset="23" xadvance="57" page="0" chnl="15"/>
<char id="231" x="1174" y="98" width="29" height="47" xoffset="3" yoffset="23" xadvance="32" page="0" chnl="15"/>
<char id="232" x="1205" y="86" width="31" height="47" xoffset="2" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="233" x="1238" y="86" width="31" height="47" xoffset="2" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="234" x="1271" y="86" width="31" height="47" xoffset="2" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="235" x="1304" y="86" width="31" height="47" xoffset="2" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="236" x="1337" y="86" width="12" height="46" xoffset="1" yoffset="11" xadvance="18" page="0" chnl="15"/>
<char id="237" x="1351" y="86" width="12" height="46" xoffset="6" yoffset="11" xadvance="18" page="0" chnl="15"/>
<char id="238" x="1365" y="86" width="20" height="46" xoffset="-1" yoffset="11" xadvance="18" page="0" chnl="15"/>
<char id="239" x="1387" y="86" width="18" height="46" xoffset="0" yoffset="11" xadvance="18" page="0" chnl="15"/>
<char id="240" x="1407" y="86" width="31" height="47" xoffset="2" yoffset="12" xadvance="36" page="0" chnl="15"/>
<char id="241" x="1440" y="87" width="27" height="46" xoffset="4" yoffset="12" xadvance="36" page="0" chnl="15"/>
<char id="242" x="1469" y="86" width="31" height="47" xoffset="2" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="243" x="1502" y="86" width="31" height="47" xoffset="2" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="244" x="1535" y="86" width="31" height="47" xoffset="2" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="245" x="1568" y="87" width="31" height="46" xoffset="2" yoffset="12" xadvance="36" page="0" chnl="15"/>
<char id="246" x="1601" y="86" width="31" height="47" xoffset="2" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="247" x="1634" y="97" width="31" height="26" xoffset="2" yoffset="22" xadvance="35" page="0" chnl="15"/>
<char id="248" x="1667" y="97" width="31" height="38" xoffset="4" yoffset="22" xadvance="39" page="0" chnl="15"/>
<char id="249" x="1700" y="86" width="27" height="47" xoffset="4" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="250" x="1729" y="86" width="27" height="47" xoffset="4" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="251" x="1758" y="86" width="27" height="47" xoffset="4" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="252" x="1787" y="86" width="27" height="47" xoffset="4" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="253" x="1816" y="86" width="31" height="60" xoffset="1" yoffset="11" xadvance="32" page="0" chnl="15"/>
<char id="254" x="1849" y="86" width="29" height="59" xoffset="4" yoffset="12" xadvance="36" page="0" chnl="15"/>
<char id="255" x="1880" y="86" width="31" height="60" xoffset="1" yoffset="11" xadvance="32" page="0" chnl="15"/>
<char id="32" x="0" y="0" width="0" height="0" xoffset="1" yoffset="11" xadvance="18" page="0" chnl="15"/>
</chars>
<kernings count="97">
<kerning first="32" second="65" amount="-4"/>
<kerning first="32" second="84" amount="-1"/>
<kerning first="32" second="89" amount="-1"/>
<kerning first="49" second="49" amount="-5"/>
<kerning first="65" second="32" amount="-4"/>
<kerning first="65" second="84" amount="-5"/>
<kerning first="65" second="86" amount="-5"/>
<kerning first="65" second="87" amount="-2"/>
<kerning first="65" second="89" amount="-5"/>
<kerning first="65" second="118" amount="-1"/>
<kerning first="65" second="119" amount="-1"/>
<kerning first="65" second="121" amount="-1"/>
<kerning first="70" second="44" amount="-7"/>
<kerning first="70" second="46" amount="-7"/>
<kerning first="70" second="65" amount="-4"/>
<kerning first="76" second="32" amount="-2"/>
<kerning first="76" second="84" amount="-5"/>
<kerning first="76" second="86" amount="-5"/>
<kerning first="76" second="87" amount="-5"/>
<kerning first="76" second="89" amount="-5"/>
<kerning first="76" second="121" amount="-2"/>
<kerning first="80" second="32" amount="-1"/>
<kerning first="80" second="44" amount="-8"/>
<kerning first="80" second="46" amount="-8"/>
<kerning first="80" second="65" amount="-5"/>
<kerning first="82" second="84" amount="-1"/>
<kerning first="82" second="86" amount="-1"/>
<kerning first="82" second="87" amount="-1"/>
<kerning first="82" second="89" amount="-1"/>
<kerning first="84" second="32" amount="-1"/>
<kerning first="84" second="44" amount="-7"/>
<kerning first="84" second="173" amount="-4"/>
<kerning first="84" second="46" amount="-7"/>
<kerning first="84" second="58" amount="-7"/>
<kerning first="84" second="59" amount="-7"/>
<kerning first="84" second="65" amount="-5"/>
<kerning first="84" second="79" amount="-1"/>
<kerning first="84" second="97" amount="-7"/>
<kerning first="84" second="99" amount="-7"/>
<kerning first="84" second="101" amount="-7"/>
<kerning first="84" second="105" amount="-2"/>
<kerning first="84" second="111" amount="-7"/>
<kerning first="84" second="114" amount="-2"/>
<kerning first="84" second="115" amount="-7"/>
<kerning first="84" second="117" amount="-2"/>
<kerning first="84" second="119" amount="-4"/>
<kerning first="84" second="121" amount="-4"/>
<kerning first="86" second="44" amount="-6"/>
<kerning first="86" second="173" amount="-4"/>
<kerning first="86" second="46" amount="-6"/>
<kerning first="86" second="58" amount="-2"/>
<kerning first="86" second="59" amount="-2"/>
<kerning first="86" second="65" amount="-5"/>
<kerning first="86" second="97" amount="-5"/>
<kerning first="86" second="101" amount="-4"/>
<kerning first="86" second="105" amount="-1"/>
<kerning first="86" second="111" amount="-4"/>
<kerning first="86" second="114" amount="-2"/>
<kerning first="86" second="117" amount="-2"/>
<kerning first="86" second="121" amount="-2"/>
<kerning first="87" second="44" amount="-4"/>
<kerning first="87" second="173" amount="-1"/>
<kerning first="87" second="46" amount="-4"/>
<kerning first="87" second="58" amount="-1"/>
<kerning first="87" second="59" amount="-1"/>
<kerning first="87" second="65" amount="-2"/>
<kerning first="87" second="97" amount="-2"/>
<kerning first="87" second="101" amount="-1"/>
<kerning first="87" second="105" amount="0"/>
<kerning first="87" second="111" amount="-1"/>
<kerning first="87" second="114" amount="-1"/>
<kerning first="87" second="117" amount="-1"/>
<kerning first="87" second="121" amount="-1"/>
<kerning first="89" second="32" amount="-1"/>
<kerning first="89" second="44" amount="-8"/>
<kerning first="89" second="173" amount="-6"/>
<kerning first="89" second="46" amount="-8"/>
<kerning first="89" second="58" amount="-4"/>
<kerning first="89" second="59" amount="-4"/>
<kerning first="89" second="65" amount="-5"/>
<kerning first="89" second="97" amount="-5"/>
<kerning first="89" second="101" amount="-6"/>
<kerning first="89" second="105" amount="-2"/>
<kerning first="89" second="111" amount="-6"/>
<kerning first="89" second="112" amount="-5"/>
<kerning first="89" second="113" amount="-6"/>
<kerning first="89" second="117" amount="-4"/>
<kerning first="89" second="118" amount="-4"/>
<kerning first="102" second="102" amount="-1"/>
<kerning first="114" second="44" amount="-4"/>
<kerning first="114" second="46" amount="-4"/>
<kerning first="118" second="44" amount="-5"/>
<kerning first="118" second="46" amount="-5"/>
<kerning first="119" second="44" amount="-4"/>
<kerning first="119" second="46" amount="-4"/>
<kerning first="121" second="44" amount="-5"/>
<kerning first="121" second="46" amount="-5"/>
</kernings>
</font>

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

View File

@ -0,0 +1,297 @@
<font>
<info face="open-sans-64-white" size="64" bold="0" italic="0" charset="" unicode="" stretchH="100" smooth="1" aa="1" padding="2,2,2,2" spacing="0,0" outline="0"/>
<common lineHeight="72" base="58" scaleW="4093" scaleH="146" pages="1" packed="0"/>
<pages>
<page id="0" file="open-sans-64-white.png"/>
</pages>
<chars count="188">
<char id="33" x="2" y="13" width="7" height="46" xoffset="6" yoffset="12" xadvance="18" page="0" chnl="15"/>
<char id="34" x="11" y="13" width="17" height="17" xoffset="3" yoffset="12" xadvance="23" page="0" chnl="15"/>
<char id="35" x="30" y="12" width="34" height="48" xoffset="1" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="36" x="66" y="9" width="31" height="57" xoffset="2" yoffset="7" xadvance="36" page="0" chnl="15"/>
<char id="37" x="99" y="12" width="50" height="49" xoffset="4" yoffset="11" xadvance="57" page="0" chnl="15"/>
<char id="38" x="151" y="12" width="39" height="48" xoffset="3" yoffset="11" xadvance="43" page="0" chnl="15"/>
<char id="39" x="192" y="13" width="7" height="17" xoffset="3" yoffset="12" xadvance="12" page="0" chnl="15"/>
<char id="40" x="201" y="12" width="15" height="60" xoffset="4" yoffset="11" xadvance="21" page="0" chnl="15"/>
<char id="41" x="218" y="12" width="15" height="60" xoffset="4" yoffset="11" xadvance="21" page="0" chnl="15"/>
<char id="42" x="235" y="12" width="21" height="20" xoffset="2" yoffset="11" xadvance="25" page="0" chnl="15"/>
<char id="43" x="258" y="21" width="31" height="31" xoffset="4" yoffset="20" xadvance="37" page="0" chnl="15"/>
<char id="44" x="291" y="52" width="7" height="16" xoffset="5" yoffset="51" xadvance="18" page="0" chnl="15"/>
<char id="45" x="300" y="39" width="18" height="6" xoffset="2" yoffset="38" xadvance="21" page="0" chnl="15"/>
<char id="46" x="320" y="52" width="7" height="7" xoffset="6" yoffset="51" xadvance="18" page="0" chnl="15"/>
<char id="47" x="329" y="12" width="18" height="48" xoffset="0" yoffset="11" xadvance="18" page="0" chnl="15"/>
<char id="48" x="349" y="13" width="30" height="47" xoffset="3" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="49" x="381" y="13" width="17" height="46" xoffset="7" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="50" x="400" y="13" width="31" height="46" xoffset="2" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="51" x="433" y="13" width="30" height="47" xoffset="3" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="52" x="465" y="13" width="32" height="46" xoffset="1" yoffset="12" xadvance="36" page="0" chnl="15"/>
<char id="53" x="499" y="14" width="31" height="46" xoffset="3" yoffset="12" xadvance="36" page="0" chnl="15"/>
<char id="54" x="532" y="13" width="31" height="47" xoffset="2" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="55" x="565" y="14" width="30" height="46" xoffset="3" yoffset="12" xadvance="36" page="0" chnl="15"/>
<char id="56" x="597" y="13" width="31" height="47" xoffset="3" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="57" x="630" y="13" width="30" height="47" xoffset="3" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="58" x="662" y="26" width="7" height="34" xoffset="6" yoffset="24" xadvance="18" page="0" chnl="15"/>
<char id="59" x="671" y="26" width="7" height="43" xoffset="5" yoffset="24" xadvance="18" page="0" chnl="15"/>
<char id="60" x="680" y="21" width="31" height="31" xoffset="4" yoffset="19" xadvance="37" page="0" chnl="15"/>
<char id="61" x="713" y="27" width="31" height="20" xoffset="4" yoffset="25" xadvance="37" page="0" chnl="15"/>
<char id="62" x="746" y="21" width="31" height="31" xoffset="4" yoffset="19" xadvance="37" page="0" chnl="15"/>
<char id="63" x="779" y="12" width="30" height="47" xoffset="3" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="64" x="811" y="12" width="60" height="60" xoffset="3" yoffset="11" xadvance="65" page="0" chnl="15"/>
<char id="65" x="873" y="13" width="43" height="46" xoffset="0" yoffset="12" xadvance="43" page="0" chnl="15"/>
<char id="66" x="918" y="13" width="35" height="46" xoffset="5" yoffset="12" xadvance="43" page="0" chnl="15"/>
<char id="67" x="955" y="12" width="41" height="48" xoffset="3" yoffset="11" xadvance="46" page="0" chnl="15"/>
<char id="68" x="998" y="13" width="38" height="46" xoffset="5" yoffset="12" xadvance="46" page="0" chnl="15"/>
<char id="69" x="1038" y="13" width="35" height="46" xoffset="5" yoffset="12" xadvance="43" page="0" chnl="15"/>
<char id="70" x="1075" y="13" width="31" height="46" xoffset="5" yoffset="12" xadvance="39" page="0" chnl="15"/>
<char id="71" x="1108" y="12" width="43" height="48" xoffset="3" yoffset="11" xadvance="50" page="0" chnl="15"/>
<char id="72" x="1153" y="13" width="36" height="46" xoffset="5" yoffset="12" xadvance="46" page="0" chnl="15"/>
<char id="73" x="1191" y="13" width="6" height="46" xoffset="6" yoffset="12" xadvance="18" page="0" chnl="15"/>
<char id="74" x="1199" y="13" width="26" height="47" xoffset="2" yoffset="12" xadvance="32" page="0" chnl="15"/>
<char id="75" x="1227" y="13" width="38" height="46" xoffset="5" yoffset="12" xadvance="43" page="0" chnl="15"/>
<char id="76" x="1267" y="13" width="29" height="46" xoffset="5" yoffset="12" xadvance="36" page="0" chnl="15"/>
<char id="77" x="1298" y="13" width="44" height="46" xoffset="5" yoffset="12" xadvance="53" page="0" chnl="15"/>
<char id="78" x="1344" y="13" width="36" height="46" xoffset="5" yoffset="12" xadvance="46" page="0" chnl="15"/>
<char id="79" x="1382" y="12" width="44" height="48" xoffset="3" yoffset="11" xadvance="50" page="0" chnl="15"/>
<char id="80" x="1428" y="13" width="35" height="46" xoffset="5" yoffset="12" xadvance="43" page="0" chnl="15"/>
<char id="81" x="1465" y="12" width="45" height="51" xoffset="3" yoffset="11" xadvance="50" page="0" chnl="15"/>
<char id="82" x="1512" y="13" width="41" height="46" xoffset="5" yoffset="12" xadvance="46" page="0" chnl="15"/>
<char id="83" x="1555" y="12" width="37" height="48" xoffset="3" yoffset="11" xadvance="43" page="0" chnl="15"/>
<char id="84" x="1594" y="13" width="37" height="46" xoffset="2" yoffset="12" xadvance="39" page="0" chnl="15"/>
<char id="85" x="1633" y="13" width="36" height="47" xoffset="5" yoffset="12" xadvance="46" page="0" chnl="15"/>
<char id="86" x="1671" y="13" width="42" height="46" xoffset="0" yoffset="12" xadvance="43" page="0" chnl="15"/>
<char id="87" x="1715" y="13" width="59" height="46" xoffset="1" yoffset="12" xadvance="60" page="0" chnl="15"/>
<char id="88" x="1776" y="13" width="42" height="46" xoffset="0" yoffset="12" xadvance="43" page="0" chnl="15"/>
<char id="89" x="1820" y="13" width="42" height="46" xoffset="0" yoffset="12" xadvance="43" page="0" chnl="15"/>
<char id="90" x="1864" y="13" width="37" height="46" xoffset="1" yoffset="12" xadvance="39" page="0" chnl="15"/>
<char id="91" x="1903" y="13" width="13" height="59" xoffset="4" yoffset="12" xadvance="18" page="0" chnl="15"/>
<char id="92" x="1918" y="12" width="18" height="48" xoffset="0" yoffset="11" xadvance="18" page="0" chnl="15"/>
<char id="93" x="1938" y="13" width="13" height="59" xoffset="1" yoffset="12" xadvance="18" page="0" chnl="15"/>
<char id="94" x="1953" y="12" width="27" height="25" xoffset="2" yoffset="11" xadvance="30" page="0" chnl="15"/>
<char id="95" x="1982" y="68" width="38" height="4" xoffset="-1" yoffset="66" xadvance="36" page="0" chnl="15"/>
<char id="97" x="2022" y="25" width="31" height="35" xoffset="2" yoffset="23" xadvance="36" page="0" chnl="15"/>
<char id="98" x="2055" y="13" width="29" height="47" xoffset="4" yoffset="12" xadvance="36" page="0" chnl="15"/>
<char id="99" x="2086" y="25" width="29" height="35" xoffset="3" yoffset="23" xadvance="32" page="0" chnl="15"/>
<char id="100" x="2117" y="13" width="29" height="47" xoffset="2" yoffset="12" xadvance="36" page="0" chnl="15"/>
<char id="101" x="2148" y="25" width="31" height="35" xoffset="2" yoffset="23" xadvance="36" page="0" chnl="15"/>
<char id="102" x="2181" y="12" width="20" height="47" xoffset="1" yoffset="11" xadvance="18" page="0" chnl="15"/>
<char id="103" x="2203" y="25" width="30" height="48" xoffset="2" yoffset="23" xadvance="36" page="0" chnl="15"/>
<char id="104" x="2235" y="13" width="27" height="46" xoffset="4" yoffset="12" xadvance="36" page="0" chnl="15"/>
<char id="105" x="2264" y="13" width="6" height="46" xoffset="4" yoffset="12" xadvance="14" page="0" chnl="15"/>
<char id="106" x="2272" y="13" width="13" height="60" xoffset="-3" yoffset="12" xadvance="14" page="0" chnl="15"/>
<char id="107" x="2287" y="13" width="28" height="46" xoffset="4" yoffset="12" xadvance="32" page="0" chnl="15"/>
<char id="108" x="2317" y="13" width="6" height="46" xoffset="4" yoffset="12" xadvance="14" page="0" chnl="15"/>
<char id="109" x="2325" y="25" width="45" height="34" xoffset="4" yoffset="23" xadvance="53" page="0" chnl="15"/>
<char id="110" x="2372" y="25" width="27" height="34" xoffset="4" yoffset="23" xadvance="36" page="0" chnl="15"/>
<char id="111" x="2401" y="25" width="31" height="35" xoffset="2" yoffset="23" xadvance="36" page="0" chnl="15"/>
<char id="112" x="2434" y="25" width="29" height="47" xoffset="4" yoffset="23" xadvance="36" page="0" chnl="15"/>
<char id="113" x="2465" y="25" width="29" height="47" xoffset="2" yoffset="23" xadvance="36" page="0" chnl="15"/>
<char id="114" x="2496" y="25" width="18" height="34" xoffset="4" yoffset="23" xadvance="21" page="0" chnl="15"/>
<char id="115" x="2516" y="25" width="28" height="35" xoffset="2" yoffset="23" xadvance="32" page="0" chnl="15"/>
<char id="116" x="2546" y="14" width="17" height="46" xoffset="1" yoffset="13" xadvance="18" page="0" chnl="15"/>
<char id="117" x="2565" y="26" width="27" height="34" xoffset="4" yoffset="24" xadvance="36" page="0" chnl="15"/>
<char id="118" x="2594" y="26" width="31" height="34" xoffset="1" yoffset="24" xadvance="32" page="0" chnl="15"/>
<char id="119" x="2627" y="26" width="46" height="34" xoffset="0" yoffset="24" xadvance="46" page="0" chnl="15"/>
<char id="120" x="2675" y="26" width="31" height="34" xoffset="0" yoffset="24" xadvance="32" page="0" chnl="15"/>
<char id="121" x="2708" y="26" width="31" height="47" xoffset="1" yoffset="24" xadvance="32" page="0" chnl="15"/>
<char id="122" x="2741" y="26" width="30" height="34" xoffset="1" yoffset="24" xadvance="32" page="0" chnl="15"/>
<char id="123" x="2773" y="12" width="18" height="60" xoffset="2" yoffset="11" xadvance="21" page="0" chnl="15"/>
<char id="124" x="2793" y="12" width="5" height="60" xoffset="6" yoffset="11" xadvance="17" page="0" chnl="15"/>
<char id="125" x="2800" y="12" width="18" height="60" xoffset="1" yoffset="11" xadvance="21" page="0" chnl="15"/>
<char id="126" x="2820" y="31" width="32" height="11" xoffset="3" yoffset="30" xadvance="37" page="0" chnl="15"/>
<char id="161" x="2854" y="26" width="7" height="46" xoffset="7" yoffset="24" xadvance="21" page="0" chnl="15"/>
<char id="162" x="2863" y="13" width="29" height="59" xoffset="3" yoffset="12" xadvance="36" page="0" chnl="15"/>
<char id="163" x="2894" y="12" width="33" height="48" xoffset="1" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="164" x="2929" y="21" width="31" height="31" xoffset="2" yoffset="19" xadvance="36" page="0" chnl="15"/>
<char id="165" x="2962" y="13" width="36" height="46" xoffset="0" yoffset="12" xadvance="36" page="0" chnl="15"/>
<char id="166" x="3000" y="12" width="5" height="60" xoffset="6" yoffset="11" xadvance="17" page="0" chnl="15"/>
<char id="167" x="3007" y="12" width="30" height="60" xoffset="3" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="168" x="3039" y="13" width="18" height="7" xoffset="2" yoffset="11" xadvance="21" page="0" chnl="15"/>
<char id="169" x="3059" y="12" width="48" height="48" xoffset="0" yoffset="11" xadvance="47" page="0" chnl="15"/>
<char id="170" x="3109" y="12" width="21" height="24" xoffset="1" yoffset="11" xadvance="24" page="0" chnl="15"/>
<char id="171" x="3132" y="28" width="27" height="29" xoffset="4" yoffset="27" xadvance="36" page="0" chnl="15"/>
<char id="172" x="3161" y="27" width="31" height="19" xoffset="4" yoffset="25" xadvance="37" page="0" chnl="15"/>
<char id="173" x="3194" y="39" width="18" height="6" xoffset="2" yoffset="38" xadvance="21" page="0" chnl="15"/>
<char id="174" x="3214" y="12" width="48" height="48" xoffset="0" yoffset="11" xadvance="47" page="0" chnl="15"/>
<char id="175" x="3264" y="6" width="38" height="4" xoffset="-1" yoffset="4" xadvance="35" page="0" chnl="15"/>
<char id="176" x="3304" y="12" width="18" height="18" xoffset="4" yoffset="11" xadvance="26" page="0" chnl="15"/>
<char id="177" x="3324" y="20" width="31" height="39" xoffset="2" yoffset="19" xadvance="35" page="0" chnl="15"/>
<char id="178" x="3357" y="13" width="20" height="24" xoffset="1" yoffset="11" xadvance="21" page="0" chnl="15"/>
<char id="179" x="3379" y="13" width="20" height="24" xoffset="1" yoffset="11" xadvance="21" page="0" chnl="15"/>
<char id="180" x="3401" y="13" width="12" height="9" xoffset="7" yoffset="11" xadvance="21" page="0" chnl="15"/>
<char id="181" x="3415" y="26" width="27" height="46" xoffset="5" yoffset="24" xadvance="37" page="0" chnl="15"/>
<char id="182" x="3444" y="13" width="35" height="59" xoffset="0" yoffset="12" xadvance="34" page="0" chnl="15"/>
<char id="183" x="3481" y="33" width="7" height="7" xoffset="7" yoffset="31" xadvance="21" page="0" chnl="15"/>
<char id="184" x="3490" y="58" width="14" height="14" xoffset="3" yoffset="57" xadvance="21" page="0" chnl="15"/>
<char id="185" x="3506" y="13" width="12" height="24" xoffset="3" yoffset="11" xadvance="21" page="0" chnl="15"/>
<char id="186" x="3520" y="12" width="21" height="24" xoffset="1" yoffset="11" xadvance="23" page="0" chnl="15"/>
<char id="187" x="3543" y="28" width="27" height="29" xoffset="4" yoffset="27" xadvance="36" page="0" chnl="15"/>
<char id="188" x="3572" y="12" width="49" height="49" xoffset="3" yoffset="11" xadvance="53" page="0" chnl="15"/>
<char id="189" x="3623" y="12" width="49" height="49" xoffset="3" yoffset="11" xadvance="53" page="0" chnl="15"/>
<char id="190" x="3674" y="12" width="52" height="49" xoffset="1" yoffset="11" xadvance="53" page="0" chnl="15"/>
<char id="191" x="3728" y="26" width="30" height="47" xoffset="5" yoffset="24" xadvance="39" page="0" chnl="15"/>
<char id="192" x="3760" y="2" width="43" height="58" xoffset="0" yoffset="0" xadvance="43" page="0" chnl="15"/>
<char id="193" x="3805" y="2" width="43" height="58" xoffset="0" yoffset="0" xadvance="43" page="0" chnl="15"/>
<char id="194" x="3850" y="2" width="43" height="58" xoffset="0" yoffset="0" xadvance="43" page="0" chnl="15"/>
<char id="195" x="3895" y="3" width="43" height="56" xoffset="0" yoffset="2" xadvance="43" page="0" chnl="15"/>
<char id="196" x="3940" y="4" width="43" height="55" xoffset="0" yoffset="2" xadvance="43" page="0" chnl="15"/>
<char id="197" x="3985" y="3" width="43" height="56" xoffset="0" yoffset="2" xadvance="43" page="0" chnl="15"/>
<char id="198" x="4030" y="13" width="61" height="46" xoffset="0" yoffset="12" xadvance="64" page="0" chnl="15"/>
<char id="199" x="2" y="85" width="41" height="60" xoffset="3" yoffset="11" xadvance="46" page="0" chnl="15"/>
<char id="200" x="45" y="75" width="35" height="58" xoffset="5" yoffset="0" xadvance="43" page="0" chnl="15"/>
<char id="201" x="82" y="75" width="35" height="58" xoffset="5" yoffset="0" xadvance="43" page="0" chnl="15"/>
<char id="202" x="119" y="75" width="35" height="58" xoffset="5" yoffset="0" xadvance="43" page="0" chnl="15"/>
<char id="203" x="156" y="77" width="35" height="55" xoffset="5" yoffset="2" xadvance="43" page="0" chnl="15"/>
<char id="204" x="193" y="75" width="12" height="58" xoffset="2" yoffset="0" xadvance="18" page="0" chnl="15"/>
<char id="205" x="207" y="75" width="12" height="58" xoffset="4" yoffset="0" xadvance="18" page="0" chnl="15"/>
<char id="206" x="221" y="75" width="20" height="58" xoffset="-1" yoffset="0" xadvance="18" page="0" chnl="15"/>
<char id="207" x="243" y="77" width="18" height="55" xoffset="0" yoffset="2" xadvance="18" page="0" chnl="15"/>
<char id="208" x="263" y="86" width="43" height="46" xoffset="0" yoffset="12" xadvance="46" page="0" chnl="15"/>
<char id="209" x="308" y="76" width="36" height="56" xoffset="5" yoffset="2" xadvance="46" page="0" chnl="15"/>
<char id="210" x="346" y="75" width="44" height="59" xoffset="3" yoffset="0" xadvance="50" page="0" chnl="15"/>
<char id="211" x="392" y="75" width="44" height="59" xoffset="3" yoffset="0" xadvance="50" page="0" chnl="15"/>
<char id="212" x="438" y="75" width="44" height="59" xoffset="3" yoffset="0" xadvance="50" page="0" chnl="15"/>
<char id="213" x="484" y="76" width="44" height="57" xoffset="3" yoffset="2" xadvance="50" page="0" chnl="15"/>
<char id="214" x="530" y="77" width="44" height="56" xoffset="3" yoffset="2" xadvance="50" page="0" chnl="15"/>
<char id="215" x="576" y="96" width="28" height="28" xoffset="5" yoffset="21" xadvance="37" page="0" chnl="15"/>
<char id="216" x="606" y="84" width="45" height="50" xoffset="3" yoffset="10" xadvance="50" page="0" chnl="15"/>
<char id="217" x="653" y="75" width="36" height="59" xoffset="5" yoffset="0" xadvance="46" page="0" chnl="15"/>
<char id="218" x="691" y="75" width="36" height="59" xoffset="5" yoffset="0" xadvance="46" page="0" chnl="15"/>
<char id="219" x="729" y="75" width="36" height="59" xoffset="5" yoffset="0" xadvance="46" page="0" chnl="15"/>
<char id="220" x="767" y="77" width="36" height="56" xoffset="5" yoffset="2" xadvance="46" page="0" chnl="15"/>
<char id="221" x="805" y="75" width="42" height="58" xoffset="0" yoffset="0" xadvance="43" page="0" chnl="15"/>
<char id="222" x="849" y="86" width="35" height="46" xoffset="5" yoffset="12" xadvance="43" page="0" chnl="15"/>
<char id="223" x="886" y="85" width="33" height="48" xoffset="5" yoffset="11" xadvance="39" page="0" chnl="15"/>
<char id="224" x="921" y="86" width="31" height="47" xoffset="2" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="225" x="954" y="86" width="31" height="47" xoffset="2" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="226" x="987" y="86" width="31" height="47" xoffset="2" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="227" x="1020" y="87" width="31" height="46" xoffset="2" yoffset="12" xadvance="36" page="0" chnl="15"/>
<char id="228" x="1053" y="86" width="31" height="47" xoffset="2" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="229" x="1086" y="84" width="31" height="49" xoffset="2" yoffset="10" xadvance="36" page="0" chnl="15"/>
<char id="230" x="1119" y="98" width="53" height="35" xoffset="2" yoffset="23" xadvance="57" page="0" chnl="15"/>
<char id="231" x="1174" y="98" width="29" height="47" xoffset="3" yoffset="23" xadvance="32" page="0" chnl="15"/>
<char id="232" x="1205" y="86" width="31" height="47" xoffset="2" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="233" x="1238" y="86" width="31" height="47" xoffset="2" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="234" x="1271" y="86" width="31" height="47" xoffset="2" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="235" x="1304" y="86" width="31" height="47" xoffset="2" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="236" x="1337" y="86" width="12" height="46" xoffset="1" yoffset="11" xadvance="18" page="0" chnl="15"/>
<char id="237" x="1351" y="86" width="12" height="46" xoffset="6" yoffset="11" xadvance="18" page="0" chnl="15"/>
<char id="238" x="1365" y="86" width="20" height="46" xoffset="-1" yoffset="11" xadvance="18" page="0" chnl="15"/>
<char id="239" x="1387" y="86" width="18" height="46" xoffset="0" yoffset="11" xadvance="18" page="0" chnl="15"/>
<char id="240" x="1407" y="86" width="31" height="47" xoffset="2" yoffset="12" xadvance="36" page="0" chnl="15"/>
<char id="241" x="1440" y="87" width="27" height="46" xoffset="4" yoffset="12" xadvance="36" page="0" chnl="15"/>
<char id="242" x="1469" y="86" width="31" height="47" xoffset="2" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="243" x="1502" y="86" width="31" height="47" xoffset="2" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="244" x="1535" y="86" width="31" height="47" xoffset="2" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="245" x="1568" y="87" width="31" height="46" xoffset="2" yoffset="12" xadvance="36" page="0" chnl="15"/>
<char id="246" x="1601" y="86" width="31" height="47" xoffset="2" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="247" x="1634" y="97" width="31" height="26" xoffset="2" yoffset="22" xadvance="35" page="0" chnl="15"/>
<char id="248" x="1667" y="97" width="31" height="38" xoffset="4" yoffset="22" xadvance="39" page="0" chnl="15"/>
<char id="249" x="1700" y="86" width="27" height="47" xoffset="4" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="250" x="1729" y="86" width="27" height="47" xoffset="4" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="251" x="1758" y="86" width="27" height="47" xoffset="4" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="252" x="1787" y="86" width="27" height="47" xoffset="4" yoffset="11" xadvance="36" page="0" chnl="15"/>
<char id="253" x="1816" y="86" width="31" height="60" xoffset="1" yoffset="11" xadvance="32" page="0" chnl="15"/>
<char id="254" x="1849" y="86" width="29" height="59" xoffset="4" yoffset="12" xadvance="36" page="0" chnl="15"/>
<char id="255" x="1880" y="86" width="31" height="60" xoffset="1" yoffset="11" xadvance="32" page="0" chnl="15"/>
<char id="32" x="0" y="0" width="0" height="0" xoffset="1" yoffset="11" xadvance="18" page="0" chnl="15"/>
</chars>
<kernings count="97">
<kerning first="32" second="65" amount="-4"/>
<kerning first="32" second="84" amount="-1"/>
<kerning first="32" second="89" amount="-1"/>
<kerning first="49" second="49" amount="-5"/>
<kerning first="65" second="32" amount="-4"/>
<kerning first="65" second="84" amount="-5"/>
<kerning first="65" second="86" amount="-5"/>
<kerning first="65" second="87" amount="-2"/>
<kerning first="65" second="89" amount="-5"/>
<kerning first="65" second="118" amount="-1"/>
<kerning first="65" second="119" amount="-1"/>
<kerning first="65" second="121" amount="-1"/>
<kerning first="70" second="44" amount="-7"/>
<kerning first="70" second="46" amount="-7"/>
<kerning first="70" second="65" amount="-4"/>
<kerning first="76" second="32" amount="-2"/>
<kerning first="76" second="84" amount="-5"/>
<kerning first="76" second="86" amount="-5"/>
<kerning first="76" second="87" amount="-5"/>
<kerning first="76" second="89" amount="-5"/>
<kerning first="76" second="121" amount="-2"/>
<kerning first="80" second="32" amount="-1"/>
<kerning first="80" second="44" amount="-8"/>
<kerning first="80" second="46" amount="-8"/>
<kerning first="80" second="65" amount="-5"/>
<kerning first="82" second="84" amount="-1"/>
<kerning first="82" second="86" amount="-1"/>
<kerning first="82" second="87" amount="-1"/>
<kerning first="82" second="89" amount="-1"/>
<kerning first="84" second="32" amount="-1"/>
<kerning first="84" second="44" amount="-7"/>
<kerning first="84" second="173" amount="-4"/>
<kerning first="84" second="46" amount="-7"/>
<kerning first="84" second="58" amount="-7"/>
<kerning first="84" second="59" amount="-7"/>
<kerning first="84" second="65" amount="-5"/>
<kerning first="84" second="79" amount="-1"/>
<kerning first="84" second="97" amount="-7"/>
<kerning first="84" second="99" amount="-7"/>
<kerning first="84" second="101" amount="-7"/>
<kerning first="84" second="105" amount="-2"/>
<kerning first="84" second="111" amount="-7"/>
<kerning first="84" second="114" amount="-2"/>
<kerning first="84" second="115" amount="-7"/>
<kerning first="84" second="117" amount="-2"/>
<kerning first="84" second="119" amount="-4"/>
<kerning first="84" second="121" amount="-4"/>
<kerning first="86" second="44" amount="-6"/>
<kerning first="86" second="173" amount="-4"/>
<kerning first="86" second="46" amount="-6"/>
<kerning first="86" second="58" amount="-2"/>
<kerning first="86" second="59" amount="-2"/>
<kerning first="86" second="65" amount="-5"/>
<kerning first="86" second="97" amount="-5"/>
<kerning first="86" second="101" amount="-4"/>
<kerning first="86" second="105" amount="-1"/>
<kerning first="86" second="111" amount="-4"/>
<kerning first="86" second="114" amount="-2"/>
<kerning first="86" second="117" amount="-2"/>
<kerning first="86" second="121" amount="-2"/>
<kerning first="87" second="44" amount="-4"/>
<kerning first="87" second="173" amount="-1"/>
<kerning first="87" second="46" amount="-4"/>
<kerning first="87" second="58" amount="-1"/>
<kerning first="87" second="59" amount="-1"/>
<kerning first="87" second="65" amount="-2"/>
<kerning first="87" second="97" amount="-2"/>
<kerning first="87" second="101" amount="-1"/>
<kerning first="87" second="105" amount="0"/>
<kerning first="87" second="111" amount="-1"/>
<kerning first="87" second="114" amount="-1"/>
<kerning first="87" second="117" amount="-1"/>
<kerning first="87" second="121" amount="-1"/>
<kerning first="89" second="32" amount="-1"/>
<kerning first="89" second="44" amount="-8"/>
<kerning first="89" second="173" amount="-6"/>
<kerning first="89" second="46" amount="-8"/>
<kerning first="89" second="58" amount="-4"/>
<kerning first="89" second="59" amount="-4"/>
<kerning first="89" second="65" amount="-5"/>
<kerning first="89" second="97" amount="-5"/>
<kerning first="89" second="101" amount="-6"/>
<kerning first="89" second="105" amount="-2"/>
<kerning first="89" second="111" amount="-6"/>
<kerning first="89" second="112" amount="-5"/>
<kerning first="89" second="113" amount="-6"/>
<kerning first="89" second="117" amount="-4"/>
<kerning first="89" second="118" amount="-4"/>
<kerning first="102" second="102" amount="-1"/>
<kerning first="114" second="44" amount="-4"/>
<kerning first="114" second="46" amount="-4"/>
<kerning first="118" second="44" amount="-5"/>
<kerning first="118" second="46" amount="-5"/>
<kerning first="119" second="44" amount="-4"/>
<kerning first="119" second="46" amount="-4"/>
<kerning first="121" second="44" amount="-5"/>
<kerning first="121" second="46" amount="-5"/>
</kernings>
</font>

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

View File

@ -0,0 +1,297 @@
<font>
<info face="open-sans-8-black" size="8" bold="0" italic="0" charset="" unicode="" stretchH="100" smooth="1" aa="1" padding="2,2,2,2" spacing="0,0" outline="0"/>
<common lineHeight="9" base="7" scaleW="1148" scaleH="11" pages="1" packed="0"/>
<pages>
<page id="0" file="open-sans-8-black.png"/>
</pages>
<chars count="188">
<char id="33" x="2" y="3" width="1" height="6" xoffset="1" yoffset="1" xadvance="2" page="0" chnl="15"/>
<char id="34" x="5" y="3" width="2" height="2" xoffset="0" yoffset="1" xadvance="3" page="0" chnl="15"/>
<char id="35" x="9" y="3" width="5" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="36" x="16" y="2" width="4" height="7" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="37" x="22" y="3" width="7" height="6" xoffset="0" yoffset="1" xadvance="7" page="0" chnl="15"/>
<char id="38" x="31" y="3" width="5" height="6" xoffset="0" yoffset="1" xadvance="5" page="0" chnl="15"/>
<char id="39" x="38" y="3" width="1" height="2" xoffset="0" yoffset="1" xadvance="2" page="0" chnl="15"/>
<char id="40" x="41" y="3" width="2" height="8" xoffset="0" yoffset="1" xadvance="3" page="0" chnl="15"/>
<char id="41" x="45" y="3" width="2" height="8" xoffset="0" yoffset="1" xadvance="3" page="0" chnl="15"/>
<char id="42" x="49" y="3" width="3" height="3" xoffset="0" yoffset="1" xadvance="3" page="0" chnl="15"/>
<char id="43" x="54" y="4" width="4" height="4" xoffset="0" yoffset="2" xadvance="5" page="0" chnl="15"/>
<char id="44" x="60" y="8" width="1" height="2" xoffset="1" yoffset="6" xadvance="2" page="0" chnl="15"/>
<char id="45" x="63" y="6" width="3" height="1" xoffset="0" yoffset="5" xadvance="3" page="0" chnl="15"/>
<char id="46" x="68" y="8" width="1" height="1" xoffset="1" yoffset="6" xadvance="2" page="0" chnl="15"/>
<char id="47" x="71" y="3" width="3" height="6" xoffset="0" yoffset="1" xadvance="2" page="0" chnl="15"/>
<char id="48" x="76" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="49" x="82" y="3" width="2" height="6" xoffset="1" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="50" x="86" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="51" x="92" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="52" x="98" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="53" x="104" y="3" width="4" height="6" xoffset="0" yoffset="2" xadvance="4" page="0" chnl="15"/>
<char id="54" x="110" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="55" x="116" y="3" width="4" height="6" xoffset="0" yoffset="2" xadvance="4" page="0" chnl="15"/>
<char id="56" x="122" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="57" x="128" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="58" x="134" y="5" width="1" height="4" xoffset="1" yoffset="3" xadvance="2" page="0" chnl="15"/>
<char id="59" x="137" y="5" width="1" height="6" xoffset="1" yoffset="3" xadvance="2" page="0" chnl="15"/>
<char id="60" x="140" y="4" width="4" height="4" xoffset="0" yoffset="2" xadvance="5" page="0" chnl="15"/>
<char id="61" x="146" y="5" width="4" height="3" xoffset="0" yoffset="3" xadvance="5" page="0" chnl="15"/>
<char id="62" x="152" y="4" width="4" height="4" xoffset="0" yoffset="2" xadvance="5" page="0" chnl="15"/>
<char id="63" x="158" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="64" x="164" y="3" width="8" height="8" xoffset="0" yoffset="1" xadvance="8" page="0" chnl="15"/>
<char id="65" x="174" y="3" width="6" height="6" xoffset="0" yoffset="1" xadvance="5" page="0" chnl="15"/>
<char id="66" x="182" y="3" width="5" height="6" xoffset="1" yoffset="1" xadvance="5" page="0" chnl="15"/>
<char id="67" x="189" y="3" width="5" height="6" xoffset="0" yoffset="1" xadvance="6" page="0" chnl="15"/>
<char id="68" x="196" y="3" width="5" height="6" xoffset="1" yoffset="1" xadvance="6" page="0" chnl="15"/>
<char id="69" x="203" y="3" width="5" height="6" xoffset="1" yoffset="1" xadvance="5" page="0" chnl="15"/>
<char id="70" x="210" y="3" width="4" height="6" xoffset="1" yoffset="1" xadvance="5" page="0" chnl="15"/>
<char id="71" x="216" y="3" width="6" height="6" xoffset="0" yoffset="1" xadvance="6" page="0" chnl="15"/>
<char id="72" x="224" y="3" width="5" height="6" xoffset="1" yoffset="1" xadvance="6" page="0" chnl="15"/>
<char id="73" x="231" y="3" width="1" height="6" xoffset="1" yoffset="1" xadvance="2" page="0" chnl="15"/>
<char id="74" x="234" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="75" x="240" y="3" width="5" height="6" xoffset="1" yoffset="1" xadvance="5" page="0" chnl="15"/>
<char id="76" x="247" y="3" width="4" height="6" xoffset="1" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="77" x="253" y="3" width="6" height="6" xoffset="1" yoffset="1" xadvance="7" page="0" chnl="15"/>
<char id="78" x="261" y="3" width="5" height="6" xoffset="1" yoffset="1" xadvance="6" page="0" chnl="15"/>
<char id="79" x="268" y="3" width="6" height="6" xoffset="0" yoffset="1" xadvance="6" page="0" chnl="15"/>
<char id="80" x="276" y="3" width="5" height="6" xoffset="1" yoffset="1" xadvance="5" page="0" chnl="15"/>
<char id="81" x="283" y="3" width="6" height="7" xoffset="0" yoffset="1" xadvance="6" page="0" chnl="15"/>
<char id="82" x="291" y="3" width="5" height="6" xoffset="1" yoffset="1" xadvance="6" page="0" chnl="15"/>
<char id="83" x="298" y="3" width="5" height="6" xoffset="0" yoffset="1" xadvance="5" page="0" chnl="15"/>
<char id="84" x="305" y="3" width="5" height="6" xoffset="0" yoffset="1" xadvance="5" page="0" chnl="15"/>
<char id="85" x="312" y="3" width="5" height="6" xoffset="1" yoffset="1" xadvance="6" page="0" chnl="15"/>
<char id="86" x="319" y="3" width="6" height="6" xoffset="0" yoffset="1" xadvance="5" page="0" chnl="15"/>
<char id="87" x="327" y="3" width="8" height="6" xoffset="0" yoffset="1" xadvance="8" page="0" chnl="15"/>
<char id="88" x="337" y="3" width="5" height="6" xoffset="0" yoffset="1" xadvance="5" page="0" chnl="15"/>
<char id="89" x="344" y="3" width="6" height="6" xoffset="0" yoffset="1" xadvance="5" page="0" chnl="15"/>
<char id="90" x="352" y="3" width="5" height="6" xoffset="0" yoffset="1" xadvance="5" page="0" chnl="15"/>
<char id="91" x="359" y="3" width="2" height="8" xoffset="1" yoffset="1" xadvance="2" page="0" chnl="15"/>
<char id="92" x="363" y="3" width="3" height="6" xoffset="0" yoffset="1" xadvance="2" page="0" chnl="15"/>
<char id="93" x="368" y="3" width="2" height="8" xoffset="0" yoffset="1" xadvance="2" page="0" chnl="15"/>
<char id="94" x="372" y="3" width="4" height="3" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="95" x="378" y="10" width="5" height="1" xoffset="0" yoffset="8" xadvance="4" page="0" chnl="15"/>
<char id="97" x="385" y="4" width="4" height="5" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="98" x="391" y="3" width="4" height="6" xoffset="1" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="99" x="397" y="4" width="4" height="5" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="100" x="403" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="101" x="409" y="4" width="4" height="5" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="102" x="415" y="3" width="3" height="6" xoffset="0" yoffset="1" xadvance="2" page="0" chnl="15"/>
<char id="103" x="420" y="4" width="4" height="6" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="104" x="426" y="3" width="4" height="6" xoffset="1" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="105" x="432" y="3" width="1" height="6" xoffset="1" yoffset="1" xadvance="2" page="0" chnl="15"/>
<char id="106" x="435" y="3" width="2" height="8" xoffset="0" yoffset="1" xadvance="2" page="0" chnl="15"/>
<char id="107" x="439" y="3" width="4" height="6" xoffset="1" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="108" x="445" y="3" width="1" height="6" xoffset="1" yoffset="1" xadvance="2" page="0" chnl="15"/>
<char id="109" x="448" y="4" width="6" height="5" xoffset="1" yoffset="3" xadvance="7" page="0" chnl="15"/>
<char id="110" x="456" y="4" width="4" height="5" xoffset="1" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="111" x="462" y="4" width="4" height="5" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="112" x="468" y="4" width="4" height="6" xoffset="1" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="113" x="474" y="4" width="4" height="6" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="114" x="480" y="4" width="3" height="5" xoffset="1" yoffset="3" xadvance="3" page="0" chnl="15"/>
<char id="115" x="485" y="4" width="4" height="5" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="116" x="491" y="3" width="2" height="6" xoffset="0" yoffset="2" xadvance="2" page="0" chnl="15"/>
<char id="117" x="495" y="5" width="4" height="5" xoffset="1" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="118" x="501" y="5" width="4" height="4" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="119" x="507" y="5" width="6" height="4" xoffset="0" yoffset="3" xadvance="6" page="0" chnl="15"/>
<char id="120" x="515" y="5" width="4" height="4" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="121" x="521" y="5" width="4" height="6" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="122" x="527" y="5" width="4" height="4" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="123" x="533" y="3" width="3" height="8" xoffset="0" yoffset="1" xadvance="3" page="0" chnl="15"/>
<char id="124" x="538" y="3" width="1" height="8" xoffset="1" yoffset="1" xadvance="2" page="0" chnl="15"/>
<char id="125" x="541" y="3" width="3" height="8" xoffset="0" yoffset="1" xadvance="3" page="0" chnl="15"/>
<char id="126" x="546" y="5" width="4" height="2" xoffset="0" yoffset="4" xadvance="5" page="0" chnl="15"/>
<char id="161" x="552" y="5" width="1" height="6" xoffset="1" yoffset="3" xadvance="3" page="0" chnl="15"/>
<char id="162" x="555" y="3" width="4" height="8" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="163" x="561" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="164" x="567" y="4" width="4" height="4" xoffset="0" yoffset="2" xadvance="4" page="0" chnl="15"/>
<char id="165" x="573" y="3" width="5" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="166" x="580" y="3" width="1" height="8" xoffset="1" yoffset="1" xadvance="2" page="0" chnl="15"/>
<char id="167" x="583" y="3" width="4" height="8" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="168" x="589" y="3" width="3" height="1" xoffset="0" yoffset="1" xadvance="3" page="0" chnl="15"/>
<char id="169" x="594" y="3" width="6" height="6" xoffset="0" yoffset="1" xadvance="6" page="0" chnl="15"/>
<char id="170" x="602" y="3" width="3" height="3" xoffset="0" yoffset="1" xadvance="3" page="0" chnl="15"/>
<char id="171" x="607" y="5" width="4" height="4" xoffset="1" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="172" x="613" y="5" width="4" height="3" xoffset="0" yoffset="3" xadvance="5" page="0" chnl="15"/>
<char id="173" x="619" y="6" width="3" height="1" xoffset="0" yoffset="5" xadvance="3" page="0" chnl="15"/>
<char id="174" x="624" y="3" width="6" height="6" xoffset="0" yoffset="1" xadvance="6" page="0" chnl="15"/>
<char id="175" x="632" y="2" width="5" height="1" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="176" x="639" y="3" width="3" height="3" xoffset="1" yoffset="1" xadvance="3" page="0" chnl="15"/>
<char id="177" x="644" y="4" width="4" height="5" xoffset="0" yoffset="2" xadvance="4" page="0" chnl="15"/>
<char id="178" x="650" y="3" width="3" height="3" xoffset="0" yoffset="1" xadvance="3" page="0" chnl="15"/>
<char id="179" x="655" y="3" width="3" height="3" xoffset="0" yoffset="1" xadvance="3" page="0" chnl="15"/>
<char id="180" x="660" y="3" width="2" height="1" xoffset="1" yoffset="1" xadvance="3" page="0" chnl="15"/>
<char id="181" x="664" y="5" width="4" height="6" xoffset="1" yoffset="3" xadvance="5" page="0" chnl="15"/>
<char id="182" x="670" y="3" width="5" height="8" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="183" x="677" y="5" width="1" height="1" xoffset="1" yoffset="4" xadvance="3" page="0" chnl="15"/>
<char id="184" x="680" y="9" width="2" height="2" xoffset="0" yoffset="7" xadvance="3" page="0" chnl="15"/>
<char id="185" x="684" y="3" width="2" height="3" xoffset="0" yoffset="1" xadvance="3" page="0" chnl="15"/>
<char id="186" x="688" y="3" width="3" height="3" xoffset="0" yoffset="1" xadvance="3" page="0" chnl="15"/>
<char id="187" x="693" y="5" width="4" height="4" xoffset="1" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="188" x="699" y="3" width="6" height="6" xoffset="0" yoffset="1" xadvance="7" page="0" chnl="15"/>
<char id="189" x="707" y="3" width="6" height="6" xoffset="0" yoffset="1" xadvance="7" page="0" chnl="15"/>
<char id="190" x="715" y="3" width="7" height="6" xoffset="0" yoffset="1" xadvance="7" page="0" chnl="15"/>
<char id="191" x="724" y="5" width="4" height="6" xoffset="1" yoffset="3" xadvance="5" page="0" chnl="15"/>
<char id="192" x="730" y="2" width="6" height="8" xoffset="0" yoffset="0" xadvance="5" page="0" chnl="15"/>
<char id="193" x="738" y="2" width="6" height="8" xoffset="0" yoffset="0" xadvance="5" page="0" chnl="15"/>
<char id="194" x="746" y="2" width="6" height="8" xoffset="0" yoffset="0" xadvance="5" page="0" chnl="15"/>
<char id="195" x="754" y="2" width="6" height="7" xoffset="0" yoffset="0" xadvance="5" page="0" chnl="15"/>
<char id="196" x="762" y="2" width="6" height="7" xoffset="0" yoffset="0" xadvance="5" page="0" chnl="15"/>
<char id="197" x="770" y="2" width="6" height="7" xoffset="0" yoffset="0" xadvance="5" page="0" chnl="15"/>
<char id="198" x="778" y="3" width="8" height="6" xoffset="0" yoffset="1" xadvance="8" page="0" chnl="15"/>
<char id="199" x="788" y="3" width="5" height="8" xoffset="0" yoffset="1" xadvance="6" page="0" chnl="15"/>
<char id="200" x="795" y="2" width="5" height="8" xoffset="1" yoffset="0" xadvance="5" page="0" chnl="15"/>
<char id="201" x="802" y="2" width="5" height="8" xoffset="1" yoffset="0" xadvance="5" page="0" chnl="15"/>
<char id="202" x="809" y="2" width="5" height="8" xoffset="1" yoffset="0" xadvance="5" page="0" chnl="15"/>
<char id="203" x="816" y="2" width="5" height="7" xoffset="1" yoffset="0" xadvance="5" page="0" chnl="15"/>
<char id="204" x="823" y="2" width="2" height="8" xoffset="0" yoffset="0" xadvance="2" page="0" chnl="15"/>
<char id="205" x="827" y="2" width="2" height="8" xoffset="1" yoffset="0" xadvance="2" page="0" chnl="15"/>
<char id="206" x="831" y="2" width="3" height="8" xoffset="0" yoffset="0" xadvance="2" page="0" chnl="15"/>
<char id="207" x="836" y="2" width="3" height="7" xoffset="0" yoffset="0" xadvance="2" page="0" chnl="15"/>
<char id="208" x="841" y="3" width="6" height="6" xoffset="0" yoffset="1" xadvance="6" page="0" chnl="15"/>
<char id="209" x="849" y="2" width="5" height="7" xoffset="1" yoffset="0" xadvance="6" page="0" chnl="15"/>
<char id="210" x="856" y="2" width="6" height="8" xoffset="0" yoffset="0" xadvance="6" page="0" chnl="15"/>
<char id="211" x="864" y="2" width="6" height="8" xoffset="0" yoffset="0" xadvance="6" page="0" chnl="15"/>
<char id="212" x="872" y="2" width="6" height="8" xoffset="0" yoffset="0" xadvance="6" page="0" chnl="15"/>
<char id="213" x="880" y="2" width="6" height="7" xoffset="0" yoffset="0" xadvance="6" page="0" chnl="15"/>
<char id="214" x="888" y="2" width="6" height="7" xoffset="0" yoffset="0" xadvance="6" page="0" chnl="15"/>
<char id="215" x="896" y="4" width="4" height="4" xoffset="1" yoffset="3" xadvance="5" page="0" chnl="15"/>
<char id="216" x="902" y="3" width="6" height="7" xoffset="0" yoffset="1" xadvance="6" page="0" chnl="15"/>
<char id="217" x="910" y="2" width="5" height="8" xoffset="1" yoffset="0" xadvance="6" page="0" chnl="15"/>
<char id="218" x="917" y="2" width="5" height="8" xoffset="1" yoffset="0" xadvance="6" page="0" chnl="15"/>
<char id="219" x="924" y="2" width="5" height="8" xoffset="1" yoffset="0" xadvance="6" page="0" chnl="15"/>
<char id="220" x="931" y="2" width="5" height="7" xoffset="1" yoffset="0" xadvance="6" page="0" chnl="15"/>
<char id="221" x="938" y="2" width="6" height="8" xoffset="0" yoffset="0" xadvance="5" page="0" chnl="15"/>
<char id="222" x="946" y="3" width="5" height="6" xoffset="1" yoffset="1" xadvance="5" page="0" chnl="15"/>
<char id="223" x="953" y="3" width="4" height="6" xoffset="1" yoffset="1" xadvance="5" page="0" chnl="15"/>
<char id="224" x="959" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="225" x="965" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="226" x="971" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="227" x="977" y="3" width="4" height="6" xoffset="0" yoffset="2" xadvance="4" page="0" chnl="15"/>
<char id="228" x="983" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="229" x="989" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="230" x="995" y="4" width="7" height="5" xoffset="0" yoffset="3" xadvance="7" page="0" chnl="15"/>
<char id="231" x="1004" y="4" width="4" height="6" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="232" x="1010" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="233" x="1016" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="234" x="1022" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="235" x="1028" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="236" x="1034" y="3" width="2" height="6" xoffset="0" yoffset="1" xadvance="2" page="0" chnl="15"/>
<char id="237" x="1038" y="3" width="2" height="6" xoffset="1" yoffset="1" xadvance="2" page="0" chnl="15"/>
<char id="238" x="1042" y="3" width="3" height="6" xoffset="0" yoffset="1" xadvance="2" page="0" chnl="15"/>
<char id="239" x="1047" y="3" width="3" height="6" xoffset="0" yoffset="1" xadvance="2" page="0" chnl="15"/>
<char id="240" x="1052" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="241" x="1058" y="3" width="4" height="6" xoffset="1" yoffset="2" xadvance="4" page="0" chnl="15"/>
<char id="242" x="1064" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="243" x="1070" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="244" x="1076" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="245" x="1082" y="3" width="4" height="6" xoffset="0" yoffset="2" xadvance="4" page="0" chnl="15"/>
<char id="246" x="1088" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="247" x="1094" y="4" width="4" height="4" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="248" x="1100" y="4" width="4" height="5" xoffset="1" yoffset="3" xadvance="5" page="0" chnl="15"/>
<char id="249" x="1106" y="3" width="4" height="6" xoffset="1" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="250" x="1112" y="3" width="4" height="6" xoffset="1" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="251" x="1118" y="3" width="4" height="6" xoffset="1" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="252" x="1124" y="3" width="4" height="6" xoffset="1" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="253" x="1130" y="3" width="4" height="8" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="254" x="1136" y="3" width="4" height="8" xoffset="1" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="255" x="1142" y="3" width="4" height="8" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="32" x="0" y="0" width="0" height="0" xoffset="0" yoffset="1" xadvance="2" page="0" chnl="15"/>
</chars>
<kernings count="97">
<kerning first="32" second="65" amount="0"/>
<kerning first="32" second="84" amount="0"/>
<kerning first="32" second="89" amount="0"/>
<kerning first="49" second="49" amount="-1"/>
<kerning first="65" second="32" amount="0"/>
<kerning first="65" second="84" amount="-1"/>
<kerning first="65" second="86" amount="-1"/>
<kerning first="65" second="87" amount="0"/>
<kerning first="65" second="89" amount="-1"/>
<kerning first="65" second="118" amount="0"/>
<kerning first="65" second="119" amount="0"/>
<kerning first="65" second="121" amount="0"/>
<kerning first="70" second="44" amount="-1"/>
<kerning first="70" second="46" amount="-1"/>
<kerning first="70" second="65" amount="0"/>
<kerning first="76" second="32" amount="0"/>
<kerning first="76" second="84" amount="-1"/>
<kerning first="76" second="86" amount="-1"/>
<kerning first="76" second="87" amount="-1"/>
<kerning first="76" second="89" amount="-1"/>
<kerning first="76" second="121" amount="0"/>
<kerning first="80" second="32" amount="0"/>
<kerning first="80" second="44" amount="-1"/>
<kerning first="80" second="46" amount="-1"/>
<kerning first="80" second="65" amount="-1"/>
<kerning first="82" second="84" amount="0"/>
<kerning first="82" second="86" amount="0"/>
<kerning first="82" second="87" amount="0"/>
<kerning first="82" second="89" amount="0"/>
<kerning first="84" second="32" amount="0"/>
<kerning first="84" second="44" amount="-1"/>
<kerning first="84" second="173" amount="0"/>
<kerning first="84" second="46" amount="-1"/>
<kerning first="84" second="58" amount="-1"/>
<kerning first="84" second="59" amount="-1"/>
<kerning first="84" second="65" amount="-1"/>
<kerning first="84" second="79" amount="0"/>
<kerning first="84" second="97" amount="-1"/>
<kerning first="84" second="99" amount="-1"/>
<kerning first="84" second="101" amount="-1"/>
<kerning first="84" second="105" amount="0"/>
<kerning first="84" second="111" amount="-1"/>
<kerning first="84" second="114" amount="0"/>
<kerning first="84" second="115" amount="-1"/>
<kerning first="84" second="117" amount="0"/>
<kerning first="84" second="119" amount="0"/>
<kerning first="84" second="121" amount="0"/>
<kerning first="86" second="44" amount="-1"/>
<kerning first="86" second="173" amount="0"/>
<kerning first="86" second="46" amount="-1"/>
<kerning first="86" second="58" amount="0"/>
<kerning first="86" second="59" amount="0"/>
<kerning first="86" second="65" amount="-1"/>
<kerning first="86" second="97" amount="-1"/>
<kerning first="86" second="101" amount="0"/>
<kerning first="86" second="105" amount="0"/>
<kerning first="86" second="111" amount="0"/>
<kerning first="86" second="114" amount="0"/>
<kerning first="86" second="117" amount="0"/>
<kerning first="86" second="121" amount="0"/>
<kerning first="87" second="44" amount="0"/>
<kerning first="87" second="173" amount="0"/>
<kerning first="87" second="46" amount="0"/>
<kerning first="87" second="58" amount="0"/>
<kerning first="87" second="59" amount="0"/>
<kerning first="87" second="65" amount="0"/>
<kerning first="87" second="97" amount="0"/>
<kerning first="87" second="101" amount="0"/>
<kerning first="87" second="105" amount="0"/>
<kerning first="87" second="111" amount="0"/>
<kerning first="87" second="114" amount="0"/>
<kerning first="87" second="117" amount="0"/>
<kerning first="87" second="121" amount="0"/>
<kerning first="89" second="32" amount="0"/>
<kerning first="89" second="44" amount="-1"/>
<kerning first="89" second="173" amount="-1"/>
<kerning first="89" second="46" amount="-1"/>
<kerning first="89" second="58" amount="0"/>
<kerning first="89" second="59" amount="-1"/>
<kerning first="89" second="65" amount="-1"/>
<kerning first="89" second="97" amount="-1"/>
<kerning first="89" second="101" amount="-1"/>
<kerning first="89" second="105" amount="0"/>
<kerning first="89" second="111" amount="-1"/>
<kerning first="89" second="112" amount="-1"/>
<kerning first="89" second="113" amount="-1"/>
<kerning first="89" second="117" amount="0"/>
<kerning first="89" second="118" amount="0"/>
<kerning first="102" second="102" amount="0"/>
<kerning first="114" second="44" amount="0"/>
<kerning first="114" second="46" amount="0"/>
<kerning first="118" second="44" amount="-1"/>
<kerning first="118" second="46" amount="-1"/>
<kerning first="119" second="44" amount="0"/>
<kerning first="119" second="46" amount="0"/>
<kerning first="121" second="44" amount="-1"/>
<kerning first="121" second="46" amount="-1"/>
</kernings>
</font>

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@ -0,0 +1,297 @@
<font>
<info face="open-sans-8-white" size="8" bold="0" italic="0" charset="" unicode="" stretchH="100" smooth="1" aa="1" padding="2,2,2,2" spacing="0,0" outline="0"/>
<common lineHeight="9" base="7" scaleW="1148" scaleH="11" pages="1" packed="0"/>
<pages>
<page id="0" file="open-sans-8-white.png"/>
</pages>
<chars count="188">
<char id="33" x="2" y="3" width="1" height="6" xoffset="1" yoffset="1" xadvance="2" page="0" chnl="15"/>
<char id="34" x="5" y="3" width="2" height="2" xoffset="0" yoffset="1" xadvance="3" page="0" chnl="15"/>
<char id="35" x="9" y="3" width="5" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="36" x="16" y="2" width="4" height="7" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="37" x="22" y="3" width="7" height="6" xoffset="0" yoffset="1" xadvance="7" page="0" chnl="15"/>
<char id="38" x="31" y="3" width="5" height="6" xoffset="0" yoffset="1" xadvance="5" page="0" chnl="15"/>
<char id="39" x="38" y="3" width="1" height="2" xoffset="0" yoffset="1" xadvance="2" page="0" chnl="15"/>
<char id="40" x="41" y="3" width="2" height="8" xoffset="0" yoffset="1" xadvance="3" page="0" chnl="15"/>
<char id="41" x="45" y="3" width="2" height="8" xoffset="0" yoffset="1" xadvance="3" page="0" chnl="15"/>
<char id="42" x="49" y="3" width="3" height="3" xoffset="0" yoffset="1" xadvance="3" page="0" chnl="15"/>
<char id="43" x="54" y="4" width="4" height="4" xoffset="0" yoffset="2" xadvance="5" page="0" chnl="15"/>
<char id="44" x="60" y="8" width="1" height="2" xoffset="1" yoffset="6" xadvance="2" page="0" chnl="15"/>
<char id="45" x="63" y="6" width="3" height="1" xoffset="0" yoffset="5" xadvance="3" page="0" chnl="15"/>
<char id="46" x="68" y="8" width="1" height="1" xoffset="1" yoffset="6" xadvance="2" page="0" chnl="15"/>
<char id="47" x="71" y="3" width="3" height="6" xoffset="0" yoffset="1" xadvance="2" page="0" chnl="15"/>
<char id="48" x="76" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="49" x="82" y="3" width="2" height="6" xoffset="1" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="50" x="86" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="51" x="92" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="52" x="98" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="53" x="104" y="3" width="4" height="6" xoffset="0" yoffset="2" xadvance="4" page="0" chnl="15"/>
<char id="54" x="110" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="55" x="116" y="3" width="4" height="6" xoffset="0" yoffset="2" xadvance="4" page="0" chnl="15"/>
<char id="56" x="122" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="57" x="128" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="58" x="134" y="5" width="1" height="4" xoffset="1" yoffset="3" xadvance="2" page="0" chnl="15"/>
<char id="59" x="137" y="5" width="1" height="6" xoffset="1" yoffset="3" xadvance="2" page="0" chnl="15"/>
<char id="60" x="140" y="4" width="4" height="4" xoffset="0" yoffset="2" xadvance="5" page="0" chnl="15"/>
<char id="61" x="146" y="5" width="4" height="3" xoffset="0" yoffset="3" xadvance="5" page="0" chnl="15"/>
<char id="62" x="152" y="4" width="4" height="4" xoffset="0" yoffset="2" xadvance="5" page="0" chnl="15"/>
<char id="63" x="158" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="64" x="164" y="3" width="8" height="8" xoffset="0" yoffset="1" xadvance="8" page="0" chnl="15"/>
<char id="65" x="174" y="3" width="6" height="6" xoffset="0" yoffset="1" xadvance="5" page="0" chnl="15"/>
<char id="66" x="182" y="3" width="5" height="6" xoffset="1" yoffset="1" xadvance="5" page="0" chnl="15"/>
<char id="67" x="189" y="3" width="5" height="6" xoffset="0" yoffset="1" xadvance="6" page="0" chnl="15"/>
<char id="68" x="196" y="3" width="5" height="6" xoffset="1" yoffset="1" xadvance="6" page="0" chnl="15"/>
<char id="69" x="203" y="3" width="5" height="6" xoffset="1" yoffset="1" xadvance="5" page="0" chnl="15"/>
<char id="70" x="210" y="3" width="4" height="6" xoffset="1" yoffset="1" xadvance="5" page="0" chnl="15"/>
<char id="71" x="216" y="3" width="6" height="6" xoffset="0" yoffset="1" xadvance="6" page="0" chnl="15"/>
<char id="72" x="224" y="3" width="5" height="6" xoffset="1" yoffset="1" xadvance="6" page="0" chnl="15"/>
<char id="73" x="231" y="3" width="1" height="6" xoffset="1" yoffset="1" xadvance="2" page="0" chnl="15"/>
<char id="74" x="234" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="75" x="240" y="3" width="5" height="6" xoffset="1" yoffset="1" xadvance="5" page="0" chnl="15"/>
<char id="76" x="247" y="3" width="4" height="6" xoffset="1" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="77" x="253" y="3" width="6" height="6" xoffset="1" yoffset="1" xadvance="7" page="0" chnl="15"/>
<char id="78" x="261" y="3" width="5" height="6" xoffset="1" yoffset="1" xadvance="6" page="0" chnl="15"/>
<char id="79" x="268" y="3" width="6" height="6" xoffset="0" yoffset="1" xadvance="6" page="0" chnl="15"/>
<char id="80" x="276" y="3" width="5" height="6" xoffset="1" yoffset="1" xadvance="5" page="0" chnl="15"/>
<char id="81" x="283" y="3" width="6" height="7" xoffset="0" yoffset="1" xadvance="6" page="0" chnl="15"/>
<char id="82" x="291" y="3" width="5" height="6" xoffset="1" yoffset="1" xadvance="6" page="0" chnl="15"/>
<char id="83" x="298" y="3" width="5" height="6" xoffset="0" yoffset="1" xadvance="5" page="0" chnl="15"/>
<char id="84" x="305" y="3" width="5" height="6" xoffset="0" yoffset="1" xadvance="5" page="0" chnl="15"/>
<char id="85" x="312" y="3" width="5" height="6" xoffset="1" yoffset="1" xadvance="6" page="0" chnl="15"/>
<char id="86" x="319" y="3" width="6" height="6" xoffset="0" yoffset="1" xadvance="5" page="0" chnl="15"/>
<char id="87" x="327" y="3" width="8" height="6" xoffset="0" yoffset="1" xadvance="8" page="0" chnl="15"/>
<char id="88" x="337" y="3" width="5" height="6" xoffset="0" yoffset="1" xadvance="5" page="0" chnl="15"/>
<char id="89" x="344" y="3" width="6" height="6" xoffset="0" yoffset="1" xadvance="5" page="0" chnl="15"/>
<char id="90" x="352" y="3" width="5" height="6" xoffset="0" yoffset="1" xadvance="5" page="0" chnl="15"/>
<char id="91" x="359" y="3" width="2" height="8" xoffset="1" yoffset="1" xadvance="2" page="0" chnl="15"/>
<char id="92" x="363" y="3" width="3" height="6" xoffset="0" yoffset="1" xadvance="2" page="0" chnl="15"/>
<char id="93" x="368" y="3" width="2" height="8" xoffset="0" yoffset="1" xadvance="2" page="0" chnl="15"/>
<char id="94" x="372" y="3" width="4" height="3" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="95" x="378" y="10" width="5" height="1" xoffset="0" yoffset="8" xadvance="4" page="0" chnl="15"/>
<char id="97" x="385" y="4" width="4" height="5" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="98" x="391" y="3" width="4" height="6" xoffset="1" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="99" x="397" y="4" width="4" height="5" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="100" x="403" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="101" x="409" y="4" width="4" height="5" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="102" x="415" y="3" width="3" height="6" xoffset="0" yoffset="1" xadvance="2" page="0" chnl="15"/>
<char id="103" x="420" y="4" width="4" height="6" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="104" x="426" y="3" width="4" height="6" xoffset="1" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="105" x="432" y="3" width="1" height="6" xoffset="1" yoffset="1" xadvance="2" page="0" chnl="15"/>
<char id="106" x="435" y="3" width="2" height="8" xoffset="0" yoffset="1" xadvance="2" page="0" chnl="15"/>
<char id="107" x="439" y="3" width="4" height="6" xoffset="1" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="108" x="445" y="3" width="1" height="6" xoffset="1" yoffset="1" xadvance="2" page="0" chnl="15"/>
<char id="109" x="448" y="4" width="6" height="5" xoffset="1" yoffset="3" xadvance="7" page="0" chnl="15"/>
<char id="110" x="456" y="4" width="4" height="5" xoffset="1" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="111" x="462" y="4" width="4" height="5" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="112" x="468" y="4" width="4" height="6" xoffset="1" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="113" x="474" y="4" width="4" height="6" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="114" x="480" y="4" width="3" height="5" xoffset="1" yoffset="3" xadvance="3" page="0" chnl="15"/>
<char id="115" x="485" y="4" width="4" height="5" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="116" x="491" y="3" width="2" height="6" xoffset="0" yoffset="2" xadvance="2" page="0" chnl="15"/>
<char id="117" x="495" y="5" width="4" height="5" xoffset="1" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="118" x="501" y="5" width="4" height="4" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="119" x="507" y="5" width="6" height="4" xoffset="0" yoffset="3" xadvance="6" page="0" chnl="15"/>
<char id="120" x="515" y="5" width="4" height="4" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="121" x="521" y="5" width="4" height="6" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="122" x="527" y="5" width="4" height="4" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="123" x="533" y="3" width="3" height="8" xoffset="0" yoffset="1" xadvance="3" page="0" chnl="15"/>
<char id="124" x="538" y="3" width="1" height="8" xoffset="1" yoffset="1" xadvance="2" page="0" chnl="15"/>
<char id="125" x="541" y="3" width="3" height="8" xoffset="0" yoffset="1" xadvance="3" page="0" chnl="15"/>
<char id="126" x="546" y="5" width="4" height="2" xoffset="0" yoffset="4" xadvance="5" page="0" chnl="15"/>
<char id="161" x="552" y="5" width="1" height="6" xoffset="1" yoffset="3" xadvance="3" page="0" chnl="15"/>
<char id="162" x="555" y="3" width="4" height="8" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="163" x="561" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="164" x="567" y="4" width="4" height="4" xoffset="0" yoffset="2" xadvance="4" page="0" chnl="15"/>
<char id="165" x="573" y="3" width="5" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="166" x="580" y="3" width="1" height="8" xoffset="1" yoffset="1" xadvance="2" page="0" chnl="15"/>
<char id="167" x="583" y="3" width="4" height="8" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="168" x="589" y="3" width="3" height="1" xoffset="0" yoffset="1" xadvance="3" page="0" chnl="15"/>
<char id="169" x="594" y="3" width="6" height="6" xoffset="0" yoffset="1" xadvance="6" page="0" chnl="15"/>
<char id="170" x="602" y="3" width="3" height="3" xoffset="0" yoffset="1" xadvance="3" page="0" chnl="15"/>
<char id="171" x="607" y="5" width="4" height="4" xoffset="1" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="172" x="613" y="5" width="4" height="3" xoffset="0" yoffset="3" xadvance="5" page="0" chnl="15"/>
<char id="173" x="619" y="6" width="3" height="1" xoffset="0" yoffset="5" xadvance="3" page="0" chnl="15"/>
<char id="174" x="624" y="3" width="6" height="6" xoffset="0" yoffset="1" xadvance="6" page="0" chnl="15"/>
<char id="175" x="632" y="2" width="5" height="1" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="176" x="639" y="3" width="3" height="3" xoffset="1" yoffset="1" xadvance="3" page="0" chnl="15"/>
<char id="177" x="644" y="4" width="4" height="5" xoffset="0" yoffset="2" xadvance="4" page="0" chnl="15"/>
<char id="178" x="650" y="3" width="3" height="3" xoffset="0" yoffset="1" xadvance="3" page="0" chnl="15"/>
<char id="179" x="655" y="3" width="3" height="3" xoffset="0" yoffset="1" xadvance="3" page="0" chnl="15"/>
<char id="180" x="660" y="3" width="2" height="1" xoffset="1" yoffset="1" xadvance="3" page="0" chnl="15"/>
<char id="181" x="664" y="5" width="4" height="6" xoffset="1" yoffset="3" xadvance="5" page="0" chnl="15"/>
<char id="182" x="670" y="3" width="5" height="8" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="183" x="677" y="5" width="1" height="1" xoffset="1" yoffset="4" xadvance="3" page="0" chnl="15"/>
<char id="184" x="680" y="9" width="2" height="2" xoffset="0" yoffset="7" xadvance="3" page="0" chnl="15"/>
<char id="185" x="684" y="3" width="2" height="3" xoffset="0" yoffset="1" xadvance="3" page="0" chnl="15"/>
<char id="186" x="688" y="3" width="3" height="3" xoffset="0" yoffset="1" xadvance="3" page="0" chnl="15"/>
<char id="187" x="693" y="5" width="4" height="4" xoffset="1" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="188" x="699" y="3" width="6" height="6" xoffset="0" yoffset="1" xadvance="7" page="0" chnl="15"/>
<char id="189" x="707" y="3" width="6" height="6" xoffset="0" yoffset="1" xadvance="7" page="0" chnl="15"/>
<char id="190" x="715" y="3" width="7" height="6" xoffset="0" yoffset="1" xadvance="7" page="0" chnl="15"/>
<char id="191" x="724" y="5" width="4" height="6" xoffset="1" yoffset="3" xadvance="5" page="0" chnl="15"/>
<char id="192" x="730" y="2" width="6" height="8" xoffset="0" yoffset="0" xadvance="5" page="0" chnl="15"/>
<char id="193" x="738" y="2" width="6" height="8" xoffset="0" yoffset="0" xadvance="5" page="0" chnl="15"/>
<char id="194" x="746" y="2" width="6" height="8" xoffset="0" yoffset="0" xadvance="5" page="0" chnl="15"/>
<char id="195" x="754" y="2" width="6" height="7" xoffset="0" yoffset="0" xadvance="5" page="0" chnl="15"/>
<char id="196" x="762" y="2" width="6" height="7" xoffset="0" yoffset="0" xadvance="5" page="0" chnl="15"/>
<char id="197" x="770" y="2" width="6" height="7" xoffset="0" yoffset="0" xadvance="5" page="0" chnl="15"/>
<char id="198" x="778" y="3" width="8" height="6" xoffset="0" yoffset="1" xadvance="8" page="0" chnl="15"/>
<char id="199" x="788" y="3" width="5" height="8" xoffset="0" yoffset="1" xadvance="6" page="0" chnl="15"/>
<char id="200" x="795" y="2" width="5" height="8" xoffset="1" yoffset="0" xadvance="5" page="0" chnl="15"/>
<char id="201" x="802" y="2" width="5" height="8" xoffset="1" yoffset="0" xadvance="5" page="0" chnl="15"/>
<char id="202" x="809" y="2" width="5" height="8" xoffset="1" yoffset="0" xadvance="5" page="0" chnl="15"/>
<char id="203" x="816" y="2" width="5" height="7" xoffset="1" yoffset="0" xadvance="5" page="0" chnl="15"/>
<char id="204" x="823" y="2" width="2" height="8" xoffset="0" yoffset="0" xadvance="2" page="0" chnl="15"/>
<char id="205" x="827" y="2" width="2" height="8" xoffset="1" yoffset="0" xadvance="2" page="0" chnl="15"/>
<char id="206" x="831" y="2" width="3" height="8" xoffset="0" yoffset="0" xadvance="2" page="0" chnl="15"/>
<char id="207" x="836" y="2" width="3" height="7" xoffset="0" yoffset="0" xadvance="2" page="0" chnl="15"/>
<char id="208" x="841" y="3" width="6" height="6" xoffset="0" yoffset="1" xadvance="6" page="0" chnl="15"/>
<char id="209" x="849" y="2" width="5" height="7" xoffset="1" yoffset="0" xadvance="6" page="0" chnl="15"/>
<char id="210" x="856" y="2" width="6" height="8" xoffset="0" yoffset="0" xadvance="6" page="0" chnl="15"/>
<char id="211" x="864" y="2" width="6" height="8" xoffset="0" yoffset="0" xadvance="6" page="0" chnl="15"/>
<char id="212" x="872" y="2" width="6" height="8" xoffset="0" yoffset="0" xadvance="6" page="0" chnl="15"/>
<char id="213" x="880" y="2" width="6" height="7" xoffset="0" yoffset="0" xadvance="6" page="0" chnl="15"/>
<char id="214" x="888" y="2" width="6" height="7" xoffset="0" yoffset="0" xadvance="6" page="0" chnl="15"/>
<char id="215" x="896" y="4" width="4" height="4" xoffset="1" yoffset="3" xadvance="5" page="0" chnl="15"/>
<char id="216" x="902" y="3" width="6" height="7" xoffset="0" yoffset="1" xadvance="6" page="0" chnl="15"/>
<char id="217" x="910" y="2" width="5" height="8" xoffset="1" yoffset="0" xadvance="6" page="0" chnl="15"/>
<char id="218" x="917" y="2" width="5" height="8" xoffset="1" yoffset="0" xadvance="6" page="0" chnl="15"/>
<char id="219" x="924" y="2" width="5" height="8" xoffset="1" yoffset="0" xadvance="6" page="0" chnl="15"/>
<char id="220" x="931" y="2" width="5" height="7" xoffset="1" yoffset="0" xadvance="6" page="0" chnl="15"/>
<char id="221" x="938" y="2" width="6" height="8" xoffset="0" yoffset="0" xadvance="5" page="0" chnl="15"/>
<char id="222" x="946" y="3" width="5" height="6" xoffset="1" yoffset="1" xadvance="5" page="0" chnl="15"/>
<char id="223" x="953" y="3" width="4" height="6" xoffset="1" yoffset="1" xadvance="5" page="0" chnl="15"/>
<char id="224" x="959" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="225" x="965" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="226" x="971" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="227" x="977" y="3" width="4" height="6" xoffset="0" yoffset="2" xadvance="4" page="0" chnl="15"/>
<char id="228" x="983" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="229" x="989" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="230" x="995" y="4" width="7" height="5" xoffset="0" yoffset="3" xadvance="7" page="0" chnl="15"/>
<char id="231" x="1004" y="4" width="4" height="6" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="232" x="1010" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="233" x="1016" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="234" x="1022" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="235" x="1028" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="236" x="1034" y="3" width="2" height="6" xoffset="0" yoffset="1" xadvance="2" page="0" chnl="15"/>
<char id="237" x="1038" y="3" width="2" height="6" xoffset="1" yoffset="1" xadvance="2" page="0" chnl="15"/>
<char id="238" x="1042" y="3" width="3" height="6" xoffset="0" yoffset="1" xadvance="2" page="0" chnl="15"/>
<char id="239" x="1047" y="3" width="3" height="6" xoffset="0" yoffset="1" xadvance="2" page="0" chnl="15"/>
<char id="240" x="1052" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="241" x="1058" y="3" width="4" height="6" xoffset="1" yoffset="2" xadvance="4" page="0" chnl="15"/>
<char id="242" x="1064" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="243" x="1070" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="244" x="1076" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="245" x="1082" y="3" width="4" height="6" xoffset="0" yoffset="2" xadvance="4" page="0" chnl="15"/>
<char id="246" x="1088" y="3" width="4" height="6" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="247" x="1094" y="4" width="4" height="4" xoffset="0" yoffset="3" xadvance="4" page="0" chnl="15"/>
<char id="248" x="1100" y="4" width="4" height="5" xoffset="1" yoffset="3" xadvance="5" page="0" chnl="15"/>
<char id="249" x="1106" y="3" width="4" height="6" xoffset="1" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="250" x="1112" y="3" width="4" height="6" xoffset="1" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="251" x="1118" y="3" width="4" height="6" xoffset="1" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="252" x="1124" y="3" width="4" height="6" xoffset="1" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="253" x="1130" y="3" width="4" height="8" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="254" x="1136" y="3" width="4" height="8" xoffset="1" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="255" x="1142" y="3" width="4" height="8" xoffset="0" yoffset="1" xadvance="4" page="0" chnl="15"/>
<char id="32" x="0" y="0" width="0" height="0" xoffset="0" yoffset="1" xadvance="2" page="0" chnl="15"/>
</chars>
<kernings count="97">
<kerning first="32" second="65" amount="0"/>
<kerning first="32" second="84" amount="0"/>
<kerning first="32" second="89" amount="0"/>
<kerning first="49" second="49" amount="-1"/>
<kerning first="65" second="32" amount="0"/>
<kerning first="65" second="84" amount="-1"/>
<kerning first="65" second="86" amount="-1"/>
<kerning first="65" second="87" amount="0"/>
<kerning first="65" second="89" amount="-1"/>
<kerning first="65" second="118" amount="0"/>
<kerning first="65" second="119" amount="0"/>
<kerning first="65" second="121" amount="0"/>
<kerning first="70" second="44" amount="-1"/>
<kerning first="70" second="46" amount="-1"/>
<kerning first="70" second="65" amount="0"/>
<kerning first="76" second="32" amount="0"/>
<kerning first="76" second="84" amount="-1"/>
<kerning first="76" second="86" amount="-1"/>
<kerning first="76" second="87" amount="-1"/>
<kerning first="76" second="89" amount="-1"/>
<kerning first="76" second="121" amount="0"/>
<kerning first="80" second="32" amount="0"/>
<kerning first="80" second="44" amount="-1"/>
<kerning first="80" second="46" amount="-1"/>
<kerning first="80" second="65" amount="-1"/>
<kerning first="82" second="84" amount="0"/>
<kerning first="82" second="86" amount="0"/>
<kerning first="82" second="87" amount="0"/>
<kerning first="82" second="89" amount="0"/>
<kerning first="84" second="32" amount="0"/>
<kerning first="84" second="44" amount="-1"/>
<kerning first="84" second="173" amount="0"/>
<kerning first="84" second="46" amount="-1"/>
<kerning first="84" second="58" amount="-1"/>
<kerning first="84" second="59" amount="-1"/>
<kerning first="84" second="65" amount="-1"/>
<kerning first="84" second="79" amount="0"/>
<kerning first="84" second="97" amount="-1"/>
<kerning first="84" second="99" amount="-1"/>
<kerning first="84" second="101" amount="-1"/>
<kerning first="84" second="105" amount="0"/>
<kerning first="84" second="111" amount="-1"/>
<kerning first="84" second="114" amount="0"/>
<kerning first="84" second="115" amount="-1"/>
<kerning first="84" second="117" amount="0"/>
<kerning first="84" second="119" amount="0"/>
<kerning first="84" second="121" amount="0"/>
<kerning first="86" second="44" amount="-1"/>
<kerning first="86" second="173" amount="0"/>
<kerning first="86" second="46" amount="-1"/>
<kerning first="86" second="58" amount="0"/>
<kerning first="86" second="59" amount="0"/>
<kerning first="86" second="65" amount="-1"/>
<kerning first="86" second="97" amount="-1"/>
<kerning first="86" second="101" amount="0"/>
<kerning first="86" second="105" amount="0"/>
<kerning first="86" second="111" amount="0"/>
<kerning first="86" second="114" amount="0"/>
<kerning first="86" second="117" amount="0"/>
<kerning first="86" second="121" amount="0"/>
<kerning first="87" second="44" amount="0"/>
<kerning first="87" second="173" amount="0"/>
<kerning first="87" second="46" amount="0"/>
<kerning first="87" second="58" amount="0"/>
<kerning first="87" second="59" amount="0"/>
<kerning first="87" second="65" amount="0"/>
<kerning first="87" second="97" amount="0"/>
<kerning first="87" second="101" amount="0"/>
<kerning first="87" second="105" amount="0"/>
<kerning first="87" second="111" amount="0"/>
<kerning first="87" second="114" amount="0"/>
<kerning first="87" second="117" amount="0"/>
<kerning first="87" second="121" amount="0"/>
<kerning first="89" second="32" amount="0"/>
<kerning first="89" second="44" amount="-1"/>
<kerning first="89" second="173" amount="-1"/>
<kerning first="89" second="46" amount="-1"/>
<kerning first="89" second="58" amount="0"/>
<kerning first="89" second="59" amount="-1"/>
<kerning first="89" second="65" amount="-1"/>
<kerning first="89" second="97" amount="-1"/>
<kerning first="89" second="101" amount="-1"/>
<kerning first="89" second="105" amount="0"/>
<kerning first="89" second="111" amount="-1"/>
<kerning first="89" second="112" amount="-1"/>
<kerning first="89" second="113" amount="-1"/>
<kerning first="89" second="117" amount="0"/>
<kerning first="89" second="118" amount="0"/>
<kerning first="102" second="102" amount="0"/>
<kerning first="114" second="44" amount="0"/>
<kerning first="114" second="46" amount="0"/>
<kerning first="118" second="44" amount="-1"/>
<kerning first="118" second="46" amount="-1"/>
<kerning first="119" second="44" amount="0"/>
<kerning first="119" second="46" amount="0"/>
<kerning first="121" second="44" amount="-1"/>
<kerning first="121" second="46" amount="-1"/>
</kernings>
</font>

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

121
node_modules/jimp/package.json generated vendored Normal file
View File

@ -0,0 +1,121 @@
{
"name": "jimp",
"version": "0.12.1",
"description": "An image processing library written entirely in JavaScript (i.e. zero external or native dependencies)",
"main": "dist/index.js",
"module": "es/index.js",
"browser": "browser/lib/jimp.js",
"types": "types/index.d.ts",
"typesVersions": {
">=3.1.0-0": {
"*": [
"types/ts3.1/index.d.ts"
]
}
},
"tonicExampleFilename": "example.js",
"files": [
"browser",
"dist",
"es",
"index.d.ts",
"fonts",
"types"
],
"repository": {
"type": "git",
"url": "https://github.com/oliver-moran/jimp.git"
},
"bugs": {
"url": "https://github.com/oliver-moran/jimp/issues"
},
"scripts": {
"test": "cross-env BABEL_ENV=test mocha --require @babel/register",
"test:watch": "npm run test -- --reporter min --watch",
"test:coverage": "nyc npm run test",
"browser-build": "node tools/browser-build.js test",
"build": "npm run build:browser && npm run build:node:production && npm run build:module",
"build:watch": "npm run build:node:debug -- -- --watch --verbose",
"build:debug": "npm run build:browser:debug && npm run build:node:debug",
"build:module": "cross-env BABEL_ENV=module babel src -d es --source-maps --config-file ../../babel.config.js",
"build:node": "babel src -d dist --source-maps --config-file ../../babel.config.js",
"build:node:debug": "cross-env BABEL_ENV=development npm run build:node",
"build:node:production": "cross-env BABEL_ENV=production npm run build:node",
"build:browser": "cross-env BABEL_ENV=production node tools/browser-build.js prepublish",
"build:browser:debug": "cross-env BABEL_ENV=development ENV=browser node tools/browser-build.js prepublish"
},
"keywords": [
"image",
"image processing",
"image manipulation",
"png",
"jpg",
"jpeg",
"bmp",
"resize",
"scale",
"crop"
],
"author": "Oliver Moran <oliver.moran@gmail.com>",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.7.2",
"@jimp/custom": "^0.12.1",
"@jimp/plugins": "^0.12.1",
"@jimp/types": "^0.12.1",
"regenerator-runtime": "^0.13.3"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-syntax-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.7.1",
"@babel/register": "^7.7.0",
"@jimp/test-utils": "^0.12.1",
"babel-eslint": "^10.0.3",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-istanbul": "^5.2.0",
"babel-plugin-source-map-support": "^2.1.1",
"babelify": "^10.0.0",
"browserify": "^16.5.0",
"cross-env": "^6.0.0",
"dtslint": "^0.9.8",
"envify": "^4.1.0",
"eslint": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"express": "^4.17.1",
"husky": "^3.0.5",
"karma": "^4.3.0",
"karma-browserify": "^6.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.2.0",
"lerna": "^3.16.4",
"lerna-changelog": "^0.8.2",
"lint-staged": "^9.2.5",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"source-map-support": "^0.5.13",
"tfilter": "^1.0.1",
"uglify-js": "^3.6.0",
"watchify": "^3.11.1",
"xo": "^0.24.0"
},
"xo": false,
"nyc": {
"sourceMap": false,
"instrument": false,
"reporter": [
"text",
"text-summary",
"lcov",
"html"
],
"exclude": [
"src/modules/*.js",
"test/*.js"
]
},
"gitHead": "942e635564e36fc243767531b4f8be036afa40b5"
}

600
node_modules/jimp/types/index.d.ts generated vendored Normal file
View File

@ -0,0 +1,600 @@
// TypeScript Version: 2.8
declare const DepreciatedJimp: DepreciatedJimp;
export = DepreciatedJimp;
/**
* @deprecated Jimp typings for TS <3.1 are being depreciated. Please upgrade your TypeScript version
*/
interface DepreciatedJimp {
// Constructors
new(path: string, cb?: ImageCallback): this;
new(urlOptions: URLOptions, cb?: ImageCallback): this;
new(image: DepreciatedJimp, cb?: ImageCallback): this;
new(data: Buffer | Bitmap, cb?: ImageCallback): this;
new(w: number, h: number, cb?: ImageCallback): this;
new(
w: number,
h: number,
background?: number | string,
cb?: ImageCallback
): this;
// For custom constructors when using Jimp.appendConstructorOption
new(...args: any[]): this;
prototype: this;
// Constants
AUTO: -1;
// supported mime types
MIME_PNG: 'image/png';
MIME_TIFF: 'image/tiff';
MIME_JPEG: 'image/jpeg';
MIME_JGD: 'image/jgd';
MIME_BMP: 'image/bmp';
MIME_X_MS_BMP: 'image/x-ms-bmp';
MIME_GIF: 'image/gif';
// PNG filter types
PNG_FILTER_AUTO: -1;
PNG_FILTER_NONE: 0;
PNG_FILTER_SUB: 1;
PNG_FILTER_UP: 2;
PNG_FILTER_AVERAGE: 3;
PNG_FILTER_PATH: 4;
// resize methods
RESIZE_NEAREST_NEIGHBOR: 'nearestNeighbor';
RESIZE_BILINEAR: 'bilinearInterpolation';
RESIZE_BICUBIC: 'bicubicInterpolation';
RESIZE_HERMITE: 'hermiteInterpolation';
RESIZE_BEZIER: 'bezierInterpolation';
// blend modes
BLEND_SOURCE_OVER: string;
BLEND_DESTINATION_OVER: string;
BLEND_MULTIPLY: string;
BLEND_SCREEN: string;
BLEND_OVERLAY: string;
BLEND_DARKEN: string;
BLEND_LIGHTEN: string;
BLEND_HARDLIGHT: string;
BLEND_DIFFERENCE: string;
BLEND_EXCLUSION: string;
// Align modes for cover, contain, bit masks
HORIZONTAL_ALIGN_LEFT: 1;
HORIZONTAL_ALIGN_CENTER: 2;
HORIZONTAL_ALIGN_RIGHT: 4;
VERTICAL_ALIGN_TOP: 8;
VERTICAL_ALIGN_MIDDLE: 16;
VERTICAL_ALIGN_BOTTOM: 32;
// Font locations
FONT_SANS_8_BLACK: string;
FONT_SANS_10_BLACK: string;
FONT_SANS_12_BLACK: string;
FONT_SANS_14_BLACK: string;
FONT_SANS_16_BLACK: string;
FONT_SANS_32_BLACK: string;
FONT_SANS_64_BLACK: string;
FONT_SANS_128_BLACK: string;
FONT_SANS_8_WHITE: string;
FONT_SANS_16_WHITE: string;
FONT_SANS_32_WHITE: string;
FONT_SANS_64_WHITE: string;
FONT_SANS_128_WHITE: string;
// Edge Handling
EDGE_EXTEND: 1;
EDGE_WRAP: 2;
EDGE_CROP: 3;
// Properties
bitmap: Bitmap;
_quality: number;
_deflateLevel: number;
_deflateStrategy: number;
_filterType: number;
_rgba: boolean;
_background: number;
_originalMime: string;
// Methods
on<T extends ListenableName>(
event: T,
cb: (data: ListenerData<T>) => any
): any;
parseBitmap(
data: Buffer,
path: string | null | undefined,
cb?: ImageCallback
): void;
hasAlpha(): boolean;
getHeight(): number;
getWidth(): number;
inspect(): string;
toString(): string;
getMIME(): string;
getExtension(): string;
distanceFromHash(hash: string): number;
write(path: string, cb?: ImageCallback): this;
writeAsync(path: string): Promise<this>;
deflateLevel(l: number, cb?: ImageCallback): this;
deflateStrategy(s: number, cb?: ImageCallback): this;
colorType(s: number, cb?: ImageCallback): this;
filterType(f: number, cb?: ImageCallback): this;
rgba(bool: boolean, cb?: ImageCallback): this;
quality(n: number, cb?: ImageCallback): this;
getBase64(mime: string, cb: GenericCallback<string, any, this>): this;
getBase64Async(mime: string): Promise<string>;
hash(cb?: GenericCallback<string, any, this>): string;
hash(
base: number | null | undefined,
cb?: GenericCallback<string, any, this>
): string;
getBuffer(mime: string, cb: GenericCallback<Buffer>): this;
getBufferAsync(mime: string): Promise<Buffer>;
getPixelIndex(
x: number,
y: number,
cb?: GenericCallback<number, any, this>
): number;
getPixelIndex(
x: number,
y: number,
edgeHandling: string,
cb?: GenericCallback<number, any, this>
): number;
getPixelColor(
x: number,
y: number,
cb?: GenericCallback<number, any, this>
): number;
getPixelColour(
x: number,
y: number,
cb?: GenericCallback<number, any, this>
): number;
setPixelColor(hex: number, x: number, y: number, cb?: ImageCallback): this;
setPixelColour(hex: number, x: number, y: number, cb?: ImageCallback): this;
clone(cb?: ImageCallback): this;
cloneQuiet(cb?: ImageCallback): this;
background(hex: number, cb?: ImageCallback): this;
backgroundQuiet(hex: number, cb?: ImageCallback): this;
scan(
x: number,
y: number,
w: number,
h: number,
f: (this: this, x: number, y: number, idx: number) => any,
cb?: ImageCallback
): this;
scanQuiet(
x: number,
y: number,
w: number,
h: number,
f: (this: this, x: number, y: number, idx: number) => any,
cb?: ImageCallback
): this;
scanIterator(
x: number,
y: number,
w: number,
h: number
): IterableIterator<{ x: number; y: number; idx: number; image: DepreciatedJimp }>;
crop(x: number, y: number, w: number, h: number, cb?: ImageCallback): this;
cropQuiet(
x: number,
y: number,
w: number,
h: number,
cb?: ImageCallback
): this;
// Color methods
brightness(val: number, cb?: ImageCallback): this;
contrast(val: number, cb?: ImageCallback): this;
posterize(n: number, cb?: ImageCallback): this;
greyscale(cb?: ImageCallback): this;
grayscale(cb?: ImageCallback): this;
opacity(f: number, cb?: ImageCallback): this;
sepia(cb?: ImageCallback): this;
fade(f: number, cb?: ImageCallback): this;
convolution(kernel: number[][], cb?: ImageCallback): this;
convolution<T>(
kernel: number[][],
edgeHandling: string,
cb?: ImageCallback
): this;
opaque(cb?: ImageCallback): this;
pixelate(size: number, cb?: ImageCallback): this;
pixelate(
size: number,
x: number,
y: number,
w: number,
h: number,
cb?: ImageCallback
): this;
convolute(kernel: number[][], cb?: ImageCallback): this;
convolute(
kernel: number[][],
x: number,
y: number,
w: number,
h: number,
cb?: ImageCallback
): this;
color(actions: ColorAction[], cb?: ImageCallback): this;
colour(actions: ColorAction[], cb?: ImageCallback): this;
// Shape methods
rotate(deg: number, cb?: ImageCallback): this;
rotate(deg: number, mode: string | boolean, cb?: ImageCallback): this;
flip(horizontal: boolean, vertical: boolean, cb?: ImageCallback): this;
mirror(horizontal: boolean, vertical: boolean, cb?: ImageCallback): this;
resize(w: number, h: number, cb?: ImageCallback): this;
resize(w: number, h: number, mode?: string, cb?: ImageCallback): this;
cover(w: number, h: number, cb?: ImageCallback): this;
cover(w: number, h: number, alignBits?: number, cb?: ImageCallback): this;
cover(
w: number,
h: number,
alignBits?: number,
mode?: string,
cb?: ImageCallback
): this;
contain(w: number, h: number, cb?: ImageCallback): this;
contain(w: number, h: number, mode?: string, cb?: ImageCallback): this;
contain(w: number, h: number, alignBits?: number, cb?: ImageCallback): this;
contain(
w: number,
h: number,
alignBits?: number,
mode?: string,
cb?: ImageCallback
): this;
scale(f: number, cb?: ImageCallback): this;
scale(f: number, mode?: string, cb?: ImageCallback): this;
scaleToFit(w: number, h: number, cb?: ImageCallback): this;
scaleToFit(w: number, h: number, mode?: string, cb?: ImageCallback): this;
displace(map: DepreciatedJimp, offset: number, cb?: ImageCallback): this;
autocrop(tolerance?: number, cb?: ImageCallback): this;
autocrop(cropOnlyFrames?: boolean, cb?: ImageCallback): this;
autocrop(
tolerance?: number,
cropOnlyFrames?: boolean,
cb?: ImageCallback
): this;
autocrop(
options: {
tolerance?: number;
cropOnlyFrames?: boolean;
cropSymmetric?: boolean;
leaveBorder?: number;
},
cb?: ImageCallback
): this;
// Text methods
print(
font: Font,
x: number,
y: number,
text: PrintableText,
cb?: ImageCallback
): this;
print(
font: Font,
x: number,
y: number,
text: PrintableText,
maxWidth?: number,
cb?: ImageCallback
): this;
print(
font: Font,
x: number,
y: number,
text: PrintableText,
maxWidth?: number,
maxHeight?: number,
cb?: ImageCallback
): this;
// Effect methods
blur(r: number, cb?: ImageCallback): this;
dither565(cb?: ImageCallback): this;
dither16(cb?: ImageCallback): this;
histogram(): {
r: number[];
g: number[];
b: number[];
};
normalize(cb?: ImageCallback): this;
invert(cb?: ImageCallback): this;
gaussian(r: number, cb?: ImageCallback): this;
composite(
src: DepreciatedJimp,
x: number,
y: number,
options?: BlendMode,
cb?: ImageCallback
): this;
blit(src: DepreciatedJimp, x: number, y: number, cb?: ImageCallback): this;
blit(
src: DepreciatedJimp,
x: number,
y: number,
srcx: number,
srcy: number,
srcw: number,
srch: number,
cb?: ImageCallback
): this;
mask(src: this, x: number, y: number, cb?: ImageCallback): this;
// Functions
/**
* I'd like to make `Args` generic and used in `run` and `test` but alas,
* it's not possible RN:
* https://github.com/microsoft/TypeScript/issues/26113
*/
appendConstructorOption<Args extends any[]>(
name: string,
test: (...args: any[]) => boolean,
run: (
this: this,
resolve: (jimp?: this) => any,
reject: (reason: Error) => any,
...args: any[]
) => any
): void;
read(path: string, cb?: ImageCallback): Promise<this>;
read(image: this, cb?: ImageCallback): Promise<this>;
read(data: Buffer, cb?: ImageCallback): Promise<this>;
read(
w: number,
h: number,
background?: number | string,
cb?: ImageCallback
): Promise<this>; create(path: string): Promise<this>;
create(image: this): Promise<this>;
create(data: Buffer): Promise<this>;
create(w: number, h: number, background?: number | string): Promise<this>;
rgbaToInt(
r: number,
g: number,
b: number,
a: number,
cb: GenericCallback<number, any, this>
): number;
intToRGBA(i: number, cb?: GenericCallback<RGBA>): RGBA;
cssColorToHex(cssColor: string): number;
limit255(n: number): number;
diff(
img1: this,
img2: this,
threshold?: number
): {
percent: number;
image: DepreciatedJimp;
};
distance(img1: this, img2: this): number;
compareHashes(hash1: string, hash2: string): number;
colorDiff(rgba1: RGB, rgba2: RGB): number;
colorDiff(rgba1: RGBA, rgba2: RGBA): number;
loadFont(file: string): Promise<Font>;
loadFont(file: string, cb: GenericCallback<Font, any, any>): Promise<never>;
measureText(font: Font, text: PrintableText): number;
measureTextHeight(font: Font, text: PrintableText, maxWidth: number): number;
circle(
options?: {
radius: number;
x: number;
y: number;
},
cb?: ImageCallback
): this;
circle(cb?: ImageCallback): this;
fishEye(opts?: { r: number }, cb?: ImageCallback): this;
fishEye(cb?: ImageCallback): this;
shadow(
options?: {
size?: number;
opacity?: number;
x?: number;
y?: number;
},
cb?: ImageCallback
): this;
shadow(cb?: ImageCallback): this;
threshold(
opts: {
max: number;
replace?: number;
autoGreyscale?: boolean;
},
cb?: ImageCallback
): this;
}
type GenericCallback<T, U = any, TThis = any> = (
this: TThis,
err: Error | null,
value: T
) => U;
type ImageCallback<U = any> = (
this: DepreciatedJimp,
err: Error | null,
value: DepreciatedJimp,
coords: {
x: number;
y: number;
}
) => U;
type ColorActionName =
| 'mix'
| 'tint'
| 'shade'
| 'xor'
| 'red'
| 'green'
| 'blue'
| 'hue';
type ColorAction = {
apply: ColorActionName;
params: any;
};
type BlendMode = {
mode: string;
opacitySource: number;
opacityDest: number;
};
type ChangeName = 'background' | 'scan' | 'crop';
type ListenableName =
| 'any'
| 'initialized'
| 'before-change'
| 'changed'
| 'before-clone'
| 'cloned'
| ChangeName;
type ListenerData<T extends ListenableName> = T extends 'any'
? any
: T extends ChangeName
? {
eventName: 'before-change' | 'changed';
methodName: T;
[key: string]: any;
}
: {
eventName: T;
methodName: T extends 'initialized'
? 'constructor'
: T extends 'before-change' | 'changed'
? ChangeName
: T extends 'before-clone' | 'cloned' ? 'clone' : any;
};
type PrintableText =
| any
| {
text: string;
alignmentX: number;
alignmentY: number;
};
type URLOptions = {
url: string;
compression?: boolean;
headers: {
[key: string]: any;
};
};
/**
* @deprecated Jimp typings for TS <3.1 are being depreciated. Please upgrade your TypeScript version
*/
interface Bitmap {
data: Buffer;
width: number;
height: number;
}
/**
* @deprecated Jimp typings for TS <3.1 are being depreciated. Please upgrade your TypeScript version
*/
interface RGB {
r: number;
g: number;
b: number;
}
/**
* @deprecated Jimp typings for TS <3.1 are being depreciated. Please upgrade your TypeScript version
*/
interface RGBA {
r: number;
g: number;
b: number;
a: number;
}
/**
* @deprecated Jimp typings for TS <3.1 are being depreciated. Please upgrade your TypeScript version
*/
interface FontChar {
id: number;
x: number;
y: number;
width: number;
height: number;
xoffset: number;
yoffset: number;
xadvance: number;
page: number;
chnl: number;
}
/**
* @deprecated Jimp typings for TS <3.1 are being depreciated. Please upgrade your TypeScript version
*/
interface FontInfo {
face: string;
size: number;
bold: number;
italic: number;
charset: string;
unicode: number;
stretchH: number;
smooth: number;
aa: number;
padding: [number, number, number, number];
spacing: [number, number];
}
/**
* @deprecated Jimp typings for TS <3.1 are being depreciated. Please upgrade your TypeScript version
*/
interface FontCommon {
lineHeight: number;
base: number;
scaleW: number;
scaleH: number;
pages: number;
packed: number;
alphaChnl: number;
redChnl: number;
greenChnl: number;
blueChnl: number;
}
/**
* @deprecated Jimp typings for TS <3.1 are being depreciated. Please upgrade your TypeScript version
*/
interface Font {
chars: {
[char: string]: FontChar;
};
kernings: {
[firstString: string]: {
[secondString: string]: number;
};
};
pages: string[];
common: FontCommon;
info: FontInfo;
}

102
node_modules/jimp/types/test.ts generated vendored Normal file
View File

@ -0,0 +1,102 @@
import * as Jimp from 'jimp';
const jimpInst: Jimp = new Jimp('test');
// Main Jimp export should already have all of these already applied
jimpInst.read('Test');
jimpInst.displace(jimpInst, 2);
jimpInst.resize(40, 40);
// $ExpectType 0
jimpInst.PNG_FILTER_NONE;
// $ExpectError
jimpInst.test;
// $ExpectError
jimpInst.func();
// Main Jimp export should already have all of these already applied
Jimp.read('Test');
Jimp.displace(Jimp, 2);
Jimp.shadow((err, val, coords) => {});
Jimp.resize(40, 40);
// $ExpectType 0
Jimp.PNG_FILTER_NONE;
// $ExpectError
Jimp.test;
// $ExpectError
Jimp.func();
test('can clone properly', async () => {
const baseImage = await Jimp.read('filename');
const cloneBaseImage = baseImage.clone();
// $ExpectType -1
cloneBaseImage.PNG_FILTER_AUTO;
test('can handle `this` returns on the core type properly', () => {
// $ExpectType -1
cloneBaseImage.diff(jimpInst, jimpInst).image.PNG_FILTER_AUTO
});
test('can handle `this` returns properly', () => {
cloneBaseImage
.resize(1, 1)
.crop(0, 0, 0, 0)
.mask(cloneBaseImage, 2, 2)
.print('a' as any, 2, 2, 'a' as any)
.resize(1, 1)
.quality(1)
.deflateLevel(2)
.PNG_FILTER_AUTO;
});
test('can handle imageCallbacks `this` properly', () => {
cloneBaseImage.rgba(false, (_, jimpCBIn) => {
jimpCBIn.read('Test');
jimpCBIn.displace(jimpInst, 2);
jimpCBIn.resize(40, 40);
// $ExpectType 0
jimpCBIn.PNG_FILTER_NONE;
// $ExpectError
jimpCBIn.test;
// $ExpectError
jimpCBIn.func();
})
})
});
test('Can handle callback with constructor', () => {
const myBmpBuffer: Buffer = {} as any;
Jimp.read(myBmpBuffer, (err, cbJimpInst) => {
cbJimpInst.read('Test');
cbJimpInst.displace(jimpInst, 2);
cbJimpInst.resize(40, 40);
// $ExpectType 0
cbJimpInst.PNG_FILTER_NONE;
// $ExpectError
cbJimpInst.test;
// $ExpectError
cbJimpInst.func();
});
})
test('Can handle appendConstructorOption', () => {
Jimp.appendConstructorOption(
'Name of Option',
args => args.hasSomeCustomThing,
function(resolve, reject, args) {
// $ExpectError
this.bitmap = 3;
Jimp.resize(2, 2);
resolve();
}
);
});

50
node_modules/jimp/types/ts3.1/index.d.ts generated vendored Normal file
View File

@ -0,0 +1,50 @@
/**
* While there is nothing in these typings that prevent it from running in TS 2.8 even,
* due to the complexity of the typings anything lower than TS 3.1 will only see
* Jimp as `any`. In order to test the strict versions of these types in our typing
* test suite, the version has been bumped to 3.1
*/
import {
Jimp as JimpType,
Bitmap,
RGB,
RGBA,
UnionToIntersection,
GetPluginVal,
GetPluginConst,
GetPluginEncoders,
GetPluginDecoders,
JimpConstructors
} from '@jimp/core';
import typeFn from '@jimp/types';
import pluginFn from '@jimp/plugins';
type Types = ReturnType<typeof typeFn>;
type Plugins = ReturnType<typeof pluginFn>;
type IntersectedPluginTypes = UnionToIntersection<
GetPluginVal<Types> | GetPluginVal<Plugins>
>;
type IntersectedPluginConsts = UnionToIntersection<
GetPluginConst<Types> | GetPluginConst<Plugins>
>;
type IntersectedPluginEncoders = UnionToIntersection<
GetPluginEncoders<Types> | GetPluginEncoders<Plugins>
>;
type IntersectedPluginDecoders = UnionToIntersection<
GetPluginDecoders<Types> | GetPluginDecoders<Plugins>
>;
type Jimp = JimpType & IntersectedPluginTypes;
declare const Jimp: JimpConstructors & IntersectedPluginConsts & {
prototype: Jimp;
encoders: IntersectedPluginEncoders;
decoders: IntersectedPluginDecoders;
};
export = Jimp;

94
node_modules/jimp/types/ts3.1/test.ts generated vendored Normal file
View File

@ -0,0 +1,94 @@
import * as Jimp from 'jimp';
const jimpInst: Jimp = new Jimp('test');
// Main Jimp export should already have all of these already applied
// $ExpectError
jimpInst.read('Test');
jimpInst.displace(jimpInst, 2);
jimpInst.resize(40, 40);
jimpInst.displace(jimpInst, 2);
jimpInst.shadow((err, val, coords) => {});
jimpInst.fishEye({r: 12});
jimpInst.circle({radius: 12, x: 12, y: 12});
// $ExpectError
jimpInst.PNG_FILTER_NONE;
// $ExpectError
jimpInst.test;
// $ExpectError
jimpInst.func();
// Main Jimp export should already have all of these already applied
Jimp.read('Test');
// $ExpectType 0
Jimp.PNG_FILTER_NONE;
// $ExpectError
Jimp.test;
// $ExpectError
Jimp.func();
test('can clone properly', async () => {
const baseImage = await Jimp.read('filename');
const cloneBaseImage = baseImage.clone();
// $ExpectType number
cloneBaseImage._deflateLevel;
test('can handle `this` returns on the core type properly', () => {
// $ExpectType number
cloneBaseImage.posterize(3)._quality
});
test('can handle `this` returns properly', () => {
cloneBaseImage
.resize(1, 1)
.crop(0, 0, 0, 0)
.mask(cloneBaseImage, 2, 2)
.print('a' as any, 2, 2, 'a' as any)
.resize(1, 1)
.quality(1)
.deflateLevel(2)
._filterType;
});
test('can handle imageCallbacks `this` properly', () => {
cloneBaseImage.rgba(false, (_, jimpCBIn) => {
// $ExpectError
jimpCBIn.read('Test');
jimpCBIn.displace(jimpInst, 2);
jimpCBIn.resize(40, 40);
// $ExpectType number
jimpCBIn._filterType;
// $ExpectError
jimpCBIn.test;
// $ExpectError
jimpCBIn.func();
})
})
});
test('Can handle callback with constructor', () => {
const myBmpBuffer: Buffer = {} as any;
Jimp.read(myBmpBuffer, (err, cbJimpInst) => {
// $ExpectError
cbJimpInst.read('Test');
cbJimpInst.displace(jimpInst, 2);
cbJimpInst.resize(40, 40);
// $ExpectType number
cbJimpInst._filterType;
// $ExpectError
cbJimpInst.test;
// $ExpectError
cbJimpInst.func();
});
});

18
node_modules/jimp/types/ts3.1/tsconfig.json generated vendored Normal file
View File

@ -0,0 +1,18 @@
{
"compilerOptions": {
"module": "commonjs",
"lib": ["es6"],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"noEmit": true,
// If the library is an external module (uses `export`), this allows your test file to import "mylib" instead of "./index".
// If the library is global (cannot be imported via `import` or `require`), leave this out.
"baseUrl": "../test",
"paths": {
"mylib": ["."]
}
}
}

18
node_modules/jimp/types/tsconfig.json generated vendored Normal file
View File

@ -0,0 +1,18 @@
{
"compilerOptions": {
"module": "commonjs",
"lib": ["es6"],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"noEmit": true,
// If the library is an external module (uses `export`), this allows your test file to import "mylib" instead of "./index".
// If the library is global (cannot be imported via `import` or `require`), leave this out.
"baseUrl": "../test",
"paths": {
"mylib": ["."]
}
}
}