cyberchef 10.22.0 → 10.23.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (121) hide show
  1. package/CHANGELOG.md +131 -0
  2. package/CONTRIBUTING.md +37 -0
  3. package/Dockerfile +2 -0
  4. package/Gruntfile.js +0 -12
  5. package/README.md +1 -1
  6. package/babel.config.js +0 -6
  7. package/package.json +63 -62
  8. package/src/core/Chef.mjs +8 -1
  9. package/src/core/Ingredient.mjs +5 -2
  10. package/src/core/Operation.mjs +6 -1
  11. package/src/core/Recipe.mjs +10 -5
  12. package/src/core/config/Categories.json +18 -3
  13. package/src/core/config/OperationConfig.json +22310 -0
  14. package/src/core/config/modules/Bletchley.mjs +28 -0
  15. package/src/core/config/modules/Charts.mjs +24 -0
  16. package/src/core/config/modules/Ciphers.mjs +128 -0
  17. package/src/core/config/modules/Code.mjs +60 -0
  18. package/src/core/config/modules/Compression.mjs +52 -0
  19. package/src/core/config/modules/Crypto.mjs +134 -0
  20. package/src/core/config/modules/Default.mjs +424 -0
  21. package/src/core/config/modules/Diff.mjs +16 -0
  22. package/src/core/config/modules/Encodings.mjs +42 -0
  23. package/src/core/config/modules/Handlebars.mjs +16 -0
  24. package/src/core/config/modules/Hashing.mjs +30 -0
  25. package/src/core/config/modules/Image.mjs +70 -0
  26. package/src/core/config/modules/Jq.mjs +16 -0
  27. package/src/core/config/modules/OCR.mjs +16 -0
  28. package/src/core/config/modules/OpModules.mjs +63 -0
  29. package/src/core/config/modules/PGP.mjs +26 -0
  30. package/src/core/config/modules/Protobuf.mjs +18 -0
  31. package/src/core/config/modules/PublicKey.mjs +36 -0
  32. package/src/core/config/modules/Regex.mjs +40 -0
  33. package/src/core/config/modules/Serialise.mjs +26 -0
  34. package/src/core/config/modules/Shellcode.mjs +18 -0
  35. package/src/core/config/modules/URL.mjs +20 -0
  36. package/src/core/config/modules/UserAgent.mjs +16 -0
  37. package/src/core/config/modules/Yara.mjs +16 -0
  38. package/src/core/lib/AudioBytes.mjs +103 -0
  39. package/src/core/lib/AudioMetaSchema.mjs +82 -0
  40. package/src/core/lib/AudioParsers.mjs +630 -0
  41. package/src/core/lib/BigIntUtils.mjs +73 -0
  42. package/src/core/lib/Modhex.mjs +2 -0
  43. package/src/core/lib/QRCode.mjs +30 -10
  44. package/src/core/lib/RC6.mjs +625 -0
  45. package/src/core/operations/A1Z26CipherDecode.mjs +1 -1
  46. package/src/core/operations/AddTextToImage.mjs +116 -64
  47. package/src/core/operations/BlurImage.mjs +10 -12
  48. package/src/core/operations/ContainImage.mjs +50 -40
  49. package/src/core/operations/ConvertImageFormat.mjs +33 -39
  50. package/src/core/operations/CoverImage.mjs +39 -37
  51. package/src/core/operations/CropImage.mjs +35 -21
  52. package/src/core/operations/DisassembleARM.mjs +193 -0
  53. package/src/core/operations/DitherImage.mjs +8 -8
  54. package/src/core/operations/EscapeUnicodeCharacters.mjs +0 -17
  55. package/src/core/operations/ExtractAudioMetadata.mjs +175 -0
  56. package/src/core/operations/ExtractLSB.mjs +17 -11
  57. package/src/core/operations/ExtractRGBA.mjs +12 -10
  58. package/src/core/operations/FlaskSessionDecode.mjs +80 -0
  59. package/src/core/operations/FlaskSessionSign.mjs +89 -0
  60. package/src/core/operations/FlaskSessionVerify.mjs +136 -0
  61. package/src/core/operations/FlipImage.mjs +14 -10
  62. package/src/core/operations/GenerateImage.mjs +39 -32
  63. package/src/core/operations/ImageBrightnessContrast.mjs +10 -10
  64. package/src/core/operations/ImageFilter.mjs +14 -13
  65. package/src/core/operations/ImageHueSaturationLightness.mjs +22 -20
  66. package/src/core/operations/ImageOpacity.mjs +6 -8
  67. package/src/core/operations/InvertImage.mjs +4 -6
  68. package/src/core/operations/Jq.mjs +12 -4
  69. package/src/core/operations/NormaliseImage.mjs +5 -7
  70. package/src/core/operations/OffsetChecker.mjs +1 -1
  71. package/src/core/operations/ParseEthernetFrame.mjs +112 -0
  72. package/src/core/operations/ParseIPv4Header.mjs +23 -6
  73. package/src/core/operations/ParseQRCode.mjs +13 -13
  74. package/src/core/operations/PseudoRandomIntegerGenerator.mjs +164 -0
  75. package/src/core/operations/RC6Decrypt.mjs +119 -0
  76. package/src/core/operations/RC6Encrypt.mjs +119 -0
  77. package/src/core/operations/RandomizeColourPalette.mjs +11 -11
  78. package/src/core/operations/ResizeImage.mjs +30 -23
  79. package/src/core/operations/RotateImage.mjs +8 -9
  80. package/src/core/operations/SQLBeautify.mjs +21 -3
  81. package/src/core/operations/SharpenImage.mjs +94 -62
  82. package/src/core/operations/SplitColourChannels.mjs +47 -21
  83. package/src/core/operations/TextIntegerConverter.mjs +123 -0
  84. package/src/core/operations/UnescapeUnicodeCharacters.mjs +17 -0
  85. package/src/core/operations/ViewBitPlane.mjs +16 -20
  86. package/src/core/operations/index.mjs +960 -0
  87. package/src/node/index.mjs +2423 -0
  88. package/src/web/HTMLIngredient.mjs +24 -43
  89. package/src/web/Manager.mjs +1 -0
  90. package/src/web/html/index.html +6 -6
  91. package/src/web/static/fonts/bmfonts/Roboto72White.fnt +491 -485
  92. package/src/web/static/fonts/bmfonts/RobotoBlack72White.fnt +494 -488
  93. package/src/web/static/fonts/bmfonts/RobotoMono72White.fnt +110 -103
  94. package/src/web/static/fonts/bmfonts/RobotoSlab72White.fnt +498 -492
  95. package/src/web/stylesheets/layout/_banner.css +30 -0
  96. package/src/web/stylesheets/layout/_modals.css +5 -0
  97. package/src/web/stylesheets/utils/_overrides.css +7 -0
  98. package/src/web/waiters/ControlsWaiter.mjs +82 -0
  99. package/src/web/waiters/InputWaiter.mjs +12 -6
  100. package/src/web/waiters/RecipeWaiter.mjs +2 -2
  101. package/tests/browser/02_ops.js +23 -3
  102. package/tests/node/index.mjs +1 -0
  103. package/tests/node/tests/lib/BigIntUtils.mjs +150 -0
  104. package/tests/node/tests/operations.mjs +9 -7
  105. package/tests/operations/index.mjs +8 -0
  106. package/tests/operations/tests/A1Z26CipherDecode.mjs +33 -0
  107. package/tests/operations/tests/DisassembleARM.mjs +377 -0
  108. package/tests/operations/tests/ExtractAudioMetadata.mjs +287 -0
  109. package/tests/operations/tests/FlaskSession.mjs +246 -0
  110. package/tests/operations/tests/GenerateQRCode.mjs +67 -0
  111. package/tests/operations/tests/JWTSign.mjs +83 -8
  112. package/tests/operations/tests/Jq.mjs +32 -0
  113. package/tests/operations/tests/Modhex.mjs +20 -0
  114. package/tests/operations/tests/ParseEthernetFrame.mjs +45 -0
  115. package/tests/operations/tests/RC6.mjs +487 -0
  116. package/tests/operations/tests/SQLBeautify.mjs +54 -0
  117. package/tests/operations/tests/TextIntegerConverter.mjs +199 -0
  118. package/tests/samples/Audio.mjs +73 -0
  119. package/tests/samples/Images.mjs +0 -12
  120. package/webpack.config.js +10 -7
  121. package/src/core/lib/ImageManipulation.mjs +0 -251
@@ -1,492 +1,498 @@
1
- info face="Roboto Slab Regular" size=72 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=1,1,1,1 spacing=-2,-2
2
- common lineHeight=96 base=76 scaleW=512 scaleH=512 pages=1 packed=0
3
- page id=0 file="RobotoSlab72White.png"
4
- chars count=98
5
- char id=0 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=75 xadvance=0 page=0 chnl=0
6
- char id=10 x=0 y=0 width=70 height=98 xoffset=0 yoffset=-1 xadvance=70 page=0 chnl=0
7
- char id=32 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=75 xadvance=18 page=0 chnl=0
8
- char id=33 x=497 y=156 width=9 height=54 xoffset=4 yoffset=23 xadvance=17 page=0 chnl=0
9
- char id=34 x=191 y=362 width=19 height=20 xoffset=5 yoffset=20 xadvance=28 page=0 chnl=0
10
- char id=35 x=406 y=266 width=41 height=54 xoffset=1 yoffset=23 xadvance=43 page=0 chnl=0
11
- char id=36 x=212 y=0 width=35 height=69 xoffset=2 yoffset=15 xadvance=39 page=0 chnl=0
12
- char id=37 x=174 y=156 width=48 height=56 xoffset=2 yoffset=22 xadvance=52 page=0 chnl=0
13
- char id=38 x=222 y=156 width=44 height=56 xoffset=2 yoffset=22 xadvance=46 page=0 chnl=0
14
- char id=39 x=210 y=362 width=8 height=20 xoffset=5 yoffset=20 xadvance=17 page=0 chnl=0
15
- char id=40 x=70 y=0 width=21 height=77 xoffset=3 yoffset=17 xadvance=23 page=0 chnl=0
16
- char id=41 x=91 y=0 width=21 height=77 xoffset=-1 yoffset=17 xadvance=23 page=0 chnl=0
17
- char id=42 x=100 y=362 width=31 height=33 xoffset=1 yoffset=23 xadvance=33 page=0 chnl=0
18
- char id=43 x=0 y=362 width=37 height=40 xoffset=2 yoffset=32 xadvance=41 page=0 chnl=0
19
- char id=44 x=492 y=320 width=13 height=21 xoffset=-1 yoffset=67 xadvance=14 page=0 chnl=0
20
- char id=45 x=287 y=362 width=19 height=8 xoffset=4 yoffset=50 xadvance=27 page=0 chnl=0
21
- char id=46 x=278 y=362 width=9 height=9 xoffset=4 yoffset=68 xadvance=17 page=0 chnl=0
22
- char id=47 x=470 y=0 width=30 height=58 xoffset=-1 yoffset=23 xadvance=29 page=0 chnl=0
23
- char id=48 x=139 y=156 width=35 height=56 xoffset=3 yoffset=22 xadvance=41 page=0 chnl=0
24
- char id=49 x=305 y=266 width=25 height=54 xoffset=3 yoffset=23 xadvance=30 page=0 chnl=0
25
- char id=50 x=357 y=156 width=36 height=55 xoffset=2 yoffset=22 xadvance=40 page=0 chnl=0
26
- char id=51 x=0 y=156 width=34 height=56 xoffset=2 yoffset=22 xadvance=39 page=0 chnl=0
27
- char id=52 x=330 y=266 width=39 height=54 xoffset=1 yoffset=23 xadvance=42 page=0 chnl=0
28
- char id=53 x=393 y=156 width=33 height=55 xoffset=2 yoffset=23 xadvance=37 page=0 chnl=0
29
- char id=54 x=34 y=156 width=35 height=56 xoffset=3 yoffset=22 xadvance=40 page=0 chnl=0
30
- char id=55 x=369 y=266 width=37 height=54 xoffset=2 yoffset=23 xadvance=40 page=0 chnl=0
31
- char id=56 x=69 y=156 width=35 height=56 xoffset=2 yoffset=22 xadvance=39 page=0 chnl=0
32
- char id=57 x=104 y=156 width=35 height=56 xoffset=2 yoffset=22 xadvance=41 page=0 chnl=0
33
- char id=58 x=500 y=0 width=9 height=40 xoffset=4 yoffset=37 xadvance=15 page=0 chnl=0
34
- char id=59 x=447 y=266 width=13 height=52 xoffset=0 yoffset=37 xadvance=15 page=0 chnl=0
35
- char id=60 x=37 y=362 width=31 height=35 xoffset=2 yoffset=39 xadvance=36 page=0 chnl=0
36
- char id=61 x=160 y=362 width=31 height=23 xoffset=4 yoffset=40 xadvance=39 page=0 chnl=0
37
- char id=62 x=68 y=362 width=32 height=35 xoffset=3 yoffset=39 xadvance=37 page=0 chnl=0
38
- char id=63 x=480 y=98 width=31 height=55 xoffset=1 yoffset=22 xadvance=33 page=0 chnl=0
39
- char id=64 x=247 y=0 width=60 height=68 xoffset=1 yoffset=25 xadvance=64 page=0 chnl=0
40
- char id=65 x=426 y=156 width=51 height=54 xoffset=1 yoffset=23 xadvance=53 page=0 chnl=0
41
- char id=66 x=0 y=212 width=44 height=54 xoffset=1 yoffset=23 xadvance=47 page=0 chnl=0
42
- char id=67 x=191 y=98 width=42 height=56 xoffset=1 yoffset=22 xadvance=46 page=0 chnl=0
43
- char id=68 x=44 y=212 width=46 height=54 xoffset=1 yoffset=23 xadvance=50 page=0 chnl=0
44
- char id=69 x=90 y=212 width=42 height=54 xoffset=1 yoffset=23 xadvance=46 page=0 chnl=0
45
- char id=70 x=132 y=212 width=42 height=54 xoffset=1 yoffset=23 xadvance=44 page=0 chnl=0
46
- char id=71 x=233 y=98 width=43 height=56 xoffset=1 yoffset=22 xadvance=49 page=0 chnl=0
47
- char id=72 x=174 y=212 width=52 height=54 xoffset=1 yoffset=23 xadvance=55 page=0 chnl=0
48
- char id=73 x=477 y=156 width=20 height=54 xoffset=1 yoffset=23 xadvance=22 page=0 chnl=0
49
- char id=74 x=266 y=156 width=39 height=55 xoffset=1 yoffset=23 xadvance=41 page=0 chnl=0
50
- char id=75 x=226 y=212 width=48 height=54 xoffset=1 yoffset=23 xadvance=50 page=0 chnl=0
51
- char id=76 x=274 y=212 width=39 height=54 xoffset=1 yoffset=23 xadvance=42 page=0 chnl=0
52
- char id=77 x=313 y=212 width=64 height=54 xoffset=1 yoffset=23 xadvance=66 page=0 chnl=0
53
- char id=78 x=377 y=212 width=52 height=54 xoffset=1 yoffset=23 xadvance=54 page=0 chnl=0
54
- char id=79 x=276 y=98 width=47 height=56 xoffset=2 yoffset=22 xadvance=51 page=0 chnl=0
55
- char id=80 x=429 y=212 width=43 height=54 xoffset=1 yoffset=23 xadvance=45 page=0 chnl=0
56
- char id=81 x=307 y=0 width=48 height=64 xoffset=2 yoffset=22 xadvance=51 page=0 chnl=0
57
- char id=82 x=0 y=266 width=46 height=54 xoffset=1 yoffset=23 xadvance=48 page=0 chnl=0
58
- char id=83 x=323 y=98 width=38 height=56 xoffset=3 yoffset=22 xadvance=43 page=0 chnl=0
59
- char id=84 x=46 y=266 width=45 height=54 xoffset=0 yoffset=23 xadvance=45 page=0 chnl=0
60
- char id=85 x=305 y=156 width=52 height=55 xoffset=1 yoffset=23 xadvance=54 page=0 chnl=0
61
- char id=86 x=91 y=266 width=50 height=54 xoffset=1 yoffset=23 xadvance=52 page=0 chnl=0
62
- char id=87 x=141 y=266 width=67 height=54 xoffset=0 yoffset=23 xadvance=67 page=0 chnl=0
63
- char id=88 x=208 y=266 width=49 height=54 xoffset=1 yoffset=23 xadvance=51 page=0 chnl=0
64
- char id=89 x=257 y=266 width=48 height=54 xoffset=1 yoffset=23 xadvance=50 page=0 chnl=0
65
- char id=90 x=472 y=212 width=38 height=54 xoffset=2 yoffset=23 xadvance=42 page=0 chnl=0
66
- char id=91 x=180 y=0 width=16 height=72 xoffset=5 yoffset=16 xadvance=21 page=0 chnl=0
67
- char id=92 x=0 y=98 width=31 height=58 xoffset=0 yoffset=23 xadvance=30 page=0 chnl=0
68
- char id=93 x=196 y=0 width=16 height=72 xoffset=-1 yoffset=16 xadvance=19 page=0 chnl=0
69
- char id=94 x=131 y=362 width=29 height=28 xoffset=1 yoffset=23 xadvance=30 page=0 chnl=0
70
- char id=95 x=306 y=362 width=34 height=8 xoffset=3 yoffset=74 xadvance=40 page=0 chnl=0
71
- char id=96 x=260 y=362 width=18 height=12 xoffset=1 yoffset=22 xadvance=20 page=0 chnl=0
72
- char id=97 x=0 y=320 width=36 height=42 xoffset=3 yoffset=36 xadvance=41 page=0 chnl=0
73
- char id=98 x=363 y=0 width=41 height=58 xoffset=-2 yoffset=20 xadvance=42 page=0 chnl=0
74
- char id=99 x=36 y=320 width=34 height=42 xoffset=2 yoffset=36 xadvance=39 page=0 chnl=0
75
- char id=100 x=404 y=0 width=40 height=58 xoffset=2 yoffset=20 xadvance=43 page=0 chnl=0
76
- char id=101 x=70 y=320 width=34 height=42 xoffset=2 yoffset=36 xadvance=39 page=0 chnl=0
77
- char id=102 x=444 y=0 width=26 height=58 xoffset=1 yoffset=19 xadvance=25 page=0 chnl=0
78
- char id=103 x=31 y=98 width=34 height=57 xoffset=2 yoffset=36 xadvance=40 page=0 chnl=0
79
- char id=104 x=65 y=98 width=44 height=57 xoffset=1 yoffset=20 xadvance=46 page=0 chnl=0
80
- char id=105 x=109 y=98 width=20 height=57 xoffset=2 yoffset=20 xadvance=23 page=0 chnl=0
81
- char id=106 x=112 y=0 width=18 height=73 xoffset=-2 yoffset=20 xadvance=20 page=0 chnl=0
82
- char id=107 x=129 y=98 width=42 height=57 xoffset=1 yoffset=20 xadvance=44 page=0 chnl=0
83
- char id=108 x=171 y=98 width=20 height=57 xoffset=1 yoffset=20 xadvance=22 page=0 chnl=0
84
- char id=109 x=171 y=320 width=66 height=41 xoffset=1 yoffset=36 xadvance=68 page=0 chnl=0
85
- char id=110 x=237 y=320 width=44 height=41 xoffset=1 yoffset=36 xadvance=46 page=0 chnl=0
86
- char id=111 x=104 y=320 width=36 height=42 xoffset=2 yoffset=36 xadvance=40 page=0 chnl=0
87
- char id=112 x=361 y=98 width=40 height=56 xoffset=1 yoffset=36 xadvance=43 page=0 chnl=0
88
- char id=113 x=401 y=98 width=39 height=56 xoffset=2 yoffset=36 xadvance=40 page=0 chnl=0
89
- char id=114 x=484 y=266 width=27 height=41 xoffset=2 yoffset=36 xadvance=30 page=0 chnl=0
90
- char id=115 x=140 y=320 width=31 height=42 xoffset=3 yoffset=36 xadvance=36 page=0 chnl=0
91
- char id=116 x=460 y=266 width=24 height=51 xoffset=1 yoffset=27 xadvance=26 page=0 chnl=0
92
- char id=117 x=281 y=320 width=43 height=41 xoffset=0 yoffset=37 xadvance=44 page=0 chnl=0
93
- char id=118 x=324 y=320 width=39 height=40 xoffset=0 yoffset=37 xadvance=40 page=0 chnl=0
94
- char id=119 x=363 y=320 width=57 height=40 xoffset=1 yoffset=37 xadvance=59 page=0 chnl=0
95
- char id=120 x=420 y=320 width=40 height=40 xoffset=1 yoffset=37 xadvance=42 page=0 chnl=0
96
- char id=121 x=440 y=98 width=40 height=56 xoffset=0 yoffset=37 xadvance=41 page=0 chnl=0
97
- char id=122 x=460 y=320 width=32 height=40 xoffset=3 yoffset=37 xadvance=38 page=0 chnl=0
98
- char id=123 x=130 y=0 width=25 height=73 xoffset=1 yoffset=18 xadvance=25 page=0 chnl=0
99
- char id=124 x=355 y=0 width=8 height=63 xoffset=4 yoffset=23 xadvance=16 page=0 chnl=0
100
- char id=125 x=155 y=0 width=25 height=73 xoffset=-1 yoffset=18 xadvance=25 page=0 chnl=0
101
- char id=126 x=218 y=362 width=42 height=16 xoffset=3 yoffset=47 xadvance=49 page=0 chnl=0
102
- char id=127 x=0 y=0 width=70 height=98 xoffset=0 yoffset=-1 xadvance=70 page=0 chnl=0
103
- kernings count=389
104
- kerning first=86 second=45 amount=-1
105
- kerning first=114 second=46 amount=-4
106
- kerning first=40 second=87 amount=1
107
- kerning first=70 second=99 amount=-1
108
- kerning first=84 second=110 amount=-3
109
- kerning first=114 second=116 amount=1
110
- kerning first=39 second=65 amount=-4
111
- kerning first=104 second=34 amount=-1
112
- kerning first=89 second=71 amount=-1
113
- kerning first=107 second=113 amount=-1
114
- kerning first=78 second=88 amount=1
115
- kerning first=109 second=39 amount=-1
116
- kerning first=120 second=100 amount=-1
117
- kerning first=84 second=100 amount=-3
118
- kerning first=68 second=90 amount=-1
119
- kerning first=68 second=44 amount=-4
120
- kerning first=84 second=103 amount=-3
121
- kerning first=34 second=97 amount=-2
122
- kerning first=70 second=97 amount=-1
123
- kerning first=76 second=81 amount=-2
124
- kerning first=73 second=89 amount=-1
125
- kerning first=84 second=44 amount=-8
126
- kerning first=68 second=65 amount=-3
127
- kerning first=97 second=34 amount=-2
128
- kerning first=111 second=121 amount=-1
129
- kerning first=79 second=90 amount=-1
130
- kerning first=75 second=121 amount=-1
131
- kerning first=75 second=118 amount=-1
132
- kerning first=111 second=118 amount=-1
133
- kerning first=89 second=65 amount=-9
134
- kerning first=75 second=71 amount=-4
135
- kerning first=39 second=99 amount=-2
136
- kerning first=75 second=99 amount=-1
137
- kerning first=90 second=121 amount=-1
138
- kerning first=44 second=39 amount=-6
139
- kerning first=89 second=46 amount=-7
140
- kerning first=89 second=74 amount=-7
141
- kerning first=34 second=103 amount=-2
142
- kerning first=70 second=103 amount=-1
143
- kerning first=112 second=39 amount=-1
144
- kerning first=122 second=113 amount=-1
145
- kerning first=86 second=113 amount=-2
146
- kerning first=68 second=84 amount=-1
147
- kerning first=89 second=110 amount=-1
148
- kerning first=34 second=100 amount=-2
149
- kerning first=68 second=86 amount=-1
150
- kerning first=87 second=45 amount=-2
151
- kerning first=39 second=34 amount=-4
152
- kerning first=114 second=100 amount=-1
153
- kerning first=84 second=81 amount=-1
154
- kerning first=70 second=101 amount=-1
155
- kerning first=68 second=89 amount=-2
156
- kerning first=88 second=117 amount=-1
157
- kerning first=112 second=34 amount=-1
158
- kerning first=76 second=67 amount=-2
159
- kerning first=76 second=34 amount=-5
160
- kerning first=88 second=111 amount=-1
161
- kerning first=66 second=86 amount=-1
162
- kerning first=66 second=89 amount=-2
163
- kerning first=122 second=101 amount=-1
164
- kerning first=86 second=101 amount=-2
165
- kerning first=76 second=121 amount=-5
166
- kerning first=84 second=119 amount=-2
167
- kerning first=84 second=112 amount=-3
168
- kerning first=87 second=111 amount=-1
169
- kerning first=69 second=118 amount=-1
170
- kerning first=65 second=117 amount=-2
171
- kerning first=65 second=89 amount=-9
172
- kerning first=72 second=89 amount=-1
173
- kerning first=119 second=44 amount=-4
174
- kerning first=69 second=121 amount=-1
175
- kerning first=84 second=109 amount=-3
176
- kerning first=84 second=122 amount=-2
177
- kerning first=89 second=99 amount=-2
178
- kerning first=76 second=118 amount=-5
179
- kerning first=90 second=99 amount=-1
180
- kerning first=90 second=103 amount=-1
181
- kerning first=79 second=89 amount=-2
182
- kerning first=90 second=79 amount=-1
183
- kerning first=84 second=115 amount=-4
184
- kerning first=76 second=65 amount=1
185
- kerning first=90 second=100 amount=-1
186
- kerning first=118 second=46 amount=-4
187
- kerning first=87 second=117 amount=-1
188
- kerning first=118 second=34 amount=1
189
- kerning first=69 second=103 amount=-1
190
- kerning first=97 second=121 amount=-1
191
- kerning first=39 second=111 amount=-2
192
- kerning first=72 second=88 amount=1
193
- kerning first=76 second=87 amount=-5
194
- kerning first=69 second=119 amount=-1
195
- kerning first=121 second=97 amount=-1
196
- kerning first=75 second=45 amount=-8
197
- kerning first=65 second=86 amount=-9
198
- kerning first=46 second=34 amount=-6
199
- kerning first=76 second=84 amount=-10
200
- kerning first=116 second=111 amount=-1
201
- kerning first=87 second=113 amount=-1
202
- kerning first=69 second=100 amount=-1
203
- kerning first=97 second=118 amount=-1
204
- kerning first=65 second=85 amount=-2
205
- kerning first=90 second=71 amount=-1
206
- kerning first=68 second=46 amount=-4
207
- kerning first=65 second=79 amount=-3
208
- kerning first=98 second=122 amount=-1
209
- kerning first=86 second=41 amount=1
210
- kerning first=84 second=118 amount=-3
211
- kerning first=70 second=118 amount=-1
212
- kerning first=121 second=111 amount=-1
213
- kerning first=81 second=87 amount=-1
214
- kerning first=70 second=100 amount=-1
215
- kerning first=102 second=93 amount=1
216
- kerning first=114 second=101 amount=-1
217
- kerning first=88 second=45 amount=-2
218
- kerning first=39 second=103 amount=-2
219
- kerning first=75 second=103 amount=-1
220
- kerning first=88 second=101 amount=-1
221
- kerning first=89 second=103 amount=-2
222
- kerning first=110 second=39 amount=-1
223
- kerning first=89 second=89 amount=1
224
- kerning first=87 second=65 amount=-2
225
- kerning first=119 second=46 amount=-4
226
- kerning first=34 second=34 amount=-4
227
- kerning first=88 second=79 amount=-2
228
- kerning first=79 second=86 amount=-1
229
- kerning first=76 second=119 amount=-3
230
- kerning first=75 second=111 amount=-1
231
- kerning first=65 second=116 amount=-4
232
- kerning first=86 second=65 amount=-9
233
- kerning first=70 second=84 amount=1
234
- kerning first=75 second=117 amount=-1
235
- kerning first=80 second=65 amount=-9
236
- kerning first=34 second=112 amount=-1
237
- kerning first=102 second=99 amount=-1
238
- kerning first=118 second=97 amount=-1
239
- kerning first=89 second=81 amount=-1
240
- kerning first=118 second=111 amount=-1
241
- kerning first=102 second=101 amount=-1
242
- kerning first=114 second=44 amount=-4
243
- kerning first=90 second=119 amount=-1
244
- kerning first=75 second=81 amount=-4
245
- kerning first=88 second=121 amount=-1
246
- kerning first=34 second=110 amount=-1
247
- kerning first=86 second=100 amount=-2
248
- kerning first=122 second=100 amount=-1
249
- kerning first=89 second=67 amount=-1
250
- kerning first=90 second=118 amount=-1
251
- kerning first=84 second=84 amount=1
252
- kerning first=121 second=34 amount=1
253
- kerning first=91 second=74 amount=-1
254
- kerning first=88 second=113 amount=-1
255
- kerning first=77 second=88 amount=1
256
- kerning first=75 second=119 amount=-2
257
- kerning first=114 second=104 amount=-1
258
- kerning first=68 second=88 amount=-2
259
- kerning first=121 second=44 amount=-4
260
- kerning first=81 second=89 amount=-1
261
- kerning first=102 second=39 amount=1
262
- kerning first=74 second=65 amount=-2
263
- kerning first=114 second=118 amount=1
264
- kerning first=84 second=46 amount=-8
265
- kerning first=111 second=34 amount=-1
266
- kerning first=88 second=71 amount=-2
267
- kerning first=88 second=99 amount=-1
268
- kerning first=84 second=74 amount=-8
269
- kerning first=39 second=109 amount=-1
270
- kerning first=98 second=34 amount=-1
271
- kerning first=86 second=114 amount=-1
272
- kerning first=88 second=81 amount=-2
273
- kerning first=70 second=74 amount=-11
274
- kerning first=89 second=83 amount=-1
275
- kerning first=87 second=41 amount=1
276
- kerning first=89 second=97 amount=-3
277
- kerning first=89 second=87 amount=1
278
- kerning first=67 second=125 amount=-1
279
- kerning first=89 second=93 amount=1
280
- kerning first=80 second=118 amount=1
281
- kerning first=107 second=100 amount=-1
282
- kerning first=114 second=34 amount=1
283
- kerning first=89 second=109 amount=-1
284
- kerning first=89 second=45 amount=-2
285
- kerning first=70 second=44 amount=-8
286
- kerning first=34 second=39 amount=-4
287
- kerning first=88 second=67 amount=-2
288
- kerning first=70 second=46 amount=-8
289
- kerning first=102 second=41 amount=1
290
- kerning first=89 second=117 amount=-1
291
- kerning first=89 second=111 amount=-4
292
- kerning first=89 second=115 amount=-4
293
- kerning first=114 second=102 amount=1
294
- kerning first=89 second=125 amount=1
295
- kerning first=89 second=121 amount=-1
296
- kerning first=114 second=108 amount=-1
297
- kerning first=47 second=47 amount=-8
298
- kerning first=65 second=63 amount=-2
299
- kerning first=75 second=67 amount=-4
300
- kerning first=87 second=100 amount=-1
301
- kerning first=111 second=104 amount=-1
302
- kerning first=111 second=107 amount=-1
303
- kerning first=75 second=109 amount=-1
304
- kerning first=87 second=114 amount=-1
305
- kerning first=111 second=120 amount=-1
306
- kerning first=69 second=99 amount=-1
307
- kerning first=65 second=84 amount=-6
308
- kerning first=39 second=97 amount=-2
309
- kerning first=121 second=46 amount=-4
310
- kerning first=89 second=85 amount=-3
311
- kerning first=75 second=79 amount=-4
312
- kerning first=107 second=99 amount=-1
313
- kerning first=102 second=100 amount=-1
314
- kerning first=102 second=103 amount=-1
315
- kerning first=75 second=110 amount=-1
316
- kerning first=39 second=110 amount=-1
317
- kerning first=69 second=84 amount=1
318
- kerning first=84 second=111 amount=-3
319
- kerning first=120 second=111 amount=-1
320
- kerning first=84 second=114 amount=-3
321
- kerning first=112 second=120 amount=-1
322
- kerning first=79 second=84 amount=-1
323
- kerning first=84 second=117 amount=-3
324
- kerning first=89 second=79 amount=-1
325
- kerning first=75 second=113 amount=-1
326
- kerning first=39 second=113 amount=-2
327
- kerning first=80 second=44 amount=-11
328
- kerning first=79 second=88 amount=-2
329
- kerning first=98 second=39 amount=-1
330
- kerning first=65 second=118 amount=-4
331
- kerning first=65 second=34 amount=-4
332
- kerning first=88 second=103 amount=-1
333
- kerning first=77 second=89 amount=-1
334
- kerning first=39 second=101 amount=-2
335
- kerning first=75 second=101 amount=-1
336
- kerning first=88 second=100 amount=-1
337
- kerning first=78 second=65 amount=-3
338
- kerning first=87 second=44 amount=-4
339
- kerning first=67 second=41 amount=-1
340
- kerning first=86 second=93 amount=1
341
- kerning first=84 second=83 amount=-1
342
- kerning first=102 second=113 amount=-1
343
- kerning first=34 second=111 amount=-2
344
- kerning first=70 second=111 amount=-1
345
- kerning first=86 second=99 amount=-2
346
- kerning first=84 second=86 amount=1
347
- kerning first=122 second=99 amount=-1
348
- kerning first=84 second=89 amount=1
349
- kerning first=70 second=114 amount=-1
350
- kerning first=86 second=74 amount=-8
351
- kerning first=89 second=38 amount=-1
352
- kerning first=87 second=97 amount=-1
353
- kerning first=76 second=86 amount=-9
354
- kerning first=40 second=86 amount=1
355
- kerning first=90 second=113 amount=-1
356
- kerning first=39 second=39 amount=-4
357
- kerning first=111 second=39 amount=-1
358
- kerning first=90 second=117 amount=-1
359
- kerning first=89 second=41 amount=1
360
- kerning first=65 second=121 amount=-4
361
- kerning first=89 second=100 amount=-2
362
- kerning first=89 second=42 amount=-2
363
- kerning first=76 second=117 amount=-2
364
- kerning first=69 second=111 amount=-1
365
- kerning first=46 second=39 amount=-6
366
- kerning first=118 second=39 amount=1
367
- kerning first=91 second=85 amount=-1
368
- kerning first=80 second=90 amount=-1
369
- kerning first=90 second=81 amount=-1
370
- kerning first=69 second=117 amount=-1
371
- kerning first=76 second=39 amount=-5
372
- kerning first=90 second=67 amount=-1
373
- kerning first=87 second=103 amount=-1
374
- kerning first=84 second=120 amount=-3
375
- kerning first=89 second=101 amount=-2
376
- kerning first=102 second=125 amount=1
377
- kerning first=76 second=85 amount=-2
378
- kerning first=79 second=65 amount=-3
379
- kerning first=65 second=71 amount=-3
380
- kerning first=79 second=44 amount=-4
381
- kerning first=97 second=39 amount=-2
382
- kerning first=90 second=101 amount=-1
383
- kerning first=65 second=87 amount=-5
384
- kerning first=79 second=46 amount=-4
385
- kerning first=87 second=99 amount=-1
386
- kerning first=34 second=101 amount=-2
387
- kerning first=40 second=89 amount=1
388
- kerning first=76 second=89 amount=-8
389
- kerning first=69 second=113 amount=-1
390
- kerning first=120 second=103 amount=-1
391
- kerning first=69 second=101 amount=-1
392
- kerning first=69 second=102 amount=-1
393
- kerning first=104 second=39 amount=-1
394
- kerning first=80 second=121 amount=1
395
- kerning first=86 second=46 amount=-8
396
- kerning first=65 second=81 amount=-3
397
- kerning first=86 second=44 amount=-8
398
- kerning first=120 second=99 amount=-1
399
- kerning first=98 second=120 amount=-1
400
- kerning first=39 second=115 amount=-3
401
- kerning first=121 second=39 amount=1
402
- kerning first=88 second=118 amount=-1
403
- kerning first=84 second=65 amount=-6
404
- kerning first=65 second=39 amount=-4
405
- kerning first=84 second=79 amount=-1
406
- kerning first=65 second=119 amount=-4
407
- kerning first=70 second=117 amount=-1
408
- kerning first=75 second=100 amount=-1
409
- kerning first=86 second=111 amount=-2
410
- kerning first=122 second=111 amount=-1
411
- kerning first=81 second=84 amount=-2
412
- kerning first=107 second=103 amount=-1
413
- kerning first=118 second=44 amount=-4
414
- kerning first=87 second=46 amount=-4
415
- kerning first=87 second=101 amount=-1
416
- kerning first=70 second=79 amount=-2
417
- kerning first=87 second=74 amount=-2
418
- kerning first=123 second=74 amount=-1
419
- kerning first=76 second=71 amount=-2
420
- kerning first=39 second=100 amount=-2
421
- kerning first=80 second=88 amount=-1
422
- kerning first=84 second=121 amount=-3
423
- kerning first=112 second=122 amount=-1
424
- kerning first=84 second=71 amount=-1
425
- kerning first=89 second=86 amount=1
426
- kerning first=84 second=113 amount=-3
427
- kerning first=120 second=113 amount=-1
428
- kerning first=89 second=44 amount=-7
429
- kerning first=84 second=99 amount=-3
430
- kerning first=34 second=113 amount=-2
431
- kerning first=80 second=46 amount=-11
432
- kerning first=86 second=117 amount=-1
433
- kerning first=110 second=34 amount=-1
434
- kerning first=80 second=74 amount=-7
435
- kerning first=120 second=101 amount=-1
436
- kerning first=73 second=88 amount=1
437
- kerning first=108 second=111 amount=-1
438
- kerning first=34 second=115 amount=-3
439
- kerning first=89 second=113 amount=-2
440
- kerning first=82 second=86 amount=-3
441
- kerning first=114 second=39 amount=1
442
- kerning first=34 second=109 amount=-1
443
- kerning first=84 second=101 amount=-3
444
- kerning first=70 second=121 amount=-1
445
- kerning first=123 second=85 amount=-1
446
- kerning first=122 second=103 amount=-1
447
- kerning first=86 second=97 amount=-2
448
- kerning first=82 second=89 amount=-4
449
- kerning first=66 second=84 amount=-1
450
- kerning first=84 second=97 amount=-4
451
- kerning first=86 second=103 amount=-2
452
- kerning first=70 second=113 amount=-1
453
- kerning first=84 second=87 amount=1
454
- kerning first=75 second=112 amount=-1
455
- kerning first=114 second=111 amount=-1
456
- kerning first=39 second=112 amount=-1
457
- kerning first=107 second=101 amount=-1
458
- kerning first=82 second=84 amount=-3
459
- kerning first=114 second=121 amount=1
460
- kerning first=34 second=99 amount=-2
461
- kerning first=70 second=81 amount=-2
462
- kerning first=111 second=122 amount=-1
463
- kerning first=84 second=67 amount=-1
464
- kerning first=111 second=108 amount=-1
465
- kerning first=89 second=84 amount=1
466
- kerning first=76 second=79 amount=-2
467
- kerning first=85 second=65 amount=-2
468
- kerning first=44 second=34 amount=-6
469
- kerning first=65 second=67 amount=-3
470
- kerning first=109 second=34 amount=-1
471
- kerning first=114 second=103 amount=-1
472
- kerning first=78 second=89 amount=-1
473
- kerning first=89 second=114 amount=-1
474
- kerning first=89 second=112 amount=-1
475
- kerning first=34 second=65 amount=-4
476
- kerning first=70 second=65 amount=-11
477
- kerning first=81 second=86 amount=-1
478
- kerning first=114 second=119 amount=1
479
- kerning first=89 second=102 amount=-1
480
- kerning first=84 second=45 amount=-8
481
- kerning first=86 second=125 amount=1
482
- kerning first=70 second=67 amount=-2
483
- kerning first=89 second=116 amount=-1
484
- kerning first=102 second=34 amount=1
485
- kerning first=114 second=99 amount=-1
486
- kerning first=67 second=84 amount=-1
487
- kerning first=114 second=113 amount=-1
488
- kerning first=89 second=122 amount=-1
489
- kerning first=89 second=118 amount=-1
490
- kerning first=70 second=71 amount=-2
491
- kerning first=114 second=107 amount=-1
492
- kerning first=89 second=120 amount=-1
1
+ <?xml version="1.0"?>
2
+ <font>
3
+ <info face="Roboto Slab Regular" size="72" bold="0" italic="0" charset="" unicode="0" stretchH="100" smooth="1" aa="1" padding="1,1,1,1" spacing="-2,-2" outline="0" />
4
+ <common lineHeight="96" base="76" scaleW="512" scaleH="512" pages="1" packed="0" alphaChnl="0" redChnl="0" greenChnl="0" blueChnl="0" />
5
+ <pages>
6
+ <page id="0" file="RobotoSlab72White.png" /> </pages>
7
+ <chars count="98">
8
+ <char id="0" x="0" y="0" width="0" height="0" xoffset="-1" yoffset="75" xadvance="0" page="0" chnl="0" />
9
+ <char id="10" x="0" y="0" width="70" height="98" xoffset="0" yoffset="-1" xadvance="70" page="0" chnl="0" />
10
+ <char id="32" x="0" y="0" width="0" height="0" xoffset="-1" yoffset="75" xadvance="18" page="0" chnl="0" />
11
+ <char id="33" x="497" y="156" width="9" height="54" xoffset="4" yoffset="23" xadvance="17" page="0" chnl="0" />
12
+ <char id="34" x="191" y="362" width="19" height="20" xoffset="5" yoffset="20" xadvance="28" page="0" chnl="0" />
13
+ <char id="35" x="406" y="266" width="41" height="54" xoffset="1" yoffset="23" xadvance="43" page="0" chnl="0" />
14
+ <char id="36" x="212" y="0" width="35" height="69" xoffset="2" yoffset="15" xadvance="39" page="0" chnl="0" />
15
+ <char id="37" x="174" y="156" width="48" height="56" xoffset="2" yoffset="22" xadvance="52" page="0" chnl="0" />
16
+ <char id="38" x="222" y="156" width="44" height="56" xoffset="2" yoffset="22" xadvance="46" page="0" chnl="0" />
17
+ <char id="39" x="210" y="362" width="8" height="20" xoffset="5" yoffset="20" xadvance="17" page="0" chnl="0" />
18
+ <char id="40" x="70" y="0" width="21" height="77" xoffset="3" yoffset="17" xadvance="23" page="0" chnl="0" />
19
+ <char id="41" x="91" y="0" width="21" height="77" xoffset="-1" yoffset="17" xadvance="23" page="0" chnl="0" />
20
+ <char id="42" x="100" y="362" width="31" height="33" xoffset="1" yoffset="23" xadvance="33" page="0" chnl="0" />
21
+ <char id="43" x="0" y="362" width="37" height="40" xoffset="2" yoffset="32" xadvance="41" page="0" chnl="0" />
22
+ <char id="44" x="492" y="320" width="13" height="21" xoffset="-1" yoffset="67" xadvance="14" page="0" chnl="0" />
23
+ <char id="45" x="287" y="362" width="19" height="8" xoffset="4" yoffset="50" xadvance="27" page="0" chnl="0" />
24
+ <char id="46" x="278" y="362" width="9" height="9" xoffset="4" yoffset="68" xadvance="17" page="0" chnl="0" />
25
+ <char id="47" x="470" y="0" width="30" height="58" xoffset="-1" yoffset="23" xadvance="29" page="0" chnl="0" />
26
+ <char id="48" x="139" y="156" width="35" height="56" xoffset="3" yoffset="22" xadvance="41" page="0" chnl="0" />
27
+ <char id="49" x="305" y="266" width="25" height="54" xoffset="3" yoffset="23" xadvance="30" page="0" chnl="0" />
28
+ <char id="50" x="357" y="156" width="36" height="55" xoffset="2" yoffset="22" xadvance="40" page="0" chnl="0" />
29
+ <char id="51" x="0" y="156" width="34" height="56" xoffset="2" yoffset="22" xadvance="39" page="0" chnl="0" />
30
+ <char id="52" x="330" y="266" width="39" height="54" xoffset="1" yoffset="23" xadvance="42" page="0" chnl="0" />
31
+ <char id="53" x="393" y="156" width="33" height="55" xoffset="2" yoffset="23" xadvance="37" page="0" chnl="0" />
32
+ <char id="54" x="34" y="156" width="35" height="56" xoffset="3" yoffset="22" xadvance="40" page="0" chnl="0" />
33
+ <char id="55" x="369" y="266" width="37" height="54" xoffset="2" yoffset="23" xadvance="40" page="0" chnl="0" />
34
+ <char id="56" x="69" y="156" width="35" height="56" xoffset="2" yoffset="22" xadvance="39" page="0" chnl="0" />
35
+ <char id="57" x="104" y="156" width="35" height="56" xoffset="2" yoffset="22" xadvance="41" page="0" chnl="0" />
36
+ <char id="58" x="500" y="0" width="9" height="40" xoffset="4" yoffset="37" xadvance="15" page="0" chnl="0" />
37
+ <char id="59" x="447" y="266" width="13" height="52" xoffset="0" yoffset="37" xadvance="15" page="0" chnl="0" />
38
+ <char id="60" x="37" y="362" width="31" height="35" xoffset="2" yoffset="39" xadvance="36" page="0" chnl="0" />
39
+ <char id="61" x="160" y="362" width="31" height="23" xoffset="4" yoffset="40" xadvance="39" page="0" chnl="0" />
40
+ <char id="62" x="68" y="362" width="32" height="35" xoffset="3" yoffset="39" xadvance="37" page="0" chnl="0" />
41
+ <char id="63" x="480" y="98" width="31" height="55" xoffset="1" yoffset="22" xadvance="33" page="0" chnl="0" />
42
+ <char id="64" x="247" y="0" width="60" height="68" xoffset="1" yoffset="25" xadvance="64" page="0" chnl="0" />
43
+ <char id="65" x="426" y="156" width="51" height="54" xoffset="1" yoffset="23" xadvance="53" page="0" chnl="0" />
44
+ <char id="66" x="0" y="212" width="44" height="54" xoffset="1" yoffset="23" xadvance="47" page="0" chnl="0" />
45
+ <char id="67" x="191" y="98" width="42" height="56" xoffset="1" yoffset="22" xadvance="46" page="0" chnl="0" />
46
+ <char id="68" x="44" y="212" width="46" height="54" xoffset="1" yoffset="23" xadvance="50" page="0" chnl="0" />
47
+ <char id="69" x="90" y="212" width="42" height="54" xoffset="1" yoffset="23" xadvance="46" page="0" chnl="0" />
48
+ <char id="70" x="132" y="212" width="42" height="54" xoffset="1" yoffset="23" xadvance="44" page="0" chnl="0" />
49
+ <char id="71" x="233" y="98" width="43" height="56" xoffset="1" yoffset="22" xadvance="49" page="0" chnl="0" />
50
+ <char id="72" x="174" y="212" width="52" height="54" xoffset="1" yoffset="23" xadvance="55" page="0" chnl="0" />
51
+ <char id="73" x="477" y="156" width="20" height="54" xoffset="1" yoffset="23" xadvance="22" page="0" chnl="0" />
52
+ <char id="74" x="266" y="156" width="39" height="55" xoffset="1" yoffset="23" xadvance="41" page="0" chnl="0" />
53
+ <char id="75" x="226" y="212" width="48" height="54" xoffset="1" yoffset="23" xadvance="50" page="0" chnl="0" />
54
+ <char id="76" x="274" y="212" width="39" height="54" xoffset="1" yoffset="23" xadvance="42" page="0" chnl="0" />
55
+ <char id="77" x="313" y="212" width="64" height="54" xoffset="1" yoffset="23" xadvance="66" page="0" chnl="0" />
56
+ <char id="78" x="377" y="212" width="52" height="54" xoffset="1" yoffset="23" xadvance="54" page="0" chnl="0" />
57
+ <char id="79" x="276" y="98" width="47" height="56" xoffset="2" yoffset="22" xadvance="51" page="0" chnl="0" />
58
+ <char id="80" x="429" y="212" width="43" height="54" xoffset="1" yoffset="23" xadvance="45" page="0" chnl="0" />
59
+ <char id="81" x="307" y="0" width="48" height="64" xoffset="2" yoffset="22" xadvance="51" page="0" chnl="0" />
60
+ <char id="82" x="0" y="266" width="46" height="54" xoffset="1" yoffset="23" xadvance="48" page="0" chnl="0" />
61
+ <char id="83" x="323" y="98" width="38" height="56" xoffset="3" yoffset="22" xadvance="43" page="0" chnl="0" />
62
+ <char id="84" x="46" y="266" width="45" height="54" xoffset="0" yoffset="23" xadvance="45" page="0" chnl="0" />
63
+ <char id="85" x="305" y="156" width="52" height="55" xoffset="1" yoffset="23" xadvance="54" page="0" chnl="0" />
64
+ <char id="86" x="91" y="266" width="50" height="54" xoffset="1" yoffset="23" xadvance="52" page="0" chnl="0" />
65
+ <char id="87" x="141" y="266" width="67" height="54" xoffset="0" yoffset="23" xadvance="67" page="0" chnl="0" />
66
+ <char id="88" x="208" y="266" width="49" height="54" xoffset="1" yoffset="23" xadvance="51" page="0" chnl="0" />
67
+ <char id="89" x="257" y="266" width="48" height="54" xoffset="1" yoffset="23" xadvance="50" page="0" chnl="0" />
68
+ <char id="90" x="472" y="212" width="38" height="54" xoffset="2" yoffset="23" xadvance="42" page="0" chnl="0" />
69
+ <char id="91" x="180" y="0" width="16" height="72" xoffset="5" yoffset="16" xadvance="21" page="0" chnl="0" />
70
+ <char id="92" x="0" y="98" width="31" height="58" xoffset="0" yoffset="23" xadvance="30" page="0" chnl="0" />
71
+ <char id="93" x="196" y="0" width="16" height="72" xoffset="-1" yoffset="16" xadvance="19" page="0" chnl="0" />
72
+ <char id="94" x="131" y="362" width="29" height="28" xoffset="1" yoffset="23" xadvance="30" page="0" chnl="0" />
73
+ <char id="95" x="306" y="362" width="34" height="8" xoffset="3" yoffset="74" xadvance="40" page="0" chnl="0" />
74
+ <char id="96" x="260" y="362" width="18" height="12" xoffset="1" yoffset="22" xadvance="20" page="0" chnl="0" />
75
+ <char id="97" x="0" y="320" width="36" height="42" xoffset="3" yoffset="36" xadvance="41" page="0" chnl="0" />
76
+ <char id="98" x="363" y="0" width="41" height="58" xoffset="-2" yoffset="20" xadvance="42" page="0" chnl="0" />
77
+ <char id="99" x="36" y="320" width="34" height="42" xoffset="2" yoffset="36" xadvance="39" page="0" chnl="0" />
78
+ <char id="100" x="404" y="0" width="40" height="58" xoffset="2" yoffset="20" xadvance="43" page="0" chnl="0" />
79
+ <char id="101" x="70" y="320" width="34" height="42" xoffset="2" yoffset="36" xadvance="39" page="0" chnl="0" />
80
+ <char id="102" x="444" y="0" width="26" height="58" xoffset="1" yoffset="19" xadvance="25" page="0" chnl="0" />
81
+ <char id="103" x="31" y="98" width="34" height="57" xoffset="2" yoffset="36" xadvance="40" page="0" chnl="0" />
82
+ <char id="104" x="65" y="98" width="44" height="57" xoffset="1" yoffset="20" xadvance="46" page="0" chnl="0" />
83
+ <char id="105" x="109" y="98" width="20" height="57" xoffset="2" yoffset="20" xadvance="23" page="0" chnl="0" />
84
+ <char id="106" x="112" y="0" width="18" height="73" xoffset="-2" yoffset="20" xadvance="20" page="0" chnl="0" />
85
+ <char id="107" x="129" y="98" width="42" height="57" xoffset="1" yoffset="20" xadvance="44" page="0" chnl="0" />
86
+ <char id="108" x="171" y="98" width="20" height="57" xoffset="1" yoffset="20" xadvance="22" page="0" chnl="0" />
87
+ <char id="109" x="171" y="320" width="66" height="41" xoffset="1" yoffset="36" xadvance="68" page="0" chnl="0" />
88
+ <char id="110" x="237" y="320" width="44" height="41" xoffset="1" yoffset="36" xadvance="46" page="0" chnl="0" />
89
+ <char id="111" x="104" y="320" width="36" height="42" xoffset="2" yoffset="36" xadvance="40" page="0" chnl="0" />
90
+ <char id="112" x="361" y="98" width="40" height="56" xoffset="1" yoffset="36" xadvance="43" page="0" chnl="0" />
91
+ <char id="113" x="401" y="98" width="39" height="56" xoffset="2" yoffset="36" xadvance="40" page="0" chnl="0" />
92
+ <char id="114" x="484" y="266" width="27" height="41" xoffset="2" yoffset="36" xadvance="30" page="0" chnl="0" />
93
+ <char id="115" x="140" y="320" width="31" height="42" xoffset="3" yoffset="36" xadvance="36" page="0" chnl="0" />
94
+ <char id="116" x="460" y="266" width="24" height="51" xoffset="1" yoffset="27" xadvance="26" page="0" chnl="0" />
95
+ <char id="117" x="281" y="320" width="43" height="41" xoffset="0" yoffset="37" xadvance="44" page="0" chnl="0" />
96
+ <char id="118" x="324" y="320" width="39" height="40" xoffset="0" yoffset="37" xadvance="40" page="0" chnl="0" />
97
+ <char id="119" x="363" y="320" width="57" height="40" xoffset="1" yoffset="37" xadvance="59" page="0" chnl="0" />
98
+ <char id="120" x="420" y="320" width="40" height="40" xoffset="1" yoffset="37" xadvance="42" page="0" chnl="0" />
99
+ <char id="121" x="440" y="98" width="40" height="56" xoffset="0" yoffset="37" xadvance="41" page="0" chnl="0" />
100
+ <char id="122" x="460" y="320" width="32" height="40" xoffset="3" yoffset="37" xadvance="38" page="0" chnl="0" />
101
+ <char id="123" x="130" y="0" width="25" height="73" xoffset="1" yoffset="18" xadvance="25" page="0" chnl="0" />
102
+ <char id="124" x="355" y="0" width="8" height="63" xoffset="4" yoffset="23" xadvance="16" page="0" chnl="0" />
103
+ <char id="125" x="155" y="0" width="25" height="73" xoffset="-1" yoffset="18" xadvance="25" page="0" chnl="0" />
104
+ <char id="126" x="218" y="362" width="42" height="16" xoffset="3" yoffset="47" xadvance="49" page="0" chnl="0" />
105
+ <char id="127" x="0" y="0" width="70" height="98" xoffset="0" yoffset="-1" xadvance="70" page="0" chnl="0" />
106
+ </chars>
107
+ <kernings count="389">
108
+ <kerning first="86" second="45" amount="-1" />
109
+ <kerning first="114" second="46" amount="-4" />
110
+ <kerning first="40" second="87" amount="1" />
111
+ <kerning first="70" second="99" amount="-1" />
112
+ <kerning first="84" second="110" amount="-3" />
113
+ <kerning first="114" second="116" amount="1" />
114
+ <kerning first="39" second="65" amount="-4" />
115
+ <kerning first="104" second="34" amount="-1" />
116
+ <kerning first="89" second="71" amount="-1" />
117
+ <kerning first="107" second="113" amount="-1" />
118
+ <kerning first="78" second="88" amount="1" />
119
+ <kerning first="109" second="39" amount="-1" />
120
+ <kerning first="120" second="100" amount="-1" />
121
+ <kerning first="84" second="100" amount="-3" />
122
+ <kerning first="68" second="90" amount="-1" />
123
+ <kerning first="68" second="44" amount="-4" />
124
+ <kerning first="84" second="103" amount="-3" />
125
+ <kerning first="34" second="97" amount="-2" />
126
+ <kerning first="70" second="97" amount="-1" />
127
+ <kerning first="76" second="81" amount="-2" />
128
+ <kerning first="73" second="89" amount="-1" />
129
+ <kerning first="84" second="44" amount="-8" />
130
+ <kerning first="68" second="65" amount="-3" />
131
+ <kerning first="97" second="34" amount="-2" />
132
+ <kerning first="111" second="121" amount="-1" />
133
+ <kerning first="79" second="90" amount="-1" />
134
+ <kerning first="75" second="121" amount="-1" />
135
+ <kerning first="75" second="118" amount="-1" />
136
+ <kerning first="111" second="118" amount="-1" />
137
+ <kerning first="89" second="65" amount="-9" />
138
+ <kerning first="75" second="71" amount="-4" />
139
+ <kerning first="39" second="99" amount="-2" />
140
+ <kerning first="75" second="99" amount="-1" />
141
+ <kerning first="90" second="121" amount="-1" />
142
+ <kerning first="44" second="39" amount="-6" />
143
+ <kerning first="89" second="46" amount="-7" />
144
+ <kerning first="89" second="74" amount="-7" />
145
+ <kerning first="34" second="103" amount="-2" />
146
+ <kerning first="70" second="103" amount="-1" />
147
+ <kerning first="112" second="39" amount="-1" />
148
+ <kerning first="122" second="113" amount="-1" />
149
+ <kerning first="86" second="113" amount="-2" />
150
+ <kerning first="68" second="84" amount="-1" />
151
+ <kerning first="89" second="110" amount="-1" />
152
+ <kerning first="34" second="100" amount="-2" />
153
+ <kerning first="68" second="86" amount="-1" />
154
+ <kerning first="87" second="45" amount="-2" />
155
+ <kerning first="39" second="34" amount="-4" />
156
+ <kerning first="114" second="100" amount="-1" />
157
+ <kerning first="84" second="81" amount="-1" />
158
+ <kerning first="70" second="101" amount="-1" />
159
+ <kerning first="68" second="89" amount="-2" />
160
+ <kerning first="88" second="117" amount="-1" />
161
+ <kerning first="112" second="34" amount="-1" />
162
+ <kerning first="76" second="67" amount="-2" />
163
+ <kerning first="76" second="34" amount="-5" />
164
+ <kerning first="88" second="111" amount="-1" />
165
+ <kerning first="66" second="86" amount="-1" />
166
+ <kerning first="66" second="89" amount="-2" />
167
+ <kerning first="122" second="101" amount="-1" />
168
+ <kerning first="86" second="101" amount="-2" />
169
+ <kerning first="76" second="121" amount="-5" />
170
+ <kerning first="84" second="119" amount="-2" />
171
+ <kerning first="84" second="112" amount="-3" />
172
+ <kerning first="87" second="111" amount="-1" />
173
+ <kerning first="69" second="118" amount="-1" />
174
+ <kerning first="65" second="117" amount="-2" />
175
+ <kerning first="65" second="89" amount="-9" />
176
+ <kerning first="72" second="89" amount="-1" />
177
+ <kerning first="119" second="44" amount="-4" />
178
+ <kerning first="69" second="121" amount="-1" />
179
+ <kerning first="84" second="109" amount="-3" />
180
+ <kerning first="84" second="122" amount="-2" />
181
+ <kerning first="89" second="99" amount="-2" />
182
+ <kerning first="76" second="118" amount="-5" />
183
+ <kerning first="90" second="99" amount="-1" />
184
+ <kerning first="90" second="103" amount="-1" />
185
+ <kerning first="79" second="89" amount="-2" />
186
+ <kerning first="90" second="79" amount="-1" />
187
+ <kerning first="84" second="115" amount="-4" />
188
+ <kerning first="76" second="65" amount="1" />
189
+ <kerning first="90" second="100" amount="-1" />
190
+ <kerning first="118" second="46" amount="-4" />
191
+ <kerning first="87" second="117" amount="-1" />
192
+ <kerning first="118" second="34" amount="1" />
193
+ <kerning first="69" second="103" amount="-1" />
194
+ <kerning first="97" second="121" amount="-1" />
195
+ <kerning first="39" second="111" amount="-2" />
196
+ <kerning first="72" second="88" amount="1" />
197
+ <kerning first="76" second="87" amount="-5" />
198
+ <kerning first="69" second="119" amount="-1" />
199
+ <kerning first="121" second="97" amount="-1" />
200
+ <kerning first="75" second="45" amount="-8" />
201
+ <kerning first="65" second="86" amount="-9" />
202
+ <kerning first="46" second="34" amount="-6" />
203
+ <kerning first="76" second="84" amount="-10" />
204
+ <kerning first="116" second="111" amount="-1" />
205
+ <kerning first="87" second="113" amount="-1" />
206
+ <kerning first="69" second="100" amount="-1" />
207
+ <kerning first="97" second="118" amount="-1" />
208
+ <kerning first="65" second="85" amount="-2" />
209
+ <kerning first="90" second="71" amount="-1" />
210
+ <kerning first="68" second="46" amount="-4" />
211
+ <kerning first="65" second="79" amount="-3" />
212
+ <kerning first="98" second="122" amount="-1" />
213
+ <kerning first="86" second="41" amount="1" />
214
+ <kerning first="84" second="118" amount="-3" />
215
+ <kerning first="70" second="118" amount="-1" />
216
+ <kerning first="121" second="111" amount="-1" />
217
+ <kerning first="81" second="87" amount="-1" />
218
+ <kerning first="70" second="100" amount="-1" />
219
+ <kerning first="102" second="93" amount="1" />
220
+ <kerning first="114" second="101" amount="-1" />
221
+ <kerning first="88" second="45" amount="-2" />
222
+ <kerning first="39" second="103" amount="-2" />
223
+ <kerning first="75" second="103" amount="-1" />
224
+ <kerning first="88" second="101" amount="-1" />
225
+ <kerning first="89" second="103" amount="-2" />
226
+ <kerning first="110" second="39" amount="-1" />
227
+ <kerning first="89" second="89" amount="1" />
228
+ <kerning first="87" second="65" amount="-2" />
229
+ <kerning first="119" second="46" amount="-4" />
230
+ <kerning first="34" second="34" amount="-4" />
231
+ <kerning first="88" second="79" amount="-2" />
232
+ <kerning first="79" second="86" amount="-1" />
233
+ <kerning first="76" second="119" amount="-3" />
234
+ <kerning first="75" second="111" amount="-1" />
235
+ <kerning first="65" second="116" amount="-4" />
236
+ <kerning first="86" second="65" amount="-9" />
237
+ <kerning first="70" second="84" amount="1" />
238
+ <kerning first="75" second="117" amount="-1" />
239
+ <kerning first="80" second="65" amount="-9" />
240
+ <kerning first="34" second="112" amount="-1" />
241
+ <kerning first="102" second="99" amount="-1" />
242
+ <kerning first="118" second="97" amount="-1" />
243
+ <kerning first="89" second="81" amount="-1" />
244
+ <kerning first="118" second="111" amount="-1" />
245
+ <kerning first="102" second="101" amount="-1" />
246
+ <kerning first="114" second="44" amount="-4" />
247
+ <kerning first="90" second="119" amount="-1" />
248
+ <kerning first="75" second="81" amount="-4" />
249
+ <kerning first="88" second="121" amount="-1" />
250
+ <kerning first="34" second="110" amount="-1" />
251
+ <kerning first="86" second="100" amount="-2" />
252
+ <kerning first="122" second="100" amount="-1" />
253
+ <kerning first="89" second="67" amount="-1" />
254
+ <kerning first="90" second="118" amount="-1" />
255
+ <kerning first="84" second="84" amount="1" />
256
+ <kerning first="121" second="34" amount="1" />
257
+ <kerning first="91" second="74" amount="-1" />
258
+ <kerning first="88" second="113" amount="-1" />
259
+ <kerning first="77" second="88" amount="1" />
260
+ <kerning first="75" second="119" amount="-2" />
261
+ <kerning first="114" second="104" amount="-1" />
262
+ <kerning first="68" second="88" amount="-2" />
263
+ <kerning first="121" second="44" amount="-4" />
264
+ <kerning first="81" second="89" amount="-1" />
265
+ <kerning first="102" second="39" amount="1" />
266
+ <kerning first="74" second="65" amount="-2" />
267
+ <kerning first="114" second="118" amount="1" />
268
+ <kerning first="84" second="46" amount="-8" />
269
+ <kerning first="111" second="34" amount="-1" />
270
+ <kerning first="88" second="71" amount="-2" />
271
+ <kerning first="88" second="99" amount="-1" />
272
+ <kerning first="84" second="74" amount="-8" />
273
+ <kerning first="39" second="109" amount="-1" />
274
+ <kerning first="98" second="34" amount="-1" />
275
+ <kerning first="86" second="114" amount="-1" />
276
+ <kerning first="88" second="81" amount="-2" />
277
+ <kerning first="70" second="74" amount="-11" />
278
+ <kerning first="89" second="83" amount="-1" />
279
+ <kerning first="87" second="41" amount="1" />
280
+ <kerning first="89" second="97" amount="-3" />
281
+ <kerning first="89" second="87" amount="1" />
282
+ <kerning first="67" second="125" amount="-1" />
283
+ <kerning first="89" second="93" amount="1" />
284
+ <kerning first="80" second="118" amount="1" />
285
+ <kerning first="107" second="100" amount="-1" />
286
+ <kerning first="114" second="34" amount="1" />
287
+ <kerning first="89" second="109" amount="-1" />
288
+ <kerning first="89" second="45" amount="-2" />
289
+ <kerning first="70" second="44" amount="-8" />
290
+ <kerning first="34" second="39" amount="-4" />
291
+ <kerning first="88" second="67" amount="-2" />
292
+ <kerning first="70" second="46" amount="-8" />
293
+ <kerning first="102" second="41" amount="1" />
294
+ <kerning first="89" second="117" amount="-1" />
295
+ <kerning first="89" second="111" amount="-4" />
296
+ <kerning first="89" second="115" amount="-4" />
297
+ <kerning first="114" second="102" amount="1" />
298
+ <kerning first="89" second="125" amount="1" />
299
+ <kerning first="89" second="121" amount="-1" />
300
+ <kerning first="114" second="108" amount="-1" />
301
+ <kerning first="47" second="47" amount="-8" />
302
+ <kerning first="65" second="63" amount="-2" />
303
+ <kerning first="75" second="67" amount="-4" />
304
+ <kerning first="87" second="100" amount="-1" />
305
+ <kerning first="111" second="104" amount="-1" />
306
+ <kerning first="111" second="107" amount="-1" />
307
+ <kerning first="75" second="109" amount="-1" />
308
+ <kerning first="87" second="114" amount="-1" />
309
+ <kerning first="111" second="120" amount="-1" />
310
+ <kerning first="69" second="99" amount="-1" />
311
+ <kerning first="65" second="84" amount="-6" />
312
+ <kerning first="39" second="97" amount="-2" />
313
+ <kerning first="121" second="46" amount="-4" />
314
+ <kerning first="89" second="85" amount="-3" />
315
+ <kerning first="75" second="79" amount="-4" />
316
+ <kerning first="107" second="99" amount="-1" />
317
+ <kerning first="102" second="100" amount="-1" />
318
+ <kerning first="102" second="103" amount="-1" />
319
+ <kerning first="75" second="110" amount="-1" />
320
+ <kerning first="39" second="110" amount="-1" />
321
+ <kerning first="69" second="84" amount="1" />
322
+ <kerning first="84" second="111" amount="-3" />
323
+ <kerning first="120" second="111" amount="-1" />
324
+ <kerning first="84" second="114" amount="-3" />
325
+ <kerning first="112" second="120" amount="-1" />
326
+ <kerning first="79" second="84" amount="-1" />
327
+ <kerning first="84" second="117" amount="-3" />
328
+ <kerning first="89" second="79" amount="-1" />
329
+ <kerning first="75" second="113" amount="-1" />
330
+ <kerning first="39" second="113" amount="-2" />
331
+ <kerning first="80" second="44" amount="-11" />
332
+ <kerning first="79" second="88" amount="-2" />
333
+ <kerning first="98" second="39" amount="-1" />
334
+ <kerning first="65" second="118" amount="-4" />
335
+ <kerning first="65" second="34" amount="-4" />
336
+ <kerning first="88" second="103" amount="-1" />
337
+ <kerning first="77" second="89" amount="-1" />
338
+ <kerning first="39" second="101" amount="-2" />
339
+ <kerning first="75" second="101" amount="-1" />
340
+ <kerning first="88" second="100" amount="-1" />
341
+ <kerning first="78" second="65" amount="-3" />
342
+ <kerning first="87" second="44" amount="-4" />
343
+ <kerning first="67" second="41" amount="-1" />
344
+ <kerning first="86" second="93" amount="1" />
345
+ <kerning first="84" second="83" amount="-1" />
346
+ <kerning first="102" second="113" amount="-1" />
347
+ <kerning first="34" second="111" amount="-2" />
348
+ <kerning first="70" second="111" amount="-1" />
349
+ <kerning first="86" second="99" amount="-2" />
350
+ <kerning first="84" second="86" amount="1" />
351
+ <kerning first="122" second="99" amount="-1" />
352
+ <kerning first="84" second="89" amount="1" />
353
+ <kerning first="70" second="114" amount="-1" />
354
+ <kerning first="86" second="74" amount="-8" />
355
+ <kerning first="89" second="38" amount="-1" />
356
+ <kerning first="87" second="97" amount="-1" />
357
+ <kerning first="76" second="86" amount="-9" />
358
+ <kerning first="40" second="86" amount="1" />
359
+ <kerning first="90" second="113" amount="-1" />
360
+ <kerning first="39" second="39" amount="-4" />
361
+ <kerning first="111" second="39" amount="-1" />
362
+ <kerning first="90" second="117" amount="-1" />
363
+ <kerning first="89" second="41" amount="1" />
364
+ <kerning first="65" second="121" amount="-4" />
365
+ <kerning first="89" second="100" amount="-2" />
366
+ <kerning first="89" second="42" amount="-2" />
367
+ <kerning first="76" second="117" amount="-2" />
368
+ <kerning first="69" second="111" amount="-1" />
369
+ <kerning first="46" second="39" amount="-6" />
370
+ <kerning first="118" second="39" amount="1" />
371
+ <kerning first="91" second="85" amount="-1" />
372
+ <kerning first="80" second="90" amount="-1" />
373
+ <kerning first="90" second="81" amount="-1" />
374
+ <kerning first="69" second="117" amount="-1" />
375
+ <kerning first="76" second="39" amount="-5" />
376
+ <kerning first="90" second="67" amount="-1" />
377
+ <kerning first="87" second="103" amount="-1" />
378
+ <kerning first="84" second="120" amount="-3" />
379
+ <kerning first="89" second="101" amount="-2" />
380
+ <kerning first="102" second="125" amount="1" />
381
+ <kerning first="76" second="85" amount="-2" />
382
+ <kerning first="79" second="65" amount="-3" />
383
+ <kerning first="65" second="71" amount="-3" />
384
+ <kerning first="79" second="44" amount="-4" />
385
+ <kerning first="97" second="39" amount="-2" />
386
+ <kerning first="90" second="101" amount="-1" />
387
+ <kerning first="65" second="87" amount="-5" />
388
+ <kerning first="79" second="46" amount="-4" />
389
+ <kerning first="87" second="99" amount="-1" />
390
+ <kerning first="34" second="101" amount="-2" />
391
+ <kerning first="40" second="89" amount="1" />
392
+ <kerning first="76" second="89" amount="-8" />
393
+ <kerning first="69" second="113" amount="-1" />
394
+ <kerning first="120" second="103" amount="-1" />
395
+ <kerning first="69" second="101" amount="-1" />
396
+ <kerning first="69" second="102" amount="-1" />
397
+ <kerning first="104" second="39" amount="-1" />
398
+ <kerning first="80" second="121" amount="1" />
399
+ <kerning first="86" second="46" amount="-8" />
400
+ <kerning first="65" second="81" amount="-3" />
401
+ <kerning first="86" second="44" amount="-8" />
402
+ <kerning first="120" second="99" amount="-1" />
403
+ <kerning first="98" second="120" amount="-1" />
404
+ <kerning first="39" second="115" amount="-3" />
405
+ <kerning first="121" second="39" amount="1" />
406
+ <kerning first="88" second="118" amount="-1" />
407
+ <kerning first="84" second="65" amount="-6" />
408
+ <kerning first="65" second="39" amount="-4" />
409
+ <kerning first="84" second="79" amount="-1" />
410
+ <kerning first="65" second="119" amount="-4" />
411
+ <kerning first="70" second="117" amount="-1" />
412
+ <kerning first="75" second="100" amount="-1" />
413
+ <kerning first="86" second="111" amount="-2" />
414
+ <kerning first="122" second="111" amount="-1" />
415
+ <kerning first="81" second="84" amount="-2" />
416
+ <kerning first="107" second="103" amount="-1" />
417
+ <kerning first="118" second="44" amount="-4" />
418
+ <kerning first="87" second="46" amount="-4" />
419
+ <kerning first="87" second="101" amount="-1" />
420
+ <kerning first="70" second="79" amount="-2" />
421
+ <kerning first="87" second="74" amount="-2" />
422
+ <kerning first="123" second="74" amount="-1" />
423
+ <kerning first="76" second="71" amount="-2" />
424
+ <kerning first="39" second="100" amount="-2" />
425
+ <kerning first="80" second="88" amount="-1" />
426
+ <kerning first="84" second="121" amount="-3" />
427
+ <kerning first="112" second="122" amount="-1" />
428
+ <kerning first="84" second="71" amount="-1" />
429
+ <kerning first="89" second="86" amount="1" />
430
+ <kerning first="84" second="113" amount="-3" />
431
+ <kerning first="120" second="113" amount="-1" />
432
+ <kerning first="89" second="44" amount="-7" />
433
+ <kerning first="84" second="99" amount="-3" />
434
+ <kerning first="34" second="113" amount="-2" />
435
+ <kerning first="80" second="46" amount="-11" />
436
+ <kerning first="86" second="117" amount="-1" />
437
+ <kerning first="110" second="34" amount="-1" />
438
+ <kerning first="80" second="74" amount="-7" />
439
+ <kerning first="120" second="101" amount="-1" />
440
+ <kerning first="73" second="88" amount="1" />
441
+ <kerning first="108" second="111" amount="-1" />
442
+ <kerning first="34" second="115" amount="-3" />
443
+ <kerning first="89" second="113" amount="-2" />
444
+ <kerning first="82" second="86" amount="-3" />
445
+ <kerning first="114" second="39" amount="1" />
446
+ <kerning first="34" second="109" amount="-1" />
447
+ <kerning first="84" second="101" amount="-3" />
448
+ <kerning first="70" second="121" amount="-1" />
449
+ <kerning first="123" second="85" amount="-1" />
450
+ <kerning first="122" second="103" amount="-1" />
451
+ <kerning first="86" second="97" amount="-2" />
452
+ <kerning first="82" second="89" amount="-4" />
453
+ <kerning first="66" second="84" amount="-1" />
454
+ <kerning first="84" second="97" amount="-4" />
455
+ <kerning first="86" second="103" amount="-2" />
456
+ <kerning first="70" second="113" amount="-1" />
457
+ <kerning first="84" second="87" amount="1" />
458
+ <kerning first="75" second="112" amount="-1" />
459
+ <kerning first="114" second="111" amount="-1" />
460
+ <kerning first="39" second="112" amount="-1" />
461
+ <kerning first="107" second="101" amount="-1" />
462
+ <kerning first="82" second="84" amount="-3" />
463
+ <kerning first="114" second="121" amount="1" />
464
+ <kerning first="34" second="99" amount="-2" />
465
+ <kerning first="70" second="81" amount="-2" />
466
+ <kerning first="111" second="122" amount="-1" />
467
+ <kerning first="84" second="67" amount="-1" />
468
+ <kerning first="111" second="108" amount="-1" />
469
+ <kerning first="89" second="84" amount="1" />
470
+ <kerning first="76" second="79" amount="-2" />
471
+ <kerning first="85" second="65" amount="-2" />
472
+ <kerning first="44" second="34" amount="-6" />
473
+ <kerning first="65" second="67" amount="-3" />
474
+ <kerning first="109" second="34" amount="-1" />
475
+ <kerning first="114" second="103" amount="-1" />
476
+ <kerning first="78" second="89" amount="-1" />
477
+ <kerning first="89" second="114" amount="-1" />
478
+ <kerning first="89" second="112" amount="-1" />
479
+ <kerning first="34" second="65" amount="-4" />
480
+ <kerning first="70" second="65" amount="-11" />
481
+ <kerning first="81" second="86" amount="-1" />
482
+ <kerning first="114" second="119" amount="1" />
483
+ <kerning first="89" second="102" amount="-1" />
484
+ <kerning first="84" second="45" amount="-8" />
485
+ <kerning first="86" second="125" amount="1" />
486
+ <kerning first="70" second="67" amount="-2" />
487
+ <kerning first="89" second="116" amount="-1" />
488
+ <kerning first="102" second="34" amount="1" />
489
+ <kerning first="114" second="99" amount="-1" />
490
+ <kerning first="67" second="84" amount="-1" />
491
+ <kerning first="114" second="113" amount="-1" />
492
+ <kerning first="89" second="122" amount="-1" />
493
+ <kerning first="89" second="118" amount="-1" />
494
+ <kerning first="70" second="71" amount="-2" />
495
+ <kerning first="114" second="107" amount="-1" />
496
+ <kerning first="89" second="120" amount="-1" />
497
+ </kernings>
498
+ </font>